input[placeholder]:focus::-webkit-input-placeholder,
textarea[placeholder]:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: transparent !important;
  font-weight: inherit;
}
input[placeholder]:focus::-moz-placeholder,
textarea[placeholder]:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: transparent !important;
  font-weight: inherit;
}
input[placeholder]:focus:-ms-input-placeholder,
textarea[placeholder]:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: transparent !important;
  font-weight: inherit;
}
input[placeholder]:focus:-moz-placeholder,
textarea[placeholder]:focus:-moz-placeholder {
  /* Firefox 18- */
  color: transparent !important;
  font-weight: inherit;
}

#top-menu {
  white-space: nowrap;
}

.T_Section {
  display: flex;
  margin-bottom: 30px;
}
.T_Section .T_Column:first-of-type {
  padding-bottom: 40px;
}
.T_Section .T_Column:first-of-type .Row {
  margin-bottom: 3%;
  padding: 0 0 0 3%;
}

.T_Form h2 {
  margin-bottom: 16px;
}
.T_Form select,
.T_Form input[type=text],
.T_Form input[type=number] {
  width: 100%;
  padding: 16px;
  border-width: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  color: #999;
  font-size: 14px;
  -webkit-appearance: none;
  background: white;
  box-shadow: 0px 6px 20px 3px rgba(34, 56, 101, 0.12);
  border-radius: 4px 4px 4px 4px;
  overflow: hidden;
}
.T_Form .Row {
  display: flex;
  align-items: baseline;
}
.T_Form .Row > div {
  flex-grow: 1;
  width: 100%;
}
.T_Form .Row label {
  min-width: 180px;
}
.T_Form .Row .InputWithLabelRight {
  position: relative;
}
.T_Form .Row .InputWithLabelRight input {
  padding-right: 100px;
}
.T_Form .Row .InputWithLabelRight span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.T_Form .Row .InputWithLabelBelow:first-of-type {
  margin-right: 14px;
}
.T_Form .Row .InputWithLabelBelow:last-child {
  margin-left: 14px;
}
.T_Form .Row .InputWithLabelBelow select {
  margin-bottom: 3px;
}
.T_Form .Row .InputWithLabelBelow span {
  font-size: 14px;
  color: #797979;
}
.T_Form .Row .FromToInputs {
  display: flex;
}
.T_Form .Row .Urgencies {
  white-space: nowrap;
  margin-right: 10px;
}
.T_Form span.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  color: #49545a;
  background-color: #f4f5f6;
}
.T_Form .FileUploadBox {
  border: 2px solid #B2B2B2;
  padding: 4% 2%;
  cursor: pointer;
}
.T_Form .FileUploadBox.enter {
  border-style: dashed;
}
.T_Form .FileUploadBox .UploadMessage {
  pointer-events: none;
}
.T_Form .FileUploadBox .FileUploaded {
  background: #e6e6e6;
  padding: 3px 10px;
  margin-bottom: 4px;
}
.T_Form .FileUploadBox .FileUploaded button {
  float: right;
}

.T_Summary {
  padding: 18px 2%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 0 solid rgba(55, 63, 67, 0.125);
  border-radius: 0.25rem;
  background-color: #f4f5f6;
  margin-bottom: 2rem;
  -webkit-box-shadow: 0 2px 3px rgba(55, 63, 67, 0.16);
  box-shadow: 0 2px 3px rgba(55, 63, 67, 0.16);
}
.T_Summary .T_Row {
  border-bottom: 1px solid #d2d2d2;
  padding: 3px 4px;
  justify-content: space-between;
  display: flex;
  font-size: 12px;
}
.T_Summary .T_Row._Total {
  justify-content: center;
  font-size: 19px;
  padding: 16px 0px 0px;
  border-bottom: none;
}

button.Submit {
  color: #fff;
  background-color: #ba9319;
  box-shadow: 0 1px 2px #dde1e3;
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  line-height: 34px;
  border-radius: 3px;
  font-size: 15px;
}
button.Submit:disabled {
  background-color: #cac1a9 !important;
  cursor: initial !important;
}
button.Submit:hover {
  background-color: #d3ab19;
}

@media (min-width: 981px) {
  .T_Section .T_Column:first-of-type {
    padding-right: 40px;
    width: 70%;
  }
  .T_Section .T_Column:first-of-type .Row {
    margin-bottom: 3%;
    padding: 0 0 0 3%;
  }
  .T_Section .T_Column:last-of-type {
    width: 30%;
  }
}
@media (max-width: 980px) {
  .T_Section {
    flex-direction: column;
  }
  .T_Section .T_Column:first-of-type {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .T_Section .T_Column:first-of-type .Row {
    flex-direction: column;
    text-align: left;
  }
  .T_Section .T_Column:first-of-type .Row .Urgencies {
    display: block;
  }
  .T_Section .T_Column:first-of-type .FromToInputs {
    flex-direction: column;
  }
  .T_Section .T_Column:first-of-type .InputWithLabelBelow:first-of-type {
    margin-bottom: 8px;
  }
  .T_Section .T_Column:first-of-type .InputWithLabelBelow:last-child {
    margin-left: 0;
  }
  .T_Section .T_Column:first-of-type .InputWithLabelBelow select {
    margin-bottom: -2px;
  }
}
#TranslationTextualFormApp {
  color: black;
}
#TranslationTextualFormApp .TranslateInputsBox {
  font-size: 2.1rem;
  line-height: 2.9rem;
  font-weight: 600;
}
#TranslationTextualFormApp .TranslateInputsBox .TranslateInput {
  cursor: pointer;
  border-bottom: 2px solid #EA6C01;
  color: #EA6C01;
}
#TranslationTextualFormApp .TranslateInputsBox .TranslateInput.disabled {
  pointer-events: none;
  border-color: transparent;
}
@media (min-width: 600px) {
  #TranslationTextualFormApp .TranslateInputsBox .TranslateInput {
    white-space: nowrap;
  }
}
#TranslationTextualFormApp .TranslateGetQuote {
  text-align: center;
  margin-top: 40px;
}
#TranslationTextualFormApp .TranslateGetQuote button {
  background: black !important;
  font-size: 1rem;
  width: 260px;
  max-width: 80%;
  position: relative;
  padding: 5px 0px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 30px;
}
#TranslationTextualFormApp .TranslateGetQuote button em {
  position: absolute;
  left: 10px;
  top: 4px;
  color: white;
}
#TranslationTextualFormApp .TranslateGetQuote button span {
  color: #EA6C00;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
}
#TranslationTextualFormApp .TranslateQuote {
  background: white url(../assets/img_check.png) no-repeat 50px 80px;
  font-size: 24px;
  margin-top: 30px;
  border: 1px solid #d9d9d9;
  padding: 55px 9% 40px;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.07) !important;
}
@media (max-width: 1200px) {
  #TranslationTextualFormApp .TranslateQuote {
    background: white !important;
  }
}
@media (min-width: 1201px) {
  #TranslationTextualFormApp .TranslateQuote p.Intro {
    padding-left: 150px;
  }
}
#TranslationTextualFormApp .TranslateQuote hr {
  margin-top: 20px;
  border: 0;
  border-top: 1px solid #D9D9D9;
}
#TranslationTextualFormApp .TranslateQuote .Options {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}
#TranslationTextualFormApp .TranslateQuote p span {
  color: #EA6C01;
}
#TranslationTextualFormApp .TranslateQuote p.Price {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 40px;
}
#TranslationTextualFormApp .TranslateQuote p.Cart {
  text-align: left;
  padding-bottom: 0;
  min-height: 32px;
  line-height: 32px;
  background: url(../assets/icon_cart.png) left center no-repeat;
  padding-left: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 11px;
}
#TranslationTextualFormApp .TranslateQuote p.Time {
  text-align: left;
  padding-bottom: 0;
  min-height: 32px;
  line-height: 32px;
  background: url(../assets/icon_time.png) left center no-repeat;
  padding-left: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 11px;
}
#TranslationTextualFormApp .TranslateQuote button[type=submit] {
  background: black !important;
  font-size: 1rem;
  width: 260px;
  max-width: 80%;
  position: relative;
  padding: 5px 0px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 40px;
  max-width: 220px;
}
#TranslationTextualFormApp .TranslateQuote button[type=submit] em {
  position: absolute;
  left: 10px;
  top: 4px;
  color: white;
}
#TranslationTextualFormApp .TranslateQuote button[type=submit] span {
  color: #EA6C00;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
}
#TranslationTextualFormApp .IconLanguage {
  background: url(../assets/icon_language.png) center;
  width: 71px;
  height: 57px;
  display: block;
  margin: 20px auto 40px;
}
#TranslationTextualFormApp .IconNext {
  background: url(../assets/icon_next.png) center;
  width: 60px;
  height: 60px;
  display: block;
  margin: 20px auto 40px;
}

.d-none {
  display: none;
}

body > .FloatingInputBox {
  position: absolute;
  background: lightgrey;
  width: 240px;
  z-index: 999999;
  max-height: 300px;
  overflow: visible;
}
body > .FloatingInputBox .FloatingOptions {
  overflow: auto;
  max-height: 300px;
}
body > .FloatingInputBox .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-color: transparent transparent #e9e9e9;
  border-width: 0 11px 11px;
  display: block;
}
body > .FloatingInputBox .arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  display: block;
  border-color: transparent transparent lightgrey;
  border-width: 0 10px 10px;
  top: 1px;
  margin-left: -10px;
  top: -10px;
  left: 50%;
}
body > .FloatingInputBox input[type=number] {
  width: 100%;
  text-align: center;
  border: 0;
  line-height: 2.2rem;
}
body > .FloatingInputBox ul {
  list-style: none;
  margin: 0;
}
body > .FloatingInputBox ul li {
  cursor: pointer;
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 5px;
}
body > .FloatingInputBox ul li.WithBadge {
  display: flex;
  justify-content: space-between;
}
body > .FloatingInputBox ul li.WithBadge .badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  color: #49545a;
  background-color: #f4f5f6;
}
body > .FloatingInputBox ul li:hover {
  background: #EA6C01;
  color: white;
}
body > .FloatingInputBox .FileUploadBox {
  padding: 5px;
}
body > .FloatingInputBox .FileUploadBox .FileUploaded {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1px;
}
body > .FloatingInputBox .FileUploadBox .FileUploaded span {
  color: #EA6C01;
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
}
body > .FloatingInputBox .FileUploadBox .FileUploaded button {
  background: #EA6C01;
  border: 0;
  border-radius: 3px;
  color: white;
  padding: 0px 8px;
  cursor: pointer;
}
body > .FloatingInputBox .FileUploadBox .UploadMessage {
  border: 2px dashed grey;
  padding: 1px 10px;
  margin-top: 8px;
  cursor: pointer;
  text-align: center;
}

#TranslationWizardFormApp {
  display: flex;
}
#TranslationWizardFormApp button {
  cursor: pointer;
}
#TranslationWizardFormApp .Sidebar {
  order: 1;
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  box-shadow: 1px 5px 8px rgba(31, 41, 88, 0.1);
  min-height: 300px;
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  background: url(../assets/bg_overview.png) 14px 20px no-repeat;
  padding-left: 80px;
  min-width: 316px;
}
#TranslationWizardFormApp .Sidebar h3 {
  color: #AA1906;
  font-size: 23px !important;
  font-weight: 700;
}
#TranslationWizardFormApp .Sidebar .Well {
  font-size: 14px;
  background: #f7f8fc;
  color: #454a5b;
  border: 1px solid #dde6ed;
  border-radius: 5px;
  padding: 15px 10px;
}
#TranslationWizardFormApp .Sidebar .Well > div {
  margin-bottom: 4px;
}
#TranslationWizardFormApp .Sidebar .Well label {
  display: block;
  color: rgba(69, 74, 91, 0.48);
}
#TranslationWizardFormApp .Wizard {
  flex: auto;
}
#TranslationWizardFormApp .Row {
  display: flex;
  margin-bottom: 26px;
}
#TranslationWizardFormApp .Row .Col_Progress {
  margin-right: 13px;
}
#TranslationWizardFormApp .Row .Col_Progress .Count {
  background: #AA1906;
  color: #fff;
  border: 5px solid #F4E1DF;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 1.1rem;
}
#TranslationWizardFormApp .Row .Col_Container {
  flex: auto;
  margin-right: 30px;
}
#TranslationWizardFormApp .Row .Col_Container .Step {
  box-shadow: 1px 1px 8px #eaeaea;
  min-height: 320px;
}
#TranslationWizardFormApp .Row .Col_Container .Step h5 {
  font-weight: 600;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Title {
  width: 100%;
  text-align: left;
  font-size: 23px !important;
  background: none;
  font-weight: 700;
  padding: 20px 20px 20px 20px !important;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  margin: 0;
  padding: 0;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  color: #AA1906;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Wrap {
  font-size: 0.9rem;
  color: black;
  padding: 20px;
  padding-top: 0;
  max-width: 400px;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Wrap input[type=number] {
  border: 4px solid #AA1906;
  padding: 3px 14px;
  max-width: 150px;
  margin-bottom: 25px;
  font-size: 1rem;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Wrap label {
  display: block;
  margin-top: 7px;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Wrap button.Next {
  min-height: 39px;
  font-size: 1.6rem;
  padding: 0 36px 0 30px;
  border-radius: 50px;
  background: #AA1906;
  color: white;
  font-weight: bold;
  border: 0;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Wrap table {
  border: 0;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Wrap td, #TranslationWizardFormApp .Row .Col_Container .Step .Wrap th {
  border: 0;
  padding: 0;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Wrap select {
  border: 5px solid #AA1906;
  padding: 4px 13px;
  width: 92%;
  max-width: 200px;
  margin-top: 10px;
  font-size: 1rem;
}
#TranslationWizardFormApp .Row .Col_Container .Step .Wrap strong {
  color: #AA1906;
}
#TranslationWizardFormApp .Row .Col_Container .Step.Step1 {
  background: url(../assets/bg_step1.png) no-repeat right 40px center;
}
#TranslationWizardFormApp .Row .Col_Container .Step.Step2 {
  background: url(../assets/bg_step2.png) no-repeat right 40px center;
}
#TranslationWizardFormApp .Row .Col_Container .Step.Step3 {
  background: url(../assets/bg_step3.png) no-repeat right 40px center;
}
#TranslationWizardFormApp .Row .Col_Container .Step.Step4 {
  background: url(../assets/bg_step4.png) no-repeat right 40px center;
}
#TranslationWizardFormApp .Row:not(.active) {
  opacity: 0.5;
}
#TranslationWizardFormApp .Row:not(.active) .Step {
  box-shadow: none;
  background: none !important;
  min-height: initial;
}
#TranslationWizardFormApp .Row:not(.active) .Title {
  background: transparent !important;
}
#TranslationWizardFormApp .Row:not(.active) .Wrap {
  display: none;
}
#TranslationWizardFormApp .FileUploadBox {
  padding: 5px;
}
#TranslationWizardFormApp .FileUploadBox .FileUploaded {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1px;
}
#TranslationWizardFormApp .FileUploadBox .FileUploaded span {
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
}
#TranslationWizardFormApp .FileUploadBox .FileUploaded button {
  background: #AA1906;
  color: white;
  border: 0;
  font-size: 1.1rem;
  font-weight: normal;
  padding: 0 11px;
  border-radius: 3px;
}
#TranslationWizardFormApp .FileUploadBox .UploadMessage {
  border: 5px dashed #AA1906;
  padding: 13px 10px;
  margin-top: 8px;
  cursor: pointer;
  background: #F6F6F6;
}
#TranslationWizardFormApp button.Submit {
  max-width: 240px;
}
@media (max-width: 782px) {
  #TranslationWizardFormApp {
    flex-direction: column;
  }
}

#TranslationRushFormApp {
  color: #5e6b7b;
  display: flex;
}
#TranslationRushFormApp .icon-group-stacked .icon-group-sub,
#TranslationRushFormApp .icon-group-stacked .icon-group-title {
  display: block;
}
#TranslationRushFormApp .icon-group-title {
  font-weight: 700;
  color: #333941;
}
#TranslationRushFormApp .icon-group-sub {
  font-size: 0.875rem;
  color: #959ba1;
}
#TranslationRushFormApp .cart-item .icon-group-sub {
  max-width: 350px;
}
#TranslationRushFormApp .icon-group {
  display: flex;
  flex: 1;
  line-height: 1.5;
}
#TranslationRushFormApp .btn-primary {
  background-color: #3887d6;
  border-color: #3887d6;
}
#TranslationRushFormApp .btn-outline-light:hover {
  color: #212529;
  background-color: #adb5bd;
  border-color: #adb5bd;
}
#TranslationRushFormApp .btn-primary.focus, #TranslationRushFormApp .btn-primary:focus, #TranslationRushFormApp .btn-primary:hover {
  color: #fff;
  background-color: #2874c0;
  border-color: #256eb6;
}
#TranslationRushFormApp .btn-primary:hover {
  background-color: #2d557a;
  border-color: #294f71;
}
#TranslationRushFormApp .btn-outline-light {
  color: #adb5bd;
  border-color: #adb5bd;
}
#TranslationRushFormApp .btn-group-sm > .btn, #TranslationRushFormApp .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.9375rem;
  border-radius: 0.125rem;
}
#TranslationRushFormApp .btn {
  padding: 0.125rem 1rem;
  font-size: 1rem;
  line-height: 1.625;
  border-radius: 1rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  white-space: nowrap;
}
#TranslationRushFormApp .btn-group-sm > .btn, #TranslationRushFormApp .btn-sm {
  padding: 0 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.71875rem;
}
#TranslationRushFormApp .btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
#TranslationRushFormApp .heading {
  margin-bottom: 20px;
}
#TranslationRushFormApp .heading h2 {
  font-size: 1.125rem;
  color: #333941;
  font-weight: 700;
}
#TranslationRushFormApp .md-field label {
  position: absolute;
  top: 23px;
  left: 0;
  pointer-events: none;
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 0.3s;
  font-size: 16px;
  line-height: 20px;
}
#TranslationRushFormApp .md-field {
  width: 100%;
  min-height: 48px;
  margin: 4px 0 24px;
  padding-top: 16px;
  display: flex;
  position: relative;
  font-family: inherit;
}
#TranslationRushFormApp .md-field label {
  color: #6aa9e8;
}
#TranslationRushFormApp .md-field label, #TranslationRushFormApp .md-field.md-has-value label, #TranslationRushFormApp .md-field.md-show-label label {
  pointer-events: auto;
  top: 0;
  opacity: 1;
  font-size: 0.75rem;
}
#TranslationRushFormApp .md-field .md-input, #TranslationRushFormApp .md-field .md-select, #TranslationRushFormApp .md-field .md-textarea {
  height: 32px;
  padding: 0;
  display: block;
  flex: 1;
  border: none;
  background: none;
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-property: font-size, padding-top, color;
  font-family: inherit;
  font-size: 16px;
  line-height: 32px;
  box-shadow: 0 0 transparent;
}
#TranslationRushFormApp .md-field:after, #TranslationRushFormApp .md-field:before {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  transition: border 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  will-change: border, opacity, transform;
  content: " ";
}
#TranslationRushFormApp .md-field:after {
  height: 1px;
  background-color: #adb5bd;
}
#TranslationRushFormApp .small, #TranslationRushFormApp small {
  font-size: 0.8125rem;
  font-weight: 400;
}
#TranslationRushFormApp .mt-8, #TranslationRushFormApp .my-8 {
  margin-top: 4rem !important;
}
#TranslationRushFormApp .file {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 10px 0;
}
#TranslationRushFormApp .file-details {
  position: relative;
  flex-grow: 1;
}
#TranslationRushFormApp .file-title {
  font-size: 0.9375rem;
  font-weight: 600;
}
#TranslationRushFormApp .file-title a {
  color: #376996;
}
#TranslationRushFormApp .stretched-link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}
#TranslationRushFormApp .file-sub {
  font-size: 0.8125rem;
  color: #5e6b7b;
  font-style: italic;
}
#TranslationRushFormApp .file-action {
  margin-left: 1rem;
  margin-top: -3px;
}
#TranslationRushFormApp .md-field.hasError label {
  color: red;
}
#TranslationRushFormApp .md-field.hasError:after {
  background-color: red;
}
#TranslationRushFormApp .service-options .service-option {
  display: flex;
  flex: 1;
  align-items: center;
}
#TranslationRushFormApp .service-options .service-option .service-option-description {
  max-width: 350px;
}
#TranslationRushFormApp .service-options .service-option .service-option-title {
  display: block;
  font-weight: 700;
  color: #333941;
}
#TranslationRushFormApp .service-options .service-option .service-option-sub {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #959ba1;
  line-height: 1.5;
}
#TranslationRushFormApp .service-options .service-option .service-option-action {
  margin-left: auto;
  padding-left: 1rem;
}
#TranslationRushFormApp .service-options .service-option + .service-option {
  margin-top: 20px;
}
#TranslationRushFormApp select.form-control[multiple] {
  margin-top: 10px;
  margin-bottom: 5px;
  border-radius: 0;
}
#TranslationRushFormApp label .select-button {
  cursor: pointer;
}
#TranslationRushFormApp .cart-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #5e6b7b;
}
#TranslationRushFormApp .cart-heading h4 {
  margin: 0 0 5px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #5e6b7b;
}
#TranslationRushFormApp .cart-totals {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #adb5bd;
  font-weight: 600;
  color: #333941;
  font-size: 1.125rem;
}
#TranslationRushFormApp .cart-item-description {
  margin-right: auto;
}
#TranslationRushFormApp .cart-item-price {
  margin-left: 1rem;
  margin-bottom: auto;
  text-align: right;
  font-weight: 700;
  color: #333941;
}
#TranslationRushFormApp .cart + .cart-notices {
  margin-top: 50px;
}
#TranslationRushFormApp .cart-notice + .cart-notice {
  margin-top: 30px;
}
#TranslationRushFormApp .cart-notice .icon-group .icon-group-sub,
#TranslationRushFormApp .cart-notice .icon-group .icon-group-title {
  font-size: 0.9375rem;
}
#TranslationRushFormApp button {
  cursor: pointer;
}
#TranslationRushFormApp .Sidebar {
  background: #F7F8FA;
  padding: 4% 3%;
}
#TranslationRushFormApp .FileUploadBox {
  padding: 5px;
}
#TranslationRushFormApp .FileUploadBox .file button {
  background: #EA6C01;
  border: 0;
  border-radius: 3px;
  color: white;
  padding: 0px 8px;
  cursor: pointer;
}
#TranslationRushFormApp .FileUploadBox .UploadMessage {
  border: 2px dashed grey;
  padding: 10px 10px;
  margin-top: 8px;
  cursor: pointer;
  text-align: center;
}
#TranslationRushFormApp .Urgencies {
  display: block;
}
.text-center {
  text-align: center;
}

@media (max-width: 1200px) {
  #top-menu {
    display: none;
  }

  #et_top_search {
    float: left;
    margin: 0 35px 0 0;
  }

  #et_mobile_nav_menu {
    display: block !important;
  }

  #et-top-navigation .et-cart-info {
    margin-top: 5px;
  }

  #et_search_icon:before {
    top: 7px;
  }
}

/*# sourceMappingURL=style_translations.css.map */
