/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.8.2 - 2014-10-09T23:29:49.716Z
 * License: MIT
 */


/* Style when highlighting a search. */

.ui-select-highlight {
  font-weight: bold;
}

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control > .selectize-input > input {
  width: 100%;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}


/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}


/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ui-select-bootstrap > .ui-select-match {
  /* Instead of center because of .btn */
  text-align: left;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: .3em;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item{
  outline: 0;
}

.ui-select-bootstrap .ui-select-choices-row>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>a:hover, .ui-select-bootstrap .ui-select-choices-row>a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>a {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>a,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>a {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}


.order_subject_area .select2 .select2-result-single .root {
  color: #626971;
  font-weight: normal;
}
.order_subject_area .select2 .select2-result-single .root.highlighted {
  background-color: #2988ca;
  color: #fff;
}
.order_subject_area .select2 .select2-result-single .child {
  border-left: #fdcf7a 1px solid;
  position: relative;
  padding-left: 15px;
}
.order_subject_area .select2 .select2-result-single .child:before {
  border-top: #fdcf7a 1px solid;
  content: '';
  display: block;
  width: 9px;
  height: 1px;
  position: absolute;
  top: 12px;
  left: 0px;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/


.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
          animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
          animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    transform: none;
  }
}

@keyframes wobble {
  0% {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
          animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
          animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
          animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
          animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
          animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
          animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  -webkit-animation-name: flip;
          animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
          animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
          animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
          animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
          animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
          animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
          animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
          animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
          animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    transform: translateX(100%);
    visibility: visible;
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    visibility: visible;
  }

  100% {
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    transform: translateY(100%);
    visibility: visible;
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    visibility: visible;
  }

  100% {
    transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    transform: translateY(100%);
  }
}

@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    transform: translateY(100%);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    transform: translateX(-100%);
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    transform: translateX(-100%);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    transform: translateX(100%);
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    transform: translateX(100%);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    transform: translateY(-100%);
  }
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    transform: translateY(-100%);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}
/* Styling for the ngProgress itself */

#ngProgress {
    margin: 0;
    padding: 0;
    z-index: 99998;
    background-color: #ed6c0a;
    color: #ed6c0a;
    box-shadow: 0 0 10px 0; /* Inherits the font color */
    height: 2px;
    opacity: 0;

    /* Add CSS3 styles for transition smoothing */
    transition: all 0.5s ease-in-out;
}

/* Styling for the ngProgress-container */
#ngProgress-container {
    position: fixed;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}
html, body {
	font-size: 16px;
	font-family: 'Lato', sans-serif;
}
* {
	padding: 0;
	margin: 0;
}
img {
	border: none;
}

h2, h3 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.wrapper {
	background: #fafbfd;
	width: 100%;
	background: url(/assets/header_bg.jpg) top center no-repeat;
	overflow: hidden;
}
.header {
	width: 100%;
	display: inline-block;
	min-height: 300px;
}
.header_content {
	width: 1000px;
	margin: 0 auto;
	/*display: table;*/
}
.header_top {
	width: 100%;
	height: 46px;
	z-index: 9998;
}
.header_top .header_content {
	background: rgba(255,255,255,.8);
	border-radius: 7px;
	margin-top: 10px;
}
.sticky-wrapper.is-sticky .header_top {
	/*background: #f2f4fa;*/
	height: 46px;
}
.sticky-wrapper.is-sticky .header_top .header_content {
	background: #fff;
	border-radius: 0;
	margin-top: 0;
}
.header_middle {
	padding-top: 0;
	width: 1000px;
	margin: 0 auto;
}
.header .links .user {
	float: right;
	font-style: normal;
	font-size: 16px;
	line-height: 27px;
	text-shadow: none;
	margin: 5px 0 0 0;
	width: 173px;
	padding: 5px 0 5px 52px;
	color: #483c49;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	height: auto;

	position: relative;
}
.header .links .user:before {
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	height: 27px;
	background: #fff;
	left: 0px;
	top: 5px;
}
.scroller_wrapper {
	background: rgba(255,255,255,.7);
	width: 100%;
	display: table;
	border-radius: 7px;
	margin: 20px auto 0;
}
.scroller {
	z-index: 9990;
}
.header_discount {
	color: #404e73;
	float: left;
	font-size: 16px;
	width: 370px;
	height: 30px;
	line-height: 30px;
	text-transform: uppercase;
	text-align: center;
	border-right: 1px solid #7a7582;
	margin: 17px 0 0 0;
}
.header_discount b {
	font-weight: normal;
}
.scroller_wrapper > .sticky-wrapper {
	width: 1000px;
	margin: 0 auto;
	min-height: 63px;
}
.scroller_wrapper > .sticky-wrapper.is-sticky .scroller {
	background: #fff;
	height: 63px;
	border-radius: 0;
}
.scroller .button {
	float: left;
	line-height: 27px;
	width: 251px;
	margin-top: 1px;
}
.scroller .button.small {
	margin: 9px 15px 0 15px;
	height: 45px;
}
.chat_now {
	background: url(/assets/chat_now.png) no-repeat;
	display: block;
	width: 40px;
	height: 108px;
	position: fixed;
	top: 50%;
	left: 0px;
	margin-top: -72px;
	z-index: 100;
}
.chat_now:hover {
	background-position: -80px 0;
}
.nav {
	float: left;
}
.nav ul {
	list-style: none;
}
.nav li {
	float: left;
	padding: 11px 0 11px;
	position: relative;
}
.nav li.drop_item > a {
	color: #404e73	;
	margin: 0 0 0 16px;
	position: relative;
	padding: 0 12px 0 0;
}
.nav li.drop_item > a:before {
	background: url(/assets/spritesheet.png) no-repeat;
	background-position: -170px -89px;
	content: '';
	display: block;
	width: 8px;
	height: 5px;
	position: absolute;
	top: 10px;
	right: 8px;
}
.nav li.drop_item:hover > a:before {
	background: url(/assets/spritesheet.png) no-repeat;
	background-position: -170px -89px;
	content: '';
	display: block;
	width: 8x;
	height: 5px;
	position: absolute;
	top: 10px;
	right: 8px;
}
.nav li.drop_item.active > a:before {
	background: url(/assets/spritesheet.png) no-repeat;
	background-position: -170px -89px;
	content: '';
	display: block;
	width: 8px;
	height: 5px;
	position: absolute;
	top: 10px;
	right: 8px;
}
.nav ul li.drop_item > .drop {
	display: none;
	position: absolute;
	top: 46px;
	left: 8px;
	min-width: 114px;
	border-radius: 0 0 7px 7px;
	overflow: hidden;
	z-index: 9999;
}
.nav ul li.drop_item > .drop ul {

}
.nav ul li.drop_item:hover .drop {
	display: block;
}
.nav li.drop_item > .drop ul li {
	overflow: hidden;
	float: none;
	padding: 0;
}
.nav li .drop ul li a {
	background: #fff;
	padding: 5px 19px;
	display: block;
	float: none;
	height: auto;
	line-height: 18px;
	margin: 0;
	font-size: 15px;
	color: #404e73;
}
.nav li .drop ul li a:hover {
	background: #6c7faf;
	color: #fff;
}
.nav a {
	color: #404e73;
	font-size: 15px;
	line-height: 24px;
	font-family: 'Lato';
	font-weight: normal;
	float: left;
	text-decoration: none;
	height: 24px;
	padding: 0;
	margin: 0 10px;
}
.nav li:hover a, .nav li.active a {
	border-bottom: 2px solid #f4867f;
	height: 22px;
}
.nav li.drop_item ul a {
	border-bottom: none;
}
.header_content .links {
	float: right;
}
.header_content .links a,
.header_content .links button {
	color: #fff;
	float: left;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	line-height: 50px;
	height: 52px;
	text-align: center;
	text-decoration: none;
}
.header_content .links button {
	border: none;
	background: none;
}
.header_content .links button:hover {
	cursor: pointer
}
.header_content .links .order_now_button {
	color: #fff;
	width: 160px;
	height: 46px;
	line-height: 46px;
	background: #ff3c30;
	border-radius: 7px;
}
.header_content .links .order_now_button:hover {
	background: #f13628;
}
.header_content .links .logout_button {
	color: #918890;
	font-size: 16px;
	line-height: 34px;
	height: 34px;
	text-decoration: none;
	text-transform: none;
	font-weight: 200;
	background: #eeebf3;
	border-radius: 5px;
	padding: 0 12px;
	margin: 7px 8px 0 0;
	float: right;
}
.header_content .links .logout_button:hover {
	background: #caccdc;
	color: #918890;
}
.header_content .links .login_button {
	color: #918890;
	font-size: 18px;
	text-transform: none;
	height: 44px;
	width: 88px;
	border: 1px solid #918890;
	border-radius: 7px;
	margin: 0 20px 0 0;
	line-height: 44px;
	font-family: 'Lato', sans-serif;
	font-weight: 200;
	background: #fefefe;
}
.header_content .links .login_button:hover{
	background: #e9f3fc;
}
.header .links .notification {
	background: url(/assets/message_notification.png) no-repeat;
	color: #fff;
	float: left;
	font-size: 14px;
	line-height: 22px;
	text-indent: 12px;
	width: 32px;
	height: 30px;
	text-align: center;
	position: relative;
  top: 4px;
  left: 47px;
  float: right;
}
.promo_content .button.medium.yellow {
	width: 213px;
	margin: 35px auto 23px;
	position: relative;
	height: 47px;
	line-height: 47px;
}
.promo_content .button.medium.yellow:before {
	position: absolute;
	content: "";
	display: block;
	height: 1px;
	width: 250px;
	background: url(/assets/promo_sep.png) no-repeat;
	top: -20px;
	left: 50%;
	margin-left: -125px;
}
.header_item {
	display: inline-block;
	width: 100%;
}
.logo {
	float: left;
	margin: 29px 0 4px 8px;
}
.header_right {
	float: right;
}
.header .text {
	text-align: left;
	width: 380px;
	clear: both;
	/*max-height: 58px;*/
	font-size: 20px;
	font-weight: 200;
	padding: 0 0;
	text-transform: none;
	line-height: 26px;
	color: #404e73;
	margin: 0 0 0 17px;
	position: relative;
	right: 7px;
	font-style: italic;
	min-height: 50px;
	max-height: 200px;
}
.header_item .text p {
	color: #2988ca;
	font-size: 14px;
	margin-top: 6px;
}
.online_support {
	float: left;
	margin: 5px 0 0 0;
}
.online_support .button.green {
	float: right;
	color: #fff;
	position: relative;
}
.questions .button.green:after,
.online_support .button:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 90px;
	height: 41px;
	background: url(/assets/chat_phone.png) no-repeat;
	display: block;
}
.questions .button.green:hover:after,
.online_support .button.green:hover:after {
	background-position: 0 -49px;
}
.online_support .button.green {
	background: #46d05d;
  background: linear-gradient(to right, #46d05d 0%,#46d05d 65%,#36c247 100%);
}
.online_support .button.green:hover {
	background: #3fc054;
  background: linear-gradient(to right, #3fc054 0%,#3fc054 65%,#31ad41 100%);
}
.online_support .button.small {
	color: #fff;
	width: 270px;
	height: 41px;
	line-height: 41px;
	text-indent: -65px;
}
.warranty {
	float: left;
	margin: -19px 0 0 10px;
}
.warranty .item {
	float: left;
	margin-right: 7px;
}
.header_left {
	float: left;
}
.social {
	/*margin-top: 8px;*/
	position: relative;
	top: 150px;
	right: -32px;
}
.phone_scroll .sticky-wrapper {
	width: 235px;
}
@-moz-document url-prefix() {
	.phone_scroll .sticky-wrapper {
		width: 256px;
	}
	.phone {
		width: 256px;
	}
}
.phone {
	float: left;
	height: 30px;
	line-height: 30px;
	z-index: 1001;
	width: 347px;
	border-left: 1px solid #7a7582;
	margin: 17px 0 0 0;
}
.phone p {
	color: #404e73;
	float: left;
	font-size: 16px;
	margin-left: 22px;
}
.phone p > span {
	color: #404e73;
	padding: 0 0 0 3px;
}
.phone_drop {
	background: url(/assets/phone_arrows.png) 47px 12px no-repeat;
	background-color: #c2c6d0;
	margin: 0 20px 0 0;
	border-radius: 3px;
	height: 31px;
	width: 70px;
	float: right;
	position: relative;
}
.phone_drop:hover ul {
	display: block;
	position: relative;
	top: -1px;
	z-index: 5;
	border-radius: 0 0 3px 3px;
	box-shadow: 0px 3px 8px 1px #e2e3e5;
}
.phone_drop span {
	color: #fff;
	font-size: 15px;
	line-height: 31px !important;
	display: inline-block;
	cursor: pointer;
	padding: 0 8px 0 9px;
	border-right: 1px solid #fff;
}
.phone_drop ul {
	list-style: none;
	display: none;
}
.phone_drop li {
	overflow: hidden;
}
.phone_drop li a:first-child,
.phone_drop li button:first-child {
	padding-top: 3px;
}
.phone_drop li a,
.phone_drop li button {
	font-size: 16px;
	background: #fff;
	color: #626878;
	display: block;
	overflow: hidden;
	text-decoration: none;
	padding: 0 7px 0 7px;
	line-height: 20px;
}
.phone_drop li button {
	border: none;
	background: none;
}
.phone_drop span:hover {
	background-position: 41px 10px;
	border-radius: 2px;
}
.phone_drop li a:hover,
.phone_drop li button:hover {
	background: #667497;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.sidebar_item.get_price {
	border: none;
	width: 250px;
	box-shadow: 0px 2px 40px 4px #e8e8ec;
	/*overflow: visible;*/
	overflow: hidden;
}
.sidebar_item.get_price .button {
	margin: 0;
}
.sidebar_item.get_price .select2-results {
  max-height: 130px;
}
.sidebar_item.features .sidebar_content {
	/*padding: 55px 0 0 0;*/
	/*background: #fff url(/assets/features_icon.png) center 4px no-repeat;*/
}
.sidebar_item.features .feature_item:first-child {
	border-top: none;
}
.feature_item {
	overflow: hidden;
	font-size: 16px;
	line-height: 18px;
	padding: 8px 0 8px 0;
	border-top: 1px solid #f4f0e9;
	margin: 0 9px;
}
.feature_item b {
	color: #635854;
	font-weight: normal;
	float: left;
	text-transform: uppercase;
}
.feature_item p {
	float: left;
	width: 130px;
	color: 	#6d6b6a;
	font-size: 14px;
	margin-left: 5px;
}
.feature_item span {
	color: #1aa75f;
	float: right;
}
.features .savings {
	color: #1aa75f;
	overflow: hidden;
	text-align: center;
	padding: 7px 6px 7px;
	border-top: 1px solid #d7d0c6;
	margin: 8px 0;
}
.container.main_top .features .savings p {
	color: #1aa75f;
}
.features .savings p {
	font-size: 16px;
	line-height: 24px;
	color: #1aa75f;
	display: inline;
}
.features .savings span {
	color: 	#1aa75f;
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
}
.features .savings span sup {
	font-size: 16px;
}
.activity .sidebar_content {
	padding: 68px 0 18px 0;
	background: url(/assets/activity_bg.png) center 10px no-repeat;
}
.activity_item {
	font-size: 15px;
	padding: 10px 9px 11px 9px;
	width: 230px;
	display: inline-block;
	vertical-align: top;
}
.activity .sidebar_content .activity_item:nth-child(2n-1) {
	background: #fafafa;
}
.sidebar_content .activity_item p {
	color: #635854;
	float: left;
	font-size: 15px;
	line-height: 16px;
	width: 157px;
}
.activity_item span {
	color: #1aa75f;
	text-align: left;
	line-height: 20px;
	font-size: 16px;
	float: right;
	font-weight: bold;
	text-indent: 5px;
}
.content_colomn_text.our_services {
	display: inline-block;
	margin: 17px 0 0 0;
}
.widget h3 {
	font-size: 22px;
  line-height: 26px;
  color: #383252;
  text-align: center;
  text-transform: none;
  font-weight: 200;
}
.widget.our_services {
	margin: 50px 20px 0 15px;
}
.our_services p {
	margin-bottom: 10px;
}
.our_services h3 {
	display: inline-block;
	width: 100%;
	border: none;
	text-transform: none;
	font-weight: normal;
	margin-top: 2px;
}
.our_services ul {
	margin-top: 4px;
}
.container.main_top .our_advantages h2 p,
.container.main_top h2 {
	color: #decf92;
	font-size: 22px;
	line-height: 24px;
	font-weight: bold;
	text-align: center;
}
.our_services li {
	margin-bottom: 9px;
}
.widget.our_advantages {
	overflow: hidden;
	margin: 0 20px 0 15px;
}
.widget.our_advantages h2 {
	position: relative;
}
.advantage_item {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 15px;
}

.advantage_item:first-child .icon {
	background-position: -79px -10px;
}

.advantage_item:nth-child(2) .icon {
	background-position: -130px -10px;
}

.advantage_item:nth-child(3) .icon {
	background-position: -10px -61px;
}
.advantage_item p {
	color: #6d6b6a;
}
.advantage_item p span {
	color: #5c513c;
}
.advantage_item .icon {
	background: url(/assets/spritesheet.png) no-repeat;
	width: 31px;
	height: 31px;
}
.advantage_item .icon img {
	display: none;
}
.advantage_item .icon {
	float: left;
	margin: 0 10px 0 0;
}
.container.main_top .widget .advantage_item p {
	display: inline;
	font-size: 14px;
	line-height: 18px;
	color: #a99e73;
	padding: 0;
}
.our_advantages .photo img {
	vertical-align: top;
}
.our_advantages .photo {
	display: block;
	float: left;
	margin: 5px 55px 0 0;
	text-align: center;
}
.sidebar_left .get_price .main_order_form .item:not(.first-child) label {
	width: 113px;
}
.sidebar_left .get_price .main_order_form .item {
	overflow: visible;
	margin-bottom: 24px;
}
.sidebar_left .get_price .main_order_form .item .select2-container {
	min-width: 110px;
	max-width: 110px;
}
.main_order_form {
	display: inline-block;
	margin-top: 6px;
	width: 100%;
}
/*.main_order_form .radio_buttons.ui-buttonset {
	margin-bottom: 1px;
	margin-left: -1px;
}*/
.main_order_form .item {
	display: block;
	margin: 0 15px 15px 9px;
	overflow: hidden;
}
/*.sidebar_item.get_price .sidebar_title {
	background: #c2c7d7;
	border-bottom: none;
}*/
/*.sidebar.sidebar_right .sidebar_item.get_price .main_order_form .item {
	padding: 0 10px;
	margin: 0 0 9px 0;
}
*/
.sidebar_item.get_price .main_order_form .item {
	/*
	padding: 0 10px;
  margin-bottom: 23px;
  min-height: 20px;
	*/
  margin-bottom: 10px !important;
  min-height: 32px;
}
.sidebar_item.get_price .main_order_form .item:first-child {
	margin-bottom: 14px;
}
.main_order_form .item label {
	font-size: 16px;
	line-height: 18px;
	display: inline-block;
	vertical-align: middle;
	/*width: 85px;*/
	color: #635854;
}
.main_order_form .item label a,
.main_order_form .item label button {
  font-size: 16px;
	line-height: 18px;
	text-decoration: underline;
  border: none;
  background-color: none;
  color: #1662bf;
}
.main_order_form .item label button:hover {
	cursor: pointer;
	text-decoration: none;
}
.main_order_form .item label a:hover {
	text-decoration: none;
}
.main_order_form .item:first-child label,
.main_order_form .item.first-child label {
	overflow: hidden;
	/*width: 100%;*/
	margin-bottom: 7px;
}
.main_order_form .item .select2-container {
	float: right;
	min-width: 138px;
}
.spinner_block {
	float: right;
	position: relative;
}
.main_order_form .button {
	width: 100%;
	cursor: pointer;
}
.widget_380.main_get_price .main_order_form .price_page {
	display: inline-block;
	padding: 0;
	margin: 0 0 0 0;
  position: relative;
  top: -16px;
  left: 142px;
}
.main_order_form .price_page {
	display: inline-block;
	width: 200px;
}
.main_order_form .price_page p {
	font-size: 14px;
	line-height: 24px;
	display: inline;
	color: #969aa6;
	font-style: italic;
}
.main_order_form .price_page span {
	color: #969aa6;
	font-size: 14px;
	padding-right: 9px;
	line-height: 24px;
	font-style: italic;
}
.total_price {
	display: block;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  padding: 5px 6px 3px;
  margin: 14px 0 8px;
}
.sidebar .total_price {
  border-top: 1px solid #d7d0c6;
}
.sidebar_testimonials .sidebar_content {
	padding: 0;
}
.sidebar_slider {
	border-top: #d2dfe5 1px solid;
	font-size: 12px;
	line-height: 18px;
	padding: 23px 15px 16px 15px;
	position: relative;
}
.sidebar_slider:first-child {
	border-top: none;
}
.sidebar_slider_block {
	display: inline-block;
}
.sidebar_slider_item {
	width: 247px;
}
.sidebar_slider_item .slider_photo {
	margin: 0 auto;
	height: 82px;
	width: 82px;
	border-radius: 100%;
	position: relative;
}
.sidebar_testimonials .sidebar_slider {
	padding: 15px 5px 0 5px;
}
.sidebar_slider_prev,
.sidebar_slider_next {
	background-image: url(/assets/sidebar_slider_arrow.png);
	background-repeat: no-repeat;
	display: inline-block;
	width: 38px;
	height: 38px;
	position: absolute;
	top: 41px;
}
.sidebar_slider_prev {
	background-position: 0 0;
	left: 12px;
	bottom: 0;
}
.sidebar_slider_next {
	background-position: -52px 0;
	right: 12px;
	bottom: 0;
}
.sidebar_slider_prev:hover {
	background-position: 0 -42px;
}
.sidebar_slider_next:hover {
	background-position: -52px -42px;
}
.sidebar_slider span {
	color: #687393;
	display: block;
	font-size: 14px;
	line-height: 22px;
	margin: 5px 5px 0;
}
.sidebar_content .sidebar_slider p {
	font-size: 14px;
	line-height: 20px;
	padding: 10px 0;
	margin: 0 4px;
	color: #6d6b6a;
	width: 230px;
	border-bottom: none;
	position: relative;
	border-bottom: 1px solid #d7d0c6;
}
.sidebar_slider_title {
	font-size: 13px;
	line-height: 15px;
	color: #889b8b;
	font-style: italic;
	margin: 7px 5px 0 5px;
	padding-bottom: 10px;
}
.rating_form {
	overflow: hidden;
	width: 226px;
}
.sidebar_testimonials .rating_form {
	padding: 9px 0 9px 30px;
	width: 226px;
	height: 12px;
	border-top: 1px solid #aa8842;
}
.rating {
	margin-right: 0;
}
.lowest_prices_bg {
	background: #eef1f1;
	display: inline-block;
	width: 100%;
	margin-bottom: 11px;
}
.lowest_prices {
	text-align: center;
}
.guaranteed {
	display: inline-block;
	vertical-align: top;
	margin-top: 34px;
}
.lowest_prices .info {
	display: inline-block;
	vertical-align: top;
	width: 380px;
	margin: 17px 68px 0 68px;
	position: relative;
	left: 25px;
}
.lowest_prices .info h2 {
	font-size: 24px;
}
.lowest_prices .info > span {
	color: #29a643;
	font-size: 14px;
	display: block;
}
.lowest_prices .info p {
	color: #2988ca;
	font-size: 16px;
}
.lowest_prices .info p > span {
	font-size: 26px;
}
.lowest_prices .info i {
	color: #616a71;
	display: block;
	line-height: 18px;
	font-size: 14px;
	font-style: normal;
}
.lowest_prices .info .button {
	width: 218px;
	margin: 0 auto;
	position: relative;
	top: 9px;
}
.customer_support {
	display: inline-block;
	vertical-align: top;
	position: relative;
	left: 39px;
	margin-top: 46px;
}
.payment_security .sidebar_content {
	padding: 0px 0px 12px 0px;
}
.payment_security span {
	color: #635854;
	display: block;
	font-size: 15px;
	line-height: 25px;
	padding: 6px 0px 0;
	margin: 0 10px;
}
.payment_security_icons {
	padding: 20px 9px 15px 9px;
	background: url(/assets/payment_secur_bg.png) top no-repeat;
}
.payment_security_item {
	background-color: #e9ebec;
	overflow: hidden;
	padding: 10px 11px 0 3px;
}
.payment_security_item .icon {
	float: left;
	margin-top: -4px;
}
.payment_security_item p {
	color: #4b4b4b;
	float: right;
	line-height: 16px;
	width: 155px;
	font-size: 12px;
	margin-top: 7px;
}
.content_colomn_text.our_first {
	width: 378px;
	float: left;
}
.content_colomn_text.our_first h3 {
	margin-bottom: 21px;
}
.content_colomn_text.our_specialty {
	width: 298px;
	float: right;
	padding-right: 2px;
}
.content_colomn_text.our_specialty h3 {
	margin-bottom: 22px;
}
.content_colomn_text.our_specialty ul {
	margin: 17px 0 1px 0;
}
.widget_380 {
	width: 448px;
	border: 1px solid #d7d0c6;
	border-radius: 4px;
}
.widget_380.main_get_price .widget_content {
	background: #fff;
}
.widget_300 {
	width: 298px;
}
.widget_460 {
	width: 458px;
}
.free_features .widget_title a,
.main_features .widget_title a,
.our_discount .widget_title a,
.payment_security .widget_title a,
.format .widget_title a {
	color: #336482;
	font-size: 20px;
	line-height: 20px;
	font-weight: bold;
	display: block;
}
.free_features .widget_content {
	padding: 23px 19px 17px 19px;
}
.free_features .info {
	float: left;
}
.free_features .info .status {
	background: url(/assets/hat.png) bottom center no-repeat;
	color: #ff6c0f;
	font-size: 46px;
	line-height: 46px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 105px;
}
.widget_380.free_features .widget_content  {
	padding: 15px 19px 17px 19px;
}
.widget_380.free_features .info .savings {
	display: inline-block;
	margin-top: 0;
	text-align: center;
}
.free_features .info .savings {
	display: inline-block;
	margin-top: 23px;
}
.free_features .info .savings p {
	color: #4c4c4c;
	font-size: 20px;
	line-height: 24px;
}
.free_features .info .savings span {
	color: #ec7215;
	display: block;
	font-weight: bold;
	font-size: 24px;
	line-height: 24px;
}
.free_features .info .savings b {
	font-size: 24px;
	line-height: 28px;
}
.free_features .info .addition {
	color: #474d52;
	margin-top: 18px;
}
.free_features .details {
	float: right;
	width: 180px;
}
.widget_380.free_features .details {
	background: url(/assets/bracket.png) 0 25px no-repeat;
	padding-left: 60px;
}
.widget_380.free_features .feature_item {
	border: none;
}
.widget_380.free_features .feature_item p {
	width: 100px;
	font-size: 16px;
	color: #336482;
	text-indent: 35px;
	margin-left: -29px;
	line-height: 16px;
}
.widget_380.free_features .feature_item span {
	font-size: 16px;
	line-height: 16px;
	color: #508b61;
	font-weight: normal;
}
.view_samples {
	margin-top: 13px;
}
.view_samples .widget_content {
	padding: 16px 10px 14px 15px;
}
.view_sample_item {
	display: inline-block;
}
.view_sample_item .photo {
	float: left;
	width: 88px;
	height: 85px;
	margin-left: 5px;
}
.view_sample_item .info {
	float: left;
	width: 160px;
	margin-left: 20px;
}
.view_sample_item .info_item {
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 9px;
}
.view_sample_item .info_item a {
	color: #2988ca
}
.view_sample_item .info_item a:hover {
	text-decoration: none;
}
.view_sample_item .info_item p {
	font-size: 16px;
	line-height: 18px;
	color: #336482;
}
.view_sample_item .info_item span {
	color: #4b4b4b;
	display: block;
}
.view_samples a {
	transition: all 0.3s;
}
.view_samples .sample_prev {
	transition: none;
	background: url(/assets/view_samples_button.png) 0 0 no-repeat;
	float: left;
	margin: 18px 0 18px 18px;
	width: 15px;
	height: 23px;
}
.view_samples .sample_prev:hover {
	background-position: 0 -25px;
}
.view_samples .button {
	color: #fff;
	font-weight: bold;
	text-transform: none;
	float: left;
	font-size: 22px;
	width: 234px;
	height: 54px;
	line-height: 54px;
	margin: 0px;
}
.view_samples .sample_next {
	transition: none;
	background: url(/assets/view_samples_button.png) -19px 0 no-repeat;
	float: right;
	margin: 18px 18px 18px 0;
	width: 15px;
	height: 23px;
}
.view_samples .sample_next:hover {
	background-position: -19px -25px;
}
.view_samples .links {
	background: #61b7ed;
	overflow: hidden;
	height: 54px;
}
.view_samples .sidebar_content {
	padding: 23px 19px 12px 19px;
}
.questions_photo {
	display: block;
}
.sidebar_item.questions {
}
.questions .sidebar_title {
	padding: 8px 8px 3px;
	line-height: 24px;
}
.questions .sidebar_content {
	background: url(/assets/question_bg.png) center 9px no-repeat;
	padding: 197px 0 23px 0;
}
.questions .button.small {
	margin: 0 auto;
	width: 225px;
	height: 41px;
	line-height: 41px;
	color: #fff;
	position: relative;
	text-indent: -75px;
}
.questions .button.green {
	background: #46d05d; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
	background: linear-gradient(to right,  #46d05d 0%,#46d05d 65%,#36c247 100%); /* W3C */
}
.questions .button.green:hover {
	background: #3fc054; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
	background: linear-gradient(to right,  #3fc054 0%,#3fc054 65%,#31ad41 100%); /* W3C */
}
.questions .support {
	color: #1d981d;
}
.questions .support span {
	font-size: 40px;
}
.questions .support p {
	font-size: 22px;
	line-height: 18px;
	width: 90px;
}
.questions .info {
	display: block;
	overflow: hidden;
	text-align: center;
	padding: 0 13px;
}
.questions .info span {
	color: #635854;
	font-size: 15px;
	line-height: 20px;
}
.questions .info .icon {
	float: right;
	margin: 8px 0 0 26px;
}
.rendering_professional {
	margin: 17px 0 0 20px;
	display: inline-block;
}
.widget.main_get_price {
	margin-top: 26px;
}
.main_get_price .widget_content {
	overflow: visible;
}
.widget_300.extra_features .widget_content {
	padding: 10px 10px 1px 10px;
}
.widget_300.extra_features .extra_feature_item .info {
	width: 180px;
}
.extra_features .widget_title {
	background: #f9f9f9;
}
.extra_features .widget_title,
.main_get_price .widget_title,
.discount_programs .sidebar_title {
	padding: 5px 10px;
	text-decoration: none;
}
.main_get_price .main_order_form .item label {
	width: 110px;
	margin-top: 4px;
	text-align: left;
}
.main_get_price .main_order_form .item .spinner_block {
	margin: 0 12px 0 0;
}
.main_get_price .main_order_form .item .spinner {
	width: 91px;
}
.main_get_price .main_order_form .item.first-child label,
.main_get_price .main_order_form .item:first-child label {
	display: inline-block;
	overflow: visible;
}
.main_get_price .main_order_form .item.first-child .radio_currency {
  float: right;
  display: inline-block;
}
.main_get_price .main_order_form .item .select2-container {
	min-width: 305px;
}
.main_get_price .radio_buttons.ui-buttonset {
	width: 305px;
	float: right;
	margin-right: 3px;
}
.main_get_price .spinner {
	width: 43px;
}
.widget_380.main_get_price .main_order_price .total_price {
	text-align: center;
	display: inline-block;
	vertical-align: top;
  padding: 5px 31px 3px 30px;
  margin: 20px 0 8px 13px;
  background: #f6f1ee;
  border-radius: 7px;
  border-top: none;
}
.widget_380.main_get_price .main_order_price {
	width: 100%;
	margin: 0 0 10px 0;
	padding: 0 0 0 0;
	border-top: 1px solid #d7d0c6;
}
.main_order_price {
	float: left;
	width: 130px;
	margin-top: 1px;
}
.main_order_price .total_price p {
	font-size: 14px;
	line-height: 27px;
	display: inline;
	font-weight: 500;
	text-transform: uppercase;
	color: #1aa75f;
	font-weight: bold;
}
.main_order_price .total_price span {
	font-size: 25px;
	line-height: 27px;
	display: inline-block;
	color: #1aa75f;
	font-weight: bold;
}
.main_order_price .total_price span sup {
	font-size: 16px;
}
.widget.extra_features {
	margin-top: 26px;
}
.extra_features .widget_content {
	padding-top: 19px;
	padding-bottom: 14px;
}
.extra_feature_item {
	overflow: hidden;
	margin-bottom: 12px;
}
.extra_feature_item .info {
	float: left;
	width: 190px;
}
.extra_feature_item .info span {
	color: #0098f3;
	font-weight: bold;
	font-size: 20px;
	line-height: 20px;
}
.extra_feature_item .details {
	float: right;
	width: 79px;
}
.extra_feature_item .details span {
	background: #336482;
	color: #fff;
	font-size: 20px;
	line-height: 22px;
	font-weight: bold;
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 5px 0;
}
.extra_feature_item .button {
	margin: 9px 0 0 0 !important;
	display: inline-block;
	width: 100%;
}
.sidebar_item.best_paper .sidebar_title {
	padding: 7px 50px;
}
.best_paper .sidebar_content {
	padding: 0 0 3px 0;
}
.best_paper .best_paper_item:last-child {
	border: none;
}
.best_paper .best_paper_item:first-child {
	margin-top: 10px;
}
.best_paper_item {
	border-bottom: #e4e7f9 1px solid;
	line-height: 24px;
	display: inline-block;
	vertical-align: top;
	width: 228px;
	padding: 1px 0 1px;
	margin: 0 10px;
}
.best_paper_item b {
	color: #635854;
	font-weight: normal;
	float: left;
	padding: 8px 0 8px;
	line-height: 15px;
	font-size: 15px;
	width: 125px;
}
.best_paper_item span {
	color: #1aa75f;
	float: right;
	font-size: 14px;
}
.best_paper_item span strong {
	color: #1aa75f;
	font-size: 14px;
	margin-left: 4px;
	font-weight: normal;
}
.badges {
	width: 250px;
	overflow: hidden;
	margin: 0 0 20px 0;
}
.badges_item {
	float: left;
	margin-left: 0px;
}
.badges_item:first-child {
	margin-right: 13px;
}
.format .sidebar_content {
	padding: 7px 19px 0px 19px;
}
.format_item {
	background: url(/assets/list_arrow_orange.png) left 3px no-repeat;
	overflow: hidden;
	padding-left: 25px;
	margin-bottom: 10px;
}
.format_item p {
	color: #3a4249;
	font-size: 15px;
	line-height: 18px;
}
.format_item p span {
	color: #2c8bc2;
	font-size: 15px;
	font-weight: bold;
	line-height: 18px;
}
.discount_programs .sidebar_content {
	padding-bottom: 12px;
}
.choose_us .sidebar_content {
	padding: 15px 0 3px 0 ;
}
.choose_us ul {
	list-style: none;
}
.choose_us li:nth-child(2n) {
	background: #f6f6f7;
}
.choose_us li {
	color: #635854;
	overflow: hidden;
	line-height: 18px;
	font-size: 15px;
	padding: 11px 0 12px 10px;
}

.choose_us ul.list li:before,
.choose_us ol.list li:before {
	display: none;
}
.banner {
	background: url(/assets/banner.png) no-repeat;
	display: block;
	overflow: hidden;
	margin: 18px auto 35px;
	width: 540px;
	height: 72px;
	text-decoration: none;
	position: relative;
	left: 10px;
}
.banner b {
	color: #2988ca;
	display: block;
	font-size: 20px;
	line-height: 26px;
	text-transform: uppercase;
	width: 460px;
	text-align: center;
	margin-top: 15px;
}
.banner i {
	color: #000000;
	display: block;
	font-size: 18px;
	line-height: 22px;
	width: 460px;
	text-align: center;
}
.banner i strong,
.banner span {
	color: #f3a200;
}
.sidebar_item.main_features {
	float: left;
	width: 298px;
	margin-right: 20px;
	margin-top: 30px;
}
.sidebar_item.our_discount {
	float: left;
	width: 378px;
	margin-top: 30px;
}
.main_features .sidebar_content {
	padding-top: 16px;
	padding-bottom: 16px;
}
.main_features .widget_content .feature_item:last-child {
	margin-bottom: 6px;
}
.main_features .feature_item {
	margin-bottom: 9px;
	border: none;
	padding: 0 19px 0 11px;
}
.main_features .feature_item  b {
	font-size: 16px;
}
.main_features .widget_content {
	padding: 13px 0 0 0;
	overflow: visible;
}
.main_features .feature_item p {
	font-size: 16px;
	color: #336482;
	width: 160px;
}
.main_features .feature_item span {
	font-size: 16px;
	line-height: 20px;
	color: #2c8bc2;
	font-weight: normal;
}
.main_features .savings {
	background: #e1edf7;
	overflow: hidden;
	margin-top: -2px;
	padding: 11px 16px 8px;
}
.main_features .savings p {
	float: left;
	font-size: 20px;
	line-height: 24px;
	color: #4c4c4c;
}
.main_features .savings span {
	float: right;
	font-weight: bold;
	color: #ec7215;
	font-size: 24px;
	line-height: 24px;
}
.widget_380.our_discount {
	width: 448px;
	margin: 0 10px 20px 10px;
}
.widget_380.our_discount .widget_content {
	padding: 21px 15px 10px 9px;
}
.our_discount_item {
	overflow: hidden;
	border-bottom: 1px solid #dddbd8;
}
.our_discount_item .icon {
	float: left;
	width: 33px;
	height: 37px;
	padding: 15px 35px 0 35px;
	border-right: 1px solid #dddbd8;
}
.our_discount_item.first .icon {
	background: url(/assets/file1.png) center no-repeat;
}
.our_discount_item.second .icon {
	background: url(/assets/file2.png) center no-repeat;
}
.our_discount_item.third .icon {
	background: url(/assets/file3.png) center no-repeat;
}
.our_discount_item .text {
	float: left;
	line-height: 24px;
	font-size: 18px;
	padding: 11px 0;
	margin: 0 0 0 30px;
	width: 180px;
	border-right: 1px solid #dddbd8;
	color: #6d6b6a;
}
.our_discount_item .text b,
.our_discount_item .text sup {
	color: #e45852;
	font-weight: normal;
}
.our_discount_item .text sup {
	text-transform: uppercase;
	font-size: 12px;
}
.widget .our_discount_item p {
	font-size: 18px;
	line-height: 20px;
	font-weight: bold;
	color: #e45852;
	float: right;
	/*width: 91px;*/
	padding: 12px 13px 0 0;
}
.widget .our_discount_item .text p {
	padding-top: 0;
}
/*.widget .our_discount_item.first {
	border-top: 1px solid #c2c5cf;
	color: #6aa4b1
}
.widget .our_discount_item.second {
	color: #45916a;
}
.widget .our_discount_item.third {
	color: #e48b49;
}
.our_discount_item.first p {
	color: #6aa4b1;
}
.our_discount_item.first p span {
	color: #6aa4b1;
}
.our_discount_item.second p {
	color: #45916a;
}
.our_discount_item.second p span {
	color: #45916a;
}
.our_discount_item.third p {
	color: #e48b49;
}
.our_discount_item.third p span {
	color: #e48b49;
}*/
.our_discount .addition {
	color: #616a71;
	font-size: 12px;
	padding-top: 4px;
}
.search_form {
	display: inline-block;
	width: 100%;
	margin-top: 12px;
}
.search_form h3 {
	margin-top: 5px;
	border-bottom: none;
	text-transform: none;
	margin-bottom: 2px;
	color :#24333c;
}
.search_form .input {
	border: #3e8dbe 1px solid;
	color: #718696;
	float: left;
	font-style: italic;
	font-size: 16px;
	width: 199px;
	height: 30px;
	line-height: 30px;
	border-radius: 0;
	outline: none;
	padding: 0 10px;
}
.search_form .button {
	cursor: pointer;
	float: left;
	width: 87px;
	text-transform: none;
	height: 30px !important;
	line-height: 20px !important;
	margin: 0 0 0 10px !important;
}
.bottom_text {
	display: inline-block;
	margin-top: 18px;
}
.footer {
	background: #fff;
	margin-top: 20px;
	/*overflow: hidden;*/
	border-top: 2px solid #d0cfd7;
}
.safe_bg {
	background: #f2f0fb;
	width: 100%;
	overflow: hidden;
	height: 85px;
  z-index: 1;
  position: relative;
  margin: -2px 0 0 0;
}
.safe {
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	padding: 1px 0 0 0;
}
.safe .icon {
	float: left;
	margin: 16px 0 0 0;
}
.safe p {
	color: #6d6b6a;
	float: left;
	font-size: 14px;
	line-height: 18px;
	width: 570px;
	margin: 18px 0 0 36px;
}
.safe p a {
	color: #6d6b6a;
	text-decoration: none;
}
.safe p a:hover {
	text-decoration: underline;
}
.safe .button {
	float: right;
	margin-top: 18px;
	margin-right: 2px;
	width: 214px;
}
.safe .button.medium {
	height: 45px;
	font-size: 16px;
	line-height: 44px;
	margin-top: 12px;
}
.footer_content {
	width: 1000px;
	overflow: hidden;
	margin: 20px auto 0;
	padding: 0 10px 20px;
}
.footer_details {
	float: left;
	width: 680px;
}
.footer_nav {
	overflow: hidden;
	margin-top: 12px;
}
.footer_nav ul {
	list-style: none;
	margin-left: -14px;
	overflow: hidden;
}
.footer_nav li {
	padding-left: 18px;
	padding-right: 18px;
	border-right: 1px solid #d0cfd7;
	float: left;
}
.footer_nav li:last-child {
	border: none;
}
.footer_nav a {
	color: #4e4944;
	float: left;
	font-size: 14px;
	padding: 2px 0 3px 0;
	text-decoration: none;
}
.footer_nav li:first-child a {
	border-left: none;
}
.footer_nav a:hover {
	color: #8b8987;
}
.footer_links {
	overflow: hidden;
	margin-top: 25px;
}
.footer_links ul {
	float: left;
	list-style: none;
	width: 130px;
	margin-right: 33px;
}
.footer_links li {
	display: block;
}
.footer_links a {
	color: #9896a0;
	display: block;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 12px;
}
.footer_links a:hover {
	color: #7c788c;
}
.footer_bottom {
	color: #4e4944;
	font-size: 14px;
	line-height: 18px;
	overflow: hidden;
	margin-top: 10px;
	border-top: 1px solid #d0cfd7;
	border-bottom: 1px solid #d0cfd7;
	padding: 15px 0;
}
.footer_bottom .location {
	background: url(/assets/location.png) left center no-repeat;
	float: left;
	padding-left: 30px;
	width: 210px;
	border-right: 1px solid #d0cfd7;
	padding-right: 20px;
	margin-right: 28px;
}
.footer_bottom .call {
	/*background: url(/assets/phone.png) left center no-repeat;*/
	float: left;
	height: 38px;
	padding-left: 28px;
	line-height: 38px;
	width: 110px;
	padding-right: 16px;
	border-right: 1px solid #d0cfd7;
	margin-right: 20px;
	position: relative;;
}

.footer_bottom .call:before {
	background: url(/assets/spritesheet.png) no-repeat;
	background-position: -10px -114px;
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 26px;
	margin-top: -13px;
}
.footer_bottom .email {
	color: #4e4944;
	float: left;
	height: 38px;
	line-height: 38px;
	padding-left: 28px;
	text-decoration: none;
	position: relative;
}
.footer_bottom .email:before {
	background: url(/assets/spritesheet.png) no-repeat;
	background-position: -130px -61px;
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 14px;
	margin-top: -7px;
}
.footer_bottom .email:hover {
	text-decoration: underline;
}
.footer_info {
	border-left: 1px solid #d0cfd7;
	border-right: 1px solid #d0cfd7;
	float: right;
	border-radius: 2px;
	width: 206px;
	margin: 5px 0 0 0;
	padding: 14px 21px 0 21px;
}
.we_accept {
	float: left;
	width: 118px;
}
.verified_by h3,
.we_accept h3 {
	color: #524542;
	text-transform: none;
	font-weight: normal;
	font-size: 16px;
	text-align: center;
}
.accept_block {
	width: 150px;
	float: left;
	margin-top: 12px;
}
.accept_item {
	float: left;
	width: 51px;
	height: 32px;
	margin: 0 10px 8px 0;
}
.verified_by {
	float: right;
}
.verified_by h3 {
	margin-bottom: 9px;
}
.verified_item {
	margin-bottom: 8px;
	float: right;
	clear: 	both;
	width: 	79px;
}
.copyright {
	color: #a3a3a3;
	font-size: 13px;
	line-height: 	14px;
	width: 100%;
	text-align: center;
	clear: both;
	padding-top: 34px;
}
.follow_us {
	display: block;
	float: left;
	margin: 25px 0 0 0;
}
.follow_us p {
	display: inline-block;
	font-size: 12px;
	line-height: 25px;
	color: #9397ad;
	margin-right: 10px;
}
.follow_item {
	background: url(/assets/spritesheet.png) no-repeat;
	width: 23px;
	height: 24px;
	display: inline-block;
	margin: 0 3px 0;
	vertical-align: bottom;
	cursor: pointer;
}
.follow_item.fb {
	background-position: -61px -102px;
}
.follow_item.google {
	background-position: -127px -102px;
}
.follow_item.twit {
	background-position: -94px -102px;
}
.follow_item.fb:hover {
	background-position: -61px -131px;
}
.follow_item.google:hover {
	background-position: -127px -130px;
}
.follow_item.twit:hover {
	background-position: -94px -130px;
}
.sidebar_selected_extras .sidebar_content {
	padding: 10px 0 0 0;
}
.sidebar_extras_item:nth-child(2n) {
	background: #fafafa;
}
.sidebar_extras_item {
	overflow: hidden;
	padding: 8px 8px 8px 8px;
	border-bottom: 1px solid #e7e3dd;
}
.sidebar_extras_item:last-child {
	border-bottom: none;
}
.sidebar .sidebar_extras_item p {
	color: #635854;
	font-size: 15px;
	display: block;
}
.sidebar_extras_item b {
	color: #1aa75f;
	font-size: 15px;
	font-weight: normal;
	text-transform: uppercase;
	float: left;
}
.sidebar_extras_item span {
	font-size: 16px;
	float: right;
	text-align: right;
	font-weight: bold;
	color: #1aa75f;
	line-height: 18px;
	width: 60px;
}
.sidebar_selected_extras .savings {
	border-top: #d2dfe5 1px solid;
	overflow: hidden;
	padding: 18px 10px 13px 10px;
}
.sidebar_selected_extras .savings p {
	color: #000;
	float: left;
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
}
.sidebar_selected_extras .savings span {
	color: #2988ca;
	float: right;
	font-weight: bold;
	font-size: 24px;
	line-height: 24px;
}
.extras {
	border: 1px solid #d7d0c6;
	display: table;
	margin: 0 20px 0 0;
	background: #fff;
	border-radius: 4px;
}
.extras_item {
	overflow: hidden;
	padding: 0 0 0 0;
}
.extras_title {
	color: #434857;
	font-size: 18px;
	font-weight: 500;
	padding: 15px 20px 6px 20px;
	background: url(/assets/list_point.png) 8px 25px no-repeat;
}
.extras_subitem {
	border-bottom: #d7d0c6 1px solid;
	border-top: #d7d0c6 1px solid;
	display: table;
	overflow: hidden;
	margin: -1px 0 0 0;
}
.extras_item:last-child .extras_subitem:last-child {
	border-bottom: none;
}
.extras_subitem.odd {
	background: #fbfbfe;
}
.extras_info {
	display: table-cell;
	border-right: 1px solid #d7d0c6;
	padding: 15px 0 15px 0;
	vertical-align: middle;
}
.extras_info b {
	color: #4d4759;
	font-size: 17px;
	padding-left: 20px;
	background: url(/assets/list_point.png) 8px 11px no-repeat;
}
.extras_info span {
	display: block;
	color: #4d4759;
	font-size: 16px;
	padding-left: 20px;
}
.extras_info p {
	color: #6d6b6a;
	font-size: 15px;
	line-height: 20px;
	padding: 5px 0 0 20px;
}
.extras_price {
	color: #1aa75f;
	font-size: 15px;
	font-weight: bold;
	display: table-cell;
	text-align: right;
	width: 73px;
	padding: 5px 9px 5px 0;
	background: #fdfdfe;
}
.extras_button {
	overflow: hidden;
	padding: 40px 0 45px;
}
.extras_button .button.big {
	width: 252px;
	line-height: 45px;
	margin: 0 auto;
	height: 45px;
	font-weight: 200;
}
.order {
  display: inline-block;
  margin: 0 0 20px 0px;
  width: 728px;
  background: #FFF;
  border: 1px solid #D7D0C6;
  border-radius: 4px;
  -moz-border-radius: 4px;
}
.order.field_item .need_item {
	display: inline-block;
	margin: 0 0 20px 0px;
	width: 728px;
	background: #fff;
	border: 1px solid #d7d0c6;
	border-radius: 4px;
	-moz-border-radius: 4px;
}
.field_item {
	display: inline-block;
	width: 95%;
	padding: 0 2.5%;
	margin-bottom: 17px;
	position: relative;
}
.field_item label {
	width: 159px;
	color: #635854;
	float: left;
	font-size: 15px;
	margin: 4px 11px 0 0;
	position: relative;
}
.field_item label a {
	color: #5797ec;
	font-weight: normal;
}
.field_item label a:hover {
	text-decoration: none;
}
.field_item label i {
	color: #636363;
	display: block;
	font-style: italic;
	font-weight: 200 !important;
	font-size: 13px;
	line-height: 16px;
}
.field_item label sup {
	color: #ed1c24;
	font-size: 16px;
	line-height: 12px;
	margin-bottom: -3px;
	position: absolute;
}
.field_item .input {
	float: left;
	width: 282px;
	margin-bottom: 16px;
}
.field_item .textarea {
	width: 438px;
	height: 90px;
	vertical-align: top;
	float: left;
	margin-bottom: 16px;
}
.field_item .ui-buttonset {
	float: left;
}
.field_item .format_radio {
	float: left;
	width: 438px;
}
.field_item .academic_level_radio {
	width: 490px;
	float: left;
}
.order_first_deadline p,
.order_spacing p {
	clear: both;
	padding: 3px 0 0 156px;
	color: #9e957e;
	font-size: 12px;
	line-height: 14px;
	font-style: italic;
}
.writer_level {
	margin: 7px 0 0 0;
}
.order_first_deadline p span {
	color: #4f8f69;
	font-weight: bold;
}
.order_first_deadline .field_item .academic_level_radio .radio_buttons .ui-state-default .ui-button-text {
	vertical-align: top;
	height: 21px;
	padding: 3px 5px 0;
	border-radius: 2px;
	width: auto;
	margin: 0 10px 0 0;
}
.field_item .academic_level_radio .radio_buttons .ui-state-default .ui-button-text {
	vertical-align: top;
	height: 28px;
	width: 100%;
}
.field_item .format_radio .radio_buttons .ui-state-default .ui-button-text {
	vertical-align: top;
	height: 16px;
	width: 100%;
}
.field_item .radio_spacing {
	width: 315px;
	float: left;
}
.field_item .radio_currency {
	width: 304px;
	float: left;
}
.field_item .select2-container {
	float: left;
	width: 304px;
}
.free_quote .order_urgency .field_item .select2-container {
	width: 192px;
}
.payment_method .radio_currency,
.customer_item.last .radio_currency {
	width: 316px;
}
.field_item .checker {
	float: left;
}
.field_item .need_item {
	float: left;
	margin: 6px 0 0 10px;
}
.field_item .need_item label {
	font-size: 12px;
	line-height: 30px;
	font-style: italic;
	color: #626878;
	margin-left: 5px;
	width: 60px;
}
.field_item .radio_buttons.ui-buttonset {
	margin-right: -1px;
}
.order_night_calls .field_item .done {
	margin-top: 12px;
}
.field_item .done {
	background: url(/assets/done.png) center center no-repeat;
	display: block;
	width: 16px;
	height: 16px;
	margin: 4px 0 0 10px;
	float: left;
}
.field_item .fail {
	background: url(/assets/fail.png) center center no-repeat;
	display: block;
	float: left;
	width: 16px;
	height: 16px;
	margin: 4px 0 0 10px;
}
.field_item .spinner_block {
	float: left;
	display: table;
	position: relative;
	margin-bottom: 15px;
}
.order_topic label,
.order_description_field label,
.order_paper_format label,
.order_numbers_pages label,
.order_urgency label {
}
.order_numbers_pages .field_item .spinner_block {
	display: block;
	float: left;
	margin: 10px 0 0 0;
}
.order_numbers_pages .done {
	margin: 12px 0 0 3px;
}
.order_academic_level .done,
.order_academic_level .fail {
	margin-top: 12px;
}
.footer_link_page .widget,
.blog_read .widget {
	background: #fff;
	margin: 0 auto;
	display: block;
	overflow: hidden;
}
.price_item .tooltip_block {
	background: url(/assets/tooltip_icon.png) 0px 0 no-repeat;
	float: right;
	margin: 2px 0px 0 0;
}
.widget_380.main_get_price .tooltip_block {
	background: url(/assets/tooltip_icon.png) 0px 0 no-repeat;
	float: right;
	margin: 2px 0px 0 4px;
}
.tooltip_block {
	background: url(/assets/tooltip_icon.png) no-repeat;
	float: left;
	cursor: pointer;
	width: 23px;
	height: 23px;
	position: relative;
	z-index: 50;
	display: inline-block;
	margin: 5px 0 0 5px;
}
.ui-tooltip {
	background: #fff;
  box-shadow: 0 0px 10px 1px #e9e9e9;
	color: #616a71;
	width: 115px;
	font-size: 13px;
	line-height: 18px;
	text-align: left;
	display: block;
	padding: 10px;
	position: absolute;
	z-index: 100;
	border-radius: 4px;
}
.ui-tooltip:before {
	display: block;
	position: absolute;
	content: "";
	background: url(/assets/tooltip_arrow.png) no-repeat;
	left: -19px;
	top: 50%;
	margin-top: -14px;
	height: 28px;
	width: 19px;
}
.field_item .tooltip:hover {
	background-position: -20px 0;
}
.order_urgency .price_page {
	float: left;
	margin: 4px 0 0 9px;
}
.order_urgency .price_page p {
	display: inline-block;
	font-size: 11px;
	color: #626878;
	line-height: 15px;
}
.order_urgency .price_page span {
	color: #53a675;
	font-size: 12px;
	font-weight: bold;
}
.order_urgency .tooltip_block {
	margin: 3px 0 0 10px;
}
.order_proofread_editor .price_page {
	float: left;
}
.order_proofread_editor .price_page span {
	color: #1aa75f;
	font-size: 15px;
	margin: 6px 0 0 5px;
	float: left;
}
.order_proofread_editor .price_page p {
	color: #a4a4a4;
	float: left;
	font-style: italic;
	font-size: 14px;
	margin: 7px 0 0 8px;
}
.order_urgency .tooltip {
	margin: 5px 0 0 0;
}
.order_urgency .done {
	margin: 6px 0 0 8px;
}
.order_proofread_editor .tooltip {
	margin: 3px 0 0 5px;
}
.field_item .files_list {
	padding-left: 173px;
	margin: 10px 0 10px 0;
	float: left;
	clear: both;
}
.field_item .files_list ul {
	list-style: none;
}
.field_item .files_list li {
	overflow: hidden;
	margin-bottom: 4px;
}
.field_item .files_list .icon {
	background: url(/assets/delete_file.png) no-repeat;
	float: left;
	width: 14px;
	height: 14px;
	margin: 2px 2px 0 0;
}
.field_item .files_list a {
	color: #1662bf;
	float: left;
	text-decoration: none;
	font-size: 13px;
}
.field_item .files_list a:hover {
	text-decoration: underline;
}
.need_item p {
	color: #9e957e;
	font-size: 12px;
	font-style: italic;
	line-height: 16px;
}
.language_style_item {
	float: left;
	margin: 2px 8px 4px 0;
}
.language_style_item label {
	color: #6d6b6a;
	font-size: 15px;
	line-height: 20px;
	float: none;
}
.order_language_style .radio_buttons.ui-buttonset {
	width: 498px;
}
.order_language_style .radio_buttons .ui-state-default {
	width: 50%;
}
.order_language_style label p {
	display: inline;
	font-style: italic;
}
.order_number_sources .field_item .input {
	width: 168px;
	margin-top: 10px;
}
.order_number_sources .checker {
	margin-right: 4px;
}
.order_number_sources .done {
	margin: 7px 0 0 4px;
}

.order_number_sources .ui-spinner {
	display: block;
	float: left;
	width: 190px;
	height: 30px;
	position: relative;
	border: none;
	margin-top: 10px;
}

.order_number_sources .field_item .ui-spinner input {
	margin-top: 0;
	text-align: center;
}

.order_number_sources .ui-spinner .ui-spinner-button.ui-spinner-down {
	width: 30px;
	height: 30px;
	left: 0;
}

.order_number_sources .ui-spinner .ui-spinner-button.ui-spinner-up {
	width: 30px;
	height: 30px;
	right: 0;
}

.order_numbers_pages .input {
	width: 38px;
}
.order_numbers_pages .tooltip_block {
	margin: 12px 0 0 10px;
}
.price_item .tooltip_text,
.widget_380.main_get_price .tooltip_text {
	font-size: 12px;
	margin: 0 5px 0 14px;
	line-height: 15px;
	width: 75px;
	color: #626878;
	float: right;
	font-style: italic;
}
.widget_380.main_get_price .tooltip_text {
	margin-right: 0;
}
.order_numbers_pages .tooltip_text {
	color: #626878;
	float: left;
	width: 80px;
	line-height: 14px;
	font-size: 11px;
	font-style: italic;
	margin: 10px 0 0 10px;
}
.radio_specialist {
	float: left;
	width: 382px;
}
.order_urgency .select2-container {
	min-width: 110px;
	width: 190px;
}
.order_urgency .tooltip {
	margin: 5px 0 0 5px;
}
.order_urgent_assign {
	margin-bottom: -5px;
}
.order_one_page_summary .checker,
.order_samples_view .checker,
.order_writer_assign .checker,
.order_proofread_editor .checker,
.order_urgent_assign .checker {
	margin: 2px 0 0 -2px;
}
.order_one_page_summary .price,
.order_samples_view .price,
.order_writer_assign .price,
.order_urgent_assign .price {
	color: #1aa75f;
	float: left;
	font-size: 15px;
	line-height: 17px;
	margin: 10px 0 0 5px;
	font-style: normal;
}
.order_one_page_summary .tooltip,
.order_samples_view .tooltip,
.order_writer_assign .tooltip,
.order_urgent_assign .tooltip {
	margin: 5px 0 0 9px;
}
.order_night_calls {
	margin: 5px 0 2px 0;
}
.order_night_calls .tooltip_block {
	margin-top: 10px;
}
.order_night_calls .field_item label {
	margin-top: 14px;
}
.order_night_calls .checker {
	margin: 2px 5px 0 0;
}
.free_quote .order_night_calls .checker {
	margin: 1px 4px 0 0;
}
.order_proofread_editor .price_page {
	margin-top: 5px;
}
.order_additional_materials .input {
	width: 282px;
	margin-right: -1px;
}
.order_upload .button,
.order_additional_materials .button {
	cursor: pointer;
	width: 124px;
	position: relative;
}
.order_upload .button.small,
.order_additional_materials .button.small {
	line-height: 34px;
	height: 34px;
	margin: 0px 0 0 19px;
	float: left;
	color: #fff;
	font-size: 18px;
	width: 152px;
}
.upload_later {
	clear: both;
	margin-left: 167px;
}
.upload_later label {
	font-size: 13px;
	line-height: 28px;
	color: #453a30;
}
.upload_later p {
	font-size: 12px;
	line-height: 18px;
	font-style: italic;
	color: #9e957e;
}
.order_language_style .done {
	margin-left: -3px;
}
.order_writers_id .field_item,
.order_discount_code .field_item {
	margin-bottom: 0;
}
.order_writers_id .input,
.order_discount_code .input {
	width: 282px;
}
.order_discount_code {
	position: relative;
}
.order_discount_code p {
	font-size: 12px;
	line-height: 14px;
	color: #9e957e;
	position: absolute;
	bottom: -16px;
	left: 167px;
}
.order_save {
	padding: 3px 0 0 0;
}
.order_save p {
	color: #1aa75f;
	float: left;
	font-size: 18px;
	font-weight: bold;
	line-height: 20px;
	margin-top: 3px;
}
.order_save p sup {
	font-size: 14px;
}
.order_save span {
	color: #453a30;
	float: left;
	font-size: 13px;
	line-height: 20px;
	margin: 5px 0 0 5px;
}
.order_total {
	overflow: hidden;
	width: 600px;
	margin: 10px auto 30px;
}
.order_total_price {
	color: #1aa75f;
	overflow: hidden;
	text-align: center;
	padding: 10px 0;
	text-transform: uppercase;
}
.order_total_price p {
	font-size: 14px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
	float: left;
	background: #f6f1ee;
	border-radius: 5px 0 0 5px;
	padding: 15px 0 3px 24px	;
}
.order_total_price span {
	font-size: 25px;
	line-height: 26px;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
	float: left;
	background: #f6f1ee;
	padding: 13px 33px 5px 0;
	border-radius: 0 5px 5px 0;
	margin-right: 29px;
}
.order_total_price span sup {
	font-size: 14px;
	line-height: 14px
}
.sign_in {
	margin: 20px 0 0 199px;
}
.sign_in .button {
	width: 252px;
	margin: 0 auto;
}
.sign_in .button.green {
	color: #fff;
	margin-left: 18px;
	font-style: normal;
}
.sign_in a {
	font-size: 14px;
	line-height: 24px;
	color: #1662bf;
	margin: 30px 0 0 76px;
	display: block;
}
.sign_in a:hover {
	text-decoration: none;
}
.tab_item .payment_method h3,
.tab_item .customer_item.last h3 {
	font-size: 18px;
  line-height: 24px;
  color: #383252;
  font-weight: normal;
  text-transform: none;
  padding: 0 19px;
  text-align: left;
  position: relative;
}
.tab_item .payment_method h3:after,
.tab_item .customer_item.last h3:after {
  position: absolute;
  display: block;
  content: "";
  width: 607px;
  height: 1px;
  left: 20px;
  bottom: -5px;
  background: url(/assets/title_bg.png) no-repeat;
}
.order_agreement {
	font-size: 14px;
	line-height: 16px;
	color: #453a30;
	padding: 0 0 20px 216px;
	overflow: hidden;
	clear: both;
	width: 560px;
}
.order_agreement .input_error .validation-error,
.order_agreement .input_error .validation_error {
	margin: -8px 0 0 46px;
}
.order_agreement .input_error .validation-error a,
.order_agreement .input_error .validation_error a {
	color: #f15f59;
}
.payment_method .order_agreement {
	font-size: 12px;
	line-height: 16px;
	color: #a59c83;
	font-style: italic;
	padding: 7px 0 4px 169px;
	clear: both;
	width: 460px;
}
.order_agreement a {
	color: #1662bf;
	text-decoration: none;
}
.order_agreement a:hover {
	text-decoration: underline;
}
.selected_extras {
	background: #fff;
	display: inline-block;
	width: 695px;
	padding: 10px 0 4px 22px;
	margin-top: 1px;
}
.customers_tabs .selected_extras {
	margin-top: 11px;
}
.selected_extras h3 {
	margin-left: 22px;
}
.customer_block .customer_item .field_item label {
	margin-right: 5px;
}
.free_quote .customer_block .customer_item .field_item label {
	margin-right: 27px;
}
.customer_block .customer_item.last .order_currency .field_item label,
.customer_block .customer_item.last .order_select_method .field_item label {
	margin-right: 26px;
	width: 210px;
}
.customer_block .customer_item .field_item label sup {
	margin-left: 2px;
	padding-top: 5px;
}
.selected_extras_item:before {
	display: block;
	content: '';
	height: 1px;
	background: #cae2f1;
	position: absolute;
	left: 0;
	top: -4px;
	right: 130px;
}
.selected_extras_item {
	display: inline-block;
	width: 100%;
	padding: 0 0 0 10px;
	position: relative;
}
.selected_extras_item.first:before {
	display: none;
}
.selected_extras_name {
	line-height: 18px;
	color: #616a71;
	float: left;
	font-size: 15px;
	width: 420px;
	margin: 3px 0 0 0;
}
.selected_extras_name span {
	color: #2c4f65;
	font-size: 17px;
	font-weight: bold;
	text-transform: uppercase;
}
.selected_extras_name b {
	color: #eb640a;
	text-transform: uppercase;
}
.selected_extras_price {
	color: #1b991b;
	font-weight: bold;
	float: left;
	font-size: 17px;
	line-height: 18px;
	width: 87px;
	text-align: right;
	margin: 5px 0 0 22px;
}
.selected_extras_price  p {
	font-weight: normal;
	font-size: 12px;
	line-height: 13px;
	color:#537483;
	margin-top: -2px;
	margin-bottom: -3px;
}
.selected_extras_item .tooltip {
	margin: 4px 0 0 11px;
}
.selected_extras_item .button {
	float: left;
	width: 110px;
	margin-left: 20px;
}
.customer_item {
	display: inline-block;
	width: 100%;
}
.customer_item .field_item {
	margin-bottom: 4px;
}
.payment_content .payment_content_title:first-child h3:before {
	display: none;
}
.payment_content .payment_content_title h3:before {
	content:'';
	display: block;
	width: 18px;
	height: 18px;
	background: url(/assets/payment_lock.png) no-repeat;
	position: absolute;
	left: -23px;
	top: 1px;
}
.payment_content .payment_content_title h3 {
	font-weight: bold;
	position: relative;
	font-size: 20px;
	line-height: 21px;
	color: #2d5066;
}
.payment_content .payment_secure {
	font-size: 13px;
	color: #385e78;
	line-height: 14px;
}
.customer_item.last h3:before {
	content:'';
	display: block;
	width: 18px;
	height: 18px;
	background: url(/assets/payment_lock.png) no-repeat;
	position: absolute;
	left: 7px;
	top: 15px;
}
.customer_item.last h3 {
	font-weight: bold;
	position: relative;
	background-color: #f0f9ff;
	font-size: 20px;
	line-height: 21px;
	color: #2d5066;
	text-transform: uppercase;
	padding: 13px 0 0 28px;
	margin: 0;
}
.customer_item.last .payment_secure {
	font-size: 13px;
	color: #385e78;
	line-height: 14px;
	padding: 0 0 13px 29px;
	background-color: #f0f9ff;
	margin-bottom: 19px;
}
.payment_content .payment_secure span,
.customer_item.last .payment_secure span {
	font-weight: bold;
}
.customer_item.last .order_currency label,
.customer_item.last .order_select_method label {
	width: 	220px;
}
.free_quote .customer_item h3,
.tab_item .customer_item h3 {
	font-size: 16px;
	line-height: 24px;
	font-weight: 	normal;
	text-transform: none;
	padding: 0 0 2px 30px;
	color: #d2cabf;
	margin: 0 0 10px 0;
  position: relative;
  top: -82px;
  left: -10px;
  display: inline-block;
  vertical-align: top;
  width: auto;
}
.order_phone_number .plus,
.order_addittion_number .plus {
	color: #616a71;
	float: left;
	font-size: 18px;
	margin: 2px 5px 0 0;
}
.order_phone_number .input,
.order_addittion_number .input {
	margin-bottom: 3px;
}
.order_addittion_number {
	margin: -4px 0 -3px 0;
}
.order_addittion_number label,
.order_phone_number label {
	position: relative;
}
.order_phone_number .add_number {
	position: absolute;
	top: 20px;
	left: 62px;
	color: #5797ec;
	font-size: 13px;
}
.order_phone_number .add_number:before {
	background: url(/assets/plus_free.png) no-repeat;
	width: 7px;
	height: 7px;
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: -10px;
}
.order_addittion_number .remove_number {
	color: #e83636;
	left: 151px;
	position: absolute;
	top: 25px;
	font-size: 13px;
}
.order_phone_number .add_number:hover,
.order_addittion_number .add_number:hover,
.order_addittion_number .remove:hover {
	text-decoration: none;
}
.order_addittion_number > label {
		margin: 4px 13px 0 5px;
}
.order_phone_number {
	margin-top: 10px;
}
.phone_number_item {
	float: left;
	position: relative;
	margin-right: 12px;
}
 .phone_number_item.state_area_code label,
 .phone_number_item.country_code label {
	width: 60px;
}
.phone_number_item .input_error .validation-error,
.phone_number_item .input_error .validation_error {
	margin-left: 0;
}
/*.phone_number_item.phone_number .input_error .validation-error,
/*.phone_number_item.phone_number .input_error .validation_error {
	margin-top: 63px;
}*/
.phone_number_item label {
	color: #a1a2a6;
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
	line-height: 13px;
	clear: both;
	float: left;
	font-style: italic;
}
.country_code .input {
	padding: 0 8px 0 3px;
	box-shadow: none;
	width: 36px;
	text-align: center;
	background: #f7f3ef;
}
.phone_number .input {
	width: 117px;
}
.state_area_code .input {
	width: 31px;
	padding: 0 4px 0 12px;
}
.state_area_code {
	width: 52px;
}
.country_code {
	width: 52px;
}
.settings .field_item .phone_number .input {
	width: 219px;
}
.settings .field_item .phone_number label,
.settings .field_item .country_code label {
  color: #a1a2a6;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  line-height: 13px;
  clear: both;
  float: left;
  font-style: italic;
  width: 60px;
}
.phone_number {
	width: 135px;
}
.radio_method {
	float: left;
	width: 318px;
}
.payment .total_price {
	margin: 16px 0 0 0;
	width: 212px;
	float: left;
	display: block;
}
.balance_block .total_price,
.profile_order .total_price {
	width: 220px;
	float: left;
	display: block;
	margin: 16px 0 0 27px;
}
.customers_tabs .total_price p,
.profile_order .total_price p {
	color: #2d5066;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: bold;
}
.customers_tabs .total_price span,
.profile_order .total_price span {
	color: #2d5066;
	font-size: 28px;
}
.payment .order_total .savings {
	float: left;
	margin: 16px 0 0 28px;
}
.payment .order_total .savings p  {
	float: left;
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	color: #fff;
}
.payment .order_total .savings span {
	float: left;
	font-size: 16px;
	color: #66b931;
	line-height: 24px;
	font-weight: bold;
	margin-left: 1px;
}
.order_description {
	display: inline-block;
	font-size: 14px;
	width: 100%;
	margin: 0 0 10px;
}
.payment .order_description {
	margin: 20px 0;
}
.order_description_title {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 12px;
	line-height: 24px;
	margin-right: 3px;
	color: #2d5066;
	text-transform: uppercase;
}
.order_description ul {
	float: left;
	list-style: none;
	margin-right: 33px;
}
.order_description ul li {
	overflow: hidden;
	margin-bottom: 9px;
}
.order_description ul li span {
	float: left;
	width: 153px;
	text-align: right;
}
.order_description ul li i {
	font-style: normal;
	display: block;
	line-height: 25px;
}
.order_description ul li p {
	color: #6d6b6a;
	float: left;
	margin-left: 20px;
	width: 161px;
	font-style: italic;
}
.order_details {
	float: left;
	width: 100%;
}
.order_details .order_details_item:last-child {
	width: 330px;
}
.order_details_item {
	float: left;
	width: 300px;
	margin-left: 31px;
}
.order_details_item span {
	font-size: 15px;
	line-height: 18px;
	color: #635854;
}
.order_details_item p {
	color: #6d7281;
	display: inline;
	font-style: italic;
	font-size: 14px;
	line-height: 17px;
}
.order_finish {
	overflow: hidden;
	text-align: center;
	padding: 10px;
}
.order_finish h2 {
	font-size: 29px;
	font-weight: bold;
	line-height: 28px;
	color: #5a5694;
	margin-top: 8px;
}
.order_finish span {
	font-size: 21px;
	line-height: 28px;
	color: #6d5e96;
	margin-top: 10px;
	display: inline-block;
	vertical-align: top;
}
.order_finish p {
	color: #6d6b6a;
	font-size: 15px;
	line-height: 18px;
	width: 630px;
	margin: 20px auto 20px;
}
.order_finish p a {
	text-decoration: none;
	color: #1662bf;
}
.order_finish p a:hover {
	text-decoration: underline;
}
.order_finish_photo {
	margin-top: 12px;
	overflow: hidden;
}
.order_finish .button {
	width: 150px;
	display: inline-block;
}
.order_finish .button.medium.go_to {
	width: 275px;
	margin: 20px 0 15px 0;
	color: #fff;
}
/*.order_finish .button.medium {
	width: 184px;
	margin: 20px 15px 0;
}*/
/*.order_finish .button.close {
	margin: 15px 0 15px 20px;
	color: #fff;
}*/
/*.order_finish .button.pay {
	margin: 15px 0 15px 15px;
}*/
.profile_nav {
	width: 100%;
	display: inline-block;
	margin: 17px 0 0 0;
}
.profile_nav ul {
	float: left;
	display: table;
	width: 100%;
	list-style: none;
	margin: 0 0 5px 0;
	border: 1px solid #d7d0c6;
	border-radius: 3px;
	overflow: hidden;
	background: #fff;
}
.profile_nav li {
	border-right: 1px solid #c9d0e1;
	display: table-cell;
	vertical-align: middle;
	height: 51px;
	text-align: center;
	position: relative;
}
.profile_nav li:last-child {
	border-right: none;
}
.profile_nav li:last-child a {
	border-right: none;
}
.profile_nav a {
	color: #635854;
	display: block;
	font-size: 16px;
	text-decoration: none;
	line-height: 51px;
}
.profile_nav a:hover,
.profile_nav li.active a {
	background: #b8b4de;
	color: #fff;
	box-shadow: 0px 0px 17px 3px #d7d5dd;
}
.profile_nav > span {
	color: #a6a6a9;
	float: left;
	font-size: 13px;
	line-height: 16px;
	/*width: 650px;*/
	font-weight: 200;
	text-align: left;
	margin: 2px 0 0 0;
}
.discounts h3 {
	color: #453a30;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	padding: 20px 0 7px 20px;
}
.discounts.discounts_static h3 {
	margin: 0 20px;
}
.discount_text {
	display: inline-block;
	padding: 0 18px;
	margin-top: 20px;
}
.discount_text p {
	color: #6d6b6a;
	font-size: 14px;
	line-height: 23px;
}
.discount_text p b {
	color: #000;
}
.discounts .discount_block .sidebar_title {
	border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	font-size: 20px;
	line-height: 24px;
	color: #635854;
	font-weight: bold;
	background-color: #f8f0ea;
	text-transform: none;
}
.discounts .discount_block .sidebar_content {
	border-radius: 3px;
}
.discount_block {
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-top: 20px;
	padding-bottom: 35px;
}
.discount_block .sidebar_item {
	width: 450px;
	display: inline-block;
	vertical-align: top;
	margin: 0 18px;
	background: #f9f9f9;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.discount_item {
	color: #7a7877;
	font-size: 12px;
	text-align: left;
	overflow: hidden;
	padding: 8px 14px;
	/*border-bottom: 1px solid #dfdcda;*/
	position: relative;
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use:after,
.discounts .sidebar_item.one_time .discount_item.discount_use:after,
.discount_item:after {
	position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  bottom: 0;
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use:before {
	position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  top: 0;
}
.discount_item:last-child:after {
	display: none;
}
.discount_item .icon {
	background: url(/assets/discount_icons.png) no-repeat;
	display: inline-block;
	vertical-align: middle;
	float: left;
	width: 21px;
	height: 25px;
}
.discount_item.first .icon {
	background-position: 0 0;
}
.discount_item.second .icon {
	background-position: -21px 0;
}
.discount_item.third .icon {
	background-position: -43px 0;
}
.discounts .discount_block .sidebar_content {
	position: relative;
}
.discounts .discount_block .sidebar_item.one_time .sidebar_content:after {
	display: none;
}
.discounts .discount_item .icon {
	background: url(/assets/file1.png) no-repeat;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	float: left;
	margin-right: 7px;
	width: 31px;
	height: 37px;
}
.discounts .discount_item.first .icon {
	background-position: 0 0;
}
.discounts .discount_item.second .icon {
	background-position: -36px 0;
}
.discounts .discount_item.third .icon {
	background-position: -78px 0;
}
.discounts .discount_item p {
	display: inline-block;
	color: #6d6b6a;
	vertical-align: middle;
	font-size: 18px;
	float: left;
	line-height: 22px;
	width: 170px;
	padding: 0 0 0 30px;
}
.discounts .discount_item p sup {
	font-size: 11px;
}
.discounts .discount_item p sup,
.discounts .discount_item p b {
	color: #e45852;
	font-weight: normal;
}
.discounts .sidebar_item.life_time .discount_item > span {
	color: #7a7877;
	display: block;
	margin: 0 0 0 45px;
}
.discounts .discount_item p sup {
	text-transform: uppercase;
}
/*.discounts .discount_item.first {
	color: #6aa4b1;
}
.discounts .discount_item.second {
	color: #6eb992;
}
.discounts .discount_item.third {
	color: #e18c4e;
}*/
.discounts .discount_item .icon {
	width: 73px;
	height: 53px;
}
.discounts .discount_item.first .icon {
	background: url(/assets/file1.png) center 9px no-repeat;
}
.discounts .discount_item.second .icon {
	background: url(/assets/file2.png) center 9px no-repeat;
}
.discounts .discount_item.third .icon {
	background: url(/assets/file3.png) center 9px no-repeat;
}
.discount_item p i {
	font-size: 8px;
}
.sidebar_item.life_time .discount_item .procent {
	float: left;
	font-size: 18px;
	width: 88px;
	font-weight: bold;
	text-align: right;
	margin-top: 6px;
	color: #e45852;
}
.discounts .sidebar_item.one_time .button.medium {
	width: 252px;
	margin: 17px auto 16px;
}
.discounts .sidebar_item.one_time .discount_item.inner .discount_item_content {
	padding: 11px 0 0 0;
}
.discounts .sidebar_item.one_time .discount_item.inner .button.medium {
	width: 175px;
	height: 33px;
	line-height: 33px;
}
.discount_procent {
	font-size: 18px;
}
.discount_procent b {
}
.discounts .sidebar_item.life_time .sidebar_content {
	padding: 0 0 0 0;
	background: #fff;
}
.discounts .sidebar_item.one_time .sidebar_content {
	background: #fff;
	padding: 0 0 0 0;
}
/*.discounts .sidebar_item.one_time .discount_item {
	padding-top: 15px;
	padding-bottom: 10px;
}*/
.discounts .sidebar_item.one_time .discount_item {
	padding: 6.3px 14px;
	text-align: center;
}
.discounts .sidebar_item.one_time .discount_item span {
	color: #635854;
	font-size: 17px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: normal;
	text-align: center;
}
.discounts .sidebar_item.one_time .discount_item.discount_use p {
	color: #6d6b6a;
	font-size: 15px;
	line-height: 24px;
	float: left;
	width: 180px;
	padding: 10px 20px 10px 0;
	text-align: right;
}
.discounts .sidebar_item.one_time .discount_item.discount_use p span {
	color: #6d6b6a;
	font-size: 18px;
	display: block;
	font-weight: bold;
	text-transform: uppercase;
	text-align: right;
}
.discounts .sidebar_item.one_time .discount_item.discount_use > span {
	color: #e45852;
	float: right;
	font-weight: bold;
	text-align: left;
	width: 100px;
	margin-top: 18px;
}
.discounts .sidebar_item.one_time .discount_item.discount_use .icon {
	background: url(/assets/file1.png) center 9px no-repeat;
	margin: 12px 0 0 20px;
}
.discounts .sidebar_item.one_time .discount_item.inner {
	padding: 0;
	border-bottom: 1px solid #cfcbc7;
}
.discounts .sidebar_item.one_time .discount_item.inner:last-child {
	border: none;
}
.discounts .sidebar_item.one_time .discount_item.inner:after {
	display: none;
}
.discounts .sidebar_item.one_time .discount_subitem {
	text-align: center;
	overflow: hidden;
	display: inline-block;
	/*float: left;*/
	width: 100%;
	vertical-align: top;
}
.discounts .sidebar_item.one_time .discount_item_content {
	overflow: hidden;
	/*border-bottom: 1px solid #d5c49f;*/
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use {
	position: relative;
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use span {
	color: #e45852;
	font-size: 17px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	padding: 8px 0 0 0;
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use p {
	color: #6d6b6a;
	font-size: 15px;
	line-height: 24px;
	text-transform: none;
	font-weight: normal;
	width: 100%;
	text-align: center;
	padding: 6px 0 5px;
	float: left;
	width: 287px;
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use p span {
	color: #6d6b6a;
	border: none;
	font-size: 18px;
	padding: 0;
	text-transform: uppercase;
	line-height: 21px;
	display: inline;
}
.discounts .sidebar_item.one_time .discount_subitem .button.medium {
	margin: 12px auto;
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use .icon {
	width: 71px;
  height: 35px;
  background-position: 19px 3px;
}
.discounts .discount_item .icon:after {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 53px;
	background: url(/assets/discount_item_icon_sep.png);
	right: 0;
	top: 0;
}
.discounts .discount_item .icon:before {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 53px;
	background: url(/assets/discount_item_icon_sep.png);
	left: 0;
	top: 0;
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use .icon:after {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 32px;
	background: url(/assets/subitem_icon_sep.png);
	right: 0;
	top: 2px;
}
.discounts .sidebar_item.one_time .discount_subitem.discount_use .icon:before {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 32px;
	background: url(/assets/subitem_icon_sep.png);
	left: 0;
	top: 2px;
}
.discount_item.inner.with_bg {
	background-color: #fffcf9;
}
.discount_description {
	overflow: hidden;
}
.discount_description span {
	width: 240px;
	display: block;
	font-size: 13px;
	line-height: 16px;
	color: #6d6759;
}
.discount_code {
	background: #f3a200;
	color: #fff;
	font-size: 14px;
	width: 207px;
	height: 36px;
	line-height: 36px;
	margin: 10px auto;
	text-transform: uppercase;
}
.settings {
	border: 1px solid #beb6aa;
	width: 728px;
	margin: 0 20px 20px 0;
	overflow: hidden;
	background: #fff;
	border-radius: 4px;
}
.discounts,
.my_order {
	border: 1px solid #beb6aa;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	width: 1000px;
	overflow: hidden;
	margin-bottom: 30px;
}
.settings_form {
	display: inline-block;
	width: 100%;
	padding-bottom: 11px;
	margin: 35px 0 0 0;
}
.settings_form .field_item label {
	width: 146px;
	text-align: left;
	font-size: 15px;
	color: #635854;
}
.settings_form .field_item .select2-container {
	width: 304px;
}
/*.settings_form .field_item .input {
	width: 282px;
}*/
.settings_form .field_item .button {
	width: 252px;
	cursor: pointer;
	margin: 0 0 10px 200px;
	color: #fff;
}
.settings_form .field_item .button.small {
	height: 45px;
}
.settings_form .field_item {
	margin-bottom: 20px;
}
.settings_form .tooltip_block {
	margin-left: 10px;
	margin-top: 4px;
}
.settings_form .tooltip {
	margin: 5px 0 0 10px;
}
.settings_form .country_code .input {
	padding: 0 10px;
	text-align: left;
}
.order_table {
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
}
.order_table_title {
	font-size: 18px;
	line-height: 25px;
	color: #383252;
	text-transform: none;
	padding: 19px 0 19px 18px;
	display: inline-block;
	width: 100%
}
.order_table_title b {
	font-weight: normal;
}
.order_block_table {
	width: 100%;
	float: left;
	border-top: 1px solid #beb6aa;
}
.order_header {
	background-color: #edecf4;
	color: #635854;
	border-bottom: 1px solid #beb6aa;
	font-size: 17px;
	width: 100%;
	height: 31px;
	line-height: 31px;
	padding: 3px 0;
	overflow: hidden;
	display: table;
}
.order_header .order_id {
	width: 10px;
	display: table-cell;
	text-align: center;
	padding: 0 80px 0 21px;
	border-right: 1px solid #beb6aa;
}
.order_header .order_details {
	width: 64px;
	float: none;
	display: table-cell;
	padding: 0 281px 0 25px;
	border-right: 1px solid #beb6aa;
}
.order_table:first-child .order_header .order_details {
	padding: 0 280px 0 26px;
}
.order_header .order_cost {
	width: 181px;
	display: table-cell;
}
.order_header .order_progress {
	width: 296px;
	display: table-cell;
	padding-left: 27px;
}
.order_content:last-child {
	margin-bottom: -2px;
}
.order_content .order_id {
	color: #635854;
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	font-size: 14px;
	width: 72px;
	height: 61px;
	padding: 0 28px 0 18px;
	position: relative;
}
.order_content .order_id .notification {
	display: table;
	width: 100%;
	position: relative;
	left: 45px;
}
.order_content .order_id .notification img {
	position: absolute;
	top: 50%;
	right: 28px;
	margin-top: -17px;
}
.order_content .order_details {
	border-left: #beb6aa 1px solid;
	display: table-cell;
	vertical-align: middle;
	width: 211px;
	float: none;
	padding-left: 23px;
}
.order_content .order_cost {
	border-right: #beb6aa 1px solid;
	display: table-cell;
	vertical-align: middle;
	width: 130px;
	text-indent: 10px;
}
.order_content .order_cost p {
	color: #1aa75f;
	font-size: 16px;
	line-height: 18px;
	padding-left: 10px;
}
.order_content .order_cost i {
	color: #6d6b6a;
	font-size: 15px;
	line-height: 18px;
	font-style: normal;
	padding-left: 10px;
}
.order_content .order_progress {
	display: table-cell;
	vertical-align: middle;
	width: 318px;
	position: relative;
}
.progressbar_block {
	/*background: url(/assets/progress_inner.png) no-repeat;*/
	float: right;
	width: 66px;
	height: 66px;
	position: absolute;
	top: 9px;
	right: 55px;
}
.progressbar_block .knob_block {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -28px 0 0 -28px;
}
.order_content {
	width: 100%;
	display: table;
	position: relative;
	border-bottom: 1px solid #beb6aa;
}
.order_content.last {
	margin-bottom: 0px;
}
.order_content.error .order_deadline {
	background-color: #ffeddc;
}
.order_content .order_product i {
	font-style: normal;
	color: #6d6b6a;
	font-size: 14px;
	line-height: 18px;
	display: block;
	margin-top: 2px;
}
.order_content .order_product a {
	color: #1662bf;
	display: block;
	font-size: 14px;
	line-height: 18px;
	text-decoration: none;
	word-break: break-all;
}
.order_content .order_product a:hover {
	text-decoration: underline;
}
.order_deadline {
	color: #6d6b6a;
	width: 314px;
	font-size: 14px;
	line-height: 18px;
	display: table-cell;
	vertical-align: middle;
	padding-left: 4px;
}
.order_deadline .total_pay {
	color: #534844;
	font-size: 16px;
	float: right;
	width: 160px;
	font-weight: normal;
	margin-right: 0;
	padding-left: 15px;
}
.order_deadline .total_pay p {
	margin-bottom: 4px;
}
.order_deadline span {
	color: #1aa75f;
	font-size: 16px;
}
.order_deadline a {
	text-decoration: none;
	color: #1662bf;
	font-size: 15px;
}
.order_deadline a:hover {
	text-decoration: underline;
}
.order_deadline p {
	color: #3d3d3d;
	display: block;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-left: 30px;
}
.order_deadline i {
	color: #969696;
	font-size: 12px;
	margin-left: 30px;
}
.order_table_content {
	display: inline-block;
	width: 100%;
	padding-bottom: 40px;
}
.order_table .order_now {
	/*background: url(/assets/pay_now_big.png) no-repeat;*/
	display: block;
	float: none;
	font-size: 20px;
	margin: 8px auto 0;
	width: 138px;
	height: 43px;
	text-indent: 0px;
	line-height: 41px;
	padding-bottom: 0px;
	text-align: center;
	text-transform: none;
}
.order_content .error_text {
	color: #ffffff;
	display: block;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	margin-left: 20px;
	margin-right: 20px;
}
.order_time {
	display: table-cell;
	text-align: left;
	color: #6d6b6a;
	font-size: 14px;
	vertical-align: middle;
	width: 155px;
}
.order_content .order_time {
	border-right: #beb6aa 1px solid;
	padding-left: 19px;
}
.order_header .order_time {
	text-transform: none;
	padding: 0 57px 0 56px;
	width: 30px;
	font-size: 17px;
	color: #635854;
	border-right: 1px solid #beb6aa;
}
.order_view {
	width: 1000px;
	margin: 5px auto;
	padding-bottom: 20px;
	/*overflow: hidden;*/
}
.order_view_block {
	background: #fff;
	border: 1px solid #d7d0c6;
	float: left;
	width: 668px;
	padding: 0 0 7px 0;
	margin: 0 20px 0 0;
	border-radius: 4px;
}
.order_view_details {
	width: 100%;
	display: inline-block;
}
.order_view_top {
	width: 93%;
	display: table;
	padding: 10px 3.5%;
	height: 51px;
}
.order_view_name {
	color: #383252;
	display: table-cell;
	vertical-align: middle;
	font-size: 18px;
	text-transform: none;
	width: 370px;
}
.order_view_name span {
	display: inline-block;
	vertical-align: top;
}
.order_view_name p {
	display: inline;
}
.order_view_completed {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	background: #a2ffbc;
	border-radius: 7px;
}
.order_view_completed span {
	color: #5d9f6f;
	display: block;
	font-size: 23px;
	line-height: 27px;
	font-weight: bold;
	padding: 0 31px;
	text-transform: uppercase;
}
.order_pay_now {
	background: #ffe7e6;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 0 3px;
}
.order_pay_now .button.medium {
	width: 225px;
	height: 38px;
	line-height: 38px;
	margin: 10px auto 1px;
	font-size: 18px;
}
.order_pay_now p {
	color: #635854;
	font-size: 12px;
	margin-top: 8px;
}
.order_pay_now span {
	color: #534844;
	display: block;
	font-size: 16px;
	letter-spacing: 0.5px;
	margin: 5px 0 10px 0;
}
.order_still_payment {
	border-top: 1px solid #a1813c;
	background-color: #f1ead4;
	display: table;
	width: 100%;
	font-size: 14px;
	height: 44px;
}
.order_still_payment .order_info_id span {
	background: url(/assets/warning_icon.png) right center no-repeat;
	padding: 0 23px 0 0;
}
.order_still_payment .order_info_item p {
	text-transform: none;
	font-size: 14px;
	width: 100px;
	margin: 0;
}
.order_info_item {
	display: table-cell;
	vertical-align: middle;
	font-size: 14px;
	line-height: 18px;
	padding: 6px 0 6px 20px;
}
.order_info_item.order_info_id {
	border-right: #b4cad2 1px solid;
	width: 110px;
	padding-left: 20px;
}
.order_info_item.order_info_price {
	border-right: #b4cad2 1px solid;
	width: 190px;
}
.order_info_item.order_info_deadline {
	width: 394px;
	color: #2c323a;
	display: table-cell;
}
.order_still_payment .order_info_item.order_info_deadline {
	width: 210px;
	display: table-cell;
}
.order_still_payment .order_info_item.order_info_deadline span {
	width: 120px;
}
.order_info_item.order_info_deadline span p {
	color: #6c6a7e;
	font-weight: normal;
	font-style: italic;
	padding-left: 5px;
	line-height: 16px;
	font-size: 13px;
	display: block;
	float: right;
}
.order_still_payment .order_info_item.order_info_deadline span p {
	color: #453a30;
	font-weight: normal;
	padding-left: 5px;
	text-indent: -66px;
	line-height: 11px;
	font-style: italic;
	font-size: 11px;
	float: none;
}
.total_pay {
	color: #4f8f69;
	font-size: 13px;
	font-weight: bold;
	line-height: 18px;
	margin-right: 18px;
	display: table-cell;
	vertical-align: middle;
}
.order_info_item span {
	font-size: 15px;
	color: #6d6b6a;
	float: left;
	margin-right: 5px;
}
.order_info_item p {
	font-size: 16px;
	color: #1aa75f;
	float: left;
}
.order_info_item.order_info_deadline p {
	color: #6c6a7e;
	font-style: italic;
	font-weight: normal;
	font-size: 13px;

}
.order_info_item b {
	font-weight: normal;
	font-size: 17px;
	color: #635854;
	float: left;
	margin-right: 5px;
}
.order_file_info {
	background: #e8f5fa;
	border-top: 1px solid #c7d7dd;
	border-bottom: 1px solid #c7d7dd;
	display: table;
	width: 100%;
	padding: 4px 0 5px;
}
.order_view_item {
	display: inline-block;
	width: 100%;
	margin-bottom: 6px;
}
.order_view_block h3 {
	font-size: 18px;
	color: #383252;
	display: block;
	padding: 12px 20px 0;
	margin-bottom: 15px;
	line-height: 31px;
	position: relative;
	text-transform: none;
	font-weight: normal;
	background: url(/assets/title_bg.png) 20px bottom no-repeat;
}
.order_view_item ul {
	list-style: none;
	margin: 0 0 0 20px;
}
.order_view_item li {
	display: inline-block;
	width: 100%;
	margin-bottom: 7px;
}
.order_view_item span {
	color: #635854;
	float: left;
	font-size: 15px;
	line-height: 18px;
	width: 180px;
}
.order_view_item p {
	color: #6d6b6a;
	float: left;
	font-size: 15px;
	line-height: 22px;
	width: 461px;
}
.order_view_item a {
	color: #1662bf;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	text-decoration: underline;
	margin: 1px 0 5px 0;
}
.order_view_item a:hover {
	text-decoration: none;
}
.order_view_item .total_price {
	border-top: 1px solid #a1813c;
	display: table;
	padding: 13px 0 6px;
	width: 100%;
}
.order_view_item .total_price span {
	color: #296bc3;
	font-size: 18px;
	line-height: 31px;
	display: table-cell;
	text-transform: uppercase;
	vertical-align: middle;
	float: none;
	padding-left: 20px;
	width: 85px;
}
.order_view_item .total_price p {
	color: #66b931;
	font-size: 20px;
	line-height: 31px;
	font-weight: bold;
	display: table-cell;
	vertical-align: middle;
	float: none;
}
.order_view_files {
	position: relative;
}
.order_upload {
	float: left;
	margin: 0 0 20px 20px;
}
.order_upload .input {
	float: left;
	width: 174px;
	font-style: italic;
	font-size: 14px;
}
.order_view .order_upload .input {
	width: 282px;
}
.order_upload .button {
	float: left;
}
.order_file_item {
	overflow: hidden;
	padding-left: 20px;
	clear: left;
	padding-bottom: 10px;
	margin-bottom: 10px;
	background: url(/assets/order_file_sep.png) 20px bottom no-repeat;
}
.order_file_item .photo {
	float: left;
	width: 61px;
	height: 74px;
}
.order_file_item .file_details {
	float: left;
	font-size: 14px;
	color: #6d6b6a;
	line-height: 20px;
	margin: 9px 0 0 19px;
	width: 400px;
}
.order_file_item .file_info {
	overflow: hidden;
}
.order_file_item .file_info a {
	font-size: 14px;
	text-decoration: none;
	color: #1662bf;
}
.order_file_item .file_info a:hover {
	text-decoration: underline;
}
.order_file_item .file_info span {
	color: #c2bebd;
	font-size: 14px;
	margin-left: 11px;
}
.writers_id {
	display: block;
	position: absolute;
	top: 18px;
	right: 38px;
	text-align: right;
}
.writers_id span {
	color: #908d9b;
	font-size: 14px;
	line-height: 18px;
}
.writers_id p {
	font-size: 14px;
	line-height: 18px;
	color: #908d9b;
	display: inline;
}
.chat {
	border: 1px solid #fc8681;
	float: right;
	width: 307px;
	border-radius: 4px;
	/*overflow: hidden;*/
}
.chat_title {
	background: #fc8681;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	width: 100%;
	text-align: center;
	padding: 9px 0 5px;
	position: relative;
}
.chat_title:after {
	position: absolute;
	content: "";
	display: block;
	width: 35px;
	height: 33px;
	top: -7px;
	right: 35px;
	background: url(/assets/chat_bg.png) no-repeat;
}
.now_connected {
	background: #525d8b;
	color: #97a1cb;
	font-size: 12px;
	line-height: 18px;
	width: 100%;
	text-align: center;
	position: relative;
	padding: 3px 0;
}
.now_connected:before {
	position: absolute;
	display: block;
	content: "";
	width: 6px;
	height: 3px;
	background: url(/assets/chat_top_arrow.png) no-repeat;
	top: -3px;
	left: 50%;
	margin-left: -3px;
}
.from_who {
	font-size: 12px;
	line-height: 18px;
	font-style: normal;
	text-transform: lowercase;
	width: 56px;
	text-align: center;
	position: relative;
}
.from_who:before {
	position: absolute;
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background: url(/assets/chat_point.png) no-repeat;
	bottom: 5px;
}
.chat_message.chat_user .photo {
	float: left;
	width: 56px;
	height: 56px;
	background: url(/assets/user_photo.png) no-repeat;
	display: inline-block;
}
.chat_message.chat_support .photo {
	float: left;
	width: 56px;
	height: 56px;
	background: url(/assets/writer_photo.png) no-repeat;
	display: inline-block;
}
.chat_message .time {
	font-size: 11px;
	line-height: 18px;
	text-transform: uppercase;
	color: #cdcdcd;
	font-style: italic;
}
.chat_message .time {
	margin: 0px 20px 0 0;
	float: right;
	/*clear: both;*/
}
.chat_message.chat_user .from_who {
	margin-left: 7px;
	float: left;
	color: #ad9190;
}
.chat_message.chat_user .from_who:before {
	background-position: 0 0;
	left: 8px;
}
.chat_message.chat_support .from_who {
	margin-left: 7px;
	float: left;
	color: #949cc1;
}
.chat_message.chat_support .from_who:before {
	background-position: 0 -7px;
	left: 2px;
}
.chat_content {
	max-height: 660px;
	background: #fff;
	overflow: scroll;
}
.chat_message {
	font-size: 12px;
	padding: 10px 0 20px;
	line-height: 18px;
	overflow: hidden;
	position: relative;
	margin: 10px 0 10px;
	background: url(/assets/chat_sep.png) bottom center no-repeat
}
.chat_message:last-child {
	background: none;
}
.chat_message .message_block {
	font-style: italic;
	float: right;
	display: inline-block;
}
.chat_message .message {
	position: relative;
	padding: 5px 7px 5px 7px;
	width: 196px;
	border-radius: 3px;
}
.chat_message.chat_user .message {
	margin: 0 0 0 14px;
	color: #9d9090;
	background-color: #fff4f4;
}
.chat_message.chat_support .message {
	margin: 0 0 0 14px;
	color: #8a8c95;
	background-color: #dfe4f5;
	float: right;
}
.chat_message.chat_user .message:after {
	position: absolute;
	content: "";
	display: block;
	background: url(/assets/chat_arrow.png) no-repeat;
	width: 6px;
	height: 9px;
	top: 22px;
	left: -6px;
}
.chat_message.chat_support .message:after {
	position: absolute;
	content: "";
	display: block;
	background: url(/assets/chat_arrow.png) 0 -13px no-repeat;
	width: 6px;
	height: 9px;
	top: 22px;
	left: -6px;
}
.send_block {
	background: #f8f8f8;
	padding: 17px 10px 15px;
}
.chat .textarea {
	border: #e8e2e2 1px solid;
	border-radius: 4px;
	color: #aaadb3;
	font-size: 13px;
	font-style: italic;
	width: 266px;
	height: 56px;
	line-height: 20px;
	margin: 0 auto;
	resize: vertical;
	display: inline-block;
	vertical-align: top;
	font-family: "Lato";
}
.chat .button {
	width: 129px;
	color: #fff;
	border: none;
	margin: 15px auto 0;
}
.chat .button.medium {
	height: 39px;
	line-height: 39px;
	font-size: 16px;
}
.order_select_block {
	display: table;
	margin-top: 5px;
	float: right;
}
.order_select_block label {
	font-size: 14px;
}
.order_select_item {
	width: 520px;
	overflow: hidden;
	margin-bottom: 15px;
	position: relative;
	right: 1px;
}
.order_select_item .checker {
	float: left;
}
.order_select_item label {
	float: left;
	font-size: 15px;
	line-height: 18px;
	width: 335px;
	color: #6d6b6a;
	margin: 11px 0 0 5px;
}
.order_select_item .tooltip_block {
	float: right;
	margin-top: 0;
	margin-left: 7px;
}
.order_select_item .price {
	color: #1aa75f;
	float: right;
	font-size: 14px;
	font-weight: bold;
	line-height: 18px;
	padding-top: 2px;
}
.order_additional_services .field_item > label ,
.order_additional_services .field_item > .order-pages-num > label ,
.order_additional_services .field_item > .order-words-num > label {
	color: #fc4811;
}
.order_number_letters .field_item > label ,
.order_number_letters .field_item > .order-pages-num > label ,
.order_number_letters .field_item > .order-words-num > label {
	margin-top: 0px;
}
.sidebar_scroll {
	width: 235px;
}
.promo {
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	width: 447px;
	box-shadow: 0px 0px 10px 3px #d4dcdb;
	-moz-box-shadow: 0px 0px 10px 3px #d4dcdb;
	-webkit-box-shadow: 0px 0px 10px 3px #d4dcdb;
	position: fixed;
	bottom: 0;
	/*bottom: 0;*/
	left: 50%;
	z-index: 1000;
	margin-left: -223px;
	border-radius: 4px;
	overflow: hidden;
}
.promo_title {
	background: url(/assets/promo_title.png) no-repeat;
	/*overflow: hidden;*/
	color: #fff;
	cursor: pointer;
	font-size: 30px;
	line-height: 65px;
	width: 100%;
	height: 65px;
	text-align: center;
	text-indent: 60px;
  box-shadow: 0px 3px 6px 0px #c3cfcd;
  border-radius: 4px;
}
.promo_title b {
	font-weight: normal;
}
.promo_title_help {
	height: 30px;
	font-size: 20px;
	line-height: 23px;
	font-weight: 200;
	background: #347aa5;
	color: #fffefe;
	text-transform: none;
}
.promo_title_help a {
	color: #fffefe;
}
.promo_title_help a:hover {
	text-decoration: none;
}
.promo_content {
	overflow: hidden;
	display: none;
}
.promo_info {
	display: inline-block;
	width: 100%;
	padding-top: 17px;
	position: relative;
	text-align: center;
}
.promo_info p {
	width: 325px;
	margin: 0 auto;
	font-size: 22px;
	line-height: 31px;
	color: #6d6b6a;
	padding: 0 10px;
}
.promo_info p b {
	font-weight: normal;
	color: #8061b0;
}
.promo_info p strong {
	color: #ff716c;
}
.promo .close {
	background: url(/assets/spritesheet.png) no-repeat;
	background-position: -89px -61px;
	display: block;
	width: 21px;
	height: 21px;
	position: absolute;
	top: 6px;
	right: 6px;
	z-index: 100;
}
.profile_order .profile_nav {
	width: 1000px;
	margin: 17px 0 0 0;
	display: block;
	overflow: hidden;
}
.profile_order .profile_nav ul {
	overflow: visible;
	float: left;
}
.free_quote {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	width: 728px;
	border: 1px solid #d7d0c6;
	background: #fff;
	margin-bottom: 40px;
}
.free_quote_text {
	overflow: hidden;
	padding: 20px 19px 30px;
	position: relative;
	margin-bottom: 25px;
}
.free_quote_text:after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  bottom: 0;
}
.free_quote_text span {
	display: block;
	font-size: 18px;
	line-height: 25px;
	color: #383252;
	padding: 0 0 15px 0;
}
.free_quote_text p {
	color: #635854;
	font-size: 15px;
	line-height: 25px;
	margin-top: 2px;
}
.free_quote_form {
	display: inline-block;
	width: 100%;
}
.free_quote_form .order_type_service {
	margin-top: 12px;
}
.free_quote_form .order_additional_materials .button {
	float: left;
}
.free_quote_form .field_item .files_list ul {
	margin-left: 5px;
}
.free_quote_form .field_item .files_list {
	display: inline-block;
	padding-left: 164px;
}
.free_quote_form .order_paper_details .textarea {
	height: 58px;
}
.free_quote_form .order_night_calls {
	margin: 0;
}
.free_quote_form .customer_item {
	border-bottom: none;
	margin-bottom: 0;
}
.free_quote_form .order_confirm_password {
	margin-bottom: 0px;
}
.free_quote_form .order_button .button {
	margin: 20px auto 25px;
	cursor: pointer;
}
.free_quote .customers_tabs  {
	width: 726px;
}
.free_quote .order_addittion_number .remove_number {
	left: 84px;
	top: 20px;
}
.free_quote .order_button .button {
	width: 277px;
	line-height: 45px;
	color: #fff;
}
.order_payment_message {
	display: inline-block;
}
.order_payment_message p {
	color: #635854;
	font-size: 12px;
	line-height: 13px;
	letter-spacing: 0.5px;
	text-transform: none;
	font-weight: normal;
	margin: 0;
}
.order_payment_message .button {
	width: 100px;
	float: left;
	margin-top: 3px;
}
.order_payment_message .button.medium {
	text-decoration: none;
	color: #fff;
	width: 114px;
	height: 51px;
	line-height: 51px;
}
.order_info_text {
	width: 290px;
}
.order_rating_form {
  overflow: hidden;
}
.order_rating_item {
  overflow: hidden;
  padding: 0 20px;
  margin-bottom: 20px;
}
.order_rating_item label {
  color: #635854;
  float: left;
  font-size: 15px;
  line-height: 16px;
  width: 100px;
}
.order_rating_item .rating {
  float: left;
  margin-right: 4px;
}
.order_rating .button {
	margin: 36px auto;
  width: 159px;
  cursor: pointer;
}
.order_rating .button.medium {
	height: 45px;
	line-height: 45px;
}
.sidebar .sidebar_blog {
	width: 239px;
	background: #fff;
	padding-left: 9px;
}
.blog {
	border: 1px solid #d7d0c6;
	margin: 0 20px 60px 0;
	width: 728px;
	background: #fff;
	border-radius: 4px;
}
.blog_content_item {
	padding: 30px 0 0 0;
	position: relative;
	margin: 0 19px 7px;
	border-bottom: 1px solid #e7e1d9;
}
.blog .blog_content_item:last-child:after {
	background: none;
}
.blog .pagination {
	margin-top: -8px;
	position: relative;
	z-index: 1;
}
.blog_content_title a {
	font-size: 19px;
	line-height: 22px;
	color: #1662bf;
	text-decoration: none;
	font-style: italic;
}
.blog_content_title a:hover {
	text-decoration: underline;
}
.blog_content .inner_photo {
	margin: 20px 0;
}
.blog_content_title p {
	font-size: 14px;
	line-height: 18px;
	color: #908e8e;
	font-style: italic;
	padding: 8px 0 0 0;
}
.blog_content_title p a {
	font-size: 12px;
	font-style: italic;
	line-height: 18px;
	text-decoration: none;
	color: #8e99a1;
}
.blog_content_title p a:hover {
	text-decoration: underline;
}
.blog_content {
	padding-bottom: 16px;
}
.blog_content,
.blog_content p {
	font-size: 14px;
	line-height: 23px;
	color: #6d6b6a;
}
.blog_tags {
	overflow: hidden;
	padding: 10px 20px 10px 0;
}
.blog_tags a {
	text-decoration: none;
	margin: 10px 10px 0 0;
	float: left;
	display: block;
	padding: 3px 16px 4px 15px;
	font-size: 14px;
	line-height: 16px;
	background: #b2acb3;
	color: #fff;
	border-radius: 4px;
}
.blog_tags a:hover {
	background: #99889b;
}
.sidebar_blog {
	background-color: #f9f9f9;
	padding: 10px 0 6px 0;
}
.sidebar_blog .input {
	width: 206px;
}
.sidebar_blog .input,
.sidebar_blog_subscribe .input {
	border-radius: 3px;
}
.sidebar_blog_item span {
	font-size: 15px;
	line-height: 18px;
	color: #37342e;
	text-transform: uppercase;
	font-weight: bold;
}
.sidebar_blog_subscribe {
	margin: 13px 0 0 0;
}
.sidebar_blog_subscribe span {
	margin-top: 1px;
	display: block;
}
.sidebar_blog_subscribe p {
	font-size: 15px;
	color: #76766f;
	line-height: 18px;
	background: #f5f5ef;
	border-bottom: 1px solid #8e8679;
	border-left: 1px solid #8e8679;
	border-right: 1px solid #8e8679;
	width: 216px;
	padding-left: 10px;
	display: block;
	text-align: left;
	margin: 0 0 0 0;
	border-radius: 0 0 4px 4px;
	font-style: italic;
}
.sidebar_blog_subscribe p b {
	color: #566384;
}
.sidebar_blog_subscribe .input {
	border-radius: 4px 4px 0 0;
}
.sidebar_blog .button.small {
	width: 230px;
	height: 39px;
	line-height: 39px;
	font-size: 18px;
	text-shadow: none;
	vertical-align: top;
	margin: 10px 0 0 0;
	font-weight: 200;
}
.sidebar_blog .button.blue {
	overflow: hidden;
	float: left;
}
.sidebar_blog_item {
	padding-left: 0;
	float: left;
	clear: both;
	width: 100%;
}
.sidebar_blog  .sidebar_blog_item:last-child span {
	padding-top: 8px;
	margin-top: 0;
}
.sidebar_blog_item span {
	background: #c2bbb4;
	display: block;
	font-size: 18px;
	line-height: 25px;
	color: #fff;
	font-weight: 500;
	text-transform: none;
	border-radius: 7px;
	padding: 4px 0 4px 9px;
	margin: 20px 9px 4px 0;
}
.sidebar_blog_item ul {
	overflow: hidden;
	list-style: none;
}
.sidebar_blog_item li {
	float: left;
	display: inline-block;
	width: 100%;
	padding: 0 0 0 6px;
}
.sidebar_blog_item li a {
	display: block;
	clear: both;
	width: 210px;
	text-indent: 4px;
	position: relative;
	padding: 5px 0 5px 4px;
	font-size: 14px;
	text-decoration: none;
	line-height: 20px;
	color: #1662bf;
}
.sidebar_blog_item li a:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 5px;
	display: block;
	background: url(/assets/pointer.png) no-repeat;
	top: 13px;
	left: -3px;
}
.sidebar_blog_item:last-child li:last-child {
	border-bottom: none;
}
.sidebar_blog_item li a:hover {
	text-decoration: underline;
}
.free_samples .pagination {
	margin: 12px auto 28px;
}
.pagination {
	/*margin: 0 auto 50px;*/
	overflow: hidden;
	clear: both;
	/*width: 546px;*/
	padding: 12px 0;
}
.pagination ul {
	text-align: center;
	overflow: hidden;
}
.pagination li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
}
.pagination li span a  {
	display: block;
	font-size: 14px;
	padding: 7px 17px 7px 17px;
	line-height: 18px;
	color: #fff;
	text-decoration: none;
	margin: 0 10px 0 10px;
	background: #579ce2;
	border-radius: 4px;
}
.pagination li span.current {
	display: block;
  font-size: 14px;
  line-height: 18px;
	background: #b7dafe;
	border-radius: 4px;
	color: #427bb5;
	padding: 6px 16px 6px 16px;
	border: 1px solid #9fbddc;
	box-shadow: inset 0px 0px 3px 1px #a8c8e9;
}
.pagination li span.current:hover {
	background: #b7dafe;
	color: #427bb5;
	padding: 6px 16px 6px 16px;
	border: 1px solid #9fbddc;
	box-shadow: inset 0px 0px 3px 1px #a8c8e9;
}
.pagination li span a:hover {
	background: #437fbd;
	color: #fff;
}
.pagination .previous {
	padding: 7px 29px 7px 29px;
	margin: 0;
	font-weight: 500;
}
.pagination .next {
	padding: 7px 29px 7px 29px;
	font-weight: 500;
}
.sidebar_item.get_inner_price .sidebar_content {
	padding: 0 0px 0 0px;
}
.sidebar_item.get_inner_price {
	width: 250px;
}
.sidebar_item.get_inner_price .main_order_form .item label {
	width: 113px;
}
.sidebar_item.get_inner_price .main_order_form .item label a:hover {
	text-decoration: none;
}
.sidebar_item.get_inner_price .main_order_form .item .select2-container {
	min-width: 109px !important;
	max-width: 109px !important;
}
.sidebar_item.get_inner_price .main_order_form .price_page {
	text-align: left;
}
.sidebar_left .get_price .main_order_form .price_page p,
.sidebar_item.get_inner_price .total_price p,
.sidebar_item.get_inner_price .total_price span,
.sidebar_item.get_inner_price .main_order_form .price_page p,
.sidebar_item.get_inner_price .main_order_form .price_page span {
	display: inline-block;
	float: none;
}
.sidebar_left .get_price .main_order_form .price_page p,
.sidebar_item.get_inner_price .main_order_form .price_page p {
	padding: 0 0 0 10px;
	font-size: 15px;
	line-height: 24px;
}
.sidebar_left .get_price .main_order_form .price_page span,
.sidebar_item.get_inner_price .main_order_form .price_page span {
	font-size: 15px;
	font-weight: bold;
	color: #ec7215;
	margin: 4px 0 0 4px;
}
.sidebar_item.get_inner_price .total_price {
	text-align: center;
	padding: 10px 0 10px 0;
	display: block;
	width: auto;
}
.sidebar_left .get_price .main_order_form .total_price {
	text-align: center;
	padding: 7px 0 7px 0;
	display: block;
}
.sidebar_left .get_price .main_order_form .total_price p {
	font-size: 16px;
	line-height: 24px;
	color: #1aa75f;
	display: inline-block;
	margin-left: 10px;
	text-transform: none;
	font-weight: normal;
}
.sidebar_item.get_inner_price .main_order_form .total_price p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #1aa75f;
	text-transform: none;
}
.sidebar_left .get_price .main_order_form .total_price span,
.sidebar_item.get_inner_price .main_order_form .total_price span {
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
	color: #1aa75f;
}
.sidebar_left .get_price .main_order_form .total_price span sup,
.sidebar_item.get_inner_price .main_order_form .total_price span sup {
	font-size: 16px;
}
.sidebar_left .get_price .main_order_form {
	margin-top: 4px;
}
.sidebar_item.sidebar_free_quote .sidebar_title {
	line-height: 20px;
}
.sidebar_item.sidebar_free_quote .sidebar_title:after {
	border-top-color: #d2dfe5;
}
.sidebar_item.sidebar_free_quote .button.medium {
	line-height: 46px;
	margin-bottom: 20px;
}
.sidebar_item.sidebar_free_quote .button.yellow {
	color: #fff;
}
.sidebar_item.sidebar_free_quote p {
	padding: 0 8px 7px;
	text-align: left;
}
.sidebar_item.sidebar_free_quote .sidebar_content {
	padding: 8px 0 0 0;
}
.sidebar_item.sidebar_selected_extras .button {
	line-height: 56px;
	font-size: 22px;
	text-transform: none;
}
.sidebar_item.sidebar_selected_extras .savings {
	padding: 10px 0 10px 5px;
	background-color: #f0fbff;
	display: block;
	width: auto;
}
.sidebar_item.sidebar_selected_extras .savings p {
	font-size: 20px;
	line-height: 24px;
	font-weight: normal;
	color: #4c4c4c;
	text-transform: none;
}
.sidebar_item.sidebar_selected_extras .savings span {
	font-size: 20px;
	line-height: 24px;
	float: right;
	font-weight: bold;
	color: #ec7215;
}
.testimonials {
	border: 1px solid #d7d0c6;
	background: #fff;
	margin: 0 20px 65px 0;
	position: relative;
  width: 728px;
  border-radius: 4px;
}
.testimonials_content {
  margin: 10px 0 0 0;
  padding: 0 18px 16px 18px;
}
.testimonials_content p {
	color: #6d6b6a;
	font-size: 14px;
	line-height: 23px;
}
.testimonials_content a {
  color: #1662bf;
  font-size: 14px;
  line-height: 23px;
  text-decoration: underline;
}
.testimonials_content span {
	font-size: 14px;
	line-height: 23px;
	color: #6d6b6a;
}
.testimonials_content a:hover {
  text-decoration: none;
}
.testimonials_item {
  margin: 20px 0 30px 0;
  padding: 0 18px;
}
.testimonials_item_content:before {
  content: "";
  display: block;
  position: absolute;
  top: -13px;
  left: 22px;
  width: 24px;
  height: 13px;
  background: url(/assets/testimonial_arrow.png);
}
.testimonials_item_title {
  margin: 0 0 22px 0;
}
.testimonials_item_title span {
  color: #918f9d;
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  display: block;
}
.testimonials_item_name {
  color: #454860;
  font-size: 16px;
  line-height: 19px;
  position: relative;
}
.testimonials_item_title {
	position: relative;
}
.testimonials_item_title:before {
	position: absolute;
	display: block;
	content: "";
	height: 1px;
	width: 560px;
	right: 0;
	top: 9px;
	background: #eae8e5;
}
.testimonials_item_name {
	display: inline-block;
	padding-right: 10px;
	background-color: #fff;
}
.testimonials_item_content {
	position: relative;
	padding: 10px;
  border: 1px solid #e7dfd2;
  font-style: italic;
  background: #fefaf3;
	font-size: 14px;
	width: 667px;
	line-height: 20px;
	color: #827d7a;
	border-radius: 4px;
}
.testimonials_item_content .rating_form {
	overflow: visible;
	position: absolute;
	right: -35px;
	bottom: 7px;
}
.testimonials .pagination {
	padding: 15px 0 25px;
}
 .lowest_price_bottom {
	margin-top: 26px;
}
.lowest_market_prices_bg {
	display: inline-block;
	width: 100%;
	min-height: 180px;
}
.lowest_market_prices {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	text-align: center;
}
.lowest_market_prices .guaranteed_icon {
	display: inline-block;
	vertical-align: top;
	position: absolute;
	top: 0;
	left: 44px;
}
.lowest_market_prices .info {
	display: inline-block;
	vertical-align: top;
	width: 590px;
	position: relative;
}
.lowest_market_prices .info h2 {
	font-size: 25px;
	line-height: 26px;
	margin: 0 auto 0;
	width: 590px;
	color: #6b2517;
	font-weight: 500;
	position: relative;
	top: -43px;
}
.lowest_market_prices .info h2:after {
	position: absolute;
	display: block;
	content: "";
	height: 1px;
	width: 155px;
	background: url(/assets/spritesheet.png) no-repeat;
	background-position: -10px -174px;
	left: 50%;
	margin-left: -77px;
	bottom: -14px;
}
.lowest_market_prices .info i {
	font-size: 14px;
	line-height: 17px;
	color: #989898;
	font-style: normal;
}
.lowest_market_prices .info p span {
	display: inline;
}
.lowest_market_prices .info p {
	color: #119954;
	line-height: 21px;
	font-size: 18px;
	padding: 0 0 0 0;
	position: relative;
	width: 520px;
	margin: 0 auto;
	top: -17px;
}
.lowest_market_prices .info .button {
	width: 425px;
	margin: 4px auto;
}
.lowest_market_prices .info .button.big {
	height: 54px;
	line-height: 54px;
	font-size: 20px;
	font-weight: 200;
}
.lowest_market_prices .customer_support_icon {
	display: inline-block;
	vertical-align: top;
	position: absolute;
	top: 0;
	right: 44px;
}
.content.footer_link_page,
.content .footer_link_page {
	border: 1px solid #d7d0c6;
	background: #fff;
	width: 698px;
	overflow: hidden;
	padding: 15px 10px 10px 20px;
  margin: 20px 20px 60px 0 !important;
  border-radius: 4px;
}
.content.blog_read,
.content .blog_read {
	border: 1px solid #d7d0c6;
	background: #fff;
	width: 698px;
	overflow: hidden;
	padding: 15px 10px 10px 20px;
  margin: 20px 20px 60px 0 !important;
  border-radius: 4px;
}
.breadcrumbs {
  overflow: hidden;
  padding: 0 0 5px 0;
  position: relative;
}
.breadcrumbs ul {
	font-size: 14px;
	line-height: 16px;
}
.breadcrumbs li {
  padding: 0 3px 0 3px;
  list-style: none;
  float:left;
}
.breadcrumbs li a {
	text-decoration: none;
	color: #dcd1c0;
	padding-right: 21px;
	position: relative;
	display: inline-block;
	vertical-align: top;
}
.breadcrumbs li a:after {
	position: absolute;
	content: "";
	display: block;
	width: 15px;
	height: 7px;
	top: 6px;
	right: 0;
	background: url(/assets/breadcrumbs_arrow.png) -18px 0 no-repeat;
}
.breadcrumbs li span {
	color: #a1a2a6;
	font-style: italic;
	line-height: 14px;
}
.breadcrumbs li a span {
	color: #1662bf;
	font-style: normal;
	text-decoration: underline;
}
.breadcrumbs a:hover span {
	text-decoration: none;
}
.breadcrumbs .back_to span {
	color: #1662bf;
}
.back_to {
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	line-height: 18px;
	float: left;
	padding-left: 19px;
	clear: both;
	position: relative;
	margin: 10px 0 10px 0;
}
.back_to:before {
	position: absolute;
	content: "";
	display: block;
	width: 15px;
	height: 7px;
	top: 6px;
	left: 2px;
	background: url(/assets/breadcrumbs_arrow.png) 0 0 no-repeat;
}
.back_to:after {
	position: absolute;
	content: "";
	display: block;
	width: 438px;
	height: 1px;
	bottom: -8px;
	left: 0;
	background: url(/assets/breadcrumbs_sep.png)no-repeat;
}
.back_to span {
	padding: 0 0 0 3px;
	display: inline-block;
	margin: 0 0 5px 0;
	color: #2b719d;
	text-decoration: underline;
}
.back_to:hover span {
	text-decoration: none;
}
.blog_read_content_title {
  position: relative;
  padding: 0 0 10px 0;
}
.footer_link_page .content_title,
.blog_read_title h1,
.blog_read_title {
  font-size: 20px;
  line-height: 30px;
  color: #404f74;
  clear: both;
}
.blog_read_title h1 {
  font-weight: inherit;
  text-transform: inherit;
}
.footer_link_page .content_title h1 {
	font-weight: normal;
}
.blog_read_content_title p {
	font-size: 13px;
	line-height: 18px;
	color: #9e957e;
}
.blog_read_content_title p a {
	font-size: 14px;
	line-height: 18px;
	color: #9e957e;
	text-decoration: none;
}
.footer_link_page .content_title p a:hover,
.blog_read_content_title p a:hover{
	text-decoration: underline;
}
.footer_link_page .content_title .social,
.blog_read_content_title .social {
	margin-top: 13px;
	margin-left: 0;
	margin-bottom: 4px;
	left: 0;
	top: 0;
}
/*.page_content .wishes_item:first-child {
	padding-top: 20px;
	border: none;
}*/
.page_content .wishes_item {
	min-height: 125px;
	vertical-align: bottom;
	width: 167px;
	padding: 0;
}
.page_content .wishes_item img {
	height: 63px;
}
.footer_link_page .blog_tags {
	clear: both;
	padding-top: 6px;
	margin-top: 0;
}
.page_content .blog_tags {
	/*clear: both;*/
	padding-top: 6px;
	margin-top: 25px;
}
/*.footer_link_page .page_content {
	clear: both;
  overflow: hidden;
  padding: 7px 0 7px 0;
  margin: 0;
}*/
.page_content {
	clear: both;
  overflow: hidden;
  padding: 7px 0 7px 0;
}
.page_content h3 {
	text-align: left;
	font-weight: normal;
	font-size: 18px;
	line-height: 25px;
	text-transform: none;
	padding: 15px 0 15px;
	color: #383252;
}
/*.footer_link_page .page_content p,
.blog_read_content p {
	padding-bottom: 11px;
	color: #6d6b6a;
	font-size: 14px;
	line-height: 23px;
}*/
.page_content p {
	padding-bottom: 11px;
	color: #6d6b6a;
	font-size: 14px;
	line-height: 23px;
}
.content.discount .page_content .wishes,
.content .discount .page_content .wishes {
	margin-left: 30px;
}
.content.discount .page_content .wishes_item,
.content .discount .page_content .wishes_item {
	vertical-align: top;
	text-align: center;
	width: 195px;
	min-height: 105px;
	display: inline-block;
	margin: 0 0 30px 0;
}
.page_content .wishes{
	margin: 20px 0 10px 10px;
	width: auto;
}
.page_content .wishes p{
	color: #6d6759;
	font-size: 13px;
	line-height: 16px;
}
.page_content .wishes .button.big {
	padding: 0;
	font-size: 18px;
	margin: 20px auto 20px;
	font-weight: 200;
  width: 252px;
  line-height: 45px;
  height: 45px;
}
.page_content b {
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
	color: #296bc3;
}
.page_content .button.yellow {
	margin: 17px auto 5px;
}
.page_content .button.double span{
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
}
.page_content .button.medium.double {
	width: 371px;
	font-size: 18px;
	height: 43px;
	line-height: 43px;
	text-transform: none !important;
	color: #fff;
	font-weight: normal;
}
.attraction {
	width: 394px;
	margin: 40px auto 22px;
	border: 1px solid #d7d0c6	;
	overflow: hidden;
	text-align: center;
	border-radius: 4px;
}
.attraction .attraction_item {
	overflow: hidden;
	position: relative;
	border-bottom: 1px solid #d7d0c6;
}
.attraction .attraction_item {
	background: #f9fafd;
}
.attraction .attraction_item img {
	padding: 19px 0 0 10px;
}
.attraction .attraction_item p {
	line-height: 20px;
	font-size: 18px;
	color: #585c71;
	float: left;
	padding: 29px 0 29px;
	width: 286px;
	border-right: 1px solid #d7d0c6;
}
.attraction .attraction_item:nth-child(2) img {
	padding: 28px 0 0 7px;
}
.attraction_item.right {
	background: #fff;
}
.attraction .attraction_item:last-child {
	border-bottom: none;
}
.page_content .sidebar_item .button.yellow{
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	width: 351px;
	margin:0 auto 0;
	padding: 0 31px 0 0;
}
.page_content .sidebar_item .main_order_price{
	float: left;
	width: 170px;
}
.page_content .sidebar_item .main_order_price .total_price{
	font-weight: bold;
}
.page_content .sidebar_item .main_order_price span{
	padding: 5px 0 0 0;
}
.widget_380.free_features .button {
	height: 54px;
}
.widget_380.free_features .button,
.widget_380.main_get_price .button {
	width: 173px !important;
	font-size: 16px !important;
	height: 45px;
	line-height: 45px;
	transition: none;
	display: inline-block;
	vertical-align: top;
}
.widget_380.main_get_price .button.yellow {
	margin: 20px 12px 0 0;
	float: right;
}
.widget_300 .extra_feature_item .special_offers {
	text-transform: uppercase;
	font-size: 16px;
	line-height: 18px;
	color: #ff6400;
}
.page_content .sidebar_item.extra_features{
	margin-right: 16px;
}
.widget_300.extra_features .extra_feature_item span {
	line-height: 20px;
}
.widget_300 .extra_feature_item p {
	padding-bottom: 11px;
	line-height: 16px;
}
.widget_300.extra_features .extra_feature_item:last-child {
	margin-bottom: 0;
}
.page_content .extra_features .sidebar_content{
	padding-bottom: 0;
}
.page_content .sidebar_item{
	margin-bottom: 8px;
}
.wishes {
	overflow: hidden;
	margin: 10px 30px 30px 30px;
	padding: 20px 0 0 0;
}
.wishes_item {
	vertical-align: top;
	text-align: center;
	width: 195px;
	min-height: 105px;
	display: inline-block;
	margin: 0 0 30px 0;
}
.wishes_item p {
	color: #544945;
	width: 155px;
	margin: 15px auto 0;
	font-size: 15px	;
	line-height: 16px;
	padding-left: 5px;
}
/*.footer_link_page .main_order_form p,
.blog_read .main_order_form p {
	padding-top: 0px;
}*/
/*.footer_link_page .main_order_form .price_page span,
.blog_read .main_order_form .price_page span {
	line-height: 18px;
}*/
.widget_380.main_get_price .widget_content {
	padding: 13px 0 7px 0;
}
.contact_us_content .content_text {
	font-size: 14px;
	line-height: 22px;
	color: #434857;
}
.widget_300.extra_features .button.small {
	font-size: 18px;
	text-transform: none;
	text-shadow: none;
}
.contacts_form {
	margin: 25px 0;
	background: #fff;
}
.contacts_form h2 {
  font-size: 23px;
  line-height: 29px;
  color: #635854;
  font-weight: normal;
  text-transform: none;
  z-index: 2;
  position: relative;
  display: block;
  padding: 13px 0 14px 0;
  margin: 0 auto 25px;
  text-align: center;
}
.contacts_form h2:after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  bottom: 0;
}
.contacts_form_item {
	width: 100%;
	margin: 0 0 0 0;
	float: left;
}
/*.contacts_form_item:after {
	display: block;
	content: '';
	clear: both;
}*/
.contacts_form .contacts_form_right {
	float: right;
  font-size: 15px;
  line-height: 18px;
	margin-top: 37px;
	color: #484848;
}
.contacts_form .contacts_form_right .location  {
  background: url(/assets/location.png) left top no-repeat;
  padding-left: 25px;
  width: 212px;
  margin-bottom: 13px;
}
.contacts_form .contacts_form_right .call {
  background: url(/assets/phone.png) left top no-repeat;
  height: 28px;
  padding-left: 25px;
  margin-bottom: 13px;
  width: 110px;
}
.contacts_form .contacts_form_right .email {
  background: url(/assets/email.png) left center no-repeat;
  color: #616a71;
  height: 20px;
  padding-left: 25px;
  text-decoration: none;
}
.contacts_form .contacts_form_right .email:hover {
  text-decoration: underline;
}
.contacts_form_item label {
	float: left;
	width: 100px;
	font-size: 15px;
	margin-right: 10px;
	text-align: left;
	color: #635854;
}
.contacts_form_item .input {
	padding: 0 10px;
	width: 418px;
	margin-bottom: 16px;
}
.contacts_form_item .textarea {
	width: 418px;
	height: 90px;
	padding: 10px;
	/*border: 1px solid #c2c5cf;*/
	font-size: 14px;
	line-height: 16px;
	resize: none;
	overflow: hidden;
	vertical-align: top;
	margin-bottom: 16px;
}
.contacts_form .button {
	cursor: pointer;
	display: block;
	margin: 25px auto 7px;
}
.contacts_form .button.medium {
	width: 213px;
	height: 45px;
	line-height: 45px;
}
.write_review,
.contact_us_content {
	border: 1px solid #d7d0c6;
	background: #fff;
	margin: 0 20px 20px 0;
	padding: 0px 19px 50px 19px;
	width: 690px;
	border-radius: 4px;
}
.write_review p {
	padding-top: 15px;
	display: inline-block;
	vertical-align: top;
}
.contact_us_information p span {
	padding: 0;
	font-weight: bold;
}
.write_review p,
.contact_us_information p span,
.contact_us_information p {
	color: #6d6b6a	;
	font-size: 14px;
	line-height: 22px;
}
.contact_us_information span {
	color: #383252;
	font-size: 18px;
	line-height: 25px;
	padding: 0 0 10px;
	display: inline-block;
	vertical-align: top;
}
.contact_us_information {
	padding: 20px 0 0 0;
}
.toll_free_line {
  margin: 20px 0 20px 0;
  display: inline-block;
  width: 100%;
  background: #f5f3e6;
  padding: 2px 0;
}
.toll_free_line a {
  padding: 9px 0 10px 15px;
  font-size: 17px;
  line-height: 20px;
  display: inline-block;
  text-decoration: none;
  color: #645e51;
}
.toll_free_line a:hover {
	text-decoration: underline;
}
.toll_free_line p {
	padding: 9px 0 10px 15px;
  font-size: 17px;
  line-height: 20px;
  display: inline-block;
  text-transform: uppercase;
  color: #645e51;
}
.toll_free_line img {
	padding: 9px 0 0 10px;
	vertical-align: top;
}
.toll_free_line .contact_us_phone {
	float: right;
	margin-top: 0;
}
.toll_free_line .contact_us_phone p {
  padding-left: 32px;
  padding-right: 16px;
  float: left;
  border-left: 1px solid #fff;
}
.toll_free_line .phone_drop {
	margin: 4px 10px 0 0;
	background: url(/assets/toll_free_arrow.png) 47px 12px no-repeat;
	background-color: #aca7be;
}
.toll_free_line .phone_drop span {
	color: #e6e4d6;
	border-color: #e6e4d6;
}
.static_page {
	border: #d7d0c6 1px solid;
	background-color: #fff;
	overflow: hidden;
	width: 728px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.static_page .profile_nav {
	margin: 13px 10px 0;
	width: auto;
}
.static_page .profile_nav ul {
	border: 1px solid #d7d0c6;
}
.static_page .profile_nav li:hover,
.static_page .profile_nav .active {
	background: #dddaeb;
	color: #69637e;
	box-shadow: 0px 0px 5px 2px #d7d5dd;
}
.static_page .profile_nav li:hover a,
.static_page .profile_nav .active a {
	color: #69637e;
	background: #dddaeb;
	box-shadow: none;
}
.static_page .profile_nav a {
	padding: 0 16px 0 17px;
	color: #aeabba;
	height: 30px;
	line-height: 30px;
	margin: 6px 0 5px;
}
.static_page .page_content {
	overflow: hidden;
	padding: 0 19px;
}
.static_page .page_content p {
	font-size: 14px;
	line-height: 22px;
	padding: 5px 0;
	color: #6d6b6a;
	margin-bottom: 15px;
}
.static_page .page_content .list li {
	font-size: 14px;
	line-height: 22px;
	padding: 5px 0;
	color: #6d6b6a;
	margin-bottom: 15px;
	text-indent: 0;
}
.static_page .page_content ol.list li {
	margin-left: 20px;
	background-image: none;
	text-indent: 0;
}
.content_text_title {
	color: #b13f0d;
	font-size: 18px;
	line-height: 30px;
	margin-top: 10px;
}
.static_page .page_content h2 {
	color: #ec3f53;
	font-size: 18px;
	line-height: 24px;
	font-weight: normal;
	text-transform: none;
}
.static_page .page_content h3 {
	font-size: 18px;
	line-height: 25px;
	color: #383252;
	font-weight: normal;
	text-transform: none;
}
.warning_text p {
	color: #37342e;
	font-size: 14px;
	line-height: 22px;
}
.desclaimer .page_content p span {
	color: #37342e;
	font-size: 14px;
}
.page_content .button span {
	font-size: 18px;
	line-height: 20px;
	color: #45391a;
	font-weight: bold;
	text-transform: uppercase;
}
.desclaimer .page_content {
	border: 1px solid #a1813c;
	background: #fbf1e1;
	margin: 0 12px 25px 20px;
	padding: 20px 20px 13px 20px;
	overflow: hidden;
}
.sidebar.sidebar_discount_inner {
	margin-top: 19px;
}
.sidebar_item.money_back .badges_item,
.sidebar_item.best_choise .badges_item {
	float: none;
	text-align: center;
	position: relative;
	top: -27px;
}
.sidebar_item.money_back,
.sidebar_item.best_choise {
	border: none;
}
.sidebar_item.money_back .sidebar_title,
.sidebar_item.best_choise .sidebar_title {
	border: 1px solid #d7d0c6;
	border-bottom: none;
	border-radius: 3px 3px 0 0;
}
.sidebar_item.money_back .sidebar_content,
.sidebar_item.best_choise .sidebar_content {
	padding: 15px 7px 15px 9px;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	border: 1px solid #d7d0c6;
	border-radius: 0 0 3px 3px;
}
.sidebar_item.money_back .sidebar_content,
.sidebar_item.best_choise .sidebar_content {
	background: url(/assets/payment_secur_bg.png) top no-repeat;
}
.sidebar_item.attention {
	border-color: #e8624c;
	overflow: hidden;
}
.sidebar_item.attention h3 {
	padding: 0 7px;
  color: #6d6b6a;
  font-size: 14px;
  line-height: 23px;
  text-align: left;
  font-weight: normal;
}
.sidebar_item.attention .button {
	width: 108px;
	margin: 20px auto 0;
}
.sidebar_item.attention .sidebar_content {
	padding: 13px 0 0 0;
	overflow: visible;
}
.sidebar_item.attention .sidebar_title {
	background: #ec8989;
	color: #fff;
	text-transform: uppercase;
}
.content.discount,
.content .discount {
	margin: 0 0 60px !important;
	padding: 0 0 20px 0;
	min-width: 458px;
	border-radius: 3px;
	border: 1px solid #c2c5cf;
	background: #fff;
}
.content.discount h2,
.content .discount h2,
.content.discount h3,
.content .discount h3 {
	padding: 0 18px;
	color: #383252;
	font-size: 18px;
	line-height: 20px;
}
.discount .widget.our_discount {
	margin: 20px 0 20px 0;
	padding: 0 18px;
	border: 0;
}
.discount .widget.our_discount .widget_title {
	font-size: 18px;
	line-height: 24px;
	color: #296bc3;
	font-weight: bold;
	text-transform: uppercase;
	text-align: left;
	padding: 5px 25px 0;
}
.discount .widget.our_discount .widget_content {
	padding: 0 0 0 0;
	border-top: 1px solid #dddbd8;
}
.discount .widget.our_discount .prices_discount_form:after {
	display: none;
}
.discount .widget.our_discount .prices_discount_form .input {
	width: 254px;
	margin: 0;
}
.discount .widget.our_discount .prices_discount_form .button.blue {
	margin-left: 10px;
	margin-top: 1px;
}
.discount .widget.our_discount .prices_discount_form p {
	width: 248px;
	margin: 0;
  font-size: 13px;
  color: #443c2c;
  line-height: 17px;
  padding-bottom: 0;
  padding-top: 0;
}
.discount .widget.our_discount .prices_discount_form .button.medium {
	width: 126px;
}
.discount p {
	font-size: 14px;
	color: #635854;
	line-height: 25px;
	padding: 0px 18px 0;
	font-weight: normal;
	text-transform: none;
}
.discount .list {
	padding: 10px 18px 0;
}
.discount .list li {
	font-size: 14px;
	color: #635854;
	line-height: 25px;
	font-weight: normal;
	text-transform: none;
	text-indent: 0;
	padding: 0;
}
.discount ol.list {
	margin-top: 0;
}
.discount ol.list li {
	background-image: none;
  margin-left: 2em;
}
.sidebar_item.sidebar_testimonials {
	width: 248px;
}
.free_samples {
	margin: 10px 8px 0 0;
	border: 1px solid #d7d0c6;
	background: #fff;
	margin: 0 20px 65px 0;
	overflow: hidden;
	border-radius: 4px;
}
.free_samples_item {
	margin: 5px 0 9px 0;
	position: relative;
	clear: both;
}
.free_samples_item:after {
	content: "";
	position: absolute;
	display: block;
	height: 1px;
	width: 434px;
	background: #d7d0c6;
	bottom: 0;
	left: 129px;
}
.free_samples_container {
	font-size: 14px;
	line-height: 23px;
	color: #6d6b6a;
}
.samples_text {
	padding: 12px 20px 12px 20px;
}
.pdf_image {
	border-right: 1px solid #d7d0c6;
	padding: 18px 23px 22px;
	float: left;
	margin: 20px 0 0 0;
}
.free_samples_content {
	padding: 20px 20px 20px 27px;
	overflow: hidden;
}
.free_samples_content a:first-child {
	display: block;
	font-size: 20px;
	line-height: 22px;
	text-decoration: none;
	color: #1662bf;
	font-style: italic;
	width: 600px;
}
.free_samples_content a:first-child b {
	font-weight: normal;
	color: #383252;
}
.free_samples_content a:first-child:hover {
	text-decoration: underline;
}
.free_samples .button.yellow {
	font-size: 20px;
	margin: 15px 0 0 0;
	float: left;
	font-weight: 200;
}
.free_samples .button.medium {
	height: 47px;
	width: 420px;
	line-height: 47px;
}
.free_samples .button.medium sup {
	font-size: 16px;
}
.free_samples_content ul {
	list-style: none;
	color: #616a71;
	margin: 15px 0 0 3px;
	width: 300px;
	float: left;
	clear: both;
}
.free_samples_content li {
	overflow: hidden;
}
.free_samples_content li a,
.free_samples_content li p {
	float: left;
}
.free_samples_content li span,
.free_samples_content li a {
	line-height: 26px;
	font-size: 15px;
	text-decoration: none;
	color: #6c7273;
	width: 120px;
	margin-left: 18px;
}
.free_samples_content li a:hover {
	text-decoration: underline;
}
.free_samples_content li p {
	font-size: 15px;
	line-height: 26px;
	width: 145px;
	color: #635854;
	text-decoration: none;
}
.samples_read {
	border: 1px solid #d7d0c6;
	margin: 0 20px 60px 0;
	padding: 10px 10px 0 20px;
	width: 698px;
	background: #fff;
	border-radius: 4px;
}
.samples_read .breadcrumbs {
	padding-top: 2px;
	position: relative;
	overflow: visible;
}
.breadcrumbs:after {
  position: absolute;
  content: "";
  display: block;
  width: 438px;
  height: 1px;
  bottom: -22px;
  left: 0;
  background: url(/assets/breadcrumbs_sep.png)no-repeat;
}
.samples_read_content_title {
  padding: 0 0 7px 0;
}
.samples_read_content_title h1 {
	clear: both;
	font-size: 20px;
	line-height: 25px;
	color: #383252;
	padding-top: 9px;
	font-weight: normal;
	text-transform: none;
}
.samples_read_content_title .social {
	float: none;
	margin: 15px 0 0 0;
	left: 0;
	top: 0;
}
.samples_read_content {
  overflow: hidden;
  padding: 6px 0 7px 0;
  margin: 0 0 6px 0 ;
}
.samples_read_content p {
	padding-top: 10px;
	color: #6d6b6a;
	font-size: 14px;
	line-height: 23px;
}
.sidebar_item.ratings_on {
	font-size: 14px;
	line-height: 27px;
}
.sidebar_item.ratings_on .sidebar_content {
  padding: 68px 0 5px 0;
  background: url(/assets/activity_bg.png) center 10px no-repeat;
}
.sidebar_item.ratings_on .sidebar_ratings_on_item {
	overflow: hidden;
	line-height: 24px;
	padding: 9px 8px 8px;
}
.sidebar_item.ratings_on .sidebar_ratings_on_item:nth-child(2n-1) {
	background: #fafafa;
}
.sidebar_item.ratings_on .sidebar_ratings_on_item p {
	color: #635854;
	font-size: 15px;
	float: left;
	width: 130px;
}
.sidebar_item.ratings_on .sidebar_ratings_on_item span {
	font-size: 16px;
	color: #1aa75f;
	font-weight: bold;
	float: right;
}
.sidebar_item.discount_programs .sidebar_content,
.sidebar_item.delivery .sidebar_content,
.sidebar_item.plagiarism_free .sidebar_content  {
	padding: 12px 0 0;
}
.sidebar_item.discount_programs .sidebar_content p,
.sidebar_item.delivery .sidebar_content p,
.sidebar_item.plagiarism_free .sidebar_content p {
	padding: 0 13px 10px;
	font-size: 14px;
	line-height: 22px;
	color: #6d6b6a;
}
.sidebar_item.delivery .sidebar_content .list {
  padding: 0 13px;
  margin-top: 0;
}
.sidebar_item.delivery .sidebar_content .list li {
	font-size: 14px;
	color: #6d6b6a;
}
.sidebar_item.discount_programs .sidebar_content span,
.sidebar_item.delivery .sidebar_content span,
.sidebar_item.plagiarism_free .sidebar_content span {
	font-size: 18px;
	line-height: 23px;
	color: #625651;
	padding: 10px 13px 0;
	background: #ebeaf2;
	display: block;
	position: relative;
	border-top: 1px solid #e7e3dd;
}
.sidebar_item.discount_programs .sidebar_content span:after,
.sidebar_item.delivery .sidebar_content span:after,
.sidebar_item.plagiarism_free .sidebar_content span:after {
	position: absolute;
	display: block;
	content:"";
	width: 39px;
	height: 38px;
	background: url(/assets/sidebar_star.png) no-repeat;
	right: 14px;
	top: -22px;
}
.sidebar_item.delivery .sidebar_content p:last-child:not(:first-child) {
	color: #6d6b6a;
	background: #ebeaf2;
}
.sidebar_item.discount_programs .sidebar_content b {
	font-size: 16px;
	line-height: 25px;
	color: #336482;
	text-transform: uppercase;
	font-weight: bold;
}
.content.service_name,
.content .service_name {
	border: 1px solid #d7d0c6;
	background: #fff;
	padding: 0 18px;
	width: 422px;
	position: relative;
	border-radius: 4px;
}
.service_name .content_title {
	margin-bottom: 10px;
	background: none;
}
.service_name p {
	margin: 0;
	font-size: 14px;
	line-height: 23px;
	color: #6d6b6a;
	padding: 5px 0;
}
.service_name h2 {
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
}
.inner_photo {
	margin: 10px 0;
	border-radius: 4px;
	overflow: hidden;
}
.page_content .button.medium {
	text-shadow:  none;
	width: 303px;
	height: 43px;
	line-height: 43px;
	font-size: 18px;
	font-weight: 200;
}
/**/
.page_content .button.big {
	/*width: 340px;*/
	/*height: 61px;*/
}
/*.service_name .button.big {
	width: 358px;
	height: 65px;
}*/
.service_name .button.big p {
	font-size: 16px;
	line-height: 16px;
	color: #fff4b6;
	text-transform: none;
	font-weight: normal;
	padding: 0;
	position: relative;
	bottom: 7px;
	font-weight: 200;
}
.service_name .button {
	margin: 26px auto;
}
.services {
	overflow: hidden;
	border: 1px solid #d7d0c6;
	margin: 0 20px 20px 0;
	padding: 0 20px 12px 0;
	width: 708px;
	background: #fff;
	border-radius: 4px;
}
.services_categories {
	width: 688px;
	margin: 0 19px 15px 19px;
	background: #fff;
	overflow: hidden;
}
.services_item {
	padding: 15px 0 10px 0;
	position: relative;
	float:left;
	width: 229px;
}
.services_list {
	position: relative;
	z-index: 10;
	padding: 0 0 0 25px;
}
.services_list > a:after {
	position: absolute;
	content: "";
	background: url(/assets/service_list_sep.png) no-repeat;
	width: 191px;
	height: 1px;
	display: block;
	border-radius: 100%;
	left: 0px;
	bottom: 1px;
	z-index: 5;
}
.services_list a {
	display: inline-block;
	margin: 0 0 6px 0;
	font-size: 16px;
	line-height: 32px;
	font-weight: bold;
	color: #54526b;
	text-decoration: none;
	position: relative;
	z-index: 10;
}
.services_list a:hover {
	text-decoration: underline;
}
.services_list ul {
	list-style: none;
	width: 180px;
}
.services_list li a {
	position: relative;
	font-weight: normal;
	font-size: 14px;
	line-height: 17px;
	padding: 3px 0 3px 0;
	color: #5d5652;
	text-transform: none;
}
.services_link {
	padding: 20px 0 20px 0;
	clear: both;
	width: 424px;
	margin: 0 auto;
}
.services_link .button.big {
	width: 252px;
	margin: 0 auto;
	line-height: 45px;
	height: 45px;
}
.services p {
	font-size: 14px;
	line-height: 23px;
	color: #6d6b6a;
	padding: 0 20px 0 20px;
}
.services .list li {
	font-size: 14px;
	color: #6d6b6a;
}
.popup_overlay {
	background: url(/assets/popup_bg.png) repeat;
  position: fixed;
  left:  0;
  top:  0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  text-align: center;
}
.popup {
	background: #fff;
	box-shadow: 0px 1px 7px #000;
	-moz-box-shadow: 0px 1px 7px #000;
	-webkit-box-shadow: 0px 1px 7px #000;
	border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  width: 544px;
  padding: 0 0 12px 0;
  position: relative;
}
.popup_overlay:after {
  display: inline-block;
  width:  0;
  height: 100%;
  vertical-align: middle;
  content: ''
}
.popup h2 {
	color: #635854;
	display: block;
	position: relative;
	font-size: 28px;
	line-height: 28px;
	font-weight: 200;
	text-transform: none;
	margin: 20px 41px 0;
	padding: 17px 0 16px;
}
.popup.succesfull h2:after {
	position: absolute;
	content: "";
	display: block;
	height: 1px;
	width: 438px;
	background: url(/assets/title_sep.png);
	bottom: -25px;
	left: 50%;
	margin-left: -219px;
}
.popup .phone_number_item {
	float: left;
}
.popup .field_item .input_error .validation-error,
.popup .field_item .input_error .validation_error {
	width: auto;
}
.popup form {
	margin: 20px auto;
	overflow: hidden;
}
.popup form .input {
	margin: 0 0;
}
.popup form .input_error {
	display: inline-block;
	float: none;
}
.popup .settings_time_order select {
	width: 305px;
	height: 30px;
	margin-right: 49px;
}
.popup .settings_time_order .field_item {
	margin-bottom: 17px;
}
.popup .field_item label {
	width: 120px;
	text-align: left;
	color: #635854;
	margin: 4px 20px 0 20px;
	font-size: 15px;
	line-height: 17px;
}
.popup .field_item .input {
	width: 283px;
}
.popup .field_item .select2-container {
	width: 305px;
	text-align: left;
}
.popup p {
	color: #635854;
	/*overflow: hidden;*/
	font-size: 16px;
	line-height: 23px;
	text-align: center;
	margin-top: 15px;
	padding: 0 60px;
	position: relative;
	margin-bottom: 60px;
}
.popup p:after {
	position: absolute;
	content: "";
	height: 1px;
	width: 438px;
	background: url(/assets/title_sep.png);
	bottom: -25px;
	left: 50%;
	margin-left: -219px;
	display: block;
}
.popup p span {
	font-weight: normal;
}
.popup.succesfull h2 {
	border: none;
	margin: 45px 100px;
}
.popup.succesfull .button.medium {
	margin: 30px 10px;
}
.popup .close {
  position: absolute;
  width: 21px;
  height: 21px;
  background: url(/assets/close_promo.png) no-repeat;
  top: -23px;
  right: -23px;
}
.popup .input {
	width: 263px;
}
.popup .buttons {
	margin: 20px 0 10px 15px;
	overflow: hidden;
	text-align: center;
}
.popup .button.medium {
	cursor: pointer;
	width: 157px;
	height: 45px;
	line-height: 45px;
	font-size: 18px;
	margin: 0 10px;
	padding-top: 2px;
	display: inline-block;
}
.popup .button.blue {
	color: #fff;
}
.popup_overlay.login_popup {
	width: 700px;
	height: 45px;
	background: none;
  top: 42%;
  left: 50%;
  margin-left: -350px;
}
.popup_overlay.login_popup .popup {
	width: 700px;
}
.popup_overlay.login_popup .popup p {
	font-size: 14px;
	font-weight: bold;
	margin: 10px 0 0 0;
}
.popup_overlay.login_popup .popup p:after {
	display: none;
}
.popup .order_phone_number .phone_number_item .input {
	margin: 0;
}
.login {
	width: 1000px;
}
.login_title {
  font-size: 23px;
  line-height: 29px;
  color: #635854;
  text-transform: none;
  font-weight: normal;
  position: relative;
  border-top: none;
  padding: 10px 0;
  margin: 35px 0 60px;
  text-align: center;
}
.login_title:after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  bottom: 0;
}
.login_form {
	width: 455px;
	margin: 0 auto 0;
	display: table;
	text-align: center;
}
.login_form.remind_password .login_item {
	margin-bottom: 10px;
}
.login_form.remind_password .button {
	margin-bottom: 4px;
}
.login_item {
	text-align: center;
	display: inline-block;
	width: 100%;
	margin-top: 5px;
}
.login_item label {
	font-size: 14px;
	line-height: 16px;
	color: #525860;
}
.login_item .input {
	width: 413px;
	height: 38px;
	border: 1px solid #b0aaa2;
	border-radius: 4px;
	line-height: 28px;
	display: inline-block;
	font-style: italic;
	border-radius: 4px;
	color: #abadb4;
	font-size: 15px;
	padding: 0 10px 0 17px;
}
.login_form .button {
	cursor: pointer;
	display: inline-block;
	margin-top: 35px;
}
.login_form .button.small {
	text-shadow: none;
	height: 45px;
	line-height: 45px;
	width: 252px;
	font-size: 16px;
	color: #fff;
}
.login_info {
	width: 100%;
	display: inline-block;
	text-align: center;
	font-size: 14px;
	margin: 137px 0 0;
	position: relative;
	padding-top: 10px;
}
.login_info:before {
	position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  top: 0;
}
.login_info a {
	color: #1662bf;
	font-size: 14px;
	line-height: 22px;
	text-decoration: underline;
}
.login_info a:hover {
	text-decoration: none;
}
.login_info p {
	display: block;
	color: #434857;
	font-size: 13px;
	line-height: 16px;
}
.login .input_error {
	float: none;
}
.prices {
	overflow: hidden;
}
.prices {
	margin: 0px 0 22px 0;
	border: 1px solid #d7d0c6;
	border-radius: 4px;
	background: #fff;
	width: 458px;
}
.prices .content_title {
	margin-bottom: 20px;
}
.price_item {
	display: inline-block;
	width: 100%;
}
.price_item > label ,
.price_item > .order-pages-num > label ,
.price_item > .order-words-num > label {
	color: #434857;
	float: left;
	font-size: 15px;
	width: 120px;
	text-align: left;
	margin: 5px 0 0 20px;
}
.price_item > label a ,
.price_item > .order-pages-num > label a ,
.price_item > .order-words-num > label a {
	text-decoration: underline;
	color: #434857;
}
.price_item > label a:hover ,
.price_item > .order-pages-num > label a:hover ,
.price_item > .order-words-num > label a:hover {
	text-decoration: none;
}
.price_item .radio_currency {
	width: 305px;
	float: left;
	margin-left: -1px;
}
.price_item .select2-container {
	min-width: 307px;
	float: left;
}
.select_currency .price_item,
.type_service .price_item {
	margin-bottom: 17px;
}
.type_paper .price_item {
	float: left;
	width: auto;
	margin-bottom: 17px;
}
.type_paper .price_item > label ,
.type_paper .price_item > .order-pages-num > label ,
.type_paper .price_item > .order-words-num > label {
	display: block;
	float: left;
	margin-bottom: 4px;
}
.pages_of_words .price_item {
	width: auto;
	float: left;
	margin-bottom: 17px;
}
.pages_of_words .price_item > label ,
.pages_of_words .price_item > .order-pages-num > label ,
.pages_of_words .price_item > .order-words-num > label {
	display: block;
	float: left;
	position: relative;
	left: -2px;
	margin-bottom: 4px;
}
.pages_of_words .price_item .spinner_block {
	margin-right: 17px;
}
.prices_form_wrapper {
	background: #fff;
	width: 100%;
	display: block;
	clear: both;
}
.prices_form_wrapper .academic_level {
	position: relative;
	margin: 0 0 8px;
}
.academic_level .price_item .chosen-container {
	margin-top: 5px;
	min-width: 249px;
	background: #fff;
}
.price_choice {
	overflow: hidden;
	background: #fff;
	padding: 0 13px 0;
}
.price_choice_item {
	background: #fff;
	border: #aca395 1px solid;
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	cursor: pointer;
	border-radius: 4px;
	padding: 3px 0 3px;
}
.price_choice_item.active {
	background: #edf0ff;
	border: #afb5da 1px solid;
}
.price_choice_item.active .cost {
	color: #367d36;
}
.price_choice_item.active:hover{
	background: #edf0ff;
	border: #afb5da 1px solid;
}
.price_choice_item:hover  {
	border: #aca395 1px solid;
	background: #f9f9f9;
}
.price_choice_item .radio {
	float: left;
	margin: 3px 0 0 7px;
}
.price_choice_item .time {
	color: #635854;
	float: left;
	font-size: 14px;
	line-height: 20px;
	margin: 2px 0 0 20px;
	width: 70px;
}
.price_choice_item .cost strong {
	font-weight: normal;
}
.price_choice_item .cost {
	float: left;
	font-size: 15px;
	line-height: 20px;
	margin: 2px 0 0 5px;
	width: 111px;
	color: #504440;
}
.price_choice_item .deadline {
	color: #635854;
	float: right;
	font-size: 14px;
	line-height: 20px;
	width: 150px;
	padding: 0 10px 0 0;
	text-align: right;
}
.prices .prices_form .price_total {
	text-align: center;
	overflow: hidden;
	display: inline-block;
	border-radius: 4px;
	background: #f6f1ee;
	width: 238px;
	padding: 5px 0 6px;
	margin: 0 0 30px 18px;
}
.prices .prices_form .price_total span {
	color: #1aa75f;
	display: inline;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 24px;
	font-weight: bold;
}
.prices .prices_form .price_total p {
	color: #1aa75f;
	display: inline;
	font-size: 25px;
	line-height: 24px;
	width: 88px;
	font-weight: bold;
}
.prices .prices_form .price_total p sup {
	font-size: 17px;
}
.prices .prices_form .button {
	cursor: pointer;
	margin: 0 0 0 8px;
	width: 173px;
}
.prices .prices_form .button.medium {
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	display: inline-block;
	vertical-align: top;
	border: none;
}
.prices_content {
	display: inline-block;
	margin: 0 20px;
}
.prices_content p:last-child {
	padding-bottom: 17px;
}
.prices_content p {
	color: #635854;
	font-size: 14px;
	line-height: 22px;
}
.prices_content .list {
	display: inline-block;
	width: 100%;
	list-style: none;
	margin: 15px 0;
}
.prices_content .list li {
	background: url(/assets/point.png) left 10px no-repeat;
	padding: 0 0 0 12px !important;
	text-indent: 0;
	font-size: 14px;
	color: #635854;
	line-height: 22px;
}
.prices_content li:last-child {
	margin-bottom: 0;
}
.prices_discount {
	display: inline-block;
	margin: 12px 20px 0;
}
.prices_discount .content_title {
	border: none;
	margin: 0;
}
.prices_discount .content_title:after {
	bottom: 60px;
}
.prices_discount .content_title h2 {
	font-size: 18px;
	line-height: 24px;
	position: relative;
	color: #383252;
	text-align: left;
}
.prices_discount p {
	color: #635854;
	font-size: 15px;
	line-height: 22px;
}
.prices_discount_form {
	display: inline-block;
	width: 100%;
	margin-top: 42px;
	margin-bottom: 15px;
	position: relative;
}
.discounts .prices_discount_form {
	width: 97%;
	padding: 0 1.5%;
}
.prices_discount_form:after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  top: -20px;
}
.subscribe_discount_field {
	float: left;
	width: 280px;
}
.prices_discount_form label {
	display: block;
	font-size: 18px;
	color: #383252;
	line-height: 23px;
	font-weight: normal;
	padding: 0 0 5px 0;
}
.prices_discount_form .input {
	float: left;
	width: 254px;
	height: 28px;
	margin: 4px 0 0 1px;
	border-radius: 3px 3px 0 0;
}
.prices_discount_form p {
	background: #f5f5ef;
	border: 1px solid #8e8679;
	border-top: none;
	border-radius: 0 0 3px 3px;
	font-size: 14px;
	color: #76766f;
	line-height: 17px;
	padding-left: 8px;
	width: 266px;
	float: left;
	font-style: italic;
	/*margin: 0 0 0 1px;*/
}
.prices_discount_form p b {
	color: #566384;
	font-size: 15px;
}
.prices_discount_form .button {
	cursor: pointer;
	float: left;
	margin: 0 0 0 9px;
	width: 89px;
}
.prices_discount_form .button.medium {
	height: 50px;
	line-height: 50px;
	font-weight: 200;
	width: 140px;
	color: #fff;
	float: right;
}
.sidebar_blog .button.blue,
.sidebar_item.sidebar_free_quote .button.yellow,
.prices_discount_form .button.blue {
	background: #6da4e8;
  background: linear-gradient(to right, #6da4e8 0%,#6da4e8 50%,#5184e0 100%);
}
.sidebar_blog .button.blue:hover,
.sidebar_item.sidebar_free_quote .button.yellow:hover,
.prices_discount_form .button.blue:hover {
	background: #5d92cd;
  background: linear-gradient(to right, #5d92cd 0%,#5d92cd 50%,#456cbb 100%);
}
.prices_resume {
	display: block;
	width: 100%;
	margin: 0 0 30px 0;
	border-bottom: 1px solid #c2c5cf;
}
.prices_resume_thead {
	border-top: 1px solid #c5beb4;
	display: table;
	height: 30px;
	width: 100%;
	background: #e9e8f2;
}
.prices_resume_thead .prices_resume_time {
	border-left: 1px solid #c5beb4;
	color: #564d47;
	font-size: 14px;
}
.prices_resume_tbody {
	display: table;
	width: 100%;
}
.prices_resume_thead .prices_resume_services {
	text-align: left;
	font-size: 14px;
	color: #564d47;
}
.prices_resume_tbody.popular .prices_resume_title {
	background: #f8b06a;
	display: block;
	width: 100%;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
}
.prices_resume_tbody.other {
	background: #fff;
	overflow: hidden;
}
.prices_resume_tbody.other .prices_resume_title {
	background: #a4a0ae;
	position: relative;
	display: block;
	width: 100%;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
}
.prices_resume_tbody .prices_resume_time:hover {
	background: #2D2517;
	cursor: pointer;
}
.prices_resume_tbody .prices_resume_time a {
	color: #1aa75f;
	font-size: 12px;
	text-decoration: none;
}
.prices_resume_tbody .prices_resume_time:hover {
	background: #eeebe5;
}
.prices_resume_tbody .prices_resume_time:hover a {
	color: #198862;
}
.prices_resume_tbody .prices_resume_services {
	min-width: 212px;
}
.prices_resume_tbody .prices_resume_time {
	width: 57px;
}
.prices_resume_title {
	display: table-cell;
	vertical-align: middle;
	width: 29px;
	text-align: center;
}
.prices_resume_services {
	display: table-cell;
	vertical-align: middle;
	width: 211px;
	padding: 4px 7px;
}
.prices_resume_services b {
	color: #fe6f67;
	display: block;
	font-weight: normal;
	padding: 4px 0 0 0;
}
.prices_resume_time {
	border-left: #e1ddd6 1px solid;
	display: table-cell;
	vertical-align: middle;
	width: 60px;
	font-size: 13px;
	text-align: center;
}
.prices_resume_time.active:hover,
.prices_resume_time.active {
	background: #6f7489;
}
.prices_resume_time.active:hover a,
.prices_resume_time.active a {
	color: #fff;
}
.prices_resume_item:last-child {
	border-bottom: none;
}
.prices_resume_item {
	display: table;
	height: 31px;
	border-bottom: 1px solid #e1ddd6;
}
.prices_resume_item > div {
	font-size: 14px;
	color: #454c4d;
}
.prices_resume_item.even {
	background: #fff;
}
.prices_resume_item.odd {
	background: #fff;
}
.faq {
	overflow: hidden;
	border: 1px solid #d7d0c6;
	background: #fff;
	margin: 0 0px 20px 0;
	padding: 0 39px 12px 19px ;
	width: 670px;
	background: #fff;
	border-radius: 4px;
}
.faq h2 {
	color: #383252;
	font-size: 20px;
	line-height: 30px;
	font-weight: normal;
	text-transform: none;
	margin: 10px 0 20px;
}
.faq p {
	color: #8e8e8e;
	font-size: 14px;
	line-height: 20px;
	font-style: italic;
	padding: 22px 0;
}
.sidebar_item.best_paper .button.medium {
	margin-top: 10px;
}
.sidebar input.button.medium {
	border: none;
}
.sidebar .button.medium {
	width: 213px;
	margin: 0 auto 15px;
	font-weight: 200;
}
.accordion {
	margin-bottom: 30px;
	position: relative;
}
.accordion:after {
	position: absolute;
	content: "";
	display: block;
	width: 438px;
	height: 1px;
	background: url(/assets/title_sep.png) no-repeat;
	left: 50%;
	margin-left: -219px;
	bottom: -15px;
}
.accordion:last-child:after {
	display: none;
}
.payment {
	width: 728px;
	float: left;
	border: 1px solid #d7d0c6;
	border-radius: 4px;
	background: #fff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	margin-bottom: 40px;
}
.payment .content_title {
	margin-top: 0px;
	padding: 11px 0;
}
.payment .content_title h1 {
	font-size: 20px;
	padding-left: 20px;
}
.payment_content {
	width: 100%;
	overflow: hidden;
}
.payment_content .payment_content_title:first-child {
	border-bottom: 1px solid #abcde6;
	margin-bottom: 7px;
}
.payment_content_title {
	display: inline-block;
	width: 100%;
	position: relative;
	background: #f0f9ff;
	padding: 13px 20px 13px 30px;
}
.payment_content_title h3 {
	color: #2d5066;
	display: inline-block;
}
.payment_content ul {
	list-style: none;
	margin: 5px 0 10px 0;
}
.payment_content ul li {
	overflow: hidden;
	margin-bottom: 15px;
}
.payment_content ul span {
	color: #635854;
	float: left;
	font-size: 15px;
	line-height: 18px;
	width: 150px;
	margin-right: 5px;
}
.payment_content ul p {
	float: left;
	font-size: 15px;
	line-height: 18px;
	color: #7e7869;
}
.order_description_item {
	float: left;
	width: 348px;
	margin-right: 5px;
}
.payment_form {
	display: inline-block;
	width: 100%;
}
.payment_item {
	overflow: hidden;
	margin-bottom: 10px;
}
.payment_item >label {
	font-size: 15px;
	line-height: 18px;
	float: left;
	color: #000000;
	width: 100px;
	text-align: right;
	margin: 5px 20px 0 0;
}
.payment_item .radio_currency {
	float: left;
	width: 250px;
}
.payment_item .radio_method {
	width: 250px;
}
.payment .order_total {
/*	margin: 10px 0 0 0;
	padding: 22px 0;*/
}
.payment_view {
	overflow: hidden;
	padding: 0 0 15px 0;
}
.payment_view_text {
	font-size: 14px;
	line-height: 23px;
	color: #6d6b6a;
	padding: 10px 25px;
}
.payment_content h3,
.tab_item .payment_view h3 {
	font-size: 18px;
  line-height: 24px;
  color: #383252;
  font-weight: normal;
  text-transform: none;
  padding: 0 19px;
  text-align: left;
  position: relative;
}
.payment_content h3:after,
.tab_item .payment_view h3:after {
	position: absolute;
  display: block;
  content: "";
  width: 607px;
  height: 1px;
  left: 20px;
  bottom: -5px;
  background: url(/assets/title_bg.png) no-repeat;
}
.payment_content h3 span,
.tab_item .payment_view h3 span {
	color: #1aa75f;
	font-weight: normal;
	padding: 0 0 0 6px;
}
.payment .payment_content h3,
.payment .tab_item .payment_view h3 {
	margin: 10px 0 30px 0;
}
.payment_view .order_total .total_price {
	display: inline-block;
	margin: 3px 0 0 0;
	float: left;
	width: auto;
	background: #f6f1ee;
	padding: 6px 0 7px;
	width: 250px;
	border-radius: 7px 7px 0 0;
	position: relative;
}
.payment_view .order_total.use_my_balance .total_price:after {
	position: absolute;
	display: block;
	content: "";
	width: 220px;
	height: 1px;
	background: #cfcbc8;
	left: 15px;
	bottom: 0;
}
.payment_view .order_balance {
	margin-left: 174px;
}
.payment_view .tab_total,
.payment_content .payment_total_price {
	overflow: hidden;
	padding: 10px 0px;
	margin: 0 19px;
	position: relative;
}
.payment_view .tab_total:after,
.payment_content .payment_total_price:after {
	position: absolute;
	display: block;
	content: "";
	width: 607px;
	height: 1px;
	left: 0;
	bottom: 0;
	background: url(/assets/title_bg.png) no-repeat;
}
.payment_view .tab_total:before,
.payment_content .payment_total_price:before {
	position: absolute;
	display: block;
	content: "";
	width: 607px;
	height: 1px;
	left: 0;
	top: 6px;
	background: url(/assets/title_bg.png) no-repeat;
}
.payment_view .tab_total,
.payment_content .payment_total_price {
	color: #1aa75f;
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
}
.payment_view .tab_total span,
.payment_content .payment_total_price span {
	display: inline-block;
	padding: 0 5px 0 0;
	text-transform: uppercase;
}
.payment_view .tab_total p,
.payment_content .payment_total_price p {
	display: inline-block;
	font-size: 25px;
}
.payment_view .tab_total p sup,
.payment_content .payment_total_price p sup {
	font-size: 16px;
}
.payment_view .balance_block .order_total .button {
	font-size: 18px;
	float: left;
	margin: -22px 0 0 18px;
}
.payment_view  .balance_block .order_total .total_price span {
	margin-left: 3px;
}
.payment_view .order_total {
	text-align: center;
	overflow: hidden;
	width: 620px;
	margin: 0 auto;
	padding: 10px 0;
}
.payment_view .order_total .covered {
	margin: 10px 0 0 0;
	display: inline-block;
	text-align: center;
	/*width: 50%;*/
	margin: 0 auto;
	padding: 11px 0 10px;
	float: left;
	clear: both;
	width: 250px;
	border-radius: 0 0 7px 7px;
	background: #f6f1ee;
}
.payment_view .order_total .covered span {
	color: #1aa75f;
	font-weight: normal;
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
}
.payment_view .order_total .covered p {
	font-size: 25px;
	margin-left: 10px;
	font-weight: normal;
	display: inline-block;
	/*vertical-align: middle;*/
	font-weight: bold;
	color: #1aa75f;
}
.payment_view .order_total .covered span sup {
	font-size: 16px;
}
.payment_view  .order_total .savings {
	color: #fff;
	float: left;
	margin: 7px 0 0 16px;
}
.payment_view  .order_total .savings p {
	color: #5c5a5a;
	float: left;
	font-weight: 500;
	font-size: 16px;
}
.payment_view  .order_total .savings span {
	float: left;
	font-size: 16px;
	margin-left: 20px;
	font-weight: 500;
	color: #f68368;
}
.payment_view .button {
	margin: 15px auto;
}
.payment_view .button.medium {
	width: 370px;
}
.use_discount_code {
	margin: 7px 0 0 0;
	padding: 8px 0 8px;
	border-radius: 0 0 2px 2px;
	text-align: center !important;
}
.sidebar_content .use_discount_code h2 {
	font-size: 19px;
	line-height: 18px;
	color: #b44141;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	padding: 10px 10px 10px;
	position: relative;
}
.sidebar_content .use_discount_code h2:before {
	position: absolute;
	content: "";
	display: block;
	height: 1px;
	width: 141px;
	background: url(/assets/attention_sep.png) no-repeat;
	top: -3px;
	left: 50%;
	margin-left: -70px;
}
.use_discount_code span {
	font-weight: normal;
	color: #8c7373;
	font-style: italic;
	display: block;
	text-align: center;
	text-transform: none;
	padding: 5px 0;
}
.setting_title h2 {
  font-size: 20px;
  line-height: 20px;
  color: #29827d;
  font-weight: normal;
  text-transform: none;
  padding: 4px 5px 5px 20px;
  margin: 0 0 0;
  width: 196px;
  text-align: left;
  display: inline-block;
  vertical-align: top;
}
.setting_title_line {
	background: url(/assets/title_bg.png) no-repeat;
	display: block;
	width: 650px;
	height: 1px;
	overflow: hidden;
	margin: 0 0 20px 19px;
}
ul.list,
ol.list {
	margin: 20px 0 20px 0;
}
.list li {
	background: url(/assets/point.png) left 11px no-repeat;
	text-indent: 10px;
	padding-top: 4px;
	color: #635854;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 4px;
}
.sidebar_item.hurry_up {
	border: 1px solid #e8624c;
}
.sidebar_item.hurry_up .sidebar_title {
	color: #fe5c56;
	border-bottom: #e8624c 1px solid;
	text-transform: none;
	padding: 7px 0;
}
.sidebar_item.hurry_up .sidebar_content {
	padding: 5px 0 0 0;
}
.hurry_up_timer {
	color: #5e5d6d;
	font-size: 50px;
	font-weight: 200;
	text-align: center;
	overflow: hidden;
}
.hurry_form {
	overflow: hidden;
	margin-top: 2px;
	background: #2f3c4a;
}
.hurry_form .hurry_text {
	color: #6b7180;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	padding: 10px 14px;
	background: #fff url(/assets/hurry_sep.png) top no-repeat;
	/*margin: 0 14px;*/
}
.hurry_item {
	overflow: hidden;
	padding: 0 10px;
	padding-bottom: 5px;
	background: #fff;
	position: relative;
}
.hurry_item:nth-child(2n) {
	background: #fff url(/assets/hurry_bg.png) top no-repeat;
}
.hurry_item:after {
	position: absolute;
	content: "";
	display: block;
	width: 198px;
	height: 1px;
	background: url(/assets/hurry_sep.png);
	top: 0;
	left: 50%;
	margin-left: -99px;
}
.hurry_item .checker {
	float: left;
	margin: 11px 0 0 0;
}
.hurry_item .hurry_info {
	color: #6d6b6a;
	font-size: 19px;
	line-height: 24px;
	font-weight: 500;
	width: 175px;
	float: left;
	margin: 6px 0 0 13px;
}
.hurry_item .hurry_info p {
	color: #1aa75f;
	font-size: 16px;
	line-height: 22px;
}
.hurry_item .hurry_info p span {
	position: relative;
}
.hurry_item .hurry_info p span:after {
	background: url(/assets/strike.png) no-repeat;
	position: absolute;
	content: "";
	display: block;
	width: 103px;
	height: 1px;
	z-index: 10;
	top: 7px;
	left: -3px;
}
.hurry_bonus {
	background: #313e4d;
	color: #7af7b8;
	font-size: 25px;
	text-align: center;
	overflow: hidden;
	font-weight: bold;
	padding: 10px 0;
}
.hurry_form .button {
	border: none;
	margin: 24px auto 20px;
}
.hurry_form .button.yellow {
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	outline: none;
}
.hurry_form .button.medium {
	cursor: pointer;
	width: 198px;
}
.gift {
	background: url(/assets/gift.png) no-repeat;
	float: left;
	width: 20px;
	height: 21px;
	position: relative;
	top: 1px;
	left: 16px;
}
.price_discount {
	overflow: hidden;
	margin: 6px 39px 0 39px;
}
.price_discount strong {
	float: left;
	font-size: 14px;
	line-height: 24px;
	color: #24272c;
}
.price_discount p {
	color: #66b931;
	float: left;
	font-weight: bold;
	font-size: 14px;
	line-height: 28px;
	margin-left: 5px;
	width: 90px;
}
.price_discount a {
	color: #5797ec;
	float: right;
	font-size: 14px;
	font-weight: bold;
	line-height: 24px;
}
.price_discount a:hover {
	text-decoration: none;
}
.order_academic_level .done,
.order_academic_level .fail {
	margin: 12px 0 0 8px;
}
.order_total .total_price {
	background: none;
	text-align: center;
	width: auto;
	float: left;
	margin: 0 19px 0 0;
	padding: 5px 16px 3px 26px;
	background: #f6f1ee;
	border-radius: 5px;
}
.order_form .order_total .total_price p,
.order_payment .order_total .total_price span {
	color: #1aa75f;
	font-size: 14px;
	line-height: 27px;
	display: inline-block;
	vertical-align: middle;
	font-weight: bold;
	text-transform: uppercase;
}
.order_form .order_total .total_price span,
.order_payment .order_total .total_price p {
	color: #1aa75f;
	font-size: 25px;
	line-height: 27px;
	font-weight: bold;
	display: inline-block;
	/*vertical-align: middle;*/
	text-transform: uppercase;
	margin-left: 3px;
}
.order_total .total_price p sup {
	font-size: 16px;
}
.payment_view .tab_total .price_info span,
.payment_content .payment_total_price .price_info span ,
.price_info {
	font-size: 12px;
	line-height: 16px;
	color: #a59c83;
	font-style: italic;
	padding: 0 0 7px 0;
}
.payment_view .tab_total .price_info,
.payment_content .payment_total_price .price_info {
	padding: 0 0 2px 0;
}
.payment_view .tab_total .price_info span,
.payment_content .payment_total_price .price_info span {
	color: #796f56;
}
.step_back {
	color: #2b719d;
	font-size: 12px;
	line-height: 16px;
	font-style: italic;
	padding: 10px 0 0 28px;
	text-decoration: none;
}
.step_back:hover {
	text-decoration: underline;
}
.order_total .button.medium {
	width: 331px;
	margin: 0 auto 10px;
	float: left;
	outline: none;
	cursor: pointer;
	text-transform: none;
}
.customer_block .order_total {
	padding-top: 0;
}
.customer_block .order_total .total_price .price_info {
	padding: 11px 0 7px 0;
}
.customer_block .order_total .total_price .price_info span {
	color: #796f56;
	font-size: 12px;
	font-weight: normal;
	text-transform: none;
	line-height: 16px;
}
.customer_block .order_total .savings {
	margin-left: 30px;
}
.order_total .savings {
	margin: 0 0 0 0;
	text-align: center;
}
.order_total .savings p {
	color: #a59c83;
	display: inline;
	font-size: 12px;
}
.order_total .savings span {
	font-size: 14px;
	color: #a59c83;
	margin-left: 10px;
	display: inline;
}
.order_phone_number .order_phone_number .field_item {
	margin-bottom: -2px;
}
.customer_item {
	margin-bottom: 20px;
}
.show_pass {
	display: block;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 7px;
	right: 10px;
	z-index: 10;
}
.show_pass:hover {
	background-position: 0 -13px;
}
.password {
	float: left;
	position: relative;
}
.add_another_number {
	color: #5797ec;
	font-size: 13px;
	position: absolute;
	top: 25px;
	left: 125px;
}
.add_another_number:hover {
	text-decoration: none;
}
.add_another_number:before {
	content: '+';
	display: block;
	position: absolute;
	top: 0px;
	left: -10px;
}
.tab_item h3 {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin: 12px 0 19px 0;
	color: #383252;
	font-size: 23px;
	font-weight: 300;
	line-height: 26px;
	text-transform: none;
}
.writer_level_item {
	float: left;
	border-radius: 5px !important;
	-moz-border-radius: 5px !important;
	-webkit-border-radius: 5px !important;
	width: 146px;
	position: relative;
}
.writer_level_item.best:before {
	background: url(/assets/best.png) 0 0 no-repeat;
	content: '';
	display: block;
	width: 22px;
	height: 35px;
	position: absolute;
	top: -2px;
	left: 8px;
	z-index: 10;
}
.ui-state-active .writer_level_item.best:before {
	background-position: 0 -39px;
}
.writer_level_title {
	display: inline-block;
	width: 100%;
	height: 54px;
	text-align: center;
	position: relative;
	margin-bottom: 6px;
}
.writer_level_title span {
	background-color: #feecd2;
	border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	color: #d5bf9f;
	display: block;
	font-size: 16px;
	padding: 6px 0 20px 0;
}
.writer_level_title p {
	font-size: 16px;
	color: #296bc3;
	position: relative;
	top: 10px;
}
.writer_level_content {
	display: table;
	min-height: 50px;
	position: relative;
	margin-top: 10px;
	padding: 0 8px;
}
.writer_level_item.active .writer_level_info {
	background-color: #2988ca;
	border-top: #60afe6 1px solid;
	display: block;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	position: absolute;
	top:0px;
	left: 0px;
}
.writer_level_info {
	display: none;
}
.writer_level_info p {
	color: #fff;
	font-size: 12px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 300px;
	height: 80px;
}
.writer_level_details {
	text-align: center;
	overflow: hidden;
}
.writer_level_details span {
	display: block;
	font-size: 13px;
	line-height: 14px;
	color: #868483;
}
.writer_level_buttons .radio_buttons .ui-state-default .ui-button-text .writer_level_details p {
	font-size: 13px;
	line-height: 18px;
	color: #1aa75f;
}
.writer_level_radio .ui-helper-hidden-accessible {
	position: static;
	cursor: pointer;
}
.customer_service {
	margin-bottom: 10px;
	padding-top: 10px;
}
.customer_service_item {
	float: left;
	width: 146px;
	height: 126px;
	position: relative;
}
.customer_service_item:hover .customer_service_tooltip {
	display: block;
}
.customer_service_tooltip {
	background: #fff;
	display: none;
  box-shadow: 0 0 18px #c8c6c6;
  -moz-box-shadow: 0 0 18px #c8c6c6;
  -webkit-box-shadow: 0 0 18px #c8c6c6;
	color: #888b98;
	font-size: 13px;
	font-style: italic;
	text-align: left;
	position: absolute;
	bottom: 140px;
	left: -8px;
	width: 146px;
	z-index: 100;
	padding: 10px;
}
.customer_service_tooltip:after {
	display: block;
	content: "";
	position: 	absolute;
	background: url(/assets/customer_tooltip_arrow.png) no-repeat;
	width: 26px;
	height: 13px;
	margin-left: -13px;
	left: 50%;
	bottom: -13px;
}
.customer_service_title {
	display: inline-block;
	width: 100%;
	text-align: center;
	height: 77px;
	position: relative;
	margin-bottom: 23px;
}
.customer_service_title span {
	background-color: #feecd2;
	padding: 6px 0 20px 0;
	color: #acb4b9;
	display: inline-block;
	font-size: 18px;
	line-height: 22px;
	width: 100%;
	border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
}
.customer_service_title p {
	line-height: 22px;
	font-size: 18px;
	color: #425f87;
	position: relative;
	top: 10px;
}
.customer_service_content {
	display: table;
	height: 60px;
	position: relative;
}
.customer_service_item.active .customer_service_info {
	background-color: #2988ca;
	border-top: #60afe6 1px solid;
	display: block;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	position: absolute;
	top:0px;
	left: 0px;
}
.customer_service_info {
	display: none;
}
.customer_service_info p {
	color: #fff;
	font-size: 12px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 300px;
	height: 60px;
}
.customer_service_details {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 150px;
}
.customer_service_details span {
	color: #29a643;
	display: block;
	font-size: 14px;
	margin-top: 5px;
}
.originality_report .checker {
	float: left;
	margin: 2px 0 0 -2px;
}
.originality_report .price {
	color: #1aa75f;
	font-size: 15px;
	margin: 10px 4px 0 5px;
	float: left;
}
.remove_number {
	color: #fa394b;
	font-size: 13px;
	position: absolute;
	top: 25px;
	left: 160px;
}
.remove_number:hover {
	text-decoration: none;
}
.remove_number:before {
	background-color: #e83636;
	width: 5px;
	height: 1px;
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	left: -10px;
}
.type_of_writer {
	float: left;
}
.writer_level_radio {
	float: left;
	margin-right: 23px;
	position: relative;
}
.writer_level_radio .ui-button-text {
	height: 174px;
}
.customer_service .writer_level_radio .radio {
	top: 35px;
	z-index: 10;
	margin-left: -12px;
}
.writer_level_radio .radio {
	position: absolute !important;
	top: 30px;
	left: 50%;
	margin-left: -15px;
	z-index: 10;
}
.writer_level .field_item .radio_buttons.ui-buttonset,
.customer_service .field_item .radio_buttons.ui-buttonset {
	margin-right: 0px;
}
.select2-container {
	float: left;
}
.balance {
	margin: 0 0 0px 0;
  border: 1px solid #d7d0c6;
  background: #fff;
  border-radius: 4px;
}
.balance .button.blue {
	cursor: pointer;
	text-transform: none;
	font-weight: 200;
	height: 45px;
	line-height: 45px;
	font-size: 18px;
	border-radius: 5px;
	width: 107px;
	color: #fff;
}
.balance_info {
	font-size: 14px;
	line-height: 23px;
	color: #6d6b6a;
	padding: 18px 20px 10px 20px;
}
.current_balance {
	padding: 0 20px 0 20px;
	background: #fff;
	overflow: hidden;
	margin-top: 15px;
	position: relative;
}
.current_balance:after {
	content: "";
	position: absolute;
	display: block;
	height: 1px;
	width: 438px;
	bottom: 0;
	left: 19px;
	background: url(/assets/balance_sep.png) no-repeat;
}
.current_balance:before {
	content: "";
	position: absolute;
	display: block;
	height: 1px;
	width: 438px;
	top: 0;
	left: 19px;
	background: url(/assets/balance_sep.png) no-repeat;
}
.current_balance span,
.current_balance p {
	font-size: 22px;
	line-height: 43px;
	color: #1aa75f;
	text-transform: uppercase;
	font-weight: bold;
	float: left;
}
.current_balance p {
	padding: 0 0 0 3px;
	text-transform: none;
}
.current_balance .button {
	width: 252px;
	float: right;
}
.current_balance .button.small {
	height: 45px;
	line-height: 45px;
}
.balance_filters {
	padding: 18px 20px 30px 20px;
	overflow: hidden;
}
.balance_filters .button {
	float: left;
}
.balance_filters_dates {
	margin: 2px 0 0 40px;
	float: left;
}
.balance_filters_dates .date_item {
	margin: 8px 0 0 16px;
	float: left;
}
.balance_filters_dates .date_item .date_filter {
	width: 93px;
	padding: 0 30px 0 10px;
	background: url(/assets/calendar.png) 106px center no-repeat;
	line-height: 24px;
	border: 1px solid #c2c5cf;
	border-radius: 4px;
	height: 28px;
	color: #84807e;
	font-size: 14px;
	outline: none;
}
.balance_filters_dates .button {
	float: left;
	width: 93px;
	margin-left: 19px;
}
.balance_filters label {
	color: #626878;
	font-size: 15px;
	line-height: 24px;
	margin-right: 7px;
	float: left;
}
.balance_search {
	margin: 11px 0 0 20px;
	float: left;
}
.balance_search .input_error {
	width: 113px;
}
.balance_search .input {
	width: 113px;
}
.balance_search label {
	float: left;
}
.balance_table {
	border-top: 1px solid #beb6aa;
}
.row {
	border-bottom: 1px solid #ccc;
}
.row > div {
	padding-top: 12px;
	padding-bottom: 12px;
	display: table-cell;
	vertical-align: middle;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	color: #6d6b6a;
	text-align: left;
}
.thead > .row {
	background: #edecf4;
	border-bottom: 1px solid #beb6aa;
	padding: 7px 0;
}
.thead > .row > div {
	font-weight: normal;
	color: #635854;
	height: 27px;
	font-size: 17px;
}
.row .balance_date {
	text-align: left;
	border-right: 1px solid #beb6aa;
	max-width: 130px;
	min-width: 113px;
	padding: 0 10px;
}
.row .balance_transaction {
	border-right: 1px solid #beb6aa;
	width: 155px;
	padding: 0 10px;
}
.row .balance_type {
	border-right: 1px solid #beb6aa;
	max-width: 120px;
	min-width: 102px;
	padding: 0 10px;
}
.row .balance_credits {
	border-right: 1px solid #beb6aa;
	max-width: 120px;
	min-width: 102px;
	padding: 0 9px;
}
.row .balance_price {
	border-right: 1px solid #beb6aa;
	max-width: 120px;
	min-width: 102px;
	padding: 0 10px;
}
.row .balance_description {
	width: 325px;
	padding: 0 10px;
}
.tbody .row .balance_date {
	border-right: 1px solid #ccc;
	font-size: 13px;
}
.tbody .row .balance_transaction {
	border-right: 1px solid #ccc;
}
.tbody .row .balance_type {
	border-right: 1px solid #ccc;
}
.tbody .row .balance_credits {
	border-right: 1px solid #ccc;
}
.tbody .row .balance_price {
	border-right: 1px solid #ccc;
}
.tbody > .row > div {
	padding-bottom: 22px;
	padding-top: 22px;
}
.tbody .row.reserved .balance_type,
.tbody .row.reserved .balance_credits,
.tbody .row.reserved .balance_price,
.tbody .row.expenses .balance_type,
.tbody .row.expenses .balance_credits,
.tbody .row.expenses .balance_price  {
	color: #f43a33;
}
.tbody .row .balance_credits,
.tbody .row .balance_price {
	color: #1aa75f;
}
.row a {
	color: #1662bf;
	text-decoration: underline;
}
.row a:hover {
	text-decoration: none;
}
.balance_navigation {
	overflow: hidden;
	margin: 10px 0 20px 0;
	padding: 10px 0;
}
.balance_navigation p {
	font-size: 13px;
	color: #868a95;
	line-height: 24px;
	padding-left: 20px;
	float: left;
	padding-top: 7px;
}
.balance_show {
	float: left;
	margin-left: 65px;
	margin-top: 7px;
	overflow: hidden;
}
.balance_show p {
	font-size: 15px;
	line-height: 24px;
	color: #635854;
	padding: 0 9px 0 17px;
	font-style: normal;
}
.balance_show .show_select {
	float: left;
}
.balance_pages_nav {
	float: right;
	margin-right: 20px;
}
.balance_pages_nav .button {
	float: left;
	width: 141px;
	margin-left: 31px;
	line-height: 38px;
}
.order_finish_buttons {
	text-align: center;
	overflow: hidden;
	padding: 20px 0;
}
.order_finish_buttons .button {
	width: 184px;
	margin: 20px 15px 0;
}
.input_error {
	position: relative;
	float: left;
}
.login .input_error .validation-error,
.login .input_error .validation_error {
	margin-left: 19px;
}
.input_error .validation-error,
.input_error .validation_error {
	display: block;
	clear: both;
	width: 100%;
	color: #f15f59;
	font-size: 12px;
	line-height: 16px;
	margin-left: 9px;
	text-align: left;
}
.field_item .input_error .validation-error,
.field_item .input_error .validation_error {
	width: 450px;
}
.contacts_form_item .input_error {
	width: 440px;
}
.input_error .input,
.input_error .textarea {
	margin: 0;
}
.prices_discount_form .input_error {
	width: 280px;
}
/*.country_code .input_error,
.state_area_code .input_error,
.field_item .state_area_code .validation-error,
.field_item .state_area_code .validation_error {
	width: 56px;
}
.phone_number .input_error,
.field_item .phone_number .validation-error,
.field_item .phone_number .validation_error {
	width: 120px;
}*/
.order_number_sources .field_item .input_error {
	width: 190px;
}
.balance_filters_dates .date_item .input_error .date_filter,
.input_error .input,
.input_error .textarea {
	border: 1px solid #ff9c98;
}
/*IOS submit styles*/

input, textarea, select {
  -webkit-appearance: none;
}
button {
	border: none;
  background: none;
	outline: none;
	-webkit-appearance: none;
}
button:hover {
	cursor: pointer;
}

/*hide angular templates*/
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}

h1 {
	color: #383252;
	font-size: 18px;
	line-height: 24px;
}
h2 {
	color: #383252;
	font-size: 16px;
	line-height: 24px;
}
h3 {
	color: #383252;
	font-size: 15px;
	line-height: 24px;
}
	input::-moz-placeholder { color: #636363; }
	input::-webkit-input-placeholder { color: #636363; }
	input[type="submit"] {
	font-size: 18px;
	outline: none;
	font-family: "Lato";
}
.wrapper {
	min-width: 1024px;
}
.container_wrapper {
	width: 100%;
	/*overflow: hidden;*/
	display: inline-block;
}
.container {
	width: 1000px;
	margin: 0 auto 0;
	display: table;
	position: relative;
	/*background: #fafbfd;*/
	padding: 0 0 0;
	border-radius: 3px;
	/*overflow: hidden;*/
}
/*.container.main_top {
	background: none;
	margin-bottom: 0;
	padding-bottom: 0;
}*/
.content {
	display: table;
	margin: 20px 0 0 0 !important;
}
.sidebar {
	width: 248px;
	margin: 20px 0 0 0;
	/*margin: 10px -2px 0 0;*/
}
.sidebar.sidebar_left {
}
.sidebar.sidebar_right {
}
.sidebar_left {
	width: 270px;
	float: left;
	/*margin: 10px 10px 10px 0;*/
}
.sidebar_right {
	float: right;
}
.sidebar_item {
	border: #d7d0c6 1px solid;
	border-radius: 4px;
	width: 248px;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	background: #fff;
	overflow: hidden;
}
.sidebar_title {
	background: #fff;
	color: #635854;
	border-bottom: 1px solid #d7d0c6;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	position: relative;
	padding: 7px 10px;
}
.sidebar_title a {
	color: #383252;
	text-decoration: none;
}
.sidebar_content {
	/*background: #fff;*/
	/*overflow: hidden;*/
}
.sidebar_content p {
	color: #6d6b6a;
	font-size: 14px;
	line-height: 23px;
	text-align: left;
}
/*.content_colomn_text {
	margin-left: 20px;
}*/
.widget {
	margin: 0 25px 20px 0;
	display: inline-block;
	vertical-align: top;
}
.widget h2 {
	margin-bottom: 6px;
	font-size: 22px;
  line-height: 26px;
  color: #383252;
  text-align: center;
  font-weight: 200;
  text-transform: none;
}
.widget p {
	color: #6d6b6a;
	font-size: 14px;
	line-height: 23px;
}
.widget ul,
.widget ol {
	display: inline-block;
	width: 100%;
	list-style: none;
	margin: 14px 0;
}
.widget li:not(.ui-*) {
	background: url(/assets/point.png) 0 6px no-repeat;
	color: #5c513c;
	text-indent: 10px;
	font-size: 14px;
	line-height: 21px;
	margin: 0 0 8px 0;
}
.widget ol li {
	background: url(/assets/point.png) left 5px no-repeat;
	font-size: 14px;
	line-height: 16px;
	color: #4b4b4b;
	margin-bottom: 0px;
	padding-left: 10px;
}
.widget .button {
	/*margin: -1px;*/
}
.widget_title {
	color: #635854;
	font-size: 19px;
	line-height: 23px;
	text-align: center;
	position: relative;
	padding: 13px 25px;
	border-bottom: 1px solid #d7d0c6;
	display: block;
}
.widget_title a {
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	color: #336482;
	text-decoration: none;
}
.widget_content {
	overflow: hidden;
	padding: 23px 19px 10px 19px;
}
.content_title {
	position: relative;
	display: block;
	text-align: left;
	padding: 13px 0 14px 0;
	margin: 0 auto;
	text-align: center;
}
.content_title:after {
	position: absolute;
	content: "";
	display: block;
	height: 1px;
	width: 438px;
	background: url(/assets/title_sep.png) no-repeat;
	left: 50%;
	margin-left: -219px;
	bottom: 0;
}
.content_title h1,
.content_title h2,
.content_title h3 {
	font-size: 23px;
	line-height: 29px;
	color: #635854;
	text-transform: none;
	font-weight: normal;
	position: relative;
	border-top: none;
}
.content_title span {
	color: #a2a7ac;
	font-size: 12px;
	float: right;
	position: relative;
	top: 4px;
}
.sidebar.sidebar_inner {
	margin-top: 20px !important;
}
/* Buttons */
.button {
  color: #fff;
  display: block;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  border-radius: 7px;
  font-family: "Lato";
  font-weight: 200; }

button.button {
  font-family: "Lato";
  border: none; }

input.button {
  border: none; }

.button.big {
  font-size: 18px;
  height: 45px;
  line-height: 45px; }

.button.medium {
  font-size: 18px;
  height: 45px;
  line-height: 45px; }

.button.small {
  font-size: 18px;
  height: 45px;
  line-height: 45px; }

.button.yellow {
  background: #ff3c30; }

.button.yellow:hover {
  background: #f13628; }

button.open_chat_link,
button.chat_now {
  border: none; }

.contacts_form .button.yellow,
.free_quote .button.yellow,
.sign_in .button.green,
.improvements_popup .button.green,
.button.blue {
  background: #3ec5f4;
  background: linear-gradient(to right, #3ec5f4 0%, #3ec5f4 50%, #2eb1f0 100%); }

.free_quote .button.yellow:hover,
.sign_in .button.green:hover,
.button.blue:hover {
  background: #33b5e8;
  background: linear-gradient(to right, #33b5e8 0%, #33b5e8 50%, #259be0 100%); }

/*.order_button .button.yellow,
.button.green {
	background: #66b6d0;
}
.order_button .button.yellow:hover,
.button.green:hover {
	background: #54a6c0;
}*/
input.button {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

/* inputs */
.input {
  border: #aca395 1px solid;
  color: #635854;
  font-size: 14px;
  height: 28px;
  outline: none;
  padding: 0 10px;
  border-radius: 4px;
  font-family: "Lato"; }

.textarea {
  border: #aca395 1px solid;
  color: #635854;
  font-size: 14px;
  line-height: 18px;
  outline: none;
  padding: 10px;
  border-radius: 4px;
  resize: vertical;
  font-family: "Lato"; }

.textarea:focus,
.input:focus {
  box-shadow: 0 0 5px #51cbee;
  border: 1px solid #51cbee; }

/* Radio Buttons */
.radio_buttons.ui-buttonset {
  display: table;
  width: 100%; }

.radio_buttons .ui-button-text {
  color: #525860;
  font-size: 15px;
  line-height: 16px; }

.radio_buttons .ui-state-default {
  display: table-cell !important;
  overflow: visible !important;
  float: none !important;
  width: auto !important;
  vertical-align: middle; }

.radio_buttons .ui-state-default.ui-corner-left,
.radio_buttons .ui-state-default.ui-corner-left .ui-button-text {
  border-radius: 4px 0 0 4px; }

.radio_buttons .ui-state-default.ui-corner-right,
.radio_buttons .ui-state-default.ui-corner-right .ui-button-text {
  border-radius: 0 4px 4px 0; }

.radio_buttons .ui-state-default {
  cursor: pointer;
  text-align: center;
  border: #aca395 1px solid;
  border-left: none; }

.radio_buttons .ui-state-default.ui-corner-left {
  border-left: #aca395 1px solid; }

.radio_buttons .ui-state-default .ui-button-text {
  padding: 6px 0px 6px;
  width: 100%;
  display: block; }

.payment_method .radio_buttons .ui-state-default .ui-button-text {
  width: 103% !important; }

.radio_buttons .ui-state-default .ui-button-text p {
  font-size: 11px;
  line-height: 14px;
  color: #626878; }

.radio_buttons .ui-state-default.ui-state-active .ui-button-text p {
  color: #fff; }

.customer_service .radio_buttons .ui-state-default .ui-button-text p {
  color: #527c68;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  margin-top: 15px; }

.customer_service .radio_buttons .ui-state-default .ui-button-text p b {
  color: #4f8f69;
  font-size: 14px;
  display: block; }

.customer_service .radio_buttons .ui-state-default .ui-button-text p b sup {
  font-size: 10px; }

.customer_item.last .order_currency .radio_buttons .ui-state-default .ui-button-text {
  padding: 6px 0; }

.customer_item.last .order_select_method .radio_buttons .ui-state-default .ui-button-text {
  /*padding: 0px 0;*/ }

.radio_buttons .ui-state-active {
  background-color: #625763;
  border-color: #625763; }

.radio_buttons .ui-state-active .ui-button-text {
  color: #fff; }

.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ui-helper-reset {
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  content: "";
  display: table; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-clearfix {
  zoom: 1; }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); }

.radio_method .radio_buttons .ui-state-default .ui-button-text,
.balance_method .radio_buttons .ui-state-default .ui-button-text {
  border: #c2c5cf 1px solid;
  cursor: pointer;
  padding: 5px 0px 5px;
  display: block;
  width: 100%;
  text-align: center; }

.payment_content .radio_method .radio_buttons .ui-state-default .ui-button-text {
  height: 57px; }

.radio_method .radio_buttons .ui-state-default .ui-button-text {
  height: 57px;
  min-width: 97px; }

.radio_method .radio_buttons .ui-state-default.paypal .ui-button-text {
  background-image: url(/assets/paypal.png);
  background-position: center 27px;
  background-repeat: no-repeat;
  border-radius: 4px 0 0 4px; }

.radio_method .radio_buttons .ui-state-default.credit_card .ui-button-text {
  background-image: url(/assets/creditcard.png);
  background-position: center 20px;
  background-repeat: no-repeat; }

.radio_method .radio_buttons .ui-state-default.wire_transfer .ui-button-text {
  background-image: url(/assets/transfer.png);
  background-position: center -73px;
  background-repeat: no-repeat;
  border-radius: 0 4px 4px 0; }

.radio_method .radio_buttons .ui-state-default.ui-state-active.paypal .ui-button-text {
  background-position: center -69px; }

.radio_method .radio_buttons .ui-state-default.ui-state-active.credit_card .ui-button-text {
  background-position: center -76px; }

.radio_method .radio_buttons .ui-state-default.ui-state-active.wire_transfer .ui-button-text {
  background-position: center 23px; }

.order_balance .balance_method {
  float: left;
  width: 250px; }

.balance_method .radio_buttons .ui-state-default.use .ui-button-text {
  background-image: url(/assets/use.png);
  background-position: center -83px;
  background-repeat: no-repeat; }

.balance_method .radio_buttons .ui-state-default.no_use .ui-button-text {
  background-image: url(/assets/no_use.png);
  background-position: center 16px;
  background-repeat: no-repeat; }

.balance_method .radio_buttons .ui-state-default.ui-state-active.use .ui-button-text {
  background-position: center 16px; }

.balance_method .radio_buttons .ui-state-default.ui-state-active.no_use .ui-button-text {
  background-position: center -83px; }

.balance_method .radio_balance.radio_buttons .ui-state-default .ui-button-text {
  height: 53px;
  min-width: 144px; }

/* tabs */
.tabs {
  width: 100%;
  /*overflow: hidden;*/ }

.tabs > .ui-tabs-nav {
  width: 728px;
  overflow: hidden;
  padding: 20px 0 30px 0;
  position: relative;
  display: flex; }
  .tabs > .ui-tabs-nav > .ui-state-default {
    width: 100%; }

.tabs > .ui-tabs-nav:before {
  background: url(/assets/tabs_sep.png);
  content: '';
  display: block;
  width: 648px;
  height: 6px;
  position: absolute;
  top: 81px;
  left: 50%;
  margin-left: -320px; }

.tabs > .ui-tabs-nav .ui-state-default a {
  background-color: #fff;
  border: #dfdcd9 2px solid;
  color: #d1ceca;
  font-size: 22px;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: relative;
  outline: none;
  border-radius: 100%; }

.tabs > .ui-tabs-nav .ui-state-default a:before {
  background-color: #dedede;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  border: 4px solid #fff;
  bottom: -34px;
  left: 50%;
  margin-left: -12px; }

.tabs > .ui-tabs-nav .ui-state-default.ui-state-active a:before {
  background-color: #d1ceca; }

.tabs > .ui-tabs-nav .ui-state-default.done a:before {
  background: url(/assets/tab_done.png) center center no-repeat; }

.tabs > ul li {
  display: inline-block;
  outline: none;
  width: 215px;
  text-align: center;
  margin: 0 0 0 0; }

.tabs > ul li:first-child {
  margin: 0 5px 0 28px; }

.tabs > ul li:last-child {
  margin: 0 0 0 30px; }

.order.tabs > .ui-tabs-nav .ui-state-default.ui-state-active p .tabs > ul li p {
  font-size: 17px;
  line-height: 44px;
  font-weight: 400;
  margin-top: 25px;
  width: 130px;
  margin-left: -40px; }

.tabs .ui-state-default.done a {
  border: #7ad56b 2px solid;
  background: #c9f3c2;
  color: #447a3b; }

.tabs > .ui-tabs-nav .ui-state-default.done p {
  color: #5b6357; }

.tabs > .ui-tabs-nav .ui-state-default.ui-state-active p {
  color: #625763; }

.tabs > .ui-tabs-nav .ui-state-default p {
  color: #aca7a0;
  margin-top: 30px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400; }

.tabs .ui-state-default.ui-state-active a {
  background-color: #c1beea;
  border: #847ed5 2px solid;
  color: #7370a2; }

.tabs li.ui-state-default {
  position: relative; }

.tabs li {
  list-style: none; }

.customers_tabs .ui-state-default.ui-state-active a {
  background: #7f748e;
  color: #fff;
  border: 1px solid #7f748e;
  box-shadow: none;
  margin: 0; }

.customers_tabs .tabs .ui-state-default a {
  margin: 0; }

.type_of_writer .radio_buttons .ui-state-active {
  background-color: transparent; }

.type_of_writer .radio_buttons .ui-state-default,
.type_of_writer .radio_buttons .ui-state-default.ui-corner-left {
  border: none; }

.type_of_writer .radio_buttons .ui-state-default .ui-button-text {
  border: #ffe3bc 2px solid;
  padding: 0;
  color: #5d5d5d;
  border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  box-shadow: none;
  width: 146px; }

.type_of_writer .radio_buttons .ui-state-active .ui-button-text {
  border: none;
  box-shadow: 0px 0px 15px 1px #dfdcd8;
  background-color: #fff;
  width: 150px; }

.type_of_writer .radio_buttons .ui-state-active .ui-button-text .customer_service_title span,
.type_of_writer .radio_buttons .ui-state-active .ui-button-text .writer_level_title span {
  background-color: #ffa320;
  color: #fff;
  width: 150px; }

.writer_level .radio_buttons .ui-state-default .ui-button-text {
  height: 161px; }

.customer_service .radio_buttons .ui-state-default .ui-button-text {
  height: 105px; }

.customers_tabs .ui-tabs-nav {
  overflow: hidden;
  margin-bottom: 25px;
  padding: 20px 0 20px 40px;
  text-align: center;
  position: relative; }

.customers_tabs .ui-tabs-nav:after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  bottom: 0; }

.customers_tabs .ui-tabs-nav:before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 438px;
  background: url(/assets/title_sep.png) no-repeat;
  left: 50%;
  margin-left: -219px;
  top: 0; }

.customers_tabs li.ui-state-default.ui-state-active:after,
.customers_tabs li.ui-state-default:after {
  display: none; }

.customers_tabs > .ui-tabs-nav .ui-state-default {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px;
  outline: none; }

.customers_tabs .ui-state-default a {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  outline: none;
  float: left;
  line-height: 35px;
  text-decoration: none;
  padding: 5px 0;
  width: 219px;
  margin: 0;
  border: 1px solid #cbc7c0;
  background: #fafafa;
  color: #635854;
  font-size: 16px;
  box-shadow: none; }

.customers_tabs .ui-state-default a:last-child {
  margin-left: -1px; }

/* accordion */
.ui-accordion-header {
  background: url(/assets/faq_point.png) -1px -12px no-repeat;
  cursor: pointer;
  color: #1662bf;
  font-size: 15px;
  text-transform: none;
  font-weight: normal;
  line-height: 20px;
  padding: 6px 0 6px 10px;
  position: relative; }

.ui-accordion-header.ui-accordion-header-active {
  background: url(/assets/faq_point.png) 0 12px no-repeat;
  color: #434857;
  font-size: 18px;
  font-style: normal;
  text-decoration: underline;
  /*padding-bottom: 37px;*/ }

.ui-accordion-content {
  color: #8e8e8e;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  padding: 0 18px 0 47px;
  background: url(/assets/hooks.png) left 26px no-repeat; }

.ui-datepicker {
  width: 411px;
  background: #fff;
  box-shadow: 0 0 11px 1px #dadada;
  border-radius: 3px; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  margin: 0 36px 21px 36px;
  padding: 20px 0 19px 0; }

.ui-datepicker .ui-datepicker-header:after {
  position: absolute;
  content: "";
  display: block;
  background: url(/assets/calendar_sep.png) no-repeat;
  width: 343px;
  height: 1px;
  bottom: 0; }

.ui-datepicker-prev .ui-icon {
  background: url(/assets/calendar_prev.png) no-repeat;
  width: 10px;
  height: 15px;
  display: block;
  float: left;
  margin-left: 24px;
  cursor: pointer;
  margin-top: 6px; }

.ui-datepicker-next .ui-icon {
  background: url(/assets/calendar_next.png) no-repeat;
  width: 10px;
  height: 15px;
  display: block;
  float: right;
  margin-right: 24px;
  margin-top: 6px;
  cursor: pointer; }

.ui-datepicker-title {
  font-size: 18px;
  line-height: 26px;
  color: #ff3c30;
  text-align: center; }

.ui-datepicker-calendar {
  margin: 0 28px;
  border-collapse: collapse; }

.ui-datepicker-calendar th span {
  font-size: 16px;
  line-height: 22px;
  color: #ff3c30;
  font-weight: bold; }

.ui-datepicker-calendar th {
  width: 48px;
  text-align: center;
  padding: 4px 0; }

.ui-datepicker-calendar td {
  padding: 3px 0 3px; }

.ui-datepicker .ui-state-disabled .ui-state-default {
  color: #b3b1af; }

.ui-datepicker .ui-state-default {
  font-size: 15px;
  line-height: 28px;
  color: #6d6b6a;
  text-decoration: none;
  width: 33px;
  height: 31px;
  padding-top: 2px;
  display: block;
  text-align: center;
  margin: 0 9px 0 9px; }

.ui-datepicker .ui-state-default.ui-state-hover {
  border: 1px solid #e3e1ed;
  border-radius: 100%;
  color: #61676b;
  border-radius: 100%;
  width: 31px;
  height: 29px;
  line-height: 26px; }

.ui-datepicker .ui-state-default.ui-state-hover.ui-state-active {
  line-height: 45px; }

.ui-datepicker .ui-state-default.ui-state-active {
  color: #fff;
  background: #ff3c30;
  line-height: 45px;
  width: 47px;
  height: 45px;
  border-radius: 100%;
  border: none;
  margin: 0; }
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */

.tooltipster-default {
	border-radius: 5px;
	/*border: 1px solid #c2c5cf;*/
	color: #888b98;
	font-style: italic;
	/*margin-left: 25px;*/
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-size: 13px;
	line-height: 18px;
	padding: 8px 10px;
	overflow: hidden;
}
.tooltipster-base.my-custom-theme {
	box-shadow: 0px 0px 14px 2px #b6b9c2;
	background: #fff4f4;
}
.my-custom-theme .tooltipster-content {
	font-size: 13px;
	line-height: 18px;
	background: #fff4f4;
	padding: 8px 10px;
	overflow: hidden;
	border-radius: 5px;
	color: #af9492;
	font-style: italic;
}
.my-custom-theme .tooltipster-arrow {
	left: 0;
}
.my-theme .tooltipster-content {
	font-size: 13px;
	line-height: 18px;
	background: #fff;
	padding: 8px 10px;
	overflow: hidden;
	border-radius: 5px;
	color: #888583;
}
.my-theme .tooltipster-arrow {
	left: 0;
}
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
	/* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}

.theme_settings {
	background: #f7f7f7; 
  border: 1px solid #e3e3e3;
  box-shadow: 0 0px 8px #DDD9D9;
  -moz-box-shadow: 0 0px 8px #DDD9D9;
  -webkit-box-shadow: 0 0px 8px #DDD9D9;
	color: #757575;
	max-width: 205px;
}

.theme_settings .tooltipster-content {
	font-size: 13px;
	line-height: 17px;
	padding: 4px 10px;
	overflow: hidden;
}

.theme_settings .tooltipster-content ul {
	margin-left: 12px;
}
.theme_settings .tooltipster-content ul li {
	margin: 3px 0;
}
.theme_settings .tooltipster-content p {
	color: #616a71;
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 10px;
}

.theme_settings i {
	display: block;
	padding: 5px 0;
	font-style: normal;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	background: #fff;
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9997;
	pointer-events: none;
	width: auto;
	overflow: visible;
	box-shadow: 0px 0px 14px 2px #ebeaea;
	border-radius: 5px;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -8px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -8px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	transform: scale(0,0);
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	transform: scale(1,1); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
	opacity: 0;
	transform: rotateZ(4deg);
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	transform: rotateZ(0deg); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	transition-property: top; 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}

.tooltipster-slide {
	left: -40px;
	transition-property: left; 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	transform: scale(1.1, 1.1);
}



.popup_tooltip {
	box-shadow: 0px 0px 14px 2px #b6b9c2;
	background: #fff4f4;
	border-radius: 5px;
	color: #888b98;
	font-style: italic;
}

/* Use this next selector to style things like font-size and line-height: */
.popup_tooltip .tooltipster-content {
	font-size: 13px;
	line-height: 18px;
	padding: 8px 10px;
	overflow: hidden;
}

.tooltipster-base.popup_tooltip {
	z-index: 99999;
}
/*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/

.select2-container {
    color: #626878;
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    font-size: 14px;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */ /* webkit */ /* firefox */
  box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    background-color: #fff;
    display: block;
    height: 28px;
    padding: 0 0 0 5px;
    font-size: 14px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aca395;
    border-radius: 4px;
    white-space: nowrap;
    line-height: 26px;
    color: #6d6b6a;
    font-family: "Lato";
    text-decoration: none;


    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

/*    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);*/
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;


    /*background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);*/
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 27px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 8px;
    height: 5px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url(/assets/chosen-blue.png) right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 999;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
 /*   margin-top: -1px;*/
    position: absolute;
    z-index: 9979;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #6c5b3e;
    border-top: 0;
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #6c5e4c;
    border-radius: 4px 4px 0 0;
}

.select2-drop-active {
    border: 1px solid #6c5e4c;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px -1px 6px #6c5e4c;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #c2c5cf;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 28px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aca395;

    background-clip: padding-box;

/*    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);*/
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    /*background: url(/assets/chosen-blue.png) no-repeat 10px 12px;*/
    /*position: relative;*/
}

.select2-container .select2-choice .select2-arrow b:before {
    background: url(/assets/spritesheet.png) no-repeat;
    background-position: -61px -61px;
    content: '';
    display: block;
    width: 8px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2.5px 0 0 -4px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}
.balance_show .select2-container {
    width: 106px;
}
.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;
    box-shadow: none;

    background: #fff url(/assets/chosen-blue.png) no-repeat 100% -22px;
    background: url(/assets/chosen-blue.png) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url(/assets/chosen-blue.png) no-repeat -37px -22px;
    background: url(/assets/chosen-blue.png) no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    /*background: #fff url(/assets/spinner.gif) no-repeat 100%;*/
    /*background: url(/assets/spinner.gif) no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));*/
    /*background: url(/assets/spinner.gif) no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);*/
    /*background: url(/assets/spinner.gif) no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);*/
    /*background: url(/assets/spinner.gif) no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;*/
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #6c5e4c;
    outline: none;
    border-radius: 4px;
}
.select2-container.select2-container-active .select2-choice .select2-arrow {
    border-left: 1px solid #6c5e4c;
}

.select2-dropdown-open .select2-choice {

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 0px 6px #6c5e4c;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #6c5b3e;
    border-top-color: transparent;
/*
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);*/
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    -webkit-filter: none;
            filter: none;
    border-left: #2988ca 1px solid;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-color: #ededf0;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0 !important;
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

/*.select2-results ul.select2-result-sub {
    border-left: #fece7b 1px solid;
    margin: 0 0 0 10px;
    padding-left: 0;
}*/

.select2-results li {
    color: #6d6b6a;
    list-style: none;
    display: list-item;
    background-image: none;
    font-family: "Lato";
    font-size: 14px;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    color: #616a71;
}

.select2-results .select2-result-label {
    padding: 4px 8px 4px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 14px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #ae8f67;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    /*background: #f4f4f4 url(/assets/spinner.gif) no-repeat 100%;*/
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;
/*
    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);*/
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #2988ca;
    outline: none;
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    /*background: #fff url(/assets/spinner.gif) no-repeat 100% !important;*/
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

/*    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);*/
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url(/assets/chosen-blue.png) right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

/*@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}*/
.select2-results ul.select2-result-sub {
    /*border-left: #66b931 1px solid;*/
    /*margin: 0 0 0 10px;*/
    padding-left: 0; 
}
.select2-results ul.select2-result-sub li {
    position: relative;
}
/*.select2-results ul.select2-result-sub li:before {
    border-top: #66b931 1px solid;
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -0.5px; 
}*/




/* jQuery.Rating Plugin CSS - http://www.fyneworks.com/jquery/star-rating/ */

div.rating-cancel { width: 0px;}
div.star-rating{float:left;width:18px;height:16px;text-indent:-999em;cursor:pointer;display:block;background:transparent;overflow:hidden}
div.star-rating,div.star-rating a{background:url(/assets/stars.png) no-repeat 0 0px}
div.rating-cancel a,div.star-rating a{display:block;width:18px;height:100%;background-position:0 0px;border:0}
div.star-rating-on a{background-position:0 -16px!important}
div.star-rating-hover a{background-position:0 -16px}
/* Read Only CSS */
div.star-rating-readonly a{cursor:default !important}
/* Partial Star CSS */
div.star-rating{background:transparent!important;overflow:hidden!important}
/* END jQuery.Rating Plugin CSS */


.testimonials_item_content .rating_form div.rating-cancel,
.testimonials_item_content .rating_form div.star-rating {
  width: 18px;
  height: 16px;
}
.testimonials_item_content .rating_form div.star-rating,
.testimonials_item_content .rating_form div.star-rating a {
  background:url(/assets/stars_big.png) no-repeat -23px 0px;
}
.testimonials_item_content .rating_form div.rating-cancel a,
.testimonials_item_content .rating_form div.star-rating a {
  width: 18px;
}
.testimonials_item_content .rating_form div.star-rating-on a {
  background-position: 0 0!important;
}
.testimonials_item_content .rating_form div.star-rating-hover a {
  background-position: 0px 0;
}
/*

Uniform Theme: Uniform Default
Version: 1.8
By: Josh Pyles
License: MIT License
---
For use with the Uniform plugin:
http://uniformjs.com/

*/
/* General settings */

div.selector, div.selector span, div.checker span, div.radio span, div.uploader, div.uploader span.action, div.button, div.button span {
  background-image: url("/assets/sprite.png");
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased; }
div.selector, div.checker, div.button, div.radio, div.uploader {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  /* Keeping this as :focus to remove browser styles */ }
  div.selector:focus, div.checker:focus, div.button:focus, div.radio:focus, div.uploader:focus {
    outline: 0; }
div.selector, div.selector *, div.radio, div.radio *, div.checker, div.checker *, div.uploader, div.uploader *, div.button, div.button * {
  margin: 0;
  padding: 0; }

.highContrastDetect {
  /*background: url("/assets/bg-input.png") repeat-x 0 0;*/
  width: 0px;
  height: 0px; }

/* Input & Textarea */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  padding: 3px;
  /*background: url("/assets/bg-input.png") repeat-x 0 0;*/
  outline: 0; }
  input.uniform-input.active,
  select.uniform-multiselect.active,
  textarea.uniform.active {
    /*background: url("/assets/bg-input-focus.png") repeat-x 0 0; */}

/* Remove default webkit and possible mozilla .search styles.
 * Keeping this as :active to remove browser styles */
div.checker input,
input[type="search"],
input[type="search"]:active {
  -moz-appearance: none;
  -webkit-appearance: none; }

/* Select */
div.selector {
  background-position: 0 -130px;
  line-height: 26px;
  height: 26px;
  padding: 0 0 0 10px;
  position: relative;
  overflow: hidden; }
  div.selector span {
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    background-position: right 0;
    height: 26px;
    line-height: 26px;
    padding-right: 25px;
    cursor: pointer;
    width: 100%;
    display: block; }
  div.selector.fixedWidth {
    width: 190px; }
    div.selector.fixedWidth span {
      width: 155px; }
  div.selector select {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    height: 22px;
    top: 2px;
    left: 0px;
    width: 100%; }
  div.selector.active {
    background-position: 0 -156px; }
    div.selector.active span {
      background-position: right -26px; }
  div.selector.hover, div.selector.focus {
    background-position: 0 -182px; }
    div.selector.hover span, div.selector.focus span {
      background-position: right -52px; }
    div.selector.hover.active, div.selector.focus.active {
      background-position: 0 -208px; }
      div.selector.hover.active span, div.selector.focus.active span {
        background-position: right -78px; }
  div.selector.disabled, div.selector.disabled.active {
    background-position: 0 -234px; }
    div.selector.disabled span, div.selector.disabled.active span {
      background-position: right -104px; }

/* Checkbox */
div.checker {
  position: relative; }
  div.checker, div.checker span, div.checker input {
    width: 38px;
    height: 38px; }
  div.checker span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: -2px -194px; }
    div.checker span.checked {
      background-position: -83px -194px; }
  div.checker input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1; }
  div.checker.active span {
    background-position: -2px -194px; }
    div.checker.active span.checked {
      background-position: -83px -194px; }
  div.checker.hover span, div.checker.focus span {
    background-position: -2px -194px; }
    div.checker.hover span.checked, div.checker.focus span.checked {
      background-position: -83px -194px; }
  div.checker.hover.active span, div.checker.focus.active span {
    background-position: -123px -194px; }
    div.checker.hover.active span.checked, div.checker.focus.active span.checked {
      background-position: -43px -194px; }
  div.checker.disabled, div.checker.disabled.active {
    background-position: -123px -194px; }
    div.checker.disabled span.checked, div.checker.disabled.active span.checked {
      background-position: -43px -194px; }

/* Radio */
div.radio {
  position: relative; }
  div.radio, div.radio span, div.radio input {
    width: 19px;
    height: 19px; }
  div.radio span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: -1px -278px; }
    div.radio span.checked {
      background-position: -23px -278px; }
  div.radio input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center; }
  div.radio.active span {
    background-position: -23px -23px -278px; }
    div.radio.active span.checked {
      background-position: -23px -278px; }
  div.radio.hover span, div.radio.focus span {
    background-position: -23px -23px -278px; }
    div.radio.hover span.checked, div.radio.focus span.checked {
      background-position: -23px -278px; }
  div.radio.hover.active span, div.radio.focus.active span {
    background-position: -23px -278px; }
    div.radio.hover.active span.checked, div.radio.focus.active span.checked {
      background-position: -23px -278px; }
  div.radio.disabled span, div.radio.disabled.active span {
    background-position: -23px -278px; }
    div.radio.disabled span.checked, div.radio.disabled.active span.checked {
      background-position: -23px -278px; }

.price_choice_item div.radio {
  position: relative; }
  .price_choice_item div.radio, .price_choice_item div.radio span, .price_choice_item div.radio input {
    width: 16px;
    height: 16px; }
  .price_choice_item div.radio span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: -49px -281px; }
    .price_choice_item div.radio span.checked {
      background-position: -69px -281px; }
  .price_choice_item div.radio input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center; }
  .price_choice_item div.radio.active span {
    background-position: -49px -49px -281px; }
    .price_choice_item div.radio.active span.checked {
      background-position: -69px -281px; }
  .price_choice_item div.radio.hover span, .price_choice_item div.radio.focus span {
    background-position: -49px -49px -281px; }
    .price_choice_item div.radio.hover span.checked, .price_choice_item div.radio.focus span.checked {
      background-position: -69px -281px; }
  .price_choice_item div.radio.hover.active span, .price_choice_item div.radio.focus.active span {
    background-position: -49px -281px; }
    .price_choice_item div.radio.hover.active span.checked, .price_choice_item div.radio.focus.active span.checked {
      background-position: -69px -281px; }
  .price_choice_item div.radio.disabled span, .price_choice_item div.radio.disabled.active span {
    background-position: -69px -281px; }
    .price_choice_item div.radio.disabled span.checked, .price_choice_item div.radio.disabled.active span.checked {
      background-position: -69px -281px; }

.type_of_writer div.radio {
  position: relative; }
  .type_of_writer div.radio, .type_of_writer div.radio span, .type_of_writer div.radio input {
    width: 31px;
    height: 31px; }
  .type_of_writer div.radio span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: -2px -330px; }
    .type_of_writer div.radio span.checked {
      background-position: -37px -330px; }
  .type_of_writer div.radio input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center; }
  .type_of_writer div.radio.active span {
    background-position: -2px -2px -330px; }
    .type_of_writer div.radio.active span.checked {
      background-position: -37px -330px; }
  .type_of_writer div.radio.hover span, .type_of_writer div.radio.focus span {
    background-position: -2px -2px -330px; }
    .type_of_writer div.radio.hover span.checked, .type_of_writer div.radio.focus span.checked {
      background-position: -37px -330px; }
  .type_of_writer div.radio.hover.active span, .type_of_writer div.radio.focus.active span {
    background-position: -2px -330px; }
    .type_of_writer div.radio.hover.active span.checked, .type_of_writer div.radio.focus.active span.checked {
      background-position: -37px -330px; }
  .type_of_writer div.radio.disabled span, .type_of_writer div.radio.disabled.active span {
    background-position: -72px -330px; }
    .type_of_writer div.radio.disabled span.checked, .type_of_writer div.radio.disabled.active span.checked {
      background-position: -108px -330px; }

.customer_service .type_of_writer div.radio {
  position: relative; }
  .customer_service .type_of_writer div.radio, .customer_service .type_of_writer div.radio span, .customer_service .type_of_writer div.radio input {
    width: 31px;
    height: 31px; }
  .customer_service .type_of_writer div.radio span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center;
    background-position: -2px -330px; }
    .customer_service .type_of_writer div.radio span.checked {
      background-position: -37px -330px; }
  .customer_service .type_of_writer div.radio input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: center; }
  .customer_service .type_of_writer div.radio.active span {
    background-position: -2px -2px -330px; }
    .customer_service .type_of_writer div.radio.active span.checked {
      background-position: -37px -330px; }
  .customer_service .type_of_writer div.radio.hover span, .customer_service .type_of_writer div.radio.focus span {
    background-position: -2px -2px -330px; }
    .customer_service .type_of_writer div.radio.hover span.checked, .customer_service .type_of_writer div.radio.focus span.checked {
      background-position: -37px -330px; }
  .customer_service .type_of_writer div.radio.hover.active span, .customer_service .type_of_writer div.radio.focus.active span {
    background-position: -2px -330px; }
    .customer_service .type_of_writer div.radio.hover.active span.checked, .customer_service .type_of_writer div.radio.focus.active span.checked {
      background-position: -37px -330px; }
  .customer_service .type_of_writer div.radio.disabled span, .customer_service .type_of_writer div.radio.disabled.active span {
    background-position: -72px -330px; }
    .customer_service .type_of_writer div.radio.disabled span.checked, .customer_service .type_of_writer div.radio.disabled.active span.checked {
      background-position: -108px -330px; }

/* Uploader */
div.uploader {
  background-position: 0 -297px;
  height: 28px;
  width: 190px;
  cursor: pointer;
  position: relative;
  overflow: hidden; }
  div.uploader span.action {
    background-position: right -409px;
    height: 28px;
    line-height: 28px;
    width: 82px;
    text-align: center;
    float: left;
    display: inline;
    overflow: hidden;
    cursor: pointer; }
  div.uploader span.filename {
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    float: left;
    cursor: default;
    height: 24px;
    margin: 2px 0 2px 2px;
    line-height: 24px;
    width: 85px;
    padding: 0 10px; }
  div.uploader input {
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    float: right;
    cursor: default;
    width: 100%;
    height: 100%; }
  div.uploader.active span.action {
    background-position: right -465px; }
  div.uploader.hover, div.uploader.focus {
    background-position: 0 -353px; }
    div.uploader.hover span.action, div.uploader.focus span.action {
      background-position: right -437px; }
    div.uploader.hover.active span.action, div.uploader.focus.active span.action {
      background-position: right -493px; }
  div.uploader.disabled, div.uploader.disabled.active {
    background-position: 0 -325px; }
    div.uploader.disabled span.action, div.uploader.disabled.active span.action {
      background-position: right -381px; }

/* Buttons */
div.button {
  background-position: 0 -641px;
  height: 30px;
  cursor: pointer;
  position: relative;
  /* Keep buttons barely visible so they can get focus */ }
  div.button a, div.button button, div.button input {
    opacity: 0.01;
    filter: alpha(opacity=1);
    -moz-opacity: 0.01;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute; }
  div.button span {
    display: -moz-inline-box;
    display: inline-block;
    *display: inline;
    zoom: 1;
    line-height: 22px;
    text-align: center;
    background-position: right -521px;
    height: 22px;
    margin-left: 13px;
    padding: 8px 15px 0 2px; }
  div.button.active {
    background-position: 0 -671px; }
    div.button.active span {
      background-position: right -551px;
      cursor: default; }
  div.button.hover, div.button.focus {
    background-position: 0 -701px; }
    div.button.hover span, div.button.focus span {
      background-position: right -581px; }
  div.button.disabled, div.button.disabled.active {
    background-position: 0 -731px; }
    div.button.disabled span, div.button.disabled.active span {
      background-position: right -611px;
      cursor: default; }

/* INPUT & TEXTAREA */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  font-size: 12px;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #777;
  border-top: solid 1px #aaaaaa;
  border-left: solid 1px #aaaaaa;
  border-bottom: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  border-radius: 3px; }
  input.uniform-input.hover, input.uniform-input.focus,
  select.uniform-multiselect.hover,
  select.uniform-multiselect.focus,
  textarea.uniform.hover,
  textarea.uniform.focus {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    border-color: #999; }

/* PRESENTATION */
/* Buttons */
div.button span {
  font-weight: bold;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase; }
div.button.hover span, div.button.focus span {
  color: #555; }
div.button.disabled span, div.button.disabled.active span {
  color: #bbb; }

/* Select */
div.selector {
  font-size: 12px; }
  div.selector span {
    color: #666;
    text-shadow: 0 1px 0 white; }
  div.selector select {
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 12px; }
  div.selector.disabled span, div.selector.disabled.active span {
    color: #bbb; }

/* Checker */
div.checker {
  margin-right: 5px; }

/* Radio */
div.radio {
  margin-right: 3px; }

/* Uploader */
div.uploader span.action {
  text-shadow: white 0px 1px 0px;
  background-color: #fff;
  font-size: 11px;
  font-weight: bold; }
div.uploader span.filename {
  color: #777;
  border-right: solid 1px #bbbbbb;
  font-size: 11px; }
div.uploader.disabled span.action, div.uploader.disabled.active span.action {
  color: #aaa; }
div.uploader.disabled span.filename, div.uploader.disabled.active span.filename {
  border-color: #ddd;
  color: #aaa; }

input.uniform-input, input.uniform-input:focus {
  background-color: #fff; }
.cookie_policy-overlay:not([style="display: none;"]) {
  background-color: #878492;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  z-index: 999999; }
  .cookie_policy-overlay:not([style="display: none;"]) + script + .wrapper {
    margin-top: 40px; }
    .cookie_policy-overlay:not([style="display: none;"]) + script + .wrapper .sticky-wrapper.is-sticky .header_top {
      top: 40px !important; }
    .cookie_policy-overlay:not([style="display: none;"]) + script + .wrapper .sticky-wrapper.is-sticky .scroller {
      top: 86px !important; }
  .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane {
    width: 1000px;
    margin: 0 auto; }
    .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane p {
      font-size: 13px;
      line-height: 15px;
      color: #fff;
      display: inline-block;
      vertical-align: middle;
      width: calc(100% - 85px);
      max-width: calc(100% - 85px);
      padding-right: 10px;
      box-sizing: border-box; }
      .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane p a {
        color: #71DCFF; }
    .cookie_policy-overlay:not([style="display: none;"]) .cookie_policy-pane .cookie_policy-button {
      background-color: #787485;
      color: #fff;
      border: 1px solid #D8D6E2;
      border-radius: 6px;
      width: 80px;
      height: 30px;
      line-height: 28px;
      display: inline-block;
      vertical-align: middle;
      box-sizing: border-box; }

.remove_data_block {
  margin-bottom: 15px; }
  .remove_data_block .tooltip_block {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
    float: none; }
  .remove_data_block .download_button {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    position: relative;
    width: 260px; }
    .remove_data_block .download_button .button {
      vertical-align: middle; }
    .remove_data_block .download_button p {
      font-size: 12px;
      line-height: 14px;
      color: #A2A7AC;
      margin-top: 10px; }
  .remove_data_block .button {
    display: inline-block;
    vertical-align: top;
    box-shadow: none;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    padding: 0 15px; }
    .remove_data_block .button.green {
      background: #ff3c30; }
      .remove_data_block .button.green:hover {
        background: #f13628; }
    .remove_data_block .button.disabled, .remove_data_block .button.disabled:hover {
      background: #eeebf3;
      color: #918890; }

.popup.info_account {
  width: 515px;
  padding: 0; }
  .popup.info_account.confirmed .popup_content {
    padding-bottom: 45px; }
  .popup.info_account .popup_title {
    padding: 14px 20px;
    text-align: center;
    position: relative;
    background-color: #807abb; }
    .popup.info_account .popup_title span {
      font-size: 18px;
      line-height: 22px;
      font-weight: bold;
      color: #fff; }
  .popup.info_account .popup_content {
    padding: 10px 25px 30px; }
    .popup.info_account .popup_content p {
      font-size: 14px;
      line-height: 19px;
      color: #616A71;
      text-align: left;
      padding: 0; }
  .popup.info_account .buttons {
    margin: 20px 0 0; }
    .popup.info_account .buttons .button {
      display: inline-block;
      vertical-align: top;
      width: 220px;
      font-size: 15px;
      height: 45px;
      line-height: 45px;
      box-sizing: border-box;
      margin: 0; }
      .popup.info_account .buttons .button.blue {
        margin-right: 22px; }
.tweet_widget {
  float: left;
  clear: right;
  display: inline-block;
  width: 40%;
  word-break: break-word;
  margin: 15px 10px 5px 0;
  position: relative; }
  .tweet_widget .tweet_button {
    display: inline-block;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 0.25s;
    position: absolute;
    bottom: 0px;
    right: 0px; }
    .tweet_widget .tweet_button .tweet_link {
      display: inline-block;
      width: 24px;
      height: 24px;
      overflow: hidden;
      background: transparent url(/assets/tweet.png) left center no-repeat; }
      .tweet_widget .tweet_button .tweet_link:hover {
        background-position: right center; }
  .tweet_widget:hover .tweet_button {
    pointer-events: auto;
    opacity: 1; }
  .tweet_widget .tweet_content {
    padding: 0 0 0 0.6em;
    margin-bottom: 30px;
    color: #000;
    font-size: 14px;
    line-height: 1.3em;
    font-weight: bold;
    text-transform: uppercase; }
    .tweet_widget .tweet_content:before {
      margin-left: -0.5em;
      content: "\201c"; }
    .tweet_widget .tweet_content:after {
      content: "\201d";
      position: absolute; }
.widget_service_rate {
  margin: 20px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 3px 18px rgba(115, 129, 193, 0.16);
  -moz-box-shadow: 0 3px 18px rgba(115, 129, 193, 0.16);
  -webkit-box-shadow: 0 3px 18px rgba(115, 129, 193, 0.16); }
  .widget_service_rate_row {
    margin: 0 30px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .widget_service_rate_text {
    max-width: 495px;
    width: calc(100% - 152px); }
    .widget_service_rate_text p {
      text-align: left;
      font-size: 14px;
      line-height: 26px;
      color: #635854; }
  .widget_service_rate_value {
    width: 110px;
    position: relative; }
    .widget_service_rate_value:before {
      position: absolute;
      content: '';
      left: -20px;
      top: 50%;
      width: 1px;
      height: 56px;
      margin-top: -28px;
      background-color: #DBD2C9; }
    .widget_service_rate_value p {
      text-align: center;
      margin-top: 12px;
      color: #383252;
      font-weight: 600;
      line-height: 22px; }
    .widget_service_rate_value .wrap p {
      font-size: 28px;
      font-weight: 600;
      line-height: 42px;
      color: #383252; }
  .widget_service_rate p {
    padding: 0; }
  .widget_service_rate_bottom {
    position: relative;
    padding: 18px 30px 20px; }
    .widget_service_rate_bottom:before {
      position: absolute;
      content: '';
      left: 30px;
      top: 0;
      width: calc(100% - 60px);
      height: 1px;
      background-color: #DBD2C9; }
    .widget_service_rate_bottom p {
      font-size: 14px;
      line-height: 26px;
      font-weight: 600;
      color: #383252; }
      .widget_service_rate_bottom p span,
      .widget_service_rate_bottom p strong {
        margin: 0 5px;
        color: #FE2C23; }
  .widget_service_rate .star {
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
    width: 15px;
    height: 15px;
    background: url(/assets/star-widget.png) no-repeat center;
    background-size: contain; }
    .widget_service_rate .star:last-of-type {
      margin-right: 0; }
    .widget_service_rate .star.star_active {
      background: url(/assets/star-active-widget.png) no-repeat center;
      background-size: contain; }
    .widget_service_rate .star_wrapper {
      margin-top: 4px;
      text-align: center; }
.why_choose {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 28px 20px;
  position: relative;
  background-color: #fff;
  border-top: 1px solid #D8D0C5;
  border-bottom: 1px solid #D8D0C5; }
  .why_choose:before {
    position: absolute;
    content: '';
    left: 20px;
    top: 52px;
    height: 166px;
    width: calc(100% - 40px);
    background-color: #FBFBFC;
    border-radius: 4px; }
  .why_choose:after {
    display: table;
    content: '';
    clear: both; }
  .why_choose_item {
    position: relative;
    flex-basis: 200px;
    flex-grow: 1;
    margin-bottom: 30px;
    padding-top: 56px;
    padding-right: 20px;
    box-sizing: border-box; }
    .why_choose_item:before {
      position: absolute;
      display: block;
      content: '';
      top: 0;
      width: 48px;
      height: 48px;
      border-radius: 4px;
      box-shadow: 4px 4px 18px rgba(115, 129, 193, 0.23);
      -moz-box-shadow: 4px 4px 18px rgba(115, 129, 193, 0.23);
      -webkit-box-shadow: 4px 4px 18px rgba(115, 129, 193, 0.23);
      z-index: 5; }
    .why_choose_item:nth-child(3n) {
      margin-right: 0; }
    .why_choose_item:nth-child(1) {
      padding-top: 50px; }
      .why_choose_item:nth-child(1):before {
        display: none; }
    .why_choose_item:nth-child(2):before {
      background: #fafafa url(/assets/heart.png) no-repeat center;
      background-size: 28px 25px; }
    .why_choose_item:nth-child(3):before {
      background: #fafafa url(/assets/24-hours.png) no-repeat center;
      background-size: 30px; }
    .why_choose_item:nth-child(4):before {
      background: #fafafa url(/assets/tasks.png) no-repeat center;
      background-size: 26px; }
    .why_choose_item:nth-child(5):before {
      background: #fafafa url(/assets/users.png) no-repeat center;
      background-size: 28px; }
    .why_choose_item:nth-child(6):before {
      background: #fafafa url(/assets/hand.png) no-repeat center;
      background-size: 30px; }
    .why_choose_item strong {
      display: block;
      margin-bottom: 7px;
      font-size: 15px;
      line-height: 22px;
      color: #383252;
      font-weight: 600; }
      .why_choose_item strong.why_choose_title {
        position: relative;
        margin-left: 34px;
        width: 140px;
        font-size: 26px;
        color: #383252;
        line-height: 36px;
        font-weight: 800; }
        .why_choose_item strong.why_choose_title:before {
          position: absolute;
          content: '';
          left: 0;
          bottom: -6px;
          height: 4px;
          width: 150px;
          background-color: rgba(115, 129, 193, 0.59);
          border-radius: 4px; }
    .why_choose_item p {
      margin-bottom: 0 !important;
      font-size: 14px !important;
      color: #635854 !important;
      line-height: 26px !important; }
  .why_choose p {
    padding: 0 !important; }
.widget_samples {
  margin: 20px 0;
  padding: 23px 20px;
  border-top: 1px solid #D8D0C5; }
  .widget_samples_title {
    margin-bottom: 24px;
    text-align: center; }
    .widget_samples_title span {
      display: inline-block;
      vertical-align: top;
      margin-bottom: 12px;
      font-size: 24px;
      line-height: 32px;
      color: #383252; }
  .widget_samples_block {
    display: flex;
    justify-content: space-between; }
  .widget_samples_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px; }
    .widget_samples_row span {
      width: 47%;
      font-size: 14px;
      line-height: 17px;
      color: #383252; }
    .widget_samples_row strong {
      width: 52%;
      font-size: 14px;
      line-height: 18px;
      font-weight: 600;
      color: #383252; }
      .widget_samples_row strong a {
        text-decoration: none;
        color: #383252; }
  .widget_samples_item {
    max-width: 294px;
    width: 100%;
    margin-bottom: 30px;
    padding: 22px 20px 30px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 3px 18px rgba(115, 129, 193, 0.16);
    -moz-box-shadow: 0 3px 18px rgba(115, 129, 193, 0.16);
    -webkit-box-shadow: 0 3px 18px rgba(115, 129, 193, 0.16); }
    .widget_samples_item:nth-child(1) {
      margin-right: 20px; }
  .widget_samples_top {
    display: flex;
    align-items: center;
    height: 44px;
    position: relative;
    margin-bottom: 10px;
    background-size: 33px 54px; }
    .widget_samples_top:before {
      display: none;
      position: absolute;
      content: '';
      left: 63px;
      top: 50%;
      width: 1px;
      height: 32px;
      margin-top: -16px;
      background-color: #E4DDD7; }
    .widget_samples_top a,
    .widget_samples_top strong {
      font-size: 15px;
      line-height: 22px;
      color: #383252;
      font-weight: 600;
      text-decoration: none;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2; }
  .widget_samples_content {
    padding-top: 23px;
    border-top: 1px solid #E4DDD7; }
  .widget_samples .btn_green {
    margin-top: 14px;
    display: inline-block;
    vertical-align: top;
    max-width: 284px;
    width: 100%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 15px;
    color: #198A52;
    border-radius: 4px;
    background-color: #D4F3D8;
    text-decoration: none;
    transition: all .3s ease; }
    .widget_samples .btn_green:hover {
      background-color: #E4FAE7; }
  .widget_samples .button {
    max-width: 316px; }
    .widget_samples .button.yellow {
      margin-top: 0; }
.widget_how_works {
  padding: 20px 0 20px 20px; }
  .widget_how_works_title {
    margin-bottom: 23px;
    text-align: center; }
    .widget_how_works_title span {
      font-size: 24px;
      color: #383252;
      line-height: 32px; }
  .widget_how_works_block {
    position: relative;
    background: url(/assets/how-works-line.svg) no-repeat left 37px top 48px; }
  .widget_how_works_steps {
    width: 49%; }
    .widget_how_works_steps .button {
      height: 50px;
      max-width: 294px;
      width: 100%;
      line-height: 50px; }
      .widget_how_works_steps .button.yellow {
        margin: 40px 0 0 0; }
  .widget_how_works_descr {
    width: 48%; }
  .widget_how_works_tab {
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
    max-width: 340px;
    width: 100%;
    margin-bottom: 25px;
    padding: 0 20px 0 90px;
    border-radius: 40px;
    transition: all .3s ease;
    box-sizing: border-box;
    z-index: 5; }
    .widget_how_works_tab:before {
      position: absolute;
      content: '';
      top: 9px;
      left: 10px;
      width: 60px;
      height: 60px;
      background-color: #fafafa;
      border-radius: 50%;
      border: 1px solid transparent;
      box-shadow: 4px 4px 18px rgba(115, 129, 193, 0.23);
      -moz-box-shadow: 4px 4px 18px rgba(115, 129, 193, 0.23);
      -webkit-box-shadow: 4px 4px 18px rgba(115, 129, 193, 0.23);
      z-index: 10; }
    .widget_how_works_tab:hover {
      cursor: pointer;
      background-color: #F9F9FB; }
      .widget_how_works_tab:hover:before {
        border-color: #3BC64F;
        background-color: #fff; }
    .widget_how_works_tab.active {
      background-color: #F9F9FB; }
      .widget_how_works_tab.active:before {
        border-color: #3BC64F;
        background-color: #fff; }
      .widget_how_works_tab.active + .widget_how_works_img {
        display: block; }
    .widget_how_works_tab[data-tab="step1"]:before {
      background-image: url(/assets/step1-bg.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 40%; }
    .widget_how_works_tab[data-tab="step2"]:before {
      background-image: url(/assets/step2-bg.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 55%; }
    .widget_how_works_tab[data-tab="step3"]:before {
      background-image: url(/assets/step3-bg.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 55%; }
    .widget_how_works_tab span {
      font-size: 12px;
      line-height: 18px;
      color: #635854; }
    .widget_how_works_tab strong {
      margin-left: 3px;
      font-size: 14px;
      line-height: 18px;
      font-weight: 600;
      color: #383252; }
  .widget_how_works_img {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    display: none; }
    .widget_how_works_img img {
      width: 100%;
      height: auto; }
.how_works {
  padding: 0;
  box-sizing: border-box; }
  .how_works .content_title {
    margin-bottom: 30px; }
    .how_works .content_title + p {
      font-size: 14px;
      line-height: 26px;
      color: #635854; }
  .how_works ul.list,
  .how_works ol.list,
  .how_works .list {
    margin: 15px 0 !important; }
    .how_works ul.list li,
    .how_works ol.list li,
    .how_works .list li {
      background: none !important;
      position: relative !important;
      margin-bottom: 5px !important;
      padding: 0 0 0 20px !important;
      font-size: 14px !important;
      line-height: 26px !important;
      color: #635854 !important; }
  .how_works_block {
    margin-top: 16px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box; }
    .how_works_block.step_two {
      flex-direction: row-reverse; }
    .how_works_block.step_three .how_works_text .button.yellow {
      margin-top: 86px; }
  .how_works_img {
    width: 53%; }
  .how_works_text {
    width: 45%; }
    .how_works_text strong {
      font-size: 16px;
      line-height: 32px;
      grid-row-end: 600;
      color: #383252; }
    .how_works_text p {
      margin-bottom: 5px !important;
      font-size: 14px !important;
      line-height: 26px !important;
      color: #635854 !important; }
    .how_works_text .button.yellow {
      margin-top: 20px;
      max-width: 250px;
      display: inline-block;
      vertical-align: top;
      text-align: center;
      width: 100%; }
  .how_works img {
    width: 100%;
    height: auto; }
  .how_works ul {
    list-style: none; }
  .how_works p {
    margin-bottom: 16px;
    padding: 0 !important; }
  .how_works_title {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 32px;
    border-bottom: 1px solid #3BC64F;
    font-weight: 600; }
    .how_works_title span {
      margin-right: 4px;
      color: #3BC64F; }
  .how_works ul.list li,
  .how_works ol.list li,
  .how_works .list li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 26px;
    color: #635854; }
    .how_works ul.list li:before,
    .how_works ol.list li:before,
    .how_works .list li:before {
      position: absolute;
      content: '';
      left: 2px;
      top: 9px;
      height: 8px;
      width: 8px;
      background-color: #3BC64F;
      border-radius: 50%; }
  .how_works + .why_choose {
    border-color: transparent;
    border-top: 1px solid #D8D0C5; }
.popup_overlay.feedback {
  background-color: inherit;
  border: none; }
  .popup_overlay.feedback .popup {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
    .popup_overlay.feedback .popup form {
      margin: 0; }
    .popup_overlay.feedback .popup .feedback_data h2 {
      color: #fff; }
      .popup_overlay.feedback .popup .feedback_data h2 span {
        color: #b5daf3;
        font-weight: normal;
        width: auto;
        float: none; }
      .popup_overlay.feedback .popup .feedback_data h2:after {
        display: none; }
    .popup_overlay.feedback .popup .feedback_data .you_ranked {
      width: 96%;
      margin-left: 2%;
      margin-right: 2%; }
      .popup_overlay.feedback .popup .feedback_data .you_ranked p {
        margin-top: 0;
        font-size: 13px;
        width: auto;
        padding: 0 2%;
        line-height: 21px;
        margin: 0; }
        .popup_overlay.feedback .popup .feedback_data .you_ranked p:before, .popup_overlay.feedback .popup .feedback_data .you_ranked p:after {
          display: none; }
      .popup_overlay.feedback .popup .feedback_data .you_ranked .time {
        width: 30%;
        text-align: right;
        padding: 0 2%; }
        .popup_overlay.feedback .popup .feedback_data .you_ranked .time p {
          float: right; }
    .popup_overlay.feedback .popup .feedback_data .your_feedbacks_change {
      margin: 0 4%; }
      .popup_overlay.feedback .popup .feedback_data .your_feedbacks_change .button {
        width: 35%;
        margin: 15px 3% 0 3%; }

.popup.violation {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0; }
  .popup.violation h2 {
    background-color: #807abb;
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase; }
  .popup.violation > p {
    margin-bottom: 0; }
    .popup.violation > p:before {
      display: none; }
    .popup.violation > p:after {
      border-bottom: #755b94 1px solid;
      display: block;
      content: '';
      width: 90%;
      height: 1px;
      margin: 4px auto 0;
      position: relative;
      background: none;
      left: inherit;
      bottom: inherit; }
  .popup.violation .violation_content {
    margin: 0 3%;
    display: inline-block;
    width: 94%; }
    .popup.violation .violation_content > span {
      color: #4b4b4b;
      font-size: 18px;
      line-height: 22px;
      font-weight: bold;
      padding: 10px 2%;
      display: inline-block;
      width: 96%;
      float: none; }
    .popup.violation .violation_content .textarea {
      width: 100%;
      height: 120px; }
    .popup.violation .violation_content .input_error {
      width: 100%; }
      .popup.violation .violation_content .input_error .validation_error {
        width: 100%;
        position: relative;
        margin-left: 0;
        bottom: inherit; }
    .popup.violation .violation_content .form_item {
      display: inline-block;
      width: 100%;
      margin: 10px 0; }
      .popup.violation .violation_content .form_item .checker {
        float: left; }
      .popup.violation .violation_content .form_item label {
        float: left;
        line-height: 38px; }
    .popup.violation .violation_content .prompt {
      display: inline-block;
      width: 100%; }
      .popup.violation .violation_content .prompt p {
        float: left;
        padding: 0;
        margin: 2px 0 0 0;
        width: auto; }
        .popup.violation .violation_content .prompt p:after, .popup.violation .violation_content .prompt p:before {
          display: none; }
      .popup.violation .violation_content .prompt .tooltip_block {
        margin-top: 0; }
    .popup.violation .violation_content .picker {
      display: inline-block;
      width: 100%;
      margin: 12px 0; }
      .popup.violation .violation_content .picker .picker_filed {
        float: left;
        margin-right: 10px;
        position: relative; }
        .popup.violation .violation_content .picker .picker_filed label {
          float: left;
          line-height: 28px;
          margin-right: 5px; }
        .popup.violation .violation_content .picker .picker_filed .ui-datepicker-trigger {
          position: absolute;
          top: 4px;
          right: 4px; }
        .popup.violation .violation_content .picker .picker_filed .date_pick {
          border: #aca395 1px solid;
          color: #abadb4;
          font-size: 13px;
          height: 28px;
          outline: none;
          padding: 0 10px;
          border-radius: 4px;
          width: 100px;
          float: left; }
        .popup.violation .violation_content .picker .picker_filed .input {
          width: 100px;
          float: left;
          margin: 0; }
    .popup.violation .violation_content .form-submit {
      margin-bottom: 20px; }
      .popup.violation .violation_content .form-submit .button {
        width: 35%;
        margin: 10px 3% 0 3%; }
  .popup.violation .button.medium {
    color: #fff;
    padding-top: 0;
    text-decoration: none; }

.popup_overlay.feedback .popup_overlay .popup.violation h2 {
  background: none;
  color: #ff7c21;
  font-weight: normal;
  padding-bottom: 5px; }
  .popup_overlay.feedback .popup_overlay .popup.violation h2:after {
    display: none; }
.popup_overlay.feedback .popup_overlay .popup.violation > p {
  border-bottom: #755b94 1px solid;
  padding: 10px 0;
  margin: 0 2%;
  width: auto;
  float: none; }
  .popup_overlay.feedback .popup_overlay .popup.violation > p:before, .popup_overlay.feedback .popup_overlay .popup.violation > p:after {
    display: none; }

.popup .feedback_status {
  margin: 20px 0 10px 0; }
  .popup .feedback_status span {
    color: #179291;
    display: block;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-top: 10px;
    width: auto;
    float: none; }
  .popup .feedback_status p {
    font-size: 20px;
    line-height: 22px;
    margin: 14px 0;
    float: none;
    width: auto; }
    .popup .feedback_status p:before, .popup .feedback_status p:after {
      display: none; }
  .popup .feedback_status.feedback_ok .image {
    background: url(/assets/new_cabinet/feedback_ok.png) no-repeat;
    display: block;
    width: 54px;
    height: 24px;
    margin: 0 auto 15px; }
  .popup .feedback_status.feedback_fail .image {
    background: url(/assets/new_cabinet/feedback_fail.png) no-repeat;
    display: block;
    width: 54px;
    height: 31px;
    margin: 0 auto 15px; }
.popup .revision_sent {
  padding: 10px 3% 0 3%; }
  .popup .revision_sent span {
    color: #194063;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    text-transform: uppercase;
    float: none;
    width: auto; }
  .popup .revision_sent .date {
    color: #ff7c21;
    font-size: 23px;
    font-weight: bold;
    line-height: 26px;
    margin: 10px 0; }
  .popup .revision_sent p {
    float: none;
    width: auto;
    margin-bottom: 0; }
    .popup .revision_sent p:before, .popup .revision_sent p:after {
      display: none; }
  .popup .revision_sent p + .button {
    margin-top: 15px; }

.popup.verify {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0; }
  .popup.verify h2 {
    background-color: #807abb;
    color: #fff;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase; }
    .popup.verify h2:after {
      display: none; }
  .popup.verify > p {
    padding-bottom: 10px;
    border-bottom: #755b94 1px solid;
    margin: 10px 4%; }
    .popup.verify > p:before, .popup.verify > p:after {
      display: none; }
  .popup.verify .popup_close {
    background: url(/assets/new_cabinet/popup_close.png) no-repeat;
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 4px;
    right: 4px; }
  .popup.verify .fail,
  .popup.verify .done {
    display: none; }
  .popup.verify .field_item {
    display: inline-block;
    width: 92%;
    padding: 0 4%;
    margin-bottom: 8px; }
    .popup.verify .field_item label {
      width: 100%;
      display: block;
      margin: 0 0 10px 0; }
    .popup.verify .field_item .input {
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      float: left;
      width: 240px;
      margin-bottom: 0; }
    .popup.verify .field_item .input_error {
      float: left;
      width: 240px;
      margin-bottom: 0; }
      .popup.verify .field_item .input_error .input {
        width: 100%; }
      .popup.verify .field_item .input_error .validation_error {
        width: 100% !important;
        text-align: left;
        position: relative;
        bottom: inherit;
        margin-left: 0; }
        .popup.verify .field_item .input_error .validation_error .close {
          display: none; }
    .popup.verify .field_item .button {
      float: right;
      height: 28px;
      line-height: 28px;
      padding-top: 0; }
  .popup.verify .submit a {
    color: #2988ca;
    float: left;
    font-size: 13px;
    text-decoration: none;
    margin-left: 4%; }

/* DEV */
.feedback {
  background-color: #fff;
  border: #d7d0c6 1px solid;
  width: 100%;
  display: inline-block;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; }
  .feedback .content_title .content_title_line {
    display: none; }
  .feedback .content_title:not(:first-child) {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #b1bfe0;
    border: none;
    width: 100%;
    padding: 5px 2%;
    text-align: left;
    margin: 12px 0; }
    .feedback .content_title:not(:first-child) h2 {
      color: #404f74; }
  .feedback .rating_form {
    height: auto; }
  .feedback .textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: #dfd4c1 1px solid;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: inset 0px 2px 3px #e3e2e0;
    -moz-box-shadow: inset 0px 2px 3px #e3e2e0;
    -webkit-box-shadow: inset 0px 2px 3px #e3e2e0;
    color: #4b4b4b;
    font-size: 14px;
    font-style: normal; }
  .feedback .input_error .textarea {
    box-shadow: 0 0 5px #F99 !important;
    border-color: #FAA !important; }
  .feedback .input_error .input {
    box-shadow: 0 0 5px #F99 !important;
    border-color: #FAA !important; }
  .feedback .input {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
  .feedback .validation_error .close {
    display: none; }
  .feedback .button {
    cursor: pointer; }

.feedback.ranking {
  width: 100% !important; }

.initial_params {
  display: none !important; }

/* Feedback Stars */
.feedback .rating_form div.rating-cancel {
  display: none; }
.feedback .rating_form div.star-rating {
  background: url(/assets/new_cabinet/feedback_stars.png) 0 0 no-repeat;
  width: 18px;
  height: 19px;
  margin: 0 1px; }
  .feedback .rating_form div.star-rating a {
    background: url(/assets/new_cabinet/feedback_stars.png) 0 0 no-repeat; }
.feedback .rating_form div.star-rating-on a {
  background-position: 0 -30px !important; }
.feedback .rating_form div.star-rating-hover a {
  background-position: 0 -30px; }

.rating_item[ng-rating] {
  position: relative; }
  .rating_item[ng-rating] .ng-rating {
    -webkit-appearance: none;
    width: 18px;
    height: 19px;
    background: url(/assets/new_cabinet/feedback_stars.png) no-repeat;
    outline: none;
    margin: 0 1px;
    transition: 0.3s transform ease-in-out; }
    .rating_item[ng-rating] .ng-rating.filled {
      background-position: 0 -30px; }
    .rating_item[ng-rating] .ng-rating[disabled] {
      pointer-events: none !important; }
    .rating_item[ng-rating] .ng-rating:hover:not([disabled]), .rating_item[ng-rating] .ng-rating.rate-hover:not([disabled]) {
      background-position: 0 -30px; }
      .rating_item[ng-rating] .ng-rating:hover:not([disabled]) ~ .ng-rating.filled:not(.rate-hover), .rating_item[ng-rating] .ng-rating.rate-hover:not([disabled]) ~ .ng-rating.filled:not(.rate-hover) {
        opacity: 0.5; }

/* End Feedback Stars */
/* Feedback Table */
.feedback_table {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow: hidden;
  color: #656565;
  width: 96%;
  margin: 30px auto;
  word-wrap: break-word; }
  .feedback_table > div {
    display: table;
    width: 100%; }
  .feedback_table .thead {
    border-top: #a3a3a3 1px solid; }
    .feedback_table .thead .row {
      background-color: #fff;
      color: #1f1f1f;
      font-size: 17px;
      margin-bottom: 20px; }
  .feedback_table .tbody .row > div {
    padding-top: 5px;
    padding-bottom: 5px; }
  .feedback_table .row {
    display: table-row;
    width: 100%; }
    .feedback_table .row > div {
      border-right: #a3a3a3 1px solid;
      border-bottom: #a3a3a3 1px solid;
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      display: table-cell;
      text-align: center;
      height: 48px;
      padding: 5px 1.5%; }
      .feedback_table .row > div:first-child {
        border-left: #a3a3a3 1px solid; }
    .feedback_table .row a {
      color: #2988ca; }
    .feedback_table .row i {
      display: block;
      font-style: normal; }
  .feedback_table .feedback_id {
    width: 12.5%;
    word-break: break-all; }
  .feedback_table .feedback_details {
    width: 20%;
    text-align: left !important; }
  .feedback_table .feedback_progress {
    width: 20%; }
  .feedback_table .feedback_writer_id {
    width: 14.5%;
    word-break: break-all; }
  .feedback_table .feedback_my {
    width: 15%; }
    .feedback_table .feedback_my > .controller > .button {
      color: #fff;
      font-size: 14px;
      text-decoration: none; }
  .feedback_table .feedback_ranking {
    width: 18%; }
  .feedback_table .rating_form {
    text-align: center;
    width: auto;
    height: auto;
    padding-top: 3px;
    padding-bottom: 3px; }
  .feedback_table .my_rating {
    text-align: center;
    margin: 0 auto; }
    .feedback_table .my_rating .rating_item {
      display: inline-block; }
  .feedback_table .rating_form .rating_item {
    display: inline-block; }

/* End Feedback Table */
/* Feedback Ranking */
.writer_info {
  overflow: hidden;
  padding: 20px 3%; }
  .writer_info .photo {
    border-right: #a6a5c7 1px solid;
    float: left;
    padding: 5px 20px 5px 0; }
    .writer_info .photo img {
      border-radius: 100%;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%; }
  .writer_info .writer_description {
    float: left;
    padding-left: 2%; }
    .writer_info .writer_description p {
      color: #6a6a6a;
      font-size: 15px;
      line-height: 22px; }
    .writer_info .writer_description .writers_number {
      overflow: hidden;
      font-size: 17px;
      text-transform: uppercase;
      margin-top: 10px; }
      .writer_info .writer_description .writers_number p {
        color: #424242;
        font-size: 17px;
        font-weight: bold; }
      .writer_info .writer_description .writers_number span {
        color: #2d5066;
        font-size: 17px;
        line-height: 22px;
        font-weight: 300; }
    .writer_info .writer_description .writers_rank {
      margin-top: 10px; }
      .writer_info .writer_description .writers_rank p {
        float: left; }
        .writer_info .writer_description .writers_rank p span {
          color: #554d9e;
          font-weight: bold; }
      .writer_info .writer_description .writers_rank .rating_form {
        float: left;
        margin-left: 5px; }
  .writer_info .button {
    width: 35%;
    float: right;
    margin-top: 15px; }

.writer_feedbacks {
  overflow: hidden;
  position: relative; }
  .writer_feedbacks:before {
    border-right: #807abb 1px solid;
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.5px; }

.feedback_line {
  background-color: #807abb;
  clear: both;
  width: 96%;
  display: inline-block;
  padding: 12px 2%; }
  .feedback_line p {
    color: #fff;
    float: left;
    font-size: 17px;
    text-transform: uppercase; }
    .feedback_line p:last-child {
      float: right; }

.your_feedbacks {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  float: left;
  width: 50%;
  padding: 15px 2%; }

.feedback_data {
  margin-bottom: 20px; }
  .feedback_data h2 {
    color: #424242;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase; }
    .feedback_data h2 span {
      color: #586e82;
      font-size: 17px;
      font-weight: 300; }
  .feedback_data .you_ranked {
    display: inline-block;
    width: 100%;
    font-size: 13px;
    line-height: 18px;
    margin-top: 18px; }
    .feedback_data .you_ranked p {
      color: #000;
      float: left; }
    .feedback_data .you_ranked .rating_item {
      float: left;
      margin-left: 5px; }
    .feedback_data .you_ranked .time {
      float: right; }
      .feedback_data .you_ranked .time p {
        color: #8a8a8a;
        font-style: italic;
        line-height: 20px; }
    .feedback_data .you_ranked.without_rank {
      text-align: center; }
      .feedback_data .you_ranked.without_rank .rating_item {
        display: inline-block;
        float: none;
        margin: 10px 0; }
      .feedback_data .you_ranked.without_rank p {
        text-align: left; }
  .feedback_data .textarea {
    width: 100%;
    text-align: left;
    min-height: 120px;
    max-height: 220px; }
  .feedback_data .input_error {
    width: 100%;
    clear: both; }
    .feedback_data .input_error .validation_error {
      position: relative;
      width: 100%;
      text-align: center;
      bottom: inherit;
      margin-left: 0; }
  .feedback_data .your_feedbacks_change {
    text-align: center; }
  .feedback_data .button {
    display: inline-block;
    width: 35%;
    margin: 15px 3% 0 3%; }

.other_feedbacks {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  float: left;
  width: 50%;
  padding: 15px 2%; }
  .other_feedbacks .other_feedback_item {
    overflow: hidden;
    margin-bottom: 20px; }
    .other_feedbacks .other_feedback_item .other_feedback_title {
      overflow: hidden;
      margin-bottom: 12px; }
      .other_feedbacks .other_feedback_item .other_feedback_title .other_feedback_topic {
        float: left;
        width: 75%; }
        .other_feedbacks .other_feedback_item .other_feedback_title .other_feedback_topic p {
          color: #318cc9;
          font-size: 14px; }
        .other_feedbacks .other_feedback_item .other_feedback_title .other_feedback_topic .time {
          display: block; }
          .other_feedbacks .other_feedback_item .other_feedback_title .other_feedback_topic .time p {
            color: #8a8a8a;
            font-size: 13px;
            font-style: italic; }
      .other_feedbacks .other_feedback_item .other_feedback_title .rating_form {
        float: right;
        width: auto; }
    .other_feedbacks .other_feedback_item .other_feedback_text {
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      border: #dfd4c1 1px solid;
      border-radius: 0;
      -moz-border-radius: 0;
      -webkit-border-radius: 0;
      box-shadow: inset 0px 2px 3px #e3e2e0;
      -moz-box-shadow: inset 0px 2px 3px #e3e2e0;
      -webkit-box-shadow: inset 0px 2px 3px #e3e2e0;
      word-wrap: break-word;
      position: relative;
      padding: 5px; }
      .other_feedbacks .other_feedback_item .other_feedback_text:before {
        background: url(/assets/new_cabinet/other_text_arrow.png) no-repeat;
        content: '';
        display: block;
        width: 11px;
        height: 9px;
        position: absolute;
        top: -8px;
        left: 20px; }
      .other_feedbacks .other_feedback_item .other_feedback_text p {
        color: #4b4b4b;
        font-size: 14px;
        line-height: 18px;
        font-style: normal; }
    .other_feedbacks .other_feedback_item .see_all {
      float: right;
      width: auto;
      margin-top: 10px; }

.no_rank {
  color: #3c4245;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin: 40px 0; }

.see_all {
  color: #2988ca;
  font-size: 13px; }

.order_table > .order_block_table.with_feedback .order_progress {
  width: 20% !important; }
.order_table > .order_block_table.with_feedback .order_details {
  width: 20% !important; }
.order_table > .order_block_table.with_feedback .order_feedback {
  border-left: 1px solid #accee5;
  width: 15%;
  display: table-cell;
  vertical-align: middle;
  text-align: center; }
  .order_table > .order_block_table.with_feedback .order_feedback > .controller > .button {
    width: 84%;
    font-size: 14px;
    margin: 0 auto;
    height: 30px;
    line-height: 30px; }
  .order_table > .order_block_table.with_feedback .order_feedback > .controller .rating_item {
    text-align: center; }

.feedback_notification {
  background: url(/assets/new_cabinet/feedback_notification.png) no-repeat;
  color: #f54f4f;
  display: block;
  font-size: 11px;
  width: 21px;
  height: 26px;
  padding-left: 13px;
  line-height: 26px;
  position: absolute;
  top: 0px;
  right: 4px;
  text-align: center; }
  .feedback_notification.active {
    background-position: 0 -31px; }

.order_view_item.feedback_my h3 {
  background: none;
  margin-bottom: 0;
  padding-bottom: 0; }
.order_view_item.feedback_my span.my_feedback {
  float: none;
  width: auto;
  display: inline-block;
  margin-left: 10px; }
  .order_view_item.feedback_my span.my_feedback .my_rating {
    position: relative;
    top: 4px; }
  .order_view_item.feedback_my span.my_feedback .controller .button {
    color: #fff;
    width: 160px;
    margin-left: 10px;
    text-decoration: none; }

/* End Feedback Ranking */
.feedback_text {
  width: 96%;
  margin: 20px auto 0; }
.discounts .content_title .content_title_line {
  display: none; }
.discounts .content_title:not(:first-child) {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: #807abb;
  border: none;
  width: 100%;
  padding: 5px 2%;
  text-align: left;
  margin: 12px 0; }
  .discounts .content_title:not(:first-child) h1,
  .discounts .content_title:not(:first-child) h2,
  .discounts .content_title:not(:first-child) h3 {
    color: #fff;
    font-size: 20px;
    line-height: 22px;
    padding: 0;
    text-transform: uppercase; }
  .discounts .content_title:not(:first-child):after {
    display: none; }

.special_discount2 {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 15px 0; }
  .special_discount2 .discount-ticket {
    display: inline-block; }
  .special_discount2 .discount-ticket img {
    max-width: 100%; }

.discount_progress {
  display: inline-block;
  width: 100%;
  margin: 46px 0 60px 0; }

.progress_info {
  background: url(/assets/new_cabinet/progress.png) no-repeat left top;
  padding: 0 0 0 23px;
  margin: 0 0 0 55px; }
  .progress_info p {
    font-size: 16px;
    line-height: 22px;
    color: #2d5066;
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    text-transform: uppercase;
    width: 153px; }

.progress_info_item {
  vertical-align: top;
  display: inline-block; }
  .progress_info_item span {
    font-size: 17px;
    line-height: 22px;
    color: #2d5066;
    font-weight: bold;
    width: 75px;
    display: block;
    text-align: center; }

.discount_value .progress_info_item {
  margin-left: 120px;
  position: relative; }
  .discount_value .progress_info_item:after {
    position: absolute;
    content: '';
    display: block;
    background: url(/assets/new_cabinet/progress_sep.png) no-repeat;
    width: 11px;
    height: 69px;
    bottom: -69px;
    left: 50%;
    margin-left: -5px;
    z-index: 1; }
  .discount_value .progress_info_item span b {
    color: #ec6509;
    font-size: 20px;
    line-height: 22px;
    margin-right: 3px; }

.progress_sep {
  height: 1px;
  background: #2d5066;
  position: relative;
  margin: 0 35px; }
  .progress_sep span {
    font-size: 25px;
    text-transform: uppercase;
    line-height: 30px;
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -39px;
    width: 78px;
    height: 30px;
    background: #f8f8f8;
    text-align: center;
    font-weight: bold;
    color: #2d5066; }

.discount_progress.pages .progress_price .progress_info_item {
  margin-left: 181px; }

.progress_price .progress_info_item {
  margin-left: 120px; }

.progress_bar {
  margin: 22px auto;
  width: 686px;
  height: 27px;
  border-radius: 30px;
  background: url(/assets/new_cabinet/progress_bg.png) left top no-repeat;
  position: relative;
  z-index: 5; }

.progress_line {
  width: 75%;
  background: #c7b1d7;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #c7b1d7 22%, #7871c4 100%);
  /* W3C */
  box-shadow: -1px 2px 7px 0px #9c9c9e;
  height: 27px;
  position: relative;
  border-radius: 30px 0 0 30px;
  min-width: 2%;
  max-width: 100%; }
  .progress_line:after {
    position: absolute;
    content: '';
    display: block;
    width: 5px;
    height: 43px;
    right: -2px;
    bottom: -42px;
    background: url(/assets/new_cabinet/progress_end.png) no-repeat; }

.progress_value {
  position: absolute;
  text-align: center;
  color: #0a5e98;
  text-shadow: 0px 2px 1px #fff;
  font-size: 17px;
  line-height: 55px;
  padding: 0 0;
  width: 101px;
  height: 54px;
  border-radius: 4px;
  background: url(/assets/new_cabinet/progress_value_bg.png) no-repeat;
  right: -50px;
  bottom: -93px;
  z-index: 5; }

.discount_offer {
  border-top: 1px solid #d7dce0;
  padding: 30px 0 0 0;
  text-align: center;
  display: inline-block;
  width: 94%;
  margin: 0 3%; }
  .discount_offer p {
    font-size: 25px;
    line-height: 27px;
    color: #2d5066;
    font-weight: bold;
    text-transform: uppercase; }
  .discount_offer span {
    color: #199ca1;
    text-transform: none; }
  .discount_offer b {
    color: #ec6509; }
  .discount_offer .button {
    width: 25%;
    margin: 20px auto 0; }

.discount_progress_selection {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center; }
  .discount_progress_selection span {
    background-color: #fff;
    color: #514a93;
    text-transform: uppercase;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    z-index: 5; }
  .discount_progress_selection:before {
    border-top: 1px solid #2d5066;
    content: '';
    position: absolute;
    top: 23px;
    left: 0;
    width: 100%;
    height: 1px; }
  .discount_progress_selection:last-child {
    display: none; }

.discounts .sidebar_item.one_time .discount_subitem {
  padding: 15px 0 10px 0; }
  .discounts .sidebar_item.one_time .discount_subitem .discount_topic {
    overflow: hidden; }
    .discounts .sidebar_item.one_time .discount_subitem .discount_topic span {
      border-right: none;
      width: auto;
      float: none; }
      .discounts .sidebar_item.one_time .discount_subitem .discount_topic span b {
        color: #27b3ab;
        text-transform: none; }
  .discounts .sidebar_item.one_time .discount_subitem .discount_use {
    overflow: hidden;
    margin-top: 12px; }
    .discounts .sidebar_item.one_time .discount_subitem .discount_use p {
      display: block;
      width: auto;
      float: none;
      text-align: center;
      padding-left: 0; }
    .discounts .sidebar_item.one_time .discount_subitem .discount_use span {
      color: #ec6609;
      border-right: none;
      width: auto;
      float: none; }

.discounts_static {
  background-color: #fff;
  width: 468px !important;
  margin-bottom: 30px; }
  .discounts_static .desclaimer_content_item > p {
    font-size: 13px;
    line-height: 20px;
    color: #6d6759;
    margin: 0 20px; }
  .discounts_static h3 {
    padding: 0; }
  .discounts_static .discount_block .sidebar_item {
    margin: 0; }

.discount_diagram {
  padding: 40px 0;
  position: relative;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  width: 100%; }
  .discount_diagram:after {
    position: absolute;
    content: '';
    display: block;
    height: 1px;
    width: 80%;
    left: 50%;
    margin-left: -40%;
    background: #ced5dd;
    top: 340px; }

/* Diagram UI */
.diagram_item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 8px;
  width: 100px; }
  .diagram_item .value {
    text-align: center;
    font-size: 22px;
    line-height: 24px;
    color: #f3822f;
    font-weight: bold;
    position: relative;
    margin-bottom: 10px; }
  .diagram_item .image {
    display: inline-block;
    width: 100%;
    height: 300px; }
  .diagram_item.first .value {
    top: 112px; }
  .diagram_item.first .image {
    background: url(/assets/new_cabinet/diagram1.png) bottom center no-repeat; }
  .diagram_item.second .value {
    top: 44px; }
  .diagram_item.second .image {
    background: url(/assets/new_cabinet/diagram2.png) bottom center no-repeat; }
  .diagram_item.third .image {
    background: url(/assets/new_cabinet/diagram3.png) bottom center no-repeat; }

.diagram_price {
  text-transform: uppercase;
  color: #3e3f40;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-top: -25px; }
  .diagram_price p {
    color: #f3822f;
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    text-transform: none; }

/* End Diagram UI */
.affilate {
  background-color: #fff;
  border: #d7d0c6 1px solid;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  width: 1000px !important;
  padding: 0 0 20px 0; }
  .affilate .content_title .content_title_line {
    display: none; }
  .affilate .content_title:not(:first-child) {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #807abb;
    border: none;
    width: 100%;
    padding: 5px 2%;
    text-align: left;
    margin: 12px 0; }
    .affilate .content_title:not(:first-child) h1,
    .affilate .content_title:not(:first-child) h2,
    .affilate .content_title:not(:first-child) h3 {
      color: #fff;
      font-size: 20px;
      line-height: 22px;
      padding: 0;
      text-transform: uppercase; }
    .affilate .content_title:not(:first-child):after {
      display: none; }
  .affilate .current_balance {
    background-color: #404e73;
    padding: 5px 2%;
    clear: both; }
    .affilate .current_balance:before, .affilate .current_balance:after {
      display: none; }
    .affilate .current_balance span {
      color: #c8c2fe;
      line-height: 45px; }
    .affilate .current_balance p {
      color: #fff;
      line-height: 45px; }
  .affilate .input {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
  .affilate .textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
  .affilate .select2-container {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
  .affilate > p {
    color: #4b4b4b;
    font-size: 14px;
    line-height: 21px;
    margin: 10px 2%; }
  .affilate .comission_grows p {
    color: #4b4b4b;
    font-size: 14px;
    line-height: 21px;
    margin: 10px 2%; }

/* Work Scheme */
.work_scheme {
  text-align: center;
  margin: 30px 0; }

.work_scheme_item {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 20%;
  margin: 0 5%; }

.work_scheme_item:last-child {
  margin-right: 0; }

.work_scheme_item .image {
  width: 133px;
  height: 133px;
  border-radius: 100%;
  text-align: center;
  position: relative;
  margin: 0 auto; }

.work_scheme_item .image:after {
  position: absolute;
  content: '';
  display: block;
  width: 88px;
  height: 12px;
  background: url(/assets/new_cabinet/affilate_arrow.png) no-repeat;
  top: 50%;
  margin-top: -6px;
  right: -128px; }

.work_scheme_item:last-child .image:after {
  display: none; }

.work_scheme_item .image img {
  display: inline-block; }

.work_scheme_item p {
  font-size: 16px;
  line-height: 17px;
  color: #16456f;
  margin-top: 15px; }

/* End Work Scheme */
/* Commision Table */
.comission_table {
  border-collapse: collapse;
  width: 45%;
  margin: 20px auto;
  text-align: center;
  color: #000;
  border: 1px solid #accee5; }
  .comission_table thead {
    background-color: #807abb; }
    .comission_table thead th {
      color: #fff;
      font-size: 16px;
      line-height: 16px;
      padding: 7px 81px;
      font-weight: bold;
      text-transform: uppercase; }
  .comission_table tbody tr:nth-child(5), .comission_table tbody tr:nth-child(6), .comission_table tbody tr:nth-child(7) {
    background-color: #fbf7f4; }
  .comission_table tbody tr td {
    border: 1px solid #accee5;
    padding: 7px 20px;
    font-size: 15px;
    line-height: 17px; }
    .comission_table tbody tr td:last-child {
      border-right: none; }
    .comission_table tbody tr td.first {
      border-left: none; }
      .comission_table tbody tr td.first span {
        width: 43px;
        height: 43px;
        border: 1px solid #e6beb3;
        background: #fff;
        line-height: 45px;
        border-radius: 100%;
        text-align: center;
        display: inline-block; }
    .comission_table tbody tr td.second {
      border-bottom: none;
      border-left: none; }
      .comission_table tbody tr td.second span {
        width: 43px;
        height: 43px;
        border: 1px solid #a7bece;
        background: #fff;
        line-height: 45px;
        border-radius: 100%;
        text-align: center;
        display: inline-block; }

/* End Commision Table */
/* Authorization Tabs */
.authorization_tabs > .ui-tabs-nav {
  width: 80%;
  max-width: 90%;
  min-width: 65%;
  border: 1px solid #c6b89e;
  border-collapse: collapse;
  background: #fff;
  display: table;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 38px;
  margin: 20px auto;
  border-radius: 2px; }
  .authorization_tabs > .ui-tabs-nav:before, .authorization_tabs > .ui-tabs-nav:after {
    display: none; }
  .authorization_tabs > .ui-tabs-nav .ui-state-default {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #f6ecde;
    display: table-cell;
    width: 33.33333%;
    padding: 0 3%;
    vertical-align: middle;
    position: relative; }
    .authorization_tabs > .ui-tabs-nav .ui-state-default:before, .authorization_tabs > .ui-tabs-nav .ui-state-default:after {
      left: 100%;
      top: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      z-index: 5; }
    .authorization_tabs > .ui-tabs-nav .ui-state-default:after {
      border-color: rgba(246, 236, 222, 0);
      border-left-color: #f6ecde;
      border-width: 18px;
      margin-top: -18px; }
    .authorization_tabs > .ui-tabs-nav .ui-state-default:before {
      border-color: rgba(198, 184, 158, 0);
      border-left-color: #c6b89e;
      border-width: 19px;
      margin-top: -19px; }
    .authorization_tabs > .ui-tabs-nav .ui-state-default:last-child:before, .authorization_tabs > .ui-tabs-nav .ui-state-default:last-child:after {
      display: none; }
    .authorization_tabs > .ui-tabs-nav .ui-state-default:last-child a:before {
      display: none; }
    .authorization_tabs > .ui-tabs-nav .ui-state-default a {
      color: #7a7062;
      font-size: 14px;
      text-decoration: none;
      position: relative;
      outline: none;
      text-align: center;
      display: inline-block;
      width: 100%; }
  .authorization_tabs > .ui-tabs-nav .ui-state-active {
    background: #f2a33b; }
    .authorization_tabs > .ui-tabs-nav .ui-state-active:after {
      border-color: rgba(242, 163, 59, 0);
      border-left-color: #f2a33b;
      border-width: 18px;
      margin-top: -18px; }
    .authorization_tabs > .ui-tabs-nav .ui-state-active:before {
      border-color: rgba(192, 136, 64, 0);
      border-left-color: #c08840;
      border-width: 19px;
      margin-top: -19px; }
    .authorization_tabs > .ui-tabs-nav .ui-state-active a {
      color: #fff;
      text-shadow: 0px 1px 1px #c1822f; }
  .authorization_tabs > .ui-tabs-nav .done {
    background: #e68e1a; }
    .authorization_tabs > .ui-tabs-nav .done:after {
      border-color: rgba(230, 142, 26, 0);
      border-left-color: #e68e1a;
      border-width: 18px;
      margin-top: -18px; }
    .authorization_tabs > .ui-tabs-nav .done:before {
      border-color: rgba(192, 136, 64, 0);
      border-left-color: #c08840;
      border-width: 19px;
      margin-top: -19px; }
    .authorization_tabs > .ui-tabs-nav .done a {
      color: #fff;
      text-shadow: 0px 1px 1px #c1822f; }

/* End Authorization Tabs */
/* Authorization Form */
.authorization_tabs .tab_item > p {
  color: #4b4b4b;
  font-size: 14px;
  line-height: 22px;
  width: 90%;
  margin: 0 auto 20px; }
.authorization_tabs .tab_content.with_sep .button {
  margin-left: 20px; }
.authorization_tabs .tab_content .tab_subtitle {
  border-bottom: #e7edf0 1px solid;
  color: #2d5066;
  font-size: 18px;
  width: 80%;
  margin: 0 10% 20px 10%;
  padding-bottom: 5px;
  display: inline-block; }
.authorization_tabs .tab_content .field_item {
  width: 80%;
  padding: 0 10%; }
  .authorization_tabs .tab_content .field_item .select2-container {
    min-width: 320px !important;
    max-width: 320px !important; }
  .authorization_tabs .tab_content .field_item .input {
    width: 320px;
    margin-bottom: 0; }
  .authorization_tabs .tab_content .field_item .input_error {
    width: 320px;
    margin-bottom: 0; }
    .authorization_tabs .tab_content .field_item .input_error .validation_error {
      width: auto;
      margin-left: 0;
      position: relative;
      bottom: inherit; }
    .authorization_tabs .tab_content .field_item .input_error .validation-error {
      width: auto;
      margin-left: 0; }
  .authorization_tabs .tab_content .field_item .button {
    float: left;
    width: 120px;
    height: 26px;
    line-height: 26px; }
    .authorization_tabs .tab_content .field_item .button.verified {
      background: #43cd67;
      background: linear-gradient(to bottom, #43cd67 15%, #55c235 100%);
      border-radius: 6px;
      width: 230px; }
  .authorization_tabs .tab_content .field_item .done,
  .authorization_tabs .tab_content .field_item .fail {
    display: none; }
.authorization_tabs .tab_content .authorization_phone_number .phone_number_item {
  margin-right: 0; }
  .authorization_tabs .tab_content .authorization_phone_number .phone_number_item .input {
    width: 100%; }
  .authorization_tabs .tab_content .authorization_phone_number .phone_number_item.country_code {
    width: 70px;
    margin-right: 15px; }
    .authorization_tabs .tab_content .authorization_phone_number .phone_number_item.country_code .input_error {
      width: 100%; }
  .authorization_tabs .tab_content .authorization_phone_number .phone_number_item.phone_number {
    width: 235px;
    max-width: 235px; }
    .authorization_tabs .tab_content .authorization_phone_number .phone_number_item.phone_number .input_error {
      width: 100%; }
.authorization_tabs .tab_content .authorization_birthday .field_item .input_error {
  width: 88px;
  margin-right: 10px; }
.authorization_tabs .tab_content .authorization_birthday .field_item .select2-container {
  min-width: 88px !important;
  max-width: 88px !important;
  margin-right: 10px; }
.authorization_tabs .tab_content .authorization_birthday .field_item label + .select2-container {
  min-width: 124px !important;
  max-width: 124px !important; }
.authorization_tabs .tab_content .authorization_birthday .field_item label + .input_error {
  width: 124px; }
  .authorization_tabs .tab_content .authorization_birthday .field_item label + .input_error .select2-container {
    min-width: 124px !important;
    max-width: 124px !important; }
.authorization_tabs .submit_block .button {
  background: #e9bf40;
  background: linear-gradient(to bottom, #e9bf40 15%, #fe8926 100%);
  border-radius: 40px;
  box-shadow: 0px 2px 7px 1px #c0c4ce;
  border-bottom: 1px solid #b25e1a;
  width: 40%;
  margin: 0 auto; }
  .authorization_tabs .submit_block .button:hover {
    background: #e5b734;
    background: linear-gradient(to bottom, #e5b734 15%, #ec5610 100%);
    border-bottom: 1px solid #a53a0b; }

.authorization_finish {
  text-align: center;
  width: 90%;
  margin: 0 auto; }
  .authorization_finish span {
    color: #3a556e;
    display: block;
    font-size: 26px;
    font-weight: bold; }
  .authorization_finish p {
    color: #ec6509;
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    text-transform: uppercase;
    margin-top: 10px; }
  .authorization_finish .photo {
    margin: 50px 0; }

/* End Authorization Form */
.select2-search {
  margin: 8px 0; }

.referal_reward {
  display: inline-block;
  width: 100%; }

.referal_social {
  float: left;
  width: 50%;
  margin-left: 2%; }
  .referal_social .referal_link {
    overflow: hidden;
    margin-bottom: 18px; }
    .referal_social .referal_link label {
      float: left;
      line-height: 26px;
      margin-right: 2%; }
    .referal_social .referal_link .input {
      float: left;
      width: 42%; }
    .referal_social .referal_link .button {
      float: right;
      width: 25%;
      height: 26px;
      line-height: 26px; }
  .referal_social .referal_share {
    overflow: hidden; }
    .referal_social .referal_share p {
      float: left;
      line-height: 43px;
      margin-right: 2%; }
    .referal_social .referal_share a {
      background: url(/assets/new_cabinet/social_icons.png) no-repeat;
      float: left;
      width: 43px;
      height: 43px;
      margin-right: 2%; }
      .referal_social .referal_share a.fb {
        background-position: -52px 0; }
      .referal_social .referal_share a.twit {
        background-position: 0 0; }
      .referal_social .referal_share a.pinterest {
        background-position: -156px 0; }

.referal_code {
  background-color: #404e73;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  float: right;
  width: 30%;
  margin: 0 2% 30px 0;
  text-align: center;
  padding: 10px 0; }
  .referal_code span {
    background-color: #fd3e1d;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    width: 90%;
    padding: 8px 2%;
    margin: 0 2%;
    word-wrap: break-word; }
  .referal_code p {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px; }
  .referal_code .refered_by {
    display: inline-block;
    width: 100%;
    margin-top: 10px; }
    .referal_code .refered_by .input {
      width: 90%;
      margin-bottom: 10px; }

/* Referal Filters */
.referal_filters {
  display: inline-block;
  width: 96%;
  padding: 0 2%;
  margin: 10px 0; }
  .referal_filters .input,
  .referal_filters .date_filter {
    border: #c2c5cf 1px solid;
    height: 30px; }
  .referal_filters label {
    font-size: 14px;
    margin-right: 8px; }
  .referal_filters .referal_filters_dates {
    float: left; }
    .referal_filters .referal_filters_dates .date_item {
      float: left;
      position: relative;
      margin-right: 12px; }
      .referal_filters .referal_filters_dates .date_item label {
        float: left;
        line-height: 30px; }
      .referal_filters .referal_filters_dates .date_item .date_filter {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        color: #abadb4;
        font-size: 13px;
        font-family: 'Gotham', sans-serif;
        outline: none;
        padding: 0 10px;
        border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        width: 112px; }
      .referal_filters .referal_filters_dates .date_item .ui-datepicker-trigger {
        position: absolute;
        top: 5px;
        right: 5px; }
  .referal_filters .level_check {
    float: left;
    margin: -4px 0 0 20px; }
    .referal_filters .level_check .checker {
      float: left; }
    .referal_filters .level_check label {
      float: left;
      line-height: 38px; }
  .referal_filters .button {
    float: left;
    width: 80px;
    height: 28px;
    line-height: 28px;
    margin-left: 10px;
    font-size: 14px; }
  .referal_filters .referal_search {
    float: right; }

/* End Referal Filters */
/* Referal Table */
.referal_table {
  clear: both;
  display: table;
  width: 96%;
  margin: 0 2%; }
  .referal_table .thead {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-top: 1px solid #ccc;
    border-collapse: collapse;
    display: table;
    width: 100%; }
    .referal_table .thead .row > div {
      font-size: 16px; }
  .referal_table .tbody {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-collapse: collapse;
    display: table;
    width: 100%; }
  .referal_table .row {
    display: table-row;
    width: 100%; }
    .referal_table .row > div {
      border-right: 1px solid #ccc;
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      display: table-cell;
      vertical-align: middle;
      padding-top: 12px;
      padding-bottom: 12px;
      padding-left: 1%;
      padding-right: 1%;
      text-align: center; }
      .referal_table .row > div:first-child {
        border-left: 1px solid #ccc; }
  .referal_table .referal_transaction {
    width: 15%; }
  .referal_table .referal_id {
    width: 15%; }
  .referal_table .referal_level {
    width: 20%; }
  .referal_table .referal_date {
    width: 15%; }
  .referal_table .referal_price {
    width: 15%; }
  .referal_table .referal_comission {
    width: 20%; }

/* End Referal Table */
.referal_navigation {
  background-color: #e8f5fa;
  border: 1px solid #ccc;
  border-top: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: inline-block;
  width: 96%;
  margin: 0 2%;
  padding: 20px 2%; }
  .referal_navigation p {
    color: #717171;
    float: left;
    font-size: 12px;
    line-height: 28px;
    font-style: italic; }
  .referal_navigation .referal_pages_nav {
    float: right; }
    .referal_navigation .referal_pages_nav a {
      background: #3ec5f4;
      background: linear-gradient(to right, #3ec5f4 0%, #3ec5f4 50%, #2eb1f0 100%);
      border-radius: 6px;
      -moz-border-radius: 6px;
      -webkit-border-radius: 6px;
      color: #fff;
      font-size: 14px;
      width: 110px;
      height: 28px;
      line-height: 28px;
      font-weight: 300;
      float: left;
      text-align: center;
      text-decoration: none;
      margin-left: 15px; }

.bell {
  background: url(/assets/new_cabinet/bell.png) no-repeat;
  display: block;
  width: 18px;
  height: 17px;
  position: absolute;
  top: 2px;
  right: 2px; }
  .bell.active {
    background-position: 0 -30px; }
/* 






*/
.fileinput-button {
  position: relative;
  display: inline-block; }
  .fileinput-button input.uploader {
    position: absolute;
    top: 0px;
    left: 0;
    margin: 0;
    border: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    width: 474px;
    height: 34px; }

[scroll_to], [scroll-to] {
  cursor: pointer; }

.order_view .fileinput-button input.uploader {
  width: 420px;
  top: 0px; }

.nav ul li:hover ul {
  display: block; }

.nav li.drop_item > a {
  padding: 0 22px 0px 10px; }

.social .like-block {
  float: left; }
.social .twitter {
  margin-left: 10px;
  margin-right: 10px; }

.free_samples_content p a {
  color: #000;
  text-decoration: none; }
.free_samples_content ul a {
  color: #616a71; }
.free_samples_content li a {
  margin-left: 0; }

.testimonials .rating_form {
  margin-left: 0; }

.blog_content_title p a {
  color: #8a8f94;
  font-size: 11px;
  line-height: 18px;
  text-decoration: none; }

.blog_read_content_title p a {
  font-size: 11px;
  line-height: 18px;
  color: #616a71; }

.field_item .fail {
  float: right; }
.field_item .textarea {
  float: left; }
.field_item .d-procent {
  font-size: inherit; }
.field_item .chosen-container {
  max-width: 220px;
  min-width: inherit; }
.field_item .discount-error {
  display: block;
  color: #ed1c24;
  font-size: 12px;
  position: absolute;
  left: 240px;
  top: 26px; }

.order_discount_code .field_item .fail, .order_writers_id .field_item .fail {
  float: left; }

.order_urgency .field_item .chosen-container {
  min-width: 140px; }

.lowest_prices .info p span {
  font-family: Arial, sans-serif; }
.lowest_prices .info p .writers {
  color: #29a643;
  font-size: 14px;
  display: block; }

.balance_table .row {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: table; }
  .balance_table .row > * {
    box-sizing: border-box !important; }
  .balance_table .row .balance_date {
    width: 17% !important;
    min-width: 17% !important;
    max-width: 17% !important; }
  .balance_table .row .balance_transaction {
    width: 13% !important;
    min-width: 13% !important;
    max-width: 13% !important; }
  .balance_table .row .balance_type {
    width: 10% !important;
    min-width: 10% !important;
    max-width: 10% !important; }
  .balance_table .row .balance_credits {
    width: 10% !important;
    min-width: 10% !important;
    max-width: 10% !important; }
  .balance_table .row .balance_price {
    width: 15% !important;
    min-width: 15% !important;
    max-width: 15% !important; }
  .balance_table .row .balance_description {
    width: 35% !important;
    min-width: 35% !important;
    max-width: 35% !important; }

.order_agreement .input_error {
  position: relative; }
  .order_agreement .input_error .validation-error,
  .order_agreement .input_error .validation_error {
    text-align: left;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    color: #FA394B;
    font-size: 12px;
    line-height: 16px;
    left: 0;
    margin: 0 0 0 44px; }
    .order_agreement .input_error .validation-error a,
    .order_agreement .input_error .validation_error a {
      color: #ed1c24;
      text-decoration: underline; }
      .order_agreement .input_error .validation-error a:hover,
      .order_agreement .input_error .validation_error a:hover {
        text-decoration: none; }

.order_subject_area .chosen-container .chosen-results li.root {
  color: #626971;
  font-weight: normal;
  margin-left: -15px; }

.order_subject_area .chosen-container .chosen-results li.root.highlighted {
  background-color: #2988ca;
  color: #fff; }

.order_subject_area .chosen-container .chosen-results li.child {
  border-left: #fdcf7a 1px solid;
  position: relative;
  padding-left: 15px; }

.order_subject_area .chosen-container .chosen-results li.child:before {
  border-top: #fdcf7a 1px solid;
  content: '';
  display: block;
  width: 9px;
  height: 1px;
  position: absolute;
  top: 12px;
  left: 0px; }

em.feature-perpage {
  font-style: normal; }

.selected_extras {
  padding-top: 25px; }

.country_code .input {
  width: 37px; }

.order_content:last-child {
  margin-bottom: 0px; }

.header_content a.logout_button {
  font-size: 14px; }

.order_update li.hidden {
  display: none; }

.settings_phone_number .code_input {
  width: 26px !important; }

.pagination li span.active {
  display: block;
  font-size: 14px;
  padding: 0 9px;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  line-height: 24px;
  color: #fff; }

.field_item label sup {
  color: #ed1c24;
  font-size: 16px;
  line-height: 12px;
  margin-bottom: -3px;
  position: absolute; }

.nav ul li ul.drop {
  z-index: 1000; }

.order_progress .order_deadline {
  width: 260px; }

.order_progress .order_deadline i {
  margin-left: 0px; }

.discount_code {
  background: #f3a200;
  color: #fff;
  font-size: 14px;
  width: 235px;
  height: 63px;
  line-height: 28px;
  margin: 10px auto;
  text-transform: uppercase;
  padding-top: 5px; }

.widget.view_samples .caroufredsel_wrapper,
.widget.view_samples .view_samples_block {
  height: 198px !important; }

.widget.view_samples .view_sample_item {
  display: block !important; }

.get_inner_price select {
  width: 110px !important; }

.desclaimer_content_item .wishes {
  margin: 20px 0 15px 5px;
  width: auto;
  text-align: center; }

.desclaimer_content_item .button.big.yellow {
  padding: 0;
  font-weight: normal;
  font-size: 26px;
  width: 218px;
  margin: 30px auto 27px; }

ul.list:not([class^="ui"]), ol.list:not([class^="ui"]) {
  margin: 5px 0 5px 20px; }

.list li {
  padding-top: 4px;
  color: #616a71;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px; }

.desclaimer .list li {
  padding-top: 4px;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 4px; }

.blog_read_content .widget.main_get_price .button.yellow {
  padding: 0px 24px 0px 0px !important;
  margin: 0px !important; }

.blog_content {
  font-size: 14px; }

.footer_links li {
  width: 140px; }

.desclaimer p {
  text-indent: 0; }

.wishes_item p {
  margin-left: 5px; }

.button.medium.yellow.double {
  width: 421px;
  font-size: 16px;
  height: 40px;
  line-height: 16px;
  margin: 17px auto 10px;
  padding-top: 8px; }

.extra_feature_item .details {
  width: 50px;
  word-wrap: break-word; }

.order_file_item .file_details > p {
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }
.order_file_item .file_details .file_info .icon.delete {
  background: url(/assets/remove_paper.png) no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle; }

.desclaimer_content_item .button.yellow {
  font-weight: bold;
  font-size: 18px;
  width: 351px;
  margin: 17px auto 10px;
  padding: 7px 0 6px 0; }

.sidebar_blog_item li {
  float: none;
  display: list-item; }

.center-image,
.center_image,
.centerimage {
  display: block;
  margin: 0 auto; }

.sidebar_extras_item {
  font-size: 13px; }

select.localytics-chosen {
  width: 220px; }

.main_get_price .item .order-words-num > *,
.main_get_price .item .order-pages-num > * {
  float: left !important; }
.main_get_price .item .order-words-num > .spinner_block,
.main_get_price .item .order-pages-num > .spinner_block {
  margin-left: 9px; }

.main_order_form .item label.first-child {
  overflow: hidden;
  width: 100%;
  margin-bottom: 7px; }

form.prices_form {
  min-height: 400px; }

h3.additional {
  margin: 10px 0 20px 150px; }

.order_additional label {
  width: 138px !important; }

.order_subject_area .select2-results .select2-result-label {
  padding: 0px 8px 0px; }

.order_subject_area .select2 .select2-result-single .child,
.order_subject_area .select2 .select2-result-single .root {
  padding-top: 4px;
  padding-bottom: 4px; }

.order_subject_area .select2 .select2-highlighted .root {
  color: #fff; }

.counter .field_item {
  padding: 0px;
  margin-top: 10px; }

.counter .field_item label {
  width: 130px;
  margin-top: 4px; }

.button.medium.blue {
  text-transform: none; }

.order_total_price {
  overflow: visible; }

.input_error .validation_error {
  display: block;
  color: #ff2221;
  font-size: 12px;
  line-height: 18px;
  position: absolute;
  bottom: -15px;
  text-align: left; }

.sidebar_blog_subscribe .input_error .validation_error .close {
  margin-top: 0px; }

.footer_details {
  width: 700px; }

.sidebar_slider_prev,
.sidebar_slider_next {
  margin-top: -10px; }

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

.widget.widget_380.main_get_price .select2-results {
  max-height: 100px !important; }

.header_item .slogan-text {
  max-height: 58px;
  font-family: 'Calibri';
  overflow: hidden;
  font-size: 29px;
  font-weight: 200;
  padding: 2px 0;
  text-transform: none;
  line-height: 26px;
  color: #2d72a1;
  margin-top: 12px;
  position: relative;
  right: 7px; }

.center-content {
  width: 100%;
  text-align: center; }
  .center-content .widget {
    text-align: left; }

.contacts_form {
  min-height: 300px; }
  .contacts_form .button {
    width: 100px;
    clear: both; }

.phone_number .validation_error {
  bottom: -26px; }

.customer_item.last h3 {
  margin-bottom: 15px;
  padding: 13px 0 13px 28px; }

.order_additional h3 {
  width: 720px;
  text-align: left;
  margin-top: 0px; }

.meet-blogger:not(.back_to) {
  text-decoration: none;
  float: left;
  display: block;
  font-size: 15px;
  line-height: 16px;
  background: #6c9dbb;
  border-radius: 4px 4px 0 0;
  color: #fff;
  padding: 2px 0px;
  width: 200px;
  text-align: center;
  margin: 0 25px;
  text-indent: 0; }

.content .blogger .blog_read_content {
  width: 690px;
  margin: 15px 10px 0 0; }
  .content .blogger .blog_read_content > :first-child .bp-avatar {
    float: right;
    max-width: 350px;
    width: auto !important;
    height: auto !important;
    margin: 0 0 10px 10px; }
  .content .blogger .blog_read_content > :first-child .bp-social {
    margin-right: 15px; }
  .content .blogger .blog_read_content > p, .content .blogger .blog_read_content > .list > li {
    padding-bottom: 11px;
    color: #6D6B6A;
    font-size: 14px;
    line-height: 23px; }
  .content .blogger .blog_read_content .bp-item .bp-avatar {
    float: right; }
    .content .blogger .blog_read_content .bp-item .bp-avatar img {
      max-width: 250px;
      width: auto !important;
      height: auto !important;
      margin: 0 0 10px 10px; }
  .content .blogger .blog_read_content .bp-item .bp-title {
    font-size: 20px;
    line-height: 30px;
    color: #404F74;
    clear: both;
    text-decoration: none; }
    .content .blogger .blog_read_content .bp-item .bp-title:hover {
      text-decoration: underline; }
  .content .blogger .blog_read_content .bp-item p a {
    display: inline-block;
    margin-right: 15px; }
  .content .blogger .blog_read_content .notes {
    padding-bottom: 11px;
    color: #6D6B6A;
    font-size: 14px;
    line-height: 23px; }
    .content .blogger .blog_read_content .notes a {
      display: block;
      clear: both;
      line-height: 22px;
      color: #1662BF;
      font-style: normal;
      font-size: 14px;
      padding-left: 20px; }

.discount-info {
  color: #636363;
  font-size: 14px;
  float: left;
  width: 285px;
  padding-left: 5px; }

.phone_number_item .validation_error {
  float: left;
  position: relative;
  text-align: center;
  line-height: 13px;
  bottom: inherit; }
.phone_number_item.phone_number .validation_error {
  text-align: left;
  min-width: 250px; }
.phone_number_item.state_area_code .validation_error {
  width: 75px;
  margin-left: -17px; }
.phone_number_item.state_area_code .fail {
  display: none; }

.free_samples_container {
  margin-top: 15px; }

.discount-info {
  float: left;
  width: 200px;
  font-size: 12px;
  padding-left: 5px; }

.free_quote .order_button .button {
  width: 190px !important; }

.safe p {
  margin: 5px 0 0 30px !important; }

.blog_read_content .button.medium.yellow.double {
  padding-top: 12px;
  height: 45px !important; }

.writer_level .type_of_writer .radio_buttons .ui-state-default .ui-button-text {
  min-height: 200px; }

.ui-accordion-content ul {
  padding-left: 20px; }

.select2-results li {
  padding-left: 0px !important; }

ul.select2-result-single,
ul.ui-select-choices {
  margin: 0px !important; }

ul.select2-result-single li {
  margin: 0px !important;
  padding-left: 0px !important; }

.sidebar_item.attention h3 {
  text-align: center;
  padding: 0 7px; }

.content.welcome ul.list li,
.content.welcome ol.list li {
  background: none; }
  .content.welcome ul.list li:before,
  .content.welcome ol.list li:before {
    background: url(/assets/spritesheet.png) no-repeat;
    background-position: -181px -10px;
    content: '';
    display: block;
    width: 14px;
    height: 9px;
    position: absolute;
    top: 8px;
    left: 0; }

ul.list li {
  padding-left: 20px;
  list-style-type: none;
  position: relative; }

.container .content ul.list > li {
  padding-left: 30px; }

.copyright {
  text-align: center;
  font-size: 13px; }

.social_groups {
  float: right;
  margin-top: -24px;
  font-size: 13px;
  margin-right: 32px;
  position: relative;
  z-index: 1; }
  .social_groups span {
    padding-right: 10px;
    margin-top: 9px;
    float: left; }
  .social_groups a {
    width: 38px;
    height: 36px;
    padding-left: 10px; }

.order_header .order_id {
  width: 120px;
  padding: 0 85px 0 20px; }
.order_header .order_details {
  width: 378px;
  text-indent: 24px;
  padding: 0 290px 0 25px; }
.order_header .order_time {
  width: 178px;
  text-indent: 20px;
  padding: 0 101px 0 23px; }
.order_header .order_progress {
  width: 326px;
  text-indent: 25px;
  padding-left: 30px; }

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

.widget p {
  text-align: left; }

.rating_form {
  height: 16px; }

.settings_form .field_item .input {
  margin-right: 10px; }

.footer_link_page {
  box-shadow: 0 0 9px 0 #919191;
  padding: 0 20px 10px;
  margin: 0 10px 20px 0; }

.discount .wishes_item p {
  margin: 0 auto; }
.discount p img {
  max-width: 485px; }

.order_urgency .price_page span {
  margin-left: 3px; }

.container .content > p, .container .content > .list li {
  color: #4b4b4b;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Calibri', 'Arial', sans-serif; }
.container .content .font-size-16 p, .container .content .font-size-16 .list li {
  font-size: 16px; }

.order_form .order_urgency .validation_error {
  width: 450px; }
.order_form .order_urgency .price_page {
  margin: 6px 0 0 28px;
  width: auto; }

.payments_block .iwire {
  margin-bottom: 10px; }
.payments_block .ibalance {
  margin-top: 10px; }

.uploader-dnd-area .done {
  display: none; }

.file_format_error {
  text-align: center;
  width: 80%;
  margin: 5px 10% 2px 10%;
  font-size: 13px;
  font-weight: normal;
  color: #f95a39;
  display: none;
  clear: both; }

.order_additional_materials > .file_format_error {
  display: none !important; }

.uploader-files .bad_format {
  color: #f95a39;
  text-decoration: none;
  font-size: 13px; }

.phone_number_item.state_area_code {
  width: auto;
  max-width: 74px; }

.order_form .order_total .total_price {
  width: 177px; }
.order_form .order_total .zero_price {
  color: #fff;
  float: right;
  width: 163px;
  font-size: 14px; }
.order_form .order_urgency .price_page {
  margin-right: -29px; }
.order_form .order_urgency .tooltip_block {
  margin-left: 35px; }
.order_form .order_discount_code .input_error.not_exist {
  width: 200px;
  margin-left: 10px;
  font-size: 14px;
  color: #ed1c24; }

.social {
  overflow: visible;
  width: 100%;
  height: 24px; }
  .social .fb_iframe_widget {
    z-index: 100; }

.login .pass_form .input_error .validation-error {
  left: 61px; }

.login_form.pass_form .token-field .input_error {
  margin-left: 123px; }

.login_form.pass_form .token-field .input_error .validation-error {
  left: 123px; }

.login {
  width: 1024px; }

.order_header .order_id {
  width: 26px;
  padding: 0 78px 0 20px; }
.order_header .order_details {
  width: 261px;
  padding: 0 117px 0 25px; }
.order_header .order_cost {
  width: 0; }
.order_header .order_time {
  width: 145px;
  padding: 0 15px 0 23px; }
.order_header .order_progress {
  width: 326px;
  padding-left: 30px; }

.discount_item.one_time .procent {
  width: 90px;
  padding-left: 15px;
  padding-right: 20px;
  margin-left: 25px; }

.discount_code b {
  white-space: nowrap; }

.accordion .ui-state-focus, .accordion .ui-accordion-header {
  outline: none; }
.accordion .ui-accordion-content {
  height: auto !important; }

.header .links .user {
  overflow: hidden; }

.wrapper:after {
  display: block;
  content: "";
  clear: both; }

.wrapper {
  min-width: 1024px;
  width: 100%;
  overflow: hidden; }

.field_item .textarea {
  -webkit-appearance: none;
  font-family: 'Calibri', 'Arial', sans-serif;
  font-size: 14px; }

.login .content_title h1 {
  margin-left: 27px; }

.order_finish.success-payment .button {
  width: 193px; }

.chat .note-form {
  border-bottom: 1px solid #ACCEE5; }
  .chat .note-form .textarea {
    width: 249px; }

.chat .message {
  word-break: break-word;
  min-height: 2em; }

.order_view_completed .file {
  margin: 18px 0 0 16px;
  padding-bottom: 6px; }

.header_right {
  position: relative;
  min-width: 300px; }
  .header_right .social {
    position: absolute;
    right: 0;
    text-align: right; }
    .header_right .social .like-block {
      display: inline-block;
      vertical-align: top;
      float: none; }
  .header_right .online_support {
    margin-top: 30px;
    float: right; }

.services_list a {
  word-break: break-word; }

.sidebar_testimonials .sidebar_slider .sidebar_slider_item .rating_form {
  min-height: 17px;
  padding-bottom: 0; }

.price-resume .prices_resume .prices_resume_thead > .prices_resume_title {
  display: none; }

.price-resume .prices_resume .prices_resume_tbody > .prices_resume_title {
  display: block;
  width: 100%;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center; }
  .price-resume .prices_resume .prices_resume_tbody > .prices_resume_title > img {
    display: none; }
.price-resume .prices_resume .prices_resume_tbody.popular > .prices_resume_title:before, .price-resume .prices_resume .prices_resume_tbody.other > .prices_resume_title:before {
  margin: 0;
  display: block;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif; }
.price-resume .prices_resume .prices_resume_tbody.popular > .prices_resume_title:before {
  content: "most popoular"; }
.price-resume .prices_resume .prices_resume_tbody.other > .prices_resume_title:before {
  content: "other"; }

.widget.main_get_price .main_order_price .button.yellow {
  max-width: 150px;
  min-width: 150px; }

.widget.main_get_price .main_order_price .total_price {
  max-width: 200px;
  min-width: 200px;
  height: 35px;
  line-height: 35px; }

.widget.main_get_price .main_order_price {
  margin: 0;
  clear: both;
  display: block;
  overflow: hidden;
  width: 100%; }

li.select2-results {
  background-image: 0 !important; }

.main_order_form .item {
  overflow: visible;
  min-height: 30px; }

.main_get_price .main_order_form .item.urgency label {
  float: left; }
.main_get_price .main_order_form .item.urgency .price_page {
  display: none; }

.order_table > .order_block_table .order_id, .order_table > .order_block_table .order_details, .order_table > .order_block_table .order_cost, .order_table > .order_block_table .order_time, .order_table > .order_block_table .order_progress {
  padding: 3px 10px 5px !important;
  box-sizing: border-box;
  border-right: 1px solid #accee5 !important;
  border-left: 0px solid #accee5 !important; }
.order_table > .order_block_table .order_progress, .order_table > .order_block_table .order_details {
  border-right: 0 !important; }
.order_table > .order_block_table .order_id {
  width: 12% !important; }
.order_table > .order_block_table .order_details {
  width: 23% !important; }
.order_table > .order_block_table .order_cost {
  width: 15% !important; }
.order_table > .order_block_table .order_time {
  width: 18% !important; }
.order_table > .order_block_table .order_progress {
  width: 32% !important; }

.order_content .order_payment_message.error_text {
  margin: 0; }
.order_content .order_payment_message .button.medium {
  max-width: 40%;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0; }
.order_content .order_payment_message p {
  text-align: left;
  margin-left: 125px; }

.onetime_code {
  margin-top: 0px; }

.order_urgency .field_item .input_error {
  max-width: 220px; }

.customer_service .radio_buttons .ui-state-default .ui-button-text {
  height: 120px; }

.order_form .order_total .savings {
  margin-top: 5px; }

.ui-datepicker-next .ui-icon, .ui-datepicker-prev .ui-icon {
  font-size: 0 !important; }
.ui-datepicker-next.ui-state-disabled .ui-icon, .ui-datepicker-prev.ui-state-disabled .ui-icon {
  opacity: 0.3; }

.balance_filters .date_item {
  position: relative; }
  .balance_filters .date_item .ui-datepicker-trigger {
    position: absolute;
    top: 3px;
    right: 4px; }
  .balance_filters .date_item .date_filter {
    background-image: none !important; }

.discount-message.lifetime-discount {
  display: block;
  text-align: center;
  color: #060;
  font-weight: bold; }

.order_total .zero_price {
  width: auto !important;
  clear: both !important;
  float: none !important;
  position: relative !important;
  text-align: center;
  margin: -10px auto 10px; }

.field_item > .field_item {
  padding: 0 !important;
  margin: 0 !important; }

.evaluate_form .order_night_calls {
  display: none !important; }

.order_view .order_view_item .total_price span {
  width: 187px; }

.settings_form .settings_phone_number .field_item .phone_input {
  width: 254px; }

.prices_subscribe_form {
  padding-bottom: 30px; }
  .prices_subscribe_form .input_error .validation-error {
    position: absolute;
    bottom: -30px;
    left: 0; }
  .prices_subscribe_form .subscribe_discount_field {
    margin-bottom: 13px; }

.sidebar_blog_subscribe .discount_form_posts .validation-error {
  position: absolute;
  bottom: -33px;
  display: block;
  clear: both;
  width: 100%;
  color: #F15F59;
  font-size: 12px;
  line-height: 16px;
  margin-left: 9px;
  text-align: left;
  left: 0; }

.prices_discount_form .subscribe_discount_field {
  position: relative;
  width: 276px; }
  .prices_discount_form .subscribe_discount_field .button {
    width: 150px;
    margin-right: 10px; }
  .prices_discount_form .subscribe_discount_field > .input {
    margin: 0; }
  .prices_discount_form .subscribe_discount_field .validation-error {
    position: absolute;
    display: block;
    top: 47px;
    clear: both;
    color: #F15F59;
    font-size: 12px;
    line-height: 16px;
    margin-left: 9px;
    text-align: left;
    left: 0; }
.prices_discount_form.discount_form_discounts .validation-error {
  top: 54px; }

.sidebar_blog_subscribe {
  margin-bottom: 20px; }
  .sidebar_blog_subscribe p {
    display: inline-block;
    position: relative;
    height: 17px;
    position: relative;
    top: -1px; }
  .sidebar_blog_subscribe .validation-error {
    position: absolute;
    display: block;
    top: 53px;
    clear: both;
    color: #F15F59;
    font-size: 12px;
    line-height: 1em;
    margin-left: 9px;
    text-align: left;
    left: 0;
    top: 46px; }
  .sidebar_blog_subscribe .button {
    margin-top: 14px !important; }

.subscribe_discount {
  overflow: visible;
  padding-bottom: 15px; }

.profile_nav {
  position: relative; }
  .profile_nav > span {
    max-width: 730px;
    min-width: 730px; }

.order_form.order_payment .content_title > h1 {
  float: left; }

.chat .chat_content .message b {
  min-height: 2em; }
.chat .message_order_form {
  margin-top: 10px; }
  .chat .message_order_form .input_error {
    width: 100%; }
  .chat .message_order_form .textarea {
    display: block;
    min-width: 266px;
    margin: 0 auto; }
  .chat .message_order_form .button {
    margin: 10px auto; }

.order_view_files {
  clear: both; }

.type_of_writer .radio_buttons .writer_level_radio:nth-child(2) .writer_level_item:before {
  background: url(/assets/best.png) 0 0 no-repeat;
  content: '';
  display: block;
  width: 22px;
  height: 35px;
  position: absolute;
  top: -2px;
  left: 8px;
  z-index: 10; }
.type_of_writer .radio_buttons .writer_level_radio:nth-child(2) .ui-state-active .writer_level_item:before {
  background-position: 0 -39px; }

.get_price .sidebar_content {
  overflow: visible; }

.footer_bottom {
  overflow: visible;
  min-height: 34px; }
  .footer_bottom .email {
    max-width: 190px; }

.follow_us {
  clear: both; }

.header .text {
  min-height: 90px; }

.order_content .order_id {
  position: relative; }
  .order_content .order_id .notification {
    right: 2px;
    left: inherit;
    width: 18px;
    height: 18px;
    top: 50%;
    position: absolute;
    margin-top: -9px; }
    .order_content .order_id .notification > img {
      width: 100%;
      height: 100%;
      padding: 0;
      margin: 0;
      top: 0;
      left: 0; }

.order_discount_code > .field_item .discount-info,
.order_discount_code > .field_item .discount-error,
.order_discount_code > .field_item .input_error {
  position: relative;
  width: 200px;
  display: block;
  font-size: 12px;
  left: 5px;
  margin: 0;
  float: left;
  clear: right; }

.writer_level .field_item .writer_level_title p {
  font-size: 16px;
  color: #4F8F69 !important;
  font-weight: bold;
  line-height: 18px;
  min-width: 130px;
  max-width: 130px;
  text-align: center;
  margin: 0 auto;
  top: inherit !important;
  bottom: -145px;
  position: absolute;
  margin-left: 50%;
  transform: translateX(-50%); }
.writer_level .field_item .writer_level_content .writer_level_details span {
  max-height: 95px;
  overflow: hidden; }
.writer_level .field_item .writer_level_content {
  margin-top: 5px; }

.order_form .customers_tabs .ui-tabs-nav {
  margin-bottom: 0; }
.order_form .customers_tabs .customer-step .customer_item h3 {
  margin-top: 0; }

.content > .payment .format_radio .radio_buttons .ui-state-default .ui-button-text {
  padding: 5px 1px 4px 1px; }
.content > .payment .payment_buttons .field_item {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  text-align: center;
  width: 340px; }
.content > .payment .radio_method .radio_buttons .ui-button-text {
  color: rgba(0, 0, 0, 0) !important; }

.tab_item .customer_item h3 {
  top: -56px; }

.tab_item .customer_item.last h3 {
  top: 0;
  left: 0;
  background-image: none;
  background-color: transparent;
  margin: 12px 0 19px 0; }
  .tab_item .customer_item.last h3:before {
    display: none; }

.static_page .profile_nav ul {
  width: 710px;
  box-sizing: border-box;
  margin: 0 0px; }
  .static_page .profile_nav ul > li {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    float: left;
    font-size: 14px;
    text-decoration: none;
    line-height: 35px;
    padding: 0 26px 0 26px;
    border-right: none;
    height: 40px;
    padding: 0;
    width: 20%;
    box-sizing: border-box;
    text-align: center;
    position: relative; }
    .static_page .profile_nav ul > li:not(:last-child):after {
      content: "";
      display: block;
      height: 30px;
      width: 1px;
      background-color: #D7D0C6;
      position: absolute;
      top: 5px;
      right: 0; }
    .static_page .profile_nav ul > li a {
      border: 0;
      padding: 0;
      display: block;
      text-align: center;
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
      height: auto;
      line-height: 1.3em;
      transform: translateY(-50%);
      position: relative;
      top: 50%; }

.field_item > .validation-error {
  display: none; }

.choose_us .sidebar_content .list {
  padding: 0;
  margin: 0; }
  .choose_us .sidebar_content .list > li {
    background-image: none;
    color: #635854;
    overflow: hidden;
    line-height: 18px;
    font-size: 15px;
    padding: 11px 10px 12px;
    text-indent: 0; }

.payment_content .order_total {
  position: relative; }
  .payment_content .order_total .total_price {
    width: 212px; }
  .payment_content .order_total > .button.small,
  .payment_content .order_total > .button.medium,
  .payment_content .order_total > .button.big {
    position: absolute;
    left: 270px;
    width: 330px;
    top: 50%;
    height: 45px;
    margin: -22.5px 0 0 0; }
  .payment_content .order_total:not(.use_my_balance) .total_price {
    border-radius: 7px 7px 7px 7px; }

.prices .prices_form .price_total {
  position: relative;
  width: 250px;
  overflow: visible; }
  .prices .prices_form .price_total > .button {
    position: absolute;
    left: 250px;
    top: 50%;
    margin-top: -22.5px; }

.content_title {
  clear: both; }

.services > h1,
.services > h2,
.services > h3 {
  text-indent: 11px;
  padding: 0 9px; }

.services > .list {
  padding: 0 20px; }

.main_order_form .item.first-child .radio_currency {
  clear: both;
  width: 222px; }

.sidebar_extras_item span {
  width: auto; }

.current-phone > * {
  color: inherit;
  text-decoration: inherit; }

.footer_content .footer_details {
  position: relative;
  min-height: 200px;
  padding-bottom: 35px; }
  .footer_content .footer_details .follow_us {
    position: absolute;
    bottom: 0; }

.sidebar_item.features .savings > span,
.sidebar_item .total_price > span,
.payment_content .payment_total_price > p,
.payment_content .order_total .total_price > p,
.order_form .order_total .total_price > span,
.payment_content .order_total .covered > p,
.prices .prices_form .price_total > p,
.widget.main_get_price .main_order_price .total_price > span {
  display: inline-block; }
  .sidebar_item.features .savings > span::first-letter,
  .sidebar_item .total_price > span::first-letter,
  .payment_content .payment_total_price > p::first-letter,
  .payment_content .order_total .total_price > p::first-letter,
  .order_form .order_total .total_price > span::first-letter,
  .payment_content .order_total .covered > p::first-letter,
  .prices .prices_form .price_total > p::first-letter,
  .widget.main_get_price .main_order_price .total_price > span::first-letter {
    font-size: 16px;
    vertical-align: super; }

.order_pay_now span > b {
  display: inline-block; }
  .order_pay_now span > b::first-letter {
    font-size: smaller;
    vertical-align: super; }

.container > .sidebar, .container > .controller > .sidebar {
  width: 250px; }
  .container > .sidebar.sidebar_right, .container > .controller > .sidebar.sidebar_right {
    margin-left: 15px; }
  .container > .sidebar.sidebar_left, .container > .controller > .sidebar.sidebar_left {
    margin-right: 15px; }
.container .content {
  padding: 0; }
  .container .content.centered_content {
    margin: 0 auto !important;
    display: block;
    width: 730px; }
    .container .content.centered_content .blog_read_content {
      text-align: center; }
  .container .content > .service_name {
    width: auto; }
  .container .content > .sidebar {
    width: 250px;
    margin-top: 0; }
    .container .content > .sidebar.sidebar_right {
      margin-left: 15px; }
    .container .content > .sidebar.sidebar_left {
      margin-right: 15px; }
  .container .content > .login {
    width: 1000px; }
  .container .content > .payment,
  .container .content > .order,
  .container .content > .blog,
  .container .content > .services,
  .container .content > .static_page,
  .container .content > .settings.settings_form,
  .container .content > .payment,
  .container .content > .order_payment,
  .container .content > .blogger,
  .container .content > .blog,
  .container .content > .blog_read,
  .container .content > .testimonials,
  .container .content > .write_review,
  .container .content > .contact_us_content,
  .container .content > .samples_read,
  .container .content > .free_samples {
    width: 730px;
    margin: 0 !important;
    box-sizing: border-box; }
  .container .content > .prices {
    width: 468px; }
.container > .controller > .sidebar {
  margin-top: 0; }
.container .sidebar_item.get_price .main_order_form .price_page {
  display: none; }

.lowest_price_bottom {
  margin-top: 70px; }
  .lowest_price_bottom .lowest_market_prices_bg {
    min-height: 140px; }

.samples_read_content_title {
  position: relative;
  top: 21px; }
  .samples_read_content_title .back_to {
    margin-top: 0; }

.contacts_form .input_error .validation_error {
  position: relative;
  top: 0;
  left: 0; }

.field_item > .input_error,
.field_item > .password > .input_error {
  margin-bottom: 16px; }

.order_phone_number .field_item .done {
  display: none; }

.field_item .fail {
  float: left;
  clear: right; }

.order_view_block .order_view_item .total_price {
  display: none; }

.blog_content_item:last-child {
  border-bottom: 0; }

.language_style_item {
  clear: right;
  display: block;
  float: right;
  width: 515px; }
  .language_style_item label {
    margin: 0 0 0 5px;
    color: #454C4D;
    font-size: 15px;
    line-height: 20px; }
  .language_style_item .radio {
    margin: 0;
    display: inline-block;
    vertical-align: baseline; }

.order_discount_code > .field_item .done, .order_discount_code > .field_item .fail {
  display: none; }

.content > .extras .extras_subitem, .content > .extras .extras_subitem > * {
  box-sizing: border-box;
  width: 100%; }
.content > .extras .extras_subitem > .extras_info {
  width: 88% !important; }
.content > .extras .extras_subitem > .extras_price {
  width: 12% !important; }

.header_top .header_content {
  height: 46px;
  display: block; }

.login .notification_message .notification {
  background: #FFF;
  box-shadow: 0px 1px 7px #000;
  -moz-box-shadow: 0px 1px 7px #000;
  -webkit-box-shadow: 0px 1px 7px #000;
  border-radius: 4px;
  vertical-align: middle;
  padding: 0 0 12px 0;
  width: 700px;
  display: block;
  position: relative;
  top: -50px;
  margin: 0 auto -45px; }
  .login .notification_message .notification .flash_notice {
    padding: 5px 34px 5px 5px;
    font-weight: bold;
    color: #666;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #635854;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    padding: 10px 30px 0;
    position: relative; }
  .login .notification_message .notification a.close {
    position: absolute;
    top: -21px;
    right: -21px;
    width: 21px;
    height: 21px; }

.loading #login_holder {
  background-image: url(/assets/title_loader.gif);
  background-repeat: no-repeat;
  background-position: center;
  min-height: 45px;
  min-width: 280px; }
  .loading #login_holder > * {
    display: none;
    /* background: url(/assets/mobile/loader.gif); */ }

.payment_content .order_total .total_price,
.payment_content .order_total .covered {
  width: 280px !important; }

.payment_content .order_total > .button {
  width: 270px !important;
  left: 330px !important; }

.settings .input[readonly] {
  background-color: #f4f4f4;
  box-shadow: none; }

.settings .phone_number_item .input {
  width: 282px; }

.popup.succesfull h2 {
  margin: 30px 25px; }

.settings .popup .select2-results .select2-result-label {
  text-align: left; }
.settings .popup .input_error {
  margin: 0; }
  .settings .popup .input_error .close {
    display: none; }
.settings .popup .verification_code .input_error {
  margin: 0 0 30px 72px; }
.settings .popup .verification_code {
  margin: 15px 0 30px 0;
  display: flex;
  justify-content: center; }
  .settings .popup .verification_code .input_error {
    margin: 0 0 10px; }
  .settings .popup .verification_code + .buttons {
    margin: 20px 0 10px 0; }
.settings .popup .field_item .input {
  width: 216px; }
.settings .popup .field_item .input.country_code {
  width: 37px;
  margin-right: 8px; }
.settings .popup .input_error2 {
  position: relative;
  float: left;
  margin: 0 0 30px 72px; }
.settings .popup .input_error2 .input {
  border-color: #d53f3f; }
.settings .popup .input_error2 .validation_error2 {
  display: block;
  color: #d53f3f;
  font-size: 11px;
  line-height: 16px;
  position: absolute;
  font-family: "Tahoma";
  font-style: italic;
  bottom: -15px;
  text-transform: none;
  font-weight: normal; }

.settings_form .field_item {
  margin-bottom: 0; }
  .settings_form .field_item > label {
    margin-bottom: 20px; }

.popup_overlay {
  z-index: 10101; }
  .popup_overlay .popup .field_item .input_error .validation-error,
  .popup_overlay .popup .field_item .input_error .validation_error {
    width: 170px; }

.field_item.language_style label {
  margin-right: 0; }

.header .links .user {
  max-width: 175px;
  width: auto;
  padding-right: 8px;
  padding-left: 8px; }
  .header .links .user.have_notify {
    padding-left: 45px;
    margin-left: -30px; }
.header .links .notification {
  left: 10px; }

.order_form .order_total .savings {
  margin: 0 19px 0 0;
  padding: 0 16px 0 26px;
  width: 177px; }
  .order_form .order_total .savings p, .order_form .order_total .savings span {
    font-size: 16px; }

.free_samples_content li span, .free_samples_content li a {
  width: 270px; }

.free_samples_content ul {
  width: 415px; }

.prices_content h2 {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 26px;
  color: #383252;
  font-weight: 200;
  text-transform: none; }

.sidebar_content > .no_discounts {
  min-height: 246px;
  line-height: 246px;
  font-size: 16px;
  color: #AD8D8B;
  font-style: italic; }

.page_content .wishes {
  text-align: center;
  margin-left: 0 !important; }

.faq {
  width: 735px;
  box-sizing: border-box; }

.free_samples_item:last-child:after {
  display: none; }

.free_samples_content ul {
  width: 415px; }
  .free_samples_content ul a, .free_samples_content ul span {
    width: 235px; }

.field_item .academic_level_radio .radio_buttons .ui-state-default .ui-button-text {
  height: 35px; }

.prices .price_item .select2-container {
  max-width: 316px;
  min-width: 316px !important; }
.prices .price_item .radio_currency {
  width: 314px; }
.prices .prices_resume_tbody .prices_resume_services,
.prices .prices_resume_thead .prices_resume_services {
  min-width: 222px; }

.chat_now {
  display: block;
  color: #fff;
  text-decoration: none;
  width: 108px;
  height: 40px;
  position: fixed;
  text-align: center;
  line-height: 40px;
  font-size: 19px;
  /* font-weight: bold; */
  /* text-transform: uppercase; */
  top: 50%;
  left: -35px;
  margin-top: -72px;
  z-index: 10;
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s;
  background: #46d05d;
  background: linear-gradient(to right, #46d05d 0%, #46d05d 65%, #36c247 100%); }

.non_deleteable_papers {
  text-align: center;
  border-top: 1px solid #D7D0C6;
  border-bottom: 1px solid #D7D0C6;
  background-color: #F2F0FB;
  color: #FF3C30;
  padding: 5px;
  margin-bottom: 15px; }

.order_subject_area .field_item .fail {
  display: none; }

.nav .drop .drop_item .drop {
  left: 100%;
  top: 0; }
.nav .drop_item > .drop {
  display: none !important; }
  .nav .drop_item > .drop .drop_item > a:before {
    right: 4px;
    top: 0.75em;
    background-image: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.25em 0 0.25em 0.25em;
    border-color: transparent transparent transparent #364D75; }
  .nav .drop_item > .drop .drop_item:hover > a:before {
    top: 0.75em;
    border-color: transparent transparent transparent #022B34; }
.nav .drop_item:hover > .drop {
  display: block !important; }
.nav .drop {
  overflow: visible !important; }
  .nav .drop li > a {
    color: #fff;
    font-size: 17px;
    line-height: 1em !important;
    padding: 0.5em 20px 0.5em 10px !important;
    font-family: 'Calibri';
    font-weight: 200;
    text-decoration: none; }
.nav .drop_item li,
.nav .drop_item li a {
  overflow: visible !important;
  box-sizing: border-box;
  word-break: break-word;
  max-width: 210px;
  min-width: 210px;
  width: 210px !important; }
.nav .drop_item .drop_item li,
.nav .drop_item .drop_item li a {
  max-width: 700px;
  min-width: 100px;
  width: auto !important;
  box-sizing: border-box;
  white-space: nowrap; }
.nav .drop {
  border-radius: 0 5px 5px 5px; }
  .nav .drop > ul > li:first-child > a {
    border-radius: 0 5px 0 0; }
  .nav .drop > ul > li:first-child.drop_item:hover > a {
    border-radius: 0 0 0 0; }
  .nav .drop > ul > li:last-child > a {
    border-radius: 0 0 5px 5px; }
  .nav .drop > ul > li:last-child.drop_item:hover > a {
    border-radius: 0 0 0 5px; }

.nav .drop .drop_item:hover > a:not(:hover) {
  background-color: #E7E5F0; }

.fileinput-button {
  position: relative;
  overflow: visible !important; }
  .fileinput-button input.uploader {
    border-width: 0 0 8px 0px; }
  .fileinput-button > .input_error {
    top: 0;
    top: 0;
    left: 0;
    position: absolute; }
    .fileinput-button > .input_error .fail, .fileinput-button > .input_error .done {
      display: none; }
    .fileinput-button > .input_error .validation_error {
      clear: both;
      float: none;
      display: block; }
    .fileinput-button > .input_error input.uploader {
      left: 0;
      top: 0;
      bottom: initial;
      position: relative; }

.half_blogger_content_item {
  overflow: hidden;
  margin-bottom: 15px;
  clear: both; }
  .half_blogger_content_item > h2 {
    font-size: 20px;
    line-height: 30px;
    color: #404f74;
    clear: both;
    margin-bottom: 15px; }
    .half_blogger_content_item > h2 a {
      color: inherit;
      text-decoration: underline; }
      .half_blogger_content_item > h2 a:hover {
        text-decoration: none; }
  .half_blogger_content_item .inner_photo {
    display: table;
    margin: 0px 20px 10px 0;
    float: left; }
  .half_blogger_content_item .half_blogger_content p, .half_blogger_content_item .half_blogger_content li {
    padding-bottom: 11px;
    color: #6d6b6a;
    font-size: 14px;
    line-height: 23px; }
  .half_blogger_content_item .half_blogger_content .social_links a {
    margin-right: 10px; }

.related_posts {
  margin-right: 10px; }
  .related_posts .related_posts_title h2 {
    font-size: 20px;
    line-height: 30px;
    color: #404f74;
    clear: both;
    text-align: left; }
  .related_posts .related_post_item {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    width: 32%;
    margin-right: 2%; }
    .related_posts .related_post_item:last-child {
      margin-right: 0; }
    .related_posts .related_post_item .inner_photo {
      display: table;
      width: 100%;
      border-radius: 0; }
      .related_posts .related_post_item .inner_photo > a {
        display: block; }
      .related_posts .related_post_item .inner_photo > a > img {
        width: 100%;
        height: auto; }
    .related_posts .related_post_item .related_post_title,
    .related_posts .related_post_item .related_post_title a {
      color: #383252;
      font-size: 16px;
      line-height: 24px;
      word-break: break-word;
      text-align: center;
      text-decoration: none; }
      .related_posts .related_post_item .related_post_title:hover,
      .related_posts .related_post_item .related_post_title a:hover {
        text-decoration: underline; }

.content > .half_blogger_content_item,
.content > .related_posts {
  clear: both;
  background: #fff;
  border: 1px #D7D0C6 solid;
  padding: 4px 20px;
  margin: -4px 0 0 0;
  border-radius: 0 0 4px 4px; }

.content {
  margin: 20px 0 0 0 !important;
  display: block;
  overflow: hidden; }

.container .content > .blog_read {
  width: auto;
  min-width: 730px;
  clear: none;
  float: none; }

.container .content > .blog_read.without_sidebars {
  width: auto;
  margin-right: 2px; }

.related_posts_content + .zergnet-widget {
  margin-top: 20px;
  display: block; }

.zergnet-widget {
  display: table;
  margin: 0 auto; }

ol.list > li {
  background: none;
  text-indent: 0; }

.inner_photo,
.blog_read_content .center {
  display: table;
  clear: both;
  margin-right: auto;
  margin-left: auto; }

.blog_content .inner_photo img,
.blog_read_content .center img {
  max-width: 100%;
  margin: 0 !important; }

.thankoffer-order {
  display: block;
  text-align: center;
  margin: -34px 0px -15px -485px;
  position: relative;
  left: 50%; }

.container .content.fraud {
  margin: 0 auto !important; }

.order_view .order_event span {
  width: 180px; }
.order_view .order_event p {
  width: 450px; }
.order_view .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content {
  width: 100%; }
  .order_view .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .file_format_error {
    width: 100%; }

.page_content .accordion_raw, .discounts_static .accordion_raw, .welcome .accordion_raw, .samples_read .accordion_raw {
  margin-top: 22px;
  overflow: hidden; }
  .page_content .accordion_raw .accordion_title, .discounts_static .accordion_raw .accordion_title, .welcome .accordion_raw .accordion_title, .samples_read .accordion_raw .accordion_title {
    float: left; }
    .page_content .accordion_raw .accordion_title h3, .discounts_static .accordion_raw .accordion_title h3, .welcome .accordion_raw .accordion_title h3, .samples_read .accordion_raw .accordion_title h3 {
      font-size: 16px;
      color: #51557A;
      margin-top: 25px; }
  .page_content .accordion_raw .accordion_content, .discounts_static .accordion_raw .accordion_content, .welcome .accordion_raw .accordion_content, .samples_read .accordion_raw .accordion_content {
    min-width: 100%;
    max-width: 100%;
    float: right;
    border-top: 1px solid #E7F3FF;
    padding-top: 5px; }
    .page_content .accordion_raw .accordion_content .accordion_item .accordion_item_title, .discounts_static .accordion_raw .accordion_content .accordion_item .accordion_item_title, .welcome .accordion_raw .accordion_content .accordion_item .accordion_item_title, .samples_read .accordion_raw .accordion_content .accordion_item .accordion_item_title {
      padding: 20px 0 0 10px;
      position: relative; }
      .page_content .accordion_raw .accordion_content .accordion_item .accordion_item_title:before, .discounts_static .accordion_raw .accordion_content .accordion_item .accordion_item_title:before, .welcome .accordion_raw .accordion_content .accordion_item .accordion_item_title:before, .samples_read .accordion_raw .accordion_content .accordion_item .accordion_item_title:before {
        display: block;
        content: "";
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 100%;
        background-color: #FF9920;
        left: 0;
        bottom: 8px; }
      .page_content .accordion_raw .accordion_content .accordion_item .accordion_item_title span, .discounts_static .accordion_raw .accordion_content .accordion_item .accordion_item_title span, .welcome .accordion_raw .accordion_content .accordion_item .accordion_item_title span, .samples_read .accordion_raw .accordion_content .accordion_item .accordion_item_title span {
        font-size: 16px;
        color: #757C87;
        cursor: pointer; }
    .page_content .accordion_raw .accordion_content .accordion_item .accordion_item_content, .discounts_static .accordion_raw .accordion_content .accordion_item .accordion_item_content, .welcome .accordion_raw .accordion_content .accordion_item .accordion_item_content, .samples_read .accordion_raw .accordion_content .accordion_item .accordion_item_content {
      border: 1px solid #FFE6A2;
      border-radius: 3px;
      margin: 20px 0 0 0;
      padding: 16px 12px;
      display: none; }
      .page_content .accordion_raw .accordion_content .accordion_item .accordion_item_content p, .discounts_static .accordion_raw .accordion_content .accordion_item .accordion_item_content p, .welcome .accordion_raw .accordion_content .accordion_item .accordion_item_content p, .samples_read .accordion_raw .accordion_content .accordion_item .accordion_item_content p {
        color: #757C87;
        line-height: 17px; }

.notes-container {
  overflow: hidden; }

.notes-list.chat_content {
  padding-top: 36px;
  position: relative; }

.chat_detail {
  background: #fff;
  font-size: 12px;
  line-height: 20px;
  border-bottom: 1px solid #ACCEE5; }
  .chat_detail p,
  .chat_detail span {
    display: inline; }
  .chat_detail span {
    padding-left: 4px;
    text-decoration: underline;
    cursor: pointer; }
  .chat_detail p {
    color: #98a0a8; }
  .chat_detail .chat_show_info {
    color: #2988ca; }
  .chat_detail .chat_detail_short {
    transition: ease-in .3s all;
    opacity: 1;
    padding: 7px 5px;
    visibility: visible; }
  .chat_detail .chat_detail_more {
    display: none; }
  .chat_detail.show_detail .chat_detail_short {
    opacity: 0;
    visibility: hidden;
    display: none; }
  .chat_detail.show_detail .chat_detail_more {
    padding: 7px 5px;
    display: block; }

.order_form .pp_express_submit .xcomponent-outlet,
.payment_form .pp_express_submit .xcomponent-outlet {
  width: 240px !important; }

.order_form .pp_express_submit {
  margin-left: 0;
  float: left; }

.payment_form .pp_express_submit {
  margin-left: 0;
  display: inline-block; }

.hurry_form .pp_express_submit {
  margin: 10px auto;
  width: 200px; }
  .hurry_form .pp_express_submit .xcomponent-outlet {
    width: 200px !important; }

.free_quote .urgency_deadline_notify {
  clear: both;
  font-size: 12px;
  line-height: 16px;
  color: #626878;
  padding: 3px 0 0 170px; }
.free_quote .field_academic_level .radio_buttons {
  width: calc(100% - 170px); }

.free_qoute_finish {
  text-align: center;
  padding: 40px 50px 20px; }
  .free_qoute_finish h2 {
    font-size: 24px;
    line-height: 32px; }
  .free_qoute_finish span {
    display: block;
    margin-bottom: 15px; }
  .free_qoute_finish a {
    color: #2177bb; }
  .free_qoute_finish .button {
    width: 200px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    margin: 15px auto 0; }

.phone_number_item.phone_number {
  width: 225px; }
  .phone_number_item.phone_number .fail {
    display: none; }
  .phone_number_item.phone_number .input_error {
    width: 100%; }
  .phone_number_item.phone_number .input {
    width: 100%;
    box-sizing: border-box; }

.free_quote .phone_number .done,
.free_quote .phone_number .fail {
  display: none; }

.remind_link {
  display: inline-block;
  vertical-align: middle;
  margin: 5px 0 0 10px;
  color: #1662bf; }

.no_results_found {
  padding: 30px 20px; }

.no_results_heading span {
  display: inline-block;
  vertical-align: top;
  font-size: 22px;
  margin-bottom: 10px;
  color: red; }

:not(.caroufredsel_wrapper) > .sidebar_slider_block .sidebar_slider_item:nth-child(n+2) {
  display: none; }
/* spinner */

.spinner {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border: none;
  color: #616a71;
  font-size: 12px;
  outline: none;
  display: inline-block;
  width: 100%;
  height: 26px;
  text-align: center;
}

.ui-spinner {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border: 1px solid #aca395;
  width: 100%;
  display: block;
}

.ui-spinner .ui-spinner-button {
  position: absolute;
  top: 0;
}

.ui-spinner .ui-spinner-button.ui-state-hover {
  background-color: #625763;
}

.ui-spinner .ui-spinner-button.ui-spinner-down {
  border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  border-right: 1px solid #aca395;
  left: -1px;
  width: 30px;
  height: 28px;
}

.ui-spinner .ui-spinner-button.ui-spinner-up {
  border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  border-left: 1px solid #aca395;
  right: -2px;
  width: 31px;
  height: 28px;
}

.ui-spinner .ui-spinner-button .ui-icon {
  font-size: 0;
}

.ui-spinner .ui-spinner-button.ui-spinner-down .ui-icon:before {
  background: url(/assets/spritesheet.png) no-repeat;
  background-position: -181px -39px;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 11px;
  left: 6px;
}

.ui-spinner .ui-spinner-button.ui-spinner-down.ui-state-hover .ui-icon:before {
  background-position: -181px -65px;
  top: 13px;
}

.ui-spinner .ui-spinner-button.ui-spinner-up .ui-icon:before {
  background: url(/assets/spritesheet.png) no-repeat;
  background-position: -185px -117px;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 6px;
}

.ui-spinner .ui-spinner-button.ui-spinner-up.ui-state-hover .ui-icon:before {
  background-position: -185px -139px;
}

.main_order_form .spinner_block {
  width: 110px;
}


/*.ui-spinner .ui-state-hover .ui-icon {
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}*/
/*.ui-spinner .ui-state-hover .ui-icon.ui-icon-triangle-1-s {
  background-position: 0 -9px;
}
.ui-spinner .ui-state-hover .ui-icon.ui-icon-triangle-1-n {
  background-position: 0 0;
}*/
/*.ui-spinner {
  display: block;
  border: #aca395 1px solid;
  background: #fff;
}*/
/*
.main_get_price .main_order_form .item .ui-spinner {
  padding: 0 41px;
}
.main_get_price .main_order_form .item .ui-spinner .ui-icon.ui-icon-triangle-1-s {
  padding: 6px 13px 4px 13px;
  background-position: 12px 10px;
}
.main_get_price .main_order_form .item .ui-spinner .ui-icon.ui-icon-triangle-1-n{
  padding: 6px 13px 4px 13px;
  background-position: 13px 4px;
  top: 0;;
}
.main_get_price .main_order_form .item .ui-spinner .ui-state-hover .ui-icon.ui-icon-triangle-1-s {
  background-position: 12px -14px;
}
.main_get_price .main_order_form .item .ui-spinner .ui-state-hover .ui-icon.ui-icon-triangle-1-n {
  background-position: 13px -18px;
}
.prices_form .spinner {
  width: 91px;
}
.prices_form .ui-spinner {
  padding: 0 41px;
}
.prices_form .ui-spinner .ui-icon.ui-icon-triangle-1-s {
  padding: 6px 14px 4px 14px;
  background-position: 13px 10px;
}
.prices_form .ui-spinner .ui-icon.ui-icon-triangle-1-n {
  padding: 6px 14px 4px 14px;
  background-position: 13px 4px;
}
.prices_form .ui-spinner .ui-spinner-button.ui-state-hover .ui-icon.ui-icon-triangle-1-s {
  background-position: 13px -14px;
}
.prices_form .ui-spinner .ui-spinner-button.ui-state-hover .ui-icon.ui-icon-triangle-1-n {
  background-position: 13px -18px;
}*/
.fraud {
  height: 275px;
  text-align: center;
  display: table;
  width: 510px;
  margin: 0 auto; }
  .fraud .fraud_title {
    display: table-cell;
    vertical-align: middle; }
.violation:not(.popup) {
  float: left;
  clear: both;
  margin: 15px 0 15px 20px; }
  .violation:not(.popup) .button_improvement {
    background: #1d6da6;
    margin: 0;
    padding: 0 20px;
    font-size: 16px;
    text-transform: uppercase;
    height: 36px;
    line-height: 36px;
    border: none;
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    border-radius: 2px; }
    .violation:not(.popup) .button_improvement:hover {
      background: #1982c3; }
  .violation:not(.popup) .popup_overlay * {
    box-sizing: border-box; }
  .violation:not(.popup) .popup_overlay.improvements {
    overflow: scroll; }
  .violation:not(.popup) .popup_overlay .popup, .violation:not(.popup) .popup_overlay .popup.improvements_popup, .violation:not(.popup) .popup_overlay .popup.violation {
    width: 390px;
    background: #fff;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 0; }
    .violation:not(.popup) .popup_overlay .popup > p,
    .violation:not(.popup) .popup_overlay .popup h2, .violation:not(.popup) .popup_overlay .popup.improvements_popup > p,
    .violation:not(.popup) .popup_overlay .popup.improvements_popup h2, .violation:not(.popup) .popup_overlay .popup.violation > p,
    .violation:not(.popup) .popup_overlay .popup.violation h2 {
      background: #1d6da6;
      color: #fff;
      font-size: 16px;
      line-height: 20px;
      font-weight: bold;
      text-transform: uppercase;
      display: block;
      width: 100%;
      padding: 14px 10px 14px;
      margin: 0; }
    .violation:not(.popup) .popup_overlay .popup .button,
    .violation:not(.popup) .popup_overlay .popup .form_block .form-submit .button, .violation:not(.popup) .popup_overlay .popup.improvements_popup .button,
    .violation:not(.popup) .popup_overlay .popup.improvements_popup .form_block .form-submit .button, .violation:not(.popup) .popup_overlay .popup.violation .button,
    .violation:not(.popup) .popup_overlay .popup.violation .form_block .form-submit .button {
      background: #1d6da6;
      margin: 0;
      padding: 0 20px;
      font-size: 15px;
      text-transform: uppercase;
      height: 36px;
      line-height: 36px;
      border: none;
      font-weight: bold;
      text-align: center;
      color: #fff;
      text-decoration: none;
      text-shadow: none;
      cursor: pointer;
      box-shadow: none;
      border-radius: 2px; }
  .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content {
    padding: 15px 20px 20px;
    margin: 0;
    text-align: left; }
    .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content > span {
      display: inline-block;
      vertical-align: top;
      text-align: center;
      color: #5f5f5f;
      font-weight: normal;
      font-size: 14px;
      line-height: 20px;
      padding: 0px 20px;
      margin: 0 0 10px 0; }
    .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .input_error {
      position: relative;
      padding: 0;
      margin: 0;
      width: 100%; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .input_error textarea {
        border-color: #ff0000; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .input_error .validation_error {
        display: block;
        font-size: 12px;
        color: #ff0000;
        text-align: left;
        position: relative;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        clear: both;
        float: none; }
    .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .fail,
    .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .done {
      display: none; }
    .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation textarea {
      width: 100%;
      margin: 0;
      padding: 10px;
      height: 100px;
      border: #398CC0 1px solid;
      outline: none;
      resize: vertical;
      color: #616a71;
      font-size: 12px;
      line-height: 18px;
      font-style: normal;
      box-shadow: none;
      border-radius: 0; }
    .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area {
      position: relative;
      margin: 18px 0 0 0;
      padding: 0;
      width: 100%; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area > label {
        display: none; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .fileinput-button {
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        float: none;
        clear: both; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .fileinput-button .button {
          display: block;
          width: 100% !important; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .fileinput-button input[type='text'] {
          display: none; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .fileinput-button input.uploader {
          width: 100%;
          height: 100%;
          border: none; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list {
        display: block;
        padding: 10px 0 0 0;
        margin: 0;
        float: none;
        clear: both;
        width: 100%;
        overflow: hidden; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files {
          display: block;
          width: 100%;
          list-style: none;
          margin: 0;
          padding: 0; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download {
            display: block;
            width: 100%;
            padding: 0;
            margin: 0 0 5px 0;
            top: 0;
            left: 0; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download:after {
              display: block;
              content: '';
              clear: both; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download a {
              display: inline-block;
              vertical-align: top;
              color: #2988ca;
              float: none;
              font-size: 12px;
              line-height: 16px;
              text-decoration: none;
              padding: 0;
              margin: 0; }
              .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download a:hover {
                text-decoration: underline; }
              .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download a.delete, .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download a.del_btn {
                width: 12px;
                height: 12px;
                background: url(/assets/ui-kit/error_icon.png) center center no-repeat;
                background-size: 12px;
                margin: 1px 3px 0 0;
                position: relative;
                top: auto;
                left: auto;
                bottom: auto;
                right: auto; }
                .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download a.delete:hover, .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download a.del_btn:hover {
                  text-decoration: none; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download i,
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download a i {
              font-style: normal; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .file_format_error,
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .bad_format {
        font-size: 12px;
        color: #ff0000;
        padding: 5px 0 0 0;
        margin: 0;
        clear: both; }
    .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block {
      width: 100%;
      padding: 0;
      margin: 0;
      background: none;
      border: none; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline {
        margin: 10px 0 20px 0; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .prompt {
          padding: 0;
          margin: 0; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .prompt p {
            padding: 0 !important;
            margin: 0 !important;
            color: #5f5f5f;
            font-weight: normal;
            font-size: 14px !important;
            line-height: 20px;
            padding: 0px 20px;
            text-align: left; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .prompt .tooltip,
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .prompt .tooltip_block {
            display: none !important; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker {
          float: none;
          display: inline-block;
          vertical-align: top;
          width: 100%;
          margin: 10px 0 0 0;
          padding: 0; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker:after {
            display: block;
            content: '';
            clear: both; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed {
            width: 47%;
            margin: 0 !important;
            padding: 0 !important;
            position: relative; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed:first-child {
              float: left; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed:last-child {
              float: right; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed > label {
              display: block;
              width: 100%;
              float: none;
              font-size: 14px;
              color: #2f2f2f;
              margin: 0;
              padding: 0; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed input,
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed input.date_pick,
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed input.time_pick {
              width: 100%;
              float: none;
              clear: both;
              height: 31px;
              line-height: 28px;
              border: #398CC0 1px solid;
              font-family: 'Arial', sans-serif;
              font-size: 12px;
              font-style: normal;
              padding: 0 7px !important;
              opacity: 1 !important;
              box-shadow: none;
              border-radius: 0; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed.date_item .ui-datepicker-trigger {
              width: auto;
              height: 20px;
              top: auto;
              left: auto;
              bottom: 5px;
              right: 5px;
              position: absolute; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .form-submit {
        overflow: hidden;
        width: 100%;
        padding: 0;
        margin: 0; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .form-submit .button {
          width: 47% !important; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .form-submit .button.button.medium.green, .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .form-submit .button:first-child {
            float: left; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .form-submit .button.button.medium.yellow, .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .form-submit .button:last-child {
            background: #ce4f01;
            float: right; }
  .violation:not(.popup) .popup_overlay .popup.violation .revision_sent {
    padding: 20px !important;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%; }
    .violation:not(.popup) .popup_overlay .popup.violation .revision_sent span,
    .violation:not(.popup) .popup_overlay .popup.violation .revision_sent p {
      width: 100%;
      display: block;
      color: #5f5f5f;
      font-size: 16px;
      line-height: 20px;
      font-weight: normal;
      margin: 0;
      padding: 0; }
    .violation:not(.popup) .popup_overlay .popup.violation .revision_sent .date {
      margin: 0;
      padding: 10px 0;
      font-size: 18px;
      line-height: 22px;
      color: #ff7c21; }
    .violation:not(.popup) .popup_overlay .popup.violation .revision_sent .button {
      width: 50%;
      margin: 17px auto 0;
      clear: both; }

.order_event span {
  width: 130px; }
.order_event p {
  width: 470px;
  margin-left: 0; }

.order_event_info {
  overflow: hidden;
  clear: both; }
  .order_event_info .order_event_item {
    margin: 5px 0 0 0;
    overflow: hidden; }
    .order_event_info .order_event_item .order_event_file_list {
      float: left;
      width: 370px; }
      .order_event_info .order_event_item .order_event_file_list .order_event_file {
        margin: 0 0 3px 0;
        color: #666565; }
        .order_event_info .order_event_item .order_event_file_list .order_event_file,
        .order_event_info .order_event_item .order_event_file_list .order_event_file a {
          font-size: 15px;
          line-height: 16px; }
        .order_event_info .order_event_item .order_event_file_list .order_event_file a {
          display: inline-block;
          vertical-align: top;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: 80%;
          color: #2988ca;
          text-decoration: underline; }
          .order_event_info .order_event_item .order_event_file_list .order_event_file a:hover {
            text-decoration: none; }

@media all and (max-width: 639px) {
  .violation:not(.popup) {
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px; }
    .violation:not(.popup),
    .violation:not(.popup) .button_improvement {
      width: 100%;
      box-sizing: border-box; }
    .violation:not(.popup) .popup_overlay:after {
      display: inline-block;
      vertical-align: middle;
      width: 0;
      height: 100%;
      content: ''; }
    .violation:not(.popup) .popup_overlay .popup {
      position: relative;
      display: inline-block;
      vertical-align: middle; }
      .violation:not(.popup) .popup_overlay .popup, .violation:not(.popup) .popup_overlay .popup.improvements_popup, .violation:not(.popup) .popup_overlay .popup.violation {
        width: 90%;
        text-align: left;
        left: 0;
        top: 0;
        margin: 0;
        transform: none; }
        .violation:not(.popup) .popup_overlay .popup > p,
        .violation:not(.popup) .popup_overlay .popup h2, .violation:not(.popup) .popup_overlay .popup.improvements_popup > p,
        .violation:not(.popup) .popup_overlay .popup.improvements_popup h2, .violation:not(.popup) .popup_overlay .popup.violation > p,
        .violation:not(.popup) .popup_overlay .popup.violation h2 {
          text-align: center;
          font-size: 14px;
          line-height: 18px;
          padding: 10px; }
      .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content {
        padding: 10px 10px 20px; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content > span {
          padding: 0;
          margin: 0 0 10px 0;
          line-height: 16px; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .input_error .validation_error {
          font-weight: normal; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area {
          margin: 10px 0 0 0; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files {
            margin: 0;
            padding: 0; }
            .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .uploader-dnd-area .files_list .uploader-files .template-download span {
              display: inline-block;
              vertical-align: top;
              color: #2988ca;
              float: none;
              font-size: 13px;
              line-height: 18px;
              text-decoration: none;
              margin: 0;
              padding: 0;
              width: auto;
              min-width: initial;
              left: 0;
              overflow: visible; }
        .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline {
          margin-top: 0; }
          .violation:not(.popup) .popup_overlay .popup.improvements_popup .violation_content .new_violation .form_block .revision_deadline .picker .picker_filed > label {
            line-height: 20px; }

  .order_update .order_event span {
    width: 49%;
    text-align: right;
    padding-right: 2%; }
  .order_update .order_event p {
    width: 49%; }

  .order_event_info .order_event_item span,
  .order_update .order_event_info .order_event_item span {
    width: 49%;
    text-align: right;
    padding-right: 2%; }
  .order_event_info .order_event_item p,
  .order_update .order_event_info .order_event_item p {
    width: 49%;
    float: right; }
  .order_event_info .order_event_item .order_event_file_list,
  .order_update .order_event_info .order_event_item .order_event_file_list {
    width: 49%; }
    .order_event_info .order_event_item .order_event_file_list .order_event_file,
    .order_update .order_event_info .order_event_item .order_event_file_list .order_event_file {
      margin: 0; }
      .order_event_info .order_event_item .order_event_file_list .order_event_file,
      .order_event_info .order_event_item .order_event_file_list .order_event_file a,
      .order_update .order_event_info .order_event_item .order_event_file_list .order_event_file,
      .order_update .order_event_info .order_event_item .order_event_file_list .order_event_file a {
        line-height: 26px; }
      .order_event_info .order_event_item .order_event_file_list .order_event_file a,
      .order_update .order_event_info .order_event_item .order_event_file_list .order_event_file a {
        max-width: 60%; } }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *



 *


















 *





 */

