/* the login section  */
a {
  outline: none;
  text-decoration: none;
}
.login-main-page-body {
  font-family: "Segoe UI", "DM Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
}
/* header  */
.account-section-header-container {
  height: 120px;
  width: 100%;
  background-color: white;
  overflow: hidden;
}
.account-section-header-container .container {
  height: 100%;
}
.account-section-header-container .account-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-section-header-container img {
  height: 70px;
}
.authorization-container-outer {
  background-color: #f2f6f9;
  min-height: 100vh;
  padding: 2.5rem 0px;
}

/* authorization content  */
.account-auth-section-forms.account-auth-section-item {
  width: 100%;
  background-color: white;
  height: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.auth-section-form-header {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
.account-auth-section-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account-auth-section-tab p {
  margin: 0px;
  padding: 0px;
}
.account-auth-section-tab-item {
  font-size: 0.875rem;
  line-height: 1.4;
  padding: 12px 15px;
  font-weight: 700;
  border-bottom: 3px solid rgba(128, 128, 128, 0.61);
  cursor: pointer;
  opacity: 0.5;
}
.account-auth-section-tab-item.active {
  color: #0d2436;
  border-bottom-color: #ff6f6f;
  opacity: 1;
}
.account-auth-section-tab .item-returning-customer {
  flex-grow: 1;
}

/* form inputs  */
.account-auth-section-forms-items {
  margin-top: 30px;
}
.account-auth-section-forms form input {
  border: none;
  outline: none;
  background-color: white;
  padding: 0px !important;
  display: block;
  width: 100%;
}
.account-auth-section-forms .auth-form-input-input {
  border: 1px solid #b7c6cd;
  border-radius: 8px;
  padding: 0.525rem 1rem;
}
.account-auth-section-forms .row {
  margin-bottom: 20px;
}
.account-auth-section-forms label {
  font-size: 15px;
}
.account-auth-section-forms .optional-tag {
  font-size: 14px;
  opacity: 0.8;
}

/* phone input  */
.auth-form-input-input.phone-picker {
  padding-left: 10px;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type="tel"] {
  padding-left: 55px !important;
}
.iti__selected-flag:hover {
  background-color: white !important;
}

/* input checkbox items  */
.custom-auth-checkbox-item {
  width: 100%;
}
.custom-auth-checkbox-item label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.custom-auth-checkbox-item label input {
  display: none;
}
.custom-auth-checkbox-description {
  flex-grow: 1;
  margin-left: 10px;
}
.custom-auth-checkbox-description p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  margin: 0px;
  color: black;
}
.custom-auth-checkbox-description a {
  color: #ff6f6f;
}
.custom-auth-checkbox-indicator {
  position: relative;
  border: 2px solid rgba(0, 20, 50, 0.2);
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  width: 1.25rem;
  height: 1.25rem;
}
.UICheckbox__checkbox:checked ~ .custom-auth-checkbox-indicator:after {
  content: "";
  display: block;
  width: 30px;
  transition: 0.2s all ease-in;
  height: 30px;
  position: absolute;
  top: -5px;
  left: -5px;
  background: url(data:image/svg+xml;base64,PHN2ZyBiYXNlUHJvZmlsZT0iYmFzaWMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDMwIDMwIj48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiM1YWIyNzUiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBkPSJNNiAxMWw4IDhMMjggMSIvPjwvc3ZnPg==)
    50% / contain no-repeat;
}

/* register submit button  */
.auth-custom-form-submit-button-main {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  appearance: none;
  border-radius: 30px;
  padding: 10px 0px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  border: 0;
  display: inline-block;
  width: 100%;
  /*background-color: #215d81;*/
  background-color: #ff6f6f;
  color: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(5, 173, 163, 0.16);
  box-shadow: 0 6px 12px rgba(5, 173, 163, 0.16);
  transition: 0.2s all ease-in-out;
}
.auth-custom-form-submit-button-main:hover {
  background-color: #ff6f6f;
  opacity: 0.8;
}

/* authentication page right section  */
.account-auth-section-item {
  padding: 1.5rem 2rem;
}
.account-auth-section-right.account-auth-section-item {
  padding-left: 0px;
  padding-right: 20px;
  background-color: #f2f6f9;
}
.account-auth-section-inner {
  box-shadow: 0 15px 40px rgba(21, 37, 72, 0.08);
  border-radius: 6px;
}
.auth-block__info-pane__title {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.auth-right-section-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.auth-right-section-item img {
  width: 40px;
  height: 42px;
  margin-right: 15px;
}
.auth-right-section-item p {
  margin: 0px;
  color: black;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  flex-grow: 1;
}

/* show and hide forms  */
.auth-section-form-item {
  display: none;
}
.auth-section-form-item.active {
  display: block;
}
.auth-sign-in-forgot-password {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-sign-in-forgot-password a {
  font-size: 0.875rem;
  color: #0d2436;
  text-decoration: none;
  font-weight: 700;
  line-height: 22px;
  transition: 0.2s all ease-in-out;
}
.auth-sign-in-forgot-password a:hover {
  opacity: 0.7;
}
.footer-small-pages-inner-content {
  margin-top: 10vh;
  width: 100%;
}
.footer-small-pages-inner-content p:nth-child(1) {
  font-size: 0.8rem;
  color: #405262;
  width: 100%;
  text-align: center;
}
.footer-small-pages-inner-content p:nth-child(2) {
  color: #405262;
  width: 100%;
  text-align: center;
  margin-top: 3vh;
}

/* handle authentication errors  */
.rc-validation-representer-message {
  display: inline-block;
  font-size: 13px;
  background: #ff7171;
  color: #fff;
  padding: 2px 10px;
  margin-top: 8px;
  position: relative;
  border-radius: 3px;
  display: none;
}
.rc-validation-representer-message:after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-color: transparent transparent #ff7171;
  border-style: solid;
  border-width: 0 5px 5px;
}

/* Email verifications  */
.user-profile-account-not-confirmed p {
  font-size: 15px;
  line-height: 19px;
}
.user-profile-account-not-confirmed button {
  padding: 15px 0px;
  width: 100%;
  text-align: center;
}
.user-profile-account-not-confirmed p:nth-child(2) {
  opacity: 0.8;
  font-size: 14px;
}
.check-verification-email-in-the-span-folder {
  margin-top: 5vh;
}
.check-verification-email-in-the-span-folder small {
  width: 100%;
  text-align: center;
  line-height: 16px;
  color: #215c81b4;
  font-size: 12px;
  display: block;
}
.verify-email-address-logout-shortcut-small {
  font-weight: bold;
  color: #215c81;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
}
.verify-email-address-logout-shortcut-small:hover {
  text-decoration: underline;
}

.infinite-circular-progress-spinner-shared-container {
  -webkit-animation: 2000ms linear 0s normal none infinite running medilife-load;
  animation: 2000ms linear 0s normal none infinite running medilife-load;
  background: transparent;
  border-color: #ffffffe7;
  border-top-color: #0000001c;
  border-left-color: #0000001c;
  border-right-color: #0000001c;
  border-radius: 50%;
  border-style: solid;
  border-width: 3px;
  height: 26px;
  left: calc(50% - 13px);
  position: relative;
  top: calc(50% - 13px);
  width: 26px;
  z-index: 9;
}

@-webkit-keyframes medilife-load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes medilife-load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* hide and show verify buttons  */
.show-this-verify-button {
  display: block;
}
.hide-this-verify-button {
  display: none;
}
#auth-form-button-verifying-account-with-email {
  background-color: #ff6f6f;
  pointer-events: none;
  padding: 10px 0px;
  text-align: center;
}

/* universal error message container  */
.universal_error_container-shared_across_elements {
  display: inline-block;
  font-size: 14px;
  background: #ff7171;
  color: #fff;
  padding: 5px 10px;
  margin-top: 8px;
  position: relative;
  border-radius: 3px;
  display: none;
  margin: 10px 0px;
}

/* reset password link  */
.auth-reset-password-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-reset-password-header-back {
  cursor: pointer;
  color: #215c81;
  font-weight: 500;
}
.auth-reset-password-container p {
  line-height: 18px;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 20px;
  color: #0d2436;
}

/* confirm password reset  */
.confirm-password-reset-call-to-action button {
  padding: 10px 25px;
  outline: none;
}
.confirm-password-reset-call-to-action .btn-danger {
  background-color: rgb(148, 9, 9);
  color: white;
  margin-right: 15px;
  font-weight: normal;
  transition: 0.2s all ease-in-out;
}
.confirm-password-reset-call-to-action .btn-danger:hover {
  opacity: 0.8;
}
.confirm-new-password-p-description {
  font-size: 15px;
  line-height: 20px;
  color: #0d2436;
  margin-top: 10px;
}

/* account shared header  */
.account-header-main-inner {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}
.main-account-header-logo-left img {
  height: 60px;
}
.Header .UserBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.UserBlock {
  position: relative;
  z-index: 999;
}
.UserBlockWhois {
  background-position: 20px;
  width: 72px;
  height: 44px;
  position: relative;
  margin: 0;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 0 2px rgba(183, 198, 205, 0.3) inset;
  box-shadow: inset 0 0 0 2px rgba(183, 198, 205, 0.3);
  background: url("../images/account-menu-profile-small.svg") 17px no-repeat;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.UserBlockWhois:after {
  right: 20px;
  content: "";
  position: absolute;
  top: 0;
  right: 17px;
  width: 10px;
  height: 6px;
  background: url("../images/account-menu-profile-arrow-down.svg") no-repeat;
  bottom: 0;
  margin: auto;
}
.UserBlock__menu {
  border: 1px solid #e2e2e2;
  box-shadow: 1px 1px 1px #c9cde4;
  /* display: flex; */
  flex-direction: column;
  min-width: 160px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 80%;
  display: none;
}

.UserBlock__link {
  background-color: #fff;
  border-bottom: 1px solid #e2e2e2;
  border-radius: 1px;
  box-sizing: border-box;
  color: grey;
  cursor: pointer;
  display: block;
  line-height: 20px;
  overflow: hidden;
  padding: 10px 10px 10px 40px;
  text-align: left;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.UserBlock__link:last-child {
  border-bottom: none;
}

.UserBlock__link:before {
  content: "";
  height: 21px;
  left: 10px;
  position: absolute;
  width: 21px;
}

.UserBlock__link:hover {
  background-color: #f2f8fb;
  color: grey;
  text-decoration: none;
}

.UserBlock__link__sub {
  font-size: 12px;
  line-height: 16px;
  opacity: 0.7;
}

.UserBlock__link-sign-out:before {
  background: url("../images/account-menu-logout.svg") 100% 0/18px 18px
    no-repeat;
}

.UserBlock__link-profile:before {
  background: url("../images/account-menu-profile.svg") top/17px 19px no-repeat;
}

.UserBlock__link-my-orders:before {
  background: url("../images/account-menu-orders.svg") top/17px 18px no-repeat;
}

.UserBlock__link-inquiry:before {
  background: url("../images/account-menu-enquiry.svg") 50%/16px 19px no-repeat;
}

.UserBlock__link-rewards:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM4MTgxODF9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMjEuMiAyMy43NUgyLjhhMS4yNSAxLjI1IDAgMDEtMS4yNS0xLjI1di0xNWEuNzYuNzYgMCAwMS43NS0uNzVoMTPVyMExQN2bvLyzuBfqkTSSnYZKG3hkwUVxLjI1IDEuMjUgMCAwMS0xLjI1IDEuMjV6bS0xOC4xNS0xLjVIMjF2LTE0SDMuMDV6Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTPVyMExQN2bvLyzuBfqkTSSnYZKG3hkwUVtMi41LS4xMmEuNzYuNzYgMCAwMS0uNjEtMS4wN2MuMi0uNDQgMi00LjMyIDMuNzQtNS4yOGEzLjY4IDMuNjggMCAwMTPVyMExQN2bvLyzuBfqkTSSnYZKG3hkwUVyLjcxIDQuNDEgNC40MSAwIDAxLTEuOTIgMi4xNiA5IDkgMCAwMS0zLjk1LjZ6bS0xLjI2LTEuNTRjMS42My4wOCAzLjY5IDAgNC40Ny0uNDFBMi44NiAyLjg2IDAgMDAxOSAzLjlhMS42MyAxLjYzIDAgMDAtLjA1LTEuNDIgMi4yMiAyLjIyIDAgMDAtMy0uMzljLS44NS40NC0xLjk1IDIuMTPVyMExQN2bvLyzuBfqkTSSnYZKG3hkwUV8cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik05LjY4IDcuMjZhOSA5IDAgMDEtMy45NS0uNjUgNC40MSA0LjQxIDAgMDEtMS45Mi0yLjE2QTMuMTIgMy4xMiAwIDAxNCAxLjc0Yy45MS0xLjYxIDMuMi0yIDUuMDktLjk1IDEuNyAxIDMuNTMgNC44NCAzLjc0IDUuMjhhLjc2Ljc2IDAgMDEwIC42OS43OC43OCAwIDAxLS41OC4zOGMtLjI1LjAyLTPVyMExQN2bvLyzuBfqkTSSnYZKG3hkwUV4YTPVyMExQN2bvLyzuBfqkTSSnYZKG3hkwUVzIDEuNjMgMCAwMDAgMS40MiAyLjg2IDIuODYgMCAwMDEuMjEgMS40MWMuNzguNDQgMi44NC40OSA0LjQ3LjQxLS43Ni0xLjQ0LTEuODUtMy4xOS0yLjYzLTMuNjNhMi45MyAyLjkzIDAgMDAtMS40Ny0uNDF6bTE0LjIxIDEwLjk4SDIuM2EuNzUuNzUgMCAxMTPVyMExQN2bvLyzuBfqkTSSnYZKG3hkwUVxLjV6Ii8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTIgMjMuMWEuNzUuNzUgMCAwMS0uNzUtLjc1VjYuODRhLjc1Ljc1IDAgMDExLjUgMHYxNS41MWEuNzUuNzUgMCAwMS0uNzUuNzV6Ii8+PC9zdmc+)
    top/17px 18px no-repeat;
}

@media only screen and (min-width: 641px) {
  .UserBlock__link-rewards {
    display: none;
  }
}

.UserBlock__link-butler {
  display: none;
  background-color: #f5fafe;
  color: #0073e6;
}

@media (min-width: 920px) {
  .UserBlock__link-butler {
    display: none;
  }
}

.UserBlock__link-butler:focus,
.UserBlock__link-butler:hover {
  background-color: #eaf6ff;
  color: #0073e6;
}

.UserBlock__link-butler:before {
  background: url(/rcapp-assets/stem-bann/button.svg) 50%/16px 19px no-repeat;
}

.UserBlock__link-butler span {
  display: block;
  font-size: 12px;
  line-height: 14px;
  white-space: normal;
  min-width: 120px;
  color: hsla(0, 0%, 50.2%, 0.8);
}
.UserBlock:hover {
  cursor: pointer;
}
.header-second-menu-container-outer {
  /*background-color: #215d81;*/
  background-color: #ff6f6f;
}
.second-account-header-container-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.second-account-header-right {
  display: flex;
  flex-grow: 1;
  justify-content: end;
  align-items: center;
}
.MenuButton__short-title {
  display: none;
}
.second-account-header-item {
  height: 50px;
  display: flex;
  align-items: center;
  color: white;
  transition: 0.2s all ease-in-out;
  justify-content: center;
  cursor: pointer;
  padding: 0px 20px;
}
.second-account-header-item:hover {
  background-color: #f55c16;
  text-decoration: none;
  color: white !important;
}
.MenuButton__icon img {
  height: 24px;
  margin-right: 8px;
}
.second-account-header-item-active {
  background-color: #f55c16;
}

/* order status tabs  */
.order-lost-top-menu-content ul,
.order-lost-top-menu-content li {
  padding: 0px;
  margin: 0px;
}
.order-lost-top-menu-content li {
  display: inline-block;
}
.order-list-top-menu {
  margin: 20px 0px;
}
.order-lost-top-menu-content li a {
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: -1px;
  padding: 12px 15px;
  background: transparent none;
  color: black;
  transition: 0.2s all ease-in-out;
  margin-right: 20px;
  opacity: 0.7;
  border-bottom: 3px solid transparent;
}
.order-lost-top-menu-content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  white-space: nowrap;
}
.order-lost-top-menu-content li a:hover {
  opacity: 1;
  text-decoration: none;
}
.order-lost-top-menu-content li.active a {
  border-bottom-color: #2199e8;
  color: #2199e8;
  opacity: 1;
}
.oder-lost-content-container-inner {
  min-height: 60vh;
}
.container-content-empty {
  display: flex;
  justify-content: center;
  min-height: 50vh;
  align-items: center;
}
.no-orders-content img {
  height: 160px;
}
.OrdersList__empty-message__text {
  color: #777;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.OrdersList__empty-message__buttons {
  text-align: center;
}
.OrdersList__empty-message__buttons a {
  padding: 9px 16px;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  background-color: #0073e6;
  border-width: 0;
  border-radius: 4px;
  transition: 0.2s all ease-in-out;
}
.OrdersList__empty-message__buttons a:hover {
  background-color: #0262c2;
  text-decoration: none;
}

/* account footer  */
.account-main-footer {
  z-index: 0;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #405262;
  background-color: #f2f6f9;
}
.mini-auth-page__footer__copyrights {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
}

/* order list items  */
.orders-list-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.2);
  margin-bottom: 8px;
  padding: 18px 24px 10px;
  position: relative;
}
.order-list-item-details {
  display: flex;
  justify-content: space-between;
}
.order-list-right {
  width: 55%;
}
.order-list-left {
  width: 45%;
  padding-right: 20px;
}
.MyOrdersListItem__status-indication {
  align-items: center;
  display: flex;
  margin-bottom: 8px;
}
.progress-segments {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 0 2px #fff;
  display: flex;
  width: 100%;
  font-size: 12px;
}
.progress-segments .segment {
  color: #898989;
  flex: 1 0;
  line-height: 26px;
  margin-right: 2px;
  padding: 0 14px;
  position: relative;
  text-align: center;
  text-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.8);
  white-space: nowrap;
  z-index: 1;
}

.progress-segments .segment:after,
.progress-segments .segment:before {
  background-color: #e1e8e4;
  box-sizing: border-box;
  content: " ";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
}

.progress-segments .segment:before {
  top: 0;
  -webkit-transform: skewX(30deg);
  transform: skewX(30deg);
}

.progress-segments .segment:after {
  bottom: 0;
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
}

.progress-segments .segment:last-child:after,
.progress-segments .segment:last-child:before {
  border-right-width: 0;
}

.progress-segments .segment.active {
  font-weight: 700;
}

.progress-segments .segment.active.order-pay-segment {
  color: #ac7d00;
}

.progress-segments .segment.active.order-pay-segment:after,
.progress-segments .segment.active.order-pay-segment:before {
  background-color: #f2eec3;
}

.progress-segments .segment.active.order-assign-segment {
  color: #0e8b90;
}

.progress-segments .segment.active.order-assign-segment:after,
.progress-segments .segment.active.order-assign-segment:before {
  background-color: #d1f3f4;
}

.progress-segments .segment.active.order-progress-segment {
  color: #156384;
}

.progress-segments .segment.active.order-progress-segment:after,
.progress-segments .segment.active.order-progress-segment:before {
  background-color: rgba(196, 233, 246, 0.97);
}

.progress-segments .segment.active.order-review-segment {
  color: #75189c;
}

.progress-segments .segment.active.order-review-segment:after,
.progress-segments .segment.active.order-review-segment:before {
  background-color: #decdf2;
}

.progress-segments .segment.active.order-review-segment.in-review {
  color: #8a028c;
}

.progress-segments .segment.active.order-review-segment.in-review:after,
.progress-segments .segment.active.order-review-segment.in-review:before {
  background-color: rgba(238, 189, 240, 0.97);
}

.progress-segments .segment.active.order-approve-segment.dispute {
  color: #a73300;
}

.progress-segments .segment.active.order-approve-segment.dispute:after,
.progress-segments .segment.active.order-approve-segment.dispute:before {
  background-color: rgba(251, 199, 178, 0.97);
}

.progress-segments .segment.order-cancelled-segment {
  color: #cf4545;
  font-weight: 700;
}

.progress-segments .segment.order-cancelled-segment:after,
.progress-segments .segment.order-cancelled-segment:before {
  background-color: #f3f3f3;
}

.progress-segments .segment.order-finished-segment {
  color: #3ba038;
  font-weight: 700;
}

.progress-segments .segment.order-finished-segment:after,
.progress-segments .segment.order-finished-segment:before {
  background-color: #f3f3f3;
}

.progress-segments .segment.order-cancelled-segment,
.progress-segments .segment.order-finished-segment {
  -webkit-perspective: 70px;
  perspective: 70px;
}

.progress-segments .segment.order-cancelled-segment:after,
.progress-segments .segment.order-cancelled-segment:before,
.progress-segments .segment.order-finished-segment:after,
.progress-segments .segment.order-finished-segment:before {
  left: -3px;
  right: -3px;
}

.progress-segments .segment.order-cancelled-segment:before,
.progress-segments .segment.order-finished-segment:before {
  -webkit-transform: rotateX(-45deg) scaleY(3);
  transform: rotateX(-45deg) scaleY(3);
  -webkit-transform-origin: top;
  transform-origin: top;
}

.progress-segments .segment.order-cancelled-segment:after,
.progress-segments .segment.order-finished-segment:after {
  -webkit-transform: rotateX(45deg) scaleY(3);
  transform: rotateX(45deg) scaleY(3);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}
.MyOrdersListItem__status-description {
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 10px;
}
.MyOrdersListItem__title {
  display: block;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #007eff;
  white-space: nowrap;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s all ease-in;
}
.MyOrdersListItem__title:hover {
  text-decoration: none;
}
.MyOrdersListItem__topic:before {
  content: " / ";
  opacity: 0.3;
}
.MyOrdersListItem__info-general {
  font-size: 13px;
}

.MyOrdersListItem__info-general {
  display: block;
}

@media only screen and (min-width: 641px) {
  .MyOrdersListItem__info-general {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.MyOrdersListItem__info-deadline {
  font-weight: 400;
}
.MyOrdersListItem__info-general__item:not(:last-child):after {
  content: " / ";
  opacity: 0.7;
}
.MyOrdersListItem__info-deadline {
  font-weight: 400;
  font-size: 13px;
}
.MyOrdersListItem__info-description {
  color: rgba(0, 0, 0, 0.6);
  line-height: 18px;
}

/* order list actions  */
.MyOrdersListItem__footer-controls {
  margin: 5px 0;
}
.MyOrdersListItem__button {
  background-color: #f3f9fd;
  border: 1px solid rgba(74, 90, 182, 0.1);
  border-radius: 3px;
  color: #007eff;
  cursor: pointer;
  font-size: 14px;
  margin: 3px 5px 3px 0;
  padding: 6px 12px;
  font-family: inherit;
  line-height: 120%;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  transition: 0.2s all ease-in;
}
.MyOrdersListItem__button:hover {
  text-decoration: none;
  background-color: #e9eef1;
  color: #0271e0;
}
.MyOrdersListItem__button img {
  height: 14px;
  margin-right: 7px;
}
.MyOrdersListItem__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.MyOrdersListItem__button--highlight {
  background-color: #2199e8;
  color: #f3f9fd;
}
.MyOrdersListItem__button--highlight:hover {
  color: white;
  text-decoration: none;
  background-color: #0d79c2;
}
.MyOrdersListItem__button__new-count {
  background-color: rgba(0, 67, 113, 0.25);
  border-radius: 50%;
  display: inline-block;
  font-size: 11px;
  margin-top: 3px;
  line-height: 16px;
  min-width: 20px;
  margin-left: 5px;
  padding: 2px;
  text-align: center;
  vertical-align: top;
}
.order-list-item-actions-price .order-footer-cancel-and-cost {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}
.order-list-item-actions-price.total-price-and-discount {
  align-items: center;
  display: flex;
  margin: 9px 5px;
  font-weight: 500;
}
.order-list-item-actions-price .total-price {
  font-size: 20px;
}
.MyOrdersListItem__button--cancel-order {
  background: #fdf6f6;
  color: #d25445;
  border-color: rgba(210, 84, 69, 0.2);
  transition: 0.2s all ease-in-out;
  margin-right: 10px;
}
.MyOrdersListItem__button--cancel-order:hover {
  border-color: rgba(210, 84, 69, 0.3);
  color: #d25445;
  background: #fdf6f6 !important;
}
.MyOrdersListItem__button--cancel-order:before {
  content: "";
  display: inline-block;
  height: 19px;
  margin-top: -1px;
  vertical-align: middle;
  width: 19px;
  background: url("../images/order-details-cancel-order.svg") 50%/11px 11px
    no-repeat;
}
.order-list-item-price {
  display: flex;
  align-items: center;
  justify-content: end;
}

/* hide other indicators when order is complete  */
.order-completed-indicator .segment:not(.active) {
  display: none;
}
.order-completed-indicator .segment.active {
  flex: 0;
}
.MyOrdersListItem__button--reorder {
  padding: 7px 12px;
}
.segment .order-canceled-segment:before,
.segment .order-canceled-segment:active:after {
  background-color: #f8d7da;
}
.segment.order-approve-segment.active {
  color: #155724;
}
.segment.order-approve-segment.active:after,
.segment.order-approve-segment.active:before {
  background-color: #d4edda;
}
.MyOrdersListItem__button--reorder img {
  height: 16px;
}
.MyOrdersListItem__button--reorder:hover img {
  transform: rotate(180deg);
  transition: 0.3s all ease-in;
}
.segment.order-canceled-segment-indicator.active {
  color: #721c24;
}
.segment.order-canceled-segment-indicator.active:after,
.segment.order-canceled-segment-indicator.active:before {
  background-color: #f8d7da;
}

/* order details page  */
.oder-details-container-inner {
  border-radius: 8px;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.2);
  margin: 25px 0px;
  background-color: white;
  overflow: hidden;
  padding: 1.5rem;
}
.OrderPageInfoHeader__page-title {
  order: 1;
  flex: 1 1 auto;
  line-height: 1.1;
  margin-right: 20px;
  margin-bottom: 10px;
  overflow: hidden;
  color: #3e454c;
  font-size: 22px;
  font-weight: 600;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.OrderPageInfoHeader__light-label {
  color: #646e7a;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  white-space: nowrap;
}
.OrderPageInfoHeader__page-heading {
  display: flex;
  flex-direction: row-reverse;
}
.OrderPageInfoHeader__status-indication .segment:not(.active) {
  display: none;
}
.OrderPageInfoHeader__status-indication .segment {
  flex: 0;
}
.OrderPageInfoHeader__status-description {
  font-size: 13px;
  margin: 0px 20px 0px 15px;
  min-width: 200px;
  max-width: 600px;
  color: rgba(0, 20, 50, 0.8);
}
.OrderPageInfoHeader__page-subheading {
  display: flex;
  justify-content: space-between;
}
.OrderPageInfoHeader__status {
  display: flex;
}
.order-details-container-outer .progress-segments {
  display: inline-block !important;
  width: auto;
}
.phone-order-details-display-hidden {
  display: none;
  margin-right: 10px;
}
a:hover {
  text-decoration: none;
}
.OrderDetailsPage__tabs {
  border-bottom: 1px solid hsla(0, 0%, 85.5%, 0.4);
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap-reverse;
}
.OrderDetailsPage__tab:not(:last-child) {
  margin-right: 10px;
}
.OrderDetailsPage__tab--active {
  border-bottom: 3px solid;
  color: #1b577f;
  cursor: pointer;
  margin-bottom: -1px;
  opacity: 1;
}
.OrderDetailsPage__tab {
  color: #000;
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.21px;
  text-decoration: none;
}
.OrderDetailsPage__tab:hover {
  text-decoration: none;
}
.OrderDetailsPage__tab {
  font-size: 14px;
  padding: 12px 15px;
}
.UIButton-default-clean {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: transparent none;
  border: 0 solid;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
}
.OrderDetailsPage__order-actions {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
}
.UIButton-default-clean--size-s {
  padding: 6px 12px;
  font-size: 14px;
  line-height: 17px;
  border-width: 0;
}
.UIButton-default-clean--color-primary {
  color: #0073e6;
  background-color: transparent;
  -webkit-transition: 50ms linear;
  transition: 50ms linear;
  -webkit-transition-property: color;
  transition-property: color;
}
.OrderDetailsPage__order-actions > :not(:first-child) {
  margin-left: 10px;
}
.rc-ui-blocker--size-xs {
  min-height: 1.375rem;
}
.rc-ui-blocker {
  position: relative;
}
.UIButton-default-clean--size-s {
  padding: 6px 12px;
  font-size: 14px;
  line-height: 17px;
  border-width: 0;
}
.UIButton-default-clean--color-danger {
  color: #db2316;
  background-color: transparent;
  -webkit-transition: 50ms linear;
  transition: 50ms linear;
  -webkit-transition-property: color;
  transition-property: color;
}
.UIButton-default-clean {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: transparent none;
  border: 0 solid;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
}
.UIButton-default-clean--size-s {
  padding: 6px 12px;
  font-size: 14px;
  line-height: 17px;
  border-width: 0;
}
.OrderDetailsPage__order-action--edit:before {
  background: transparent url("../images/complete-payment-blue.svg") bottom/16px
    15px no-repeat;
  content: "";
  display: inline-block;
  height: 19px;
  margin: -3px 5px 0 -3px;
  vertical-align: middle;
  width: 19px;
}
.OrderDetailsPage__order-action--cancel:before {
  background: transparent url("../images/cancel-order-red.svg") 50%/11px 11px
    no-repeat;
  content: "";
  display: inline-block;
  height: 19px;
  margin: -3px 5px 0 -3px;
  vertical-align: middle;
  width: 19px;
}
.UIButton-default-clean--size-s.UIButton-default-clean--color-primary:hover {
  transition: 0.2s all ease-in-out;
  color: #0042a5;
  background-color: #f5f9fe;
}
.UIButton-default-clean--color-danger:hover {
  color: #9d1319;
  background-color: #fef6f6;
  transition: 0.2s all ease-in-out;
}
.OrderDetailsPage__order-action--re-order:before {
  background: transparent url("../images/re-order-progress.svg") bottom/16px
    15px no-repeat;
  content: "";
  display: inline-block;
  height: 19px;
  margin: -3px 5px 0 -3px;
  vertical-align: middle;
  width: 19px;
}

/* order details page  */
.OrderDetails {
  display: flex;
}
.OrderDetails__split {
  padding: 20px;
}
.OrderDetails__split--info {
  flex: 1 1 auto;
  background: #fcfdfc;
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0.1), #fafafa 90%);
  border-radius: 0 0 0 8px;
  border-right: 1px solid hsla(0, 0%, 85.5%, 0.4);
  box-shadow: inset 0 0 5px #fff;
}
.OrderDetails__info-row {
  align-items: flex-start;
  max-width: 600px;
  padding: 10px 20px;
  position: relative;
  border-bottom: 1px solid hsla(0, 0%, 85.5%, 0.4);
}
.OrderDetails__info-row__label {
  flex: 0 0 65%;
  margin-right: 5px;
  max-width: 150px;
  opacity: 0.9;
  font-size: 14px;
}
.OrderDetails__info-row__value {
  max-height: 300px;
  min-height: 20px;
  overflow: auto;
  text-overflow: ellipsis;
  color: rgba(0, 20, 50, 0.8);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
.OrderDetails__split--misc {
  flex: 0 1 40%;
}
.OrderDetails__info-row__label.bold,
.OrderDetails__info-row__value .bold {
  font-weight: bold;
}
.OrderPagesSpacingPopover {
  width: 19px;
  height: 19px;
  margin-right: -19px;
  display: inline-block;
  border-radius: 50%;
  color: #0180d5;
  opacity: 0.75;
  background: transparent url("../images/order-details-more-info.svg") 50% /
    contain no-repeat;
  vertical-align: -4px;
}
.UIButton-default-filled--color-primary {
  color: #fff;
  background-color: #0073e6;
  -webkit-transition: 50ms linear;
  transition: 50ms linear;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}
.UIButton-default-filled--size-m {
  padding: 9px 16px;
  font-size: 16px;
  line-height: 19px;
  border-width: 0;
  user-select: none;
  border-radius: 4px;
  transition: 0.2s all ease-in-out;
}
.UIButton-default-filled--color-primary:hover {
  text-decoration: none;
  color: white;
  background-color: #0663c0;
}

/* the messages details page  */
.OrderMessages__buttons {
  border-bottom: 1px solid hsla(0, 0%, 85.5%, 0.4);
  display: flex;
  padding: 10px;
  justify-content: space-between;
}
.OrderMessages__button--mark-all {
  margin-left: auto;
}
.OrderDetailsPage__tab__new-count {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  height: 18px;
  line-height: 18px;
  margin-left: 4px;
  text-align: center;
  vertical-align: 1px;
  width: 18px;
}
.rc-ui-blocker--size-m {
  min-height: 2.75rem;
  position: relative;
}
.OrderMessage {
  border-bottom: 1px solid hsla(0, 0%, 85.5%, 0.4);
  border-top: 0;
  font-size: 14px;
}
.OrderMessageHeader {
  cursor: pointer;
  display: flex;
  padding: 10px;
  color: inherit;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: inherit;
  outline-color: none;
  font-family: inherit;
  line-height: inherit;
}
.OrderMessageHeader__icon-is-viewed {
  opacity: 0.5;
}

.OrderMessageHeader__icon-support {
  background-image: url("../images/message-support-icon.svg");
}

.OrderMessageHeader__icon-writer {
  background-image: url("../images/message-writer-customer-icon.svg");
}

.OrderMessageHeader__icon-call {
  background-image: url("../images/message-writer-customer-icon.svg");
}
.OrderMessageHeader__icon {
  background-repeat: no-repeat;
  flex-shrink: 0;
  height: 16px;
  margin: 3px;
  width: 16px;
}
.OrderMessageHeader__container {
  overflow: hidden;
  flex-grow: 1;
  display: flex;
}
.OrderMessageHeader__type-is-viewed {
  color: rgba(0, 0, 0, 0.53);
}
.OrderMessageHeader__type {
  flex-shrink: 0;
  font-size: 13px;
  padding-left: 8px;
  padding-right: 15px;
  width: 82px;
  opacity: 0.8;
}
.OrderMessageHeader__subject {
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.OrderMessageHeader__props {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
  margin-left: 5px;
}
.OrderMessage__body {
  box-sizing: border-box;
  overflow: hidden;
  padding: 8px 20px 15px;
  will-change: max-height, opacity, padding-top, padding-bottom;
}
@media only screen and (min-width: 641px) {
  .OrderMessage__body {
    margin-left: 140px;
    margin-right: 140px;
  }
}
*:focus {
  outline: 0 !important;
}
.OrderMessageHeader:hover {
  background-color: #f5f9fa;
  transition: 0.2s all ease-in-out;
}
.OrderMessage-new .OrderMessageHeader__subject {
  font-weight: bold;
}

/* message container  */
.custom-order-message-body {
  padding: 15px;
  transition: 0.2s all ease-in;
  padding-top: 0px;
  margin: 0px;
}
.custom-order-message-body.message-item-body-hidden {
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 0px;
  margin: 0px;
}
.ReplyMessageForm__field {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  overflow: hidden;
  font-size: 15px;
  overflow-wrap: break-word;
  height: 56px;
}
.ReplyMessageForm__buttons--input-active {
  display: block;
  text-align: right;
}
.ReplyMessageForm {
  margin-top: 15px;
}
.OrderMessages {
  min-height: 30vh;
}

/* custom modal  */
.custom-modal-dialog .modal-body {
  background-color: rgba(0, 20, 50, 0.04);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 25px 20px 15px;
}

/* the files section  */
.OrderDetailsFiles {
  flex: 1 0 auto;
}
.rc-ui-blocker--size-m {
  min-height: 2.75rem;
}
@media only screen and (min-width: 1025px) {
  .OrderDetailsFiles {
    display: flex;
  }
}
.OrderDetailsFiles__split {
  box-sizing: border-box;
  min-width: 0;
  padding: 20px;
}
.OrderDetailsFiles__split--from-service {
  border-right: 1px solid hsla(0, 0%, 85.5%, 0.4);
}
@media only screen and (min-width: 1025px) {
  .OrderDetailsFiles__split--from-service {
    flex-basis: 60%;
  }
}
.OrderDetailsFiles__split__header {
  display: flex;
  margin: 0 0 14px;
  padding: 5px 0;
}
.OrderDetailsFiles__split__title {
  flex: 1 1 auto;
  line-height: 21px;
}
.OrderDetailsFiles__split__count {
  margin-left: 5px;
  color: #777;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  white-space: nowrap;
}
.OrderDetailsFiles__split__body {
  font-size: 14px;
  margin-bottom: 20px;
}
.OrderDetailsFiles__no-from-service-message {
  background: #fdfaf6;
  border-radius: 4px;
  padding: 30px 20px;
}
.OrderDetailsFiles__split--from-customer {
  background-color: #fcfdfc;
  box-shadow: inset 0 0 5px #fff;
}
@media only screen and (min-width: 1025px) {
  .OrderDetailsFiles__split--from-customer {
    flex-basis: 40%;
  }
}
.OrderDetailsFiles__split__header {
  display: flex;
  margin: 0 0 14px;
  padding: 5px 0;
}
.OrderDetailsFiles__split__title {
  flex: 1 1 auto;
  line-height: 21px;
}
.OrderDetailsFiles__split__count {
  margin-left: 5px;
  color: #777;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  white-space: nowrap;
}
.OrderDetailsFiles__split__body {
  font-size: 14px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1025px) {
  .OrderDetailsFiles__split--from-customer .OrderDetailsFiles__split__body {
    overflow-y: auto;
    max-height: 40vh;
  }
}
.OrderDetailsFilesCustomersFile {
  align-items: center;
  border-bottom: 1px solid hsla(0, 0%, 85.5%, 0.4);
  display: flex;
  padding: 8px 0;
}
.rc-ui-blocker--size-xs {
  min-height: 1.375rem;
}
.rc-ui-blocker {
  position: relative;
}
.OrderDetailsFilesCustomersFile__link {
  color: rgba(0, 20, 50, 0.75);
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  transition: 0.2s all ease-in-out;
}
.FileIcon {
  background: transparent url("../images/file-icon-background.png") 50%/20px
    21px no-repeat;
  display: block;
  flex-shrink: 0;
  height: 27px;
  margin-right: 10px;
  position: relative;
  width: 20px;
}
.FileIcon__badge {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#888),
    to(#a1a1a1)
  );
  background-image: linear-gradient(0deg, #888, #a1a1a1);
  box-shadow: 0 1px 0 #dfe3e5;
  color: #fff;
  content: "";
  display: block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-style: normal;
  left: 0;
  letter-spacing: 1px;
  line-height: 11px;
  margin-top: -3px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.FileIcon__badge--pdf {
  background-image: linear-gradient(0deg, #9e0f0f, #c53222);
}
.OrderDetailsFilesCustomersFile__link {
  color: rgba(0, 20, 50, 0.75);
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
}
.OrderDetailsFilesCustomersFile__subject {
  margin-right: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
}
.OrderDetailsFilesCustomersFile__file-description {
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.OrderDetailsFilesCustomersFile__date {
  color: rgba(0, 0, 0, 0.53);
  font-size: 11px;
  float: right;
  white-space: nowrap;
}
.OrderDetailsFilesCustomersFile__delete-button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  height: 30px;
  margin-left: auto;
  padding: 0;
  text-align: center;
  width: 30px;
  opacity: 0.5;
  flex-shrink: 0;
}
.OrderDetailsFilesCustomersFile__delete-button:before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: transparent url("../images/customer-files-delete-icon.svg") 50% /
    contain no-repeat;
}
.UIButton-default-ghost {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: transparent none;
  border: 0 solid;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
}
.UIButton-default-ghost--color-primary {
  color: #0073e6;
  border-color: #0073e6;
  background-color: transparent;
  transition-property: border-color, color;
  transition: 0.2s all ease-in-out;
}
.UIButton-default-ghost--color-primary:hover {
  background-color: #0073e615;
  border-color: #0073e638;
}
.UIButton-default-ghost--size-m {
  padding: 8px 15px;
  font-size: 16px;
  line-height: 19px;
  border-width: 1px;
}
.OrderDetailsFilesCustomersFile__link:hover {
  color: rgba(0, 20, 50, 0.9);
}
.OrderDetailsFilesCustomersFile__delete-button:focus,
.OrderDetailsFilesCustomersFile__delete-button:hover {
  opacity: 1;
}
.bold {
  font-weight: 700;
}
.OrderDetailsFiles__no-from-customer-message {
  font-size: 13px;
  margin-bottom: 15px;
}
#customUploadFilesModal .modal-dialog {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 90vh;
}
@media (min-width: 576px) {
  #customUploadFilesModal .modal-dialog {
    max-width: 650px;
    margin: 1.75rem auto;
  }
}
#customUploadFilesModal .modal-body {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 25px;
}
/* shared drag drop container form  */
.rc-files-control {
  background-color: #fffdf0;
  border: 1px dashed #c9cde4;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 15px;
}
.rc-files-control .browse-button {
  margin-right: 5px;
}
.UIButton-default-light--size-m {
  padding: 8px 15px;
  font-size: 16px;
  line-height: 19px;
  border-width: 1px;
}
.UIButton-default-light--color-primary {
  color: #0073e6;
  background-color: #f5f9fe;
  border-color: transparent;
  appearance: none;
  box-sizing: border-box;
  border: 0 solid;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  transition: 0.2s all ease-in-out;
}
.UIButton-default-light--color-primary:hover {
  background-color: #e3ecf7;
}
.rc-files-control .control-or {
  margin-left: 15px;
  margin-right: 15px;
}
.rc-files-control .control-drop-here {
  color: rgba(0, 0, 0, 0.6);
}
.Dialog__body-paragraph {
  margin: 0 0 16px;
}
.rc-files-control--files:not(:empty) {
  margin-bottom: 10px;
}
.FormFile {
  border-bottom: 1px solid #d1cec5;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 641px) {
  .FormFile {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 641px) {
  .FormFile__controls {
    display: flex;
    align-items: center;
  }
}
.FormFile__file-wrapper,
.FormFile__select-wrapper {
  display: flex;
  align-items: center;
  flex: 1 0 50%;
  min-width: 0;
}
.FileIcon {
  background: transparent url("../images/file-icon-background.png") 50%/20px
    21px no-repeat;
  display: block;
  flex-shrink: 0;
  height: 27px;
  margin-right: 10px;
  position: relative;
  width: 20px;
}
.FormFile__info {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  overflow: hidden;
  padding: 0;
  border: none;
  background: none;
  text-align: inherit;
}
.FormFile__title {
  flex-grow: 1;
  font-weight: 700;
  margin-right: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.FormFile__size {
  color: rgba(0, 0, 0, 0.6);
}
.FormFile__select-wrapper {
  justify-content: flex-end;
}
.FormFile__file-wrapper,
.FormFile__select-wrapper {
  display: flex;
  align-items: center;
  flex: 1 0 50%;
  min-width: 0;
}
.FormFile__upload-type-control {
  flex-grow: 1;
  flex-shrink: 0;
  max-width: 100%;
}
.FormFile__remove-button {
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  font-size: 30px;
  height: 34px;
  margin-left: 5px;
  text-align: center;
  width: 34px;
  padding: 0;
  border: none;
  background: none;
}
.FormFile__remove-button:before {
  background: transparent url("../images/customer-files-delete-icon.svg") 50%/20px
    21px no-repeat;
  content: "";
  display: block;
  height: 21px;
  margin: 6px 7px 7px;
  opacity: 0.8;
  width: 20px;
}
@media only screen and (min-width: 641px) {
  .FormFile__info {
    display: block;
  }
}
.rc-validation-representer select {
  width: 100%;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #eaeaea;
  padding: 5px 10px;
}
.Dialog__body-buttons {
  margin: 16px 0;
  text-align: right;
}
.Dialog__body-buttons button:nth-child(1) {
  margin-right: 20px;
}
.confirm-files-upload-and-paper-submit {
  display: none;
}
.upload-file-progress-indicator {
  font-size: 18px;
  margin-right: 7px;
  display: none;
}
.upload-file-progress-indicator.fa-spinner {
  color: #139bef;
}
.upload-file-progress-indicator.fa-check-circle {
  color: rgb(5, 148, 5);
}
.upload-file-progress-indicator.fa-close {
  color: rgb(231, 9, 9);
}

/* admin files section  */
.OrderDetailsFilesFile {
  border: 1px solid rgba(58, 57, 107, 0.1);
  margin-bottom: 8px;
  border-radius: 5px;
}
.OrderDetailsFilesFile__header {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 10px 10px 10px 25px;
  position: relative;
  border: none;
  background: none;
  color: inherit;
  width: 100%;
  border-radius: 5px;
  transition: 0.2s all ease-in-out;
}
.OrderDetailsFilesFile__header:before {
  border-color: transparent transparent transparent #c1c0c0;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  content: " ";
  display: block;
  height: 0;
  left: 10px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.OrderDetailsFilesFile__heading {
  justify-content: space-between;
  min-width: 0;
}
@media only screen and (min-width: 641px) {
  .OrderDetailsFilesFile__heading {
    display: flex;
    flex: 1 1 auto;
  }
}
.OrderDetailsFilesFile__name {
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
  min-width: 0;
  margin-right: 10px;
}
.OrderDetailsFilesFile__created-at {
  color: #777;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  text-align: left;
}
.OrderDetailsFilesFile__header:hover {
  background-color: #f5f9fa;
}
.OrderDetailsFilesFile__body {
  padding-bottom: 10px;
  transition: 0.2s all ease-in-out;
}
@media only screen and (min-width: 426px) {
  .OrderDetailsFilesFile__body {
    margin-left: 55px;
  }
}
.OrderDetailsFilesFile__body__comment,
.OrderDetailsFilesFile__body__time-free-revision {
  color: #777;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.UIButton-default-filled--size-m {
  padding: 9px 16px;
  font-size: 16px;
  line-height: 19px;
  border-width: 0;
}
.OrderDetailsFilesFile__button {
  margin: 0 10px 10px 0;
  min-width: 215px;
  text-align: center;
}
.OrderDetailsFilesFile__button {
  margin: 0 10px 10px 0;
  min-width: 215px;
  text-align: center;
}
.OrderDetailsFilesFile__button:before {
  content: "";
  display: inline-block;
  height: 19px;
  margin-right: 10px;
  vertical-align: -4px;
  width: 19px;
}
.OrderDetailsFilesFile__button--download-highlight:before {
  background-image: url("../images/files-download-button.svg");
}
.OrderDetailsFilesFile__button--revision:before {
  background: url("../images/file-request-revision-button.svg") no-repeat;
}
.OrderDetailsFilesFile__button--approve:before {
  background: url("../images/file-approve-button.svg") 50%/14px 11px no-repeat;
}
.OrderDetailsFilesFile__body--hidden {
  height: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
  transition: 0.2s all ease-in;
}
.active-support-file-button:before {
  border-color: #c1c0c0 transparent transparent;
  border-width: 4px 4px 0;
  margin: 0 0 0 -2px;
}

/* request revision dialogue  */
@media (min-width: 576px) {
  #requestRevisionCustomModal .modal-dialog {
    max-width: 1000px;
    margin: 1.75rem auto;
  }
}
@media (min-width: 576px) {
  #approveOrderModal .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
  }
}
.FreeRevisionForm__revision-policy {
  margin: 15px 0 0px;
}
.FreeRevisionForm__revision-notes {
  float: none;
  width: auto;
  padding-left: 30px;
  margin-bottom: 8px;
  margin-top: 0;
  list-style: none;
  -webkit-transition: width 0.5s linear;
  transition: width 0.5s linear;
}
@media only screen and (min-width: 641px) {
  .FreeRevisionForm__revision-notes {
    float: right;
    width: 42%;
    padding-left: 40px;
  }
}
.FreeRevisionForm__revision-note {
  color: #543c29;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 21px;
  position: relative;
}
.FreeRevisionForm__revision-refund-options {
  width: 100%;
  margin-bottom: 21px;
}
@media only screen and (min-width: 641px) {
  .FreeRevisionForm__revision-refund-options {
    width: 50%;
  }
}
.FreeRevisionForm__revision-refund-option {
  margin-bottom: 10px;
}
.FreeRevisionForm {
  color: #51575d;
}
.UICheckbox:not(.UICheckbox--disabled) {
  cursor: pointer;
}
.UICheckbox--theme-default {
  margin-bottom: 0;
  display: flex;
}
.UICheckbox--theme-default > .UICheckbox__checkbox--native {
  display: none !important;
}
.UICheckbox--theme-default > .UICheckbox__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  margin-top: 0.00938rem;
}
.UICheckbox--theme-default > .UICheckbox__checkbox {
  position: relative;
  border: 2px solid rgba(0, 20, 50, 0.2);
  border-radius: 3px;
  background: #fff;
  margin-right: 7px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.UICheckbox--theme-default > .UICheckbox__checkbox--checked {
  border-color: rgba(0, 140, 50, 0.3);
}
.UICheckbox--theme-default
  > .UICheckbox__checkbox:not(.UICheckbox__checkbox--disabled) {
  cursor: pointer;
}
.UICheckbox--theme-default > .UICheckbox__checkbox--faux {
  display: block;
}
.UICheckbox--theme-default > .UICheckbox__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  margin-top: 0.00938rem;
}
.UICheckbox--theme-default > .UICheckbox__checkbox {
  position: relative;
  border: 2px solid rgba(0, 20, 50, 0.2);
  border-radius: 3px;
  background: #fff;
  margin-right: 7px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.UICheckbox--theme-default > .UICheckbox__checkbox--checked {
  border-color: rgba(0, 140, 50, 0.3);
}
.UICheckbox--theme-default
  > .UICheckbox__checkbox:not(.UICheckbox__checkbox--disabled) {
  cursor: pointer;
}
.UICheckbox--theme-default > .UICheckbox__checkbox--checked:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -5px;
  left: -5px;
  background: url("../images/revision-green-check.svg") 50% / contain no-repeat;
}
.FreeRevisionForm__revision-option-body {
  font-size: 13px;
  margin: 5px 0 20px 32px;
}
.FreeRevisionForm__revision-option-body p {
  margin: 0 0 10px;
}
.UIInput-default--autosize {
  resize: none;
}
.UIInput-default {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: transparent none;
  border: 0;
  width: 100%;
  font: inherit;
  margin: 0;
  border-radius: 3px;
}
.UIInput-default--not-resizable {
  resize: none;
}
.UIInput-default--autosize {
  max-height: 300px;
  max-height: 25vh;
}
.UIInput-default--size-m {
  padding: 0.34375rem 0.875rem;
  font-size: 0.9375rem;
}
.UIInput-default--size-l,
.UIInput-default--size-m {
  line-height: 1.4;
  border-width: 1px;
  border-style: solid;
}
.UIInput-default--color-default {
  border-color: #c9cde4;
  background-color: #fff;
  color: #333;
}
.UIInput-default--autosize {
  resize: none;
}
.FreeRevisionForm__revision-deadline-label {
  clear: both;
  float: left;
  margin-bottom: 12px;
  padding: 9px 10px;
}
.FreeRevisionForm__revision-deadline-wrapper {
  clear: right;
  display: inline-block;
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .FreeRevisionForm__revision-deadline-wrapper {
    width: 71%;
  }
}
.Dialog__body-buttons {
  margin: 16px 0;
  text-align: right;
}
.UIButton-default-clean--size-l {
  padding: 12px 24px;
  font-size: 18px;
  line-height: 21px;
  border-width: 0;
}
.UIButton-default-clean {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: transparent none;
  border: 0 solid;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
}
.UIButton-default-filled {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: transparent none;
  border: 0 solid;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
}
.UIButton-default-filled--color-primary {
  color: #fff;
  background-color: #0073e6;
  -webkit-transition: 50ms linear;
  transition: 50ms linear;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}
.UIButton-default-filled--size-l {
  padding: 12px 24px;
  font-size: 18px;
  line-height: 21px;
  border-width: 0;
}
.Dialog__body-buttons button + button {
  margin-left: 10px;
}
.FreeRevisionForm__revision-note:before {
  background: transparent url("../images/request-revision-caution.svg") 50%/7px
    20px no-repeat;
  content: " ";
  height: 23px;
  left: -30px;
  position: absolute;
  top: -2px;
  width: 22px;
}
#requestRevisionCustomModal .rc-validation-representer select {
  padding: 8px 10px;
}
.FreeRevisionForm__select-label {
  color: #6a6764;
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
  margin: 2px 0 13px;
}
.FreeRevisionForm__revision-option-body {
  display: none;
}
.FreeRevisionForm__revision-option-body.active {
  display: block;
}
.UICheckbox--theme-default > .UICheckbox__label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.FreeRevisionForm__revision-refund-option--diff-writer {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 15px;
  padding-top: 15px;
}
#requestRevisionCustomModal {
  max-height: 100%;
  overflow-y: scroll;
}
#requestRevisionCustomModal::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.empty-options-submitted-error {
  display: none;
}
.empty-options-submitted-error .rc-validation-representer-message {
  margin-top: 0px !important;
}

/* approval container  */
.rating-input-section {
  margin-bottom: 27px;
}
.approve-order-form-main label {
  display: block;
  font-size: 15px;
}
.approve-order-form-main textarea {
  width: 100%;
  min-height: 85px;
  outline: none;
  border: 1px solid rgba(128, 128, 128, 0.568);
  padding: 8px 15px;
  border-radius: 5px;
}
.custom-approval-label {
  margin-bottom: 10px;
}
.custom-approval-label img {
  height: 16px;
  margin-right: 5px;
}
.paper-on-time-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-radius: 5px;
}
.paper-ont-time-inner {
  padding: 6px 10px;
  background-color: white;
  text-align: center;
  cursor: pointer;
  flex-grow: 1;
  width: 50%;
  transition: 0.2s all ease-in-out;
}
.paper-ont-time-inner.active {
  background-color: #3d5f75;
  color: #fff;
}
.paper-on-time-container .paper-ont-time-inner:nth-child(2) {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.paper-on-time-container .paper-ont-time-inner:nth-child(1) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.paper-ont-time-inner:not(.active):hover {
  background-color: #eaf8ff;
}
.DialogOrderApprove__form,
.DialogOrderApprove__feedback,
.DialogOrderApprove__notes {
  margin-bottom: 24px;
}
.DialogOrderApprove__note {
  font-size: 14px;
  line-height: 18px;
  display: flex;
  color: #868686;
  margin-bottom: 15px;
}
.DialogOrderApprove__note__message {
  color: #4d4c4c;
  font-size: 13px;
  line-height: 18px;
  min-height: 36px;
}
.DialogOrderApprove__note__icon {
  margin-right: 10px;
}
.DialogOrderApprove__note__ico img {
  height: 20px;
}
.DialogOrderApprove__footer {
  text-align: right;
}
.approve-rc-validation-representer-message {
  display: block;
  font-size: 13px;
  background: #ff7171;
  color: #fff;
  padding: 4px 10px;
  margin-top: 8px;
  position: relative;
  border-radius: 3px;
  display: none;
}
/* user account information page  */
@media only screen and (min-width: 1025px) {
  .ProfilePage__contacts-and-change-pass {
    display: flex;
  }
}
.ProfilePage__pane {
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 1px 4px 0 rgba(0, 0, 0, 0.08),
    0 3px 1px -2px rgba(0, 0, 0, 0.05);
}
.ProfilePage__pane--contacts {
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 20px;
}
@media only screen and (min-width: 1025px) {
  .ProfilePage__pane--contacts {
    flex: 0 0 50%;
    margin-right: 5%;
  }
}
.ProfilePage__pane-heading {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 20px;
  opacity: 0.8;
  text-transform: uppercase;
}
.rc-ui-blocker--size-m {
  min-height: 2.75rem;
}
.rc-ui-blocker {
  position: relative;
}
.AccountForm__row {
  margin-bottom: 10px;
}
@media only screen and (min-width: 641px) {
  .AccountForm__row {
    display: flex;
  }
}
.AccountForm__label {
  font-size: 15px;
}
@media only screen and (min-width: 641px) {
  .AccountForm__label {
    align-items: center;
    display: flex;
    flex: 0 0 80px;
    height: 36px;
    justify-content: flex-end;
    padding-right: 15px;
    text-align: right;
  }
}
.AccountForm__control {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.UIInput-default {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: transparent none;
  border: 0;
  width: 100%;
  font: inherit;
  margin: 0;
  border-radius: 3px;
}
.UIInput-default--oneline {
  white-space: nowrap;
  text-overflow: ellipsis;
}
.UIInput-default--size-m {
  padding: 0.34375rem 0.875rem;
  font-size: 0.9375rem;
}
.UIInput-default--size-l,
.UIInput-default--size-m {
  line-height: 1.4;
  border-width: 1px;
  border-style: solid;
}
.UIInput-default--color-default {
  border-color: #c9cde4;
  background-color: #fff;
  color: #333;
}
.ProfilePage__pane {
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 1px 4px 0 rgba(0, 0, 0, 0.08),
    0 3px 1px -2px rgba(0, 0, 0, 0.05);
}
.ProfilePage__pane--change-pass {
  flex: 1 1 50%;
  margin-bottom: 20px;
  padding: 20px;
}
.ProfilePage__pane-heading {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 20px;
  opacity: 0.8;
  text-transform: uppercase;
}
.ChangePassword__form-body {
  margin-top: 10px;
  margin-bottom: -10px;
}
.ChangePassword__group {
  display: flex;
  margin-bottom: 20px;
}
.ProfilePage__group {
  display: block;
}
@media only screen and (min-width: 641px) {
  .ProfilePage__group {
    display: flex;
  }
}
.ChangePassword__label {
  flex: 0 0 110px;
  font-size: 15px;
  margin-top: 6px;
}
.ProfilePage__label {
  margin-right: 15px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 641px) {
  .ProfilePage__label {
    text-align: right;
  }
}
.ChangePassword__control {
  flex: 1 1 auto;
}
.UIPasswordInput {
  position: relative;
}
.ProfilePage__policy-accepted-notice {
  color: rgba(0, 0, 0, 0.65);
  font-size: 13px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 10px;
  text-align: center;
}
.ProfilePage__policy-accepted-notice__heading {
  font-size: 13px;
  margin: 0 0 5px;
}
.Page__heading {
  color: #3e454c;
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0 25px;
  text-transform: uppercase;
}
.rc-user-contacts-block .AccountForm__buttons {
  text-align: right;
}
.rc-user-contacts-block .UIButton-default-filled--size-m,
.ChangePassword__form-body .UIButton-default-filled--size-m {
  padding: 7px 16px;
}
