/*
 * =============================================================================
 * [ form.css ]
 * =============================================================================
 */
.form__wrapper {
  width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 5px #949494;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 30px 50px;
  position: relative;
}

.form {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  box-sizing: border-box;
}

.form__title {
  text-align: center;
  font-weight: normal;
  font-size: 24px;
  line-height: 26px;
  margin: 0 0 10px;
  color: #000;
}

.form__error {
  display: block;
  color: #f00;
  font-size: 16px;
  line-height: 18px;
  padding: 2px;
}

.form__tip {
  display: block;
  color: #009100;
  font-size: 16px;
  line-height: 18px;
  padding: 2px;
}

.form__error:empty,
.form__tip:empty {
  padding: 0;
}

.form__subtitle {
  display: block;
  margin: 0 0 15px;
}

.form__info-text {
  margin: 0 0 15px;
  color: #808080;
}

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

.form__info-text--single {
  display: block;
  margin-bottom: 7px;
}

.form__info-text--margin {
  margin: 0;
}

.form__info-descr {
  margin: 0;
  padding-top: 5px;
  color: #808080;
}

.form__info-text--accent {
  display: block;
  color: #000;
}

.form__info-button {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  padding: 0 5px;
  background: none;
  border: none;
  text-decoration: underline;
  display: inline-block;
  vertical-align: top;
}

.form__info-button:hover {
  text-decoration: none;
}

.form__info-link {
  text-decoration: none;
  color: #3d71cb;
}

.form__info-link--small {
  color: #808080;
}

.form__info-link:hover {
  text-decoration: underline;
}

.form__input-wrap {
  position: relative;
  padding-top: 20px;
}

.form__input-wrap--horizontal {
  float: left;
  width: 46.666666666666664%;
}

.form__input-wrap--small {
  width: 33.33333333333333%;
}

.form__input-wrap--large {
  width: 60%;
}

.form__input-wrap--third {
  width: 26.666666666666668%;
}

.form__input-wrap--margin {
  margin-right: 6.666666666666667%;
}

.form__input-wrap--third-margin {
  margin-right: 10%;
}

.form__input-wrap--wide {
  width: 50%;
}

.form__input-wrap--short {
  width: 15%;
}

.form__select-holder {
  border-bottom: 1px solid #b3b3b3;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.form__select-holder:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #b3b3b3;
  border-bottom: 2px solid #b3b3b3;
  transform: rotate(-45deg);
  z-index: 0;
}

.form__select-holder select:focus {
  outline: none;
}

.form__select-holder select {
  padding: 2px 1px 3px;
  width: 100%;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}

.form__row {
  margin-bottom: 15px;
}

.form__row--group-person,
.form__row--none {
  margin-bottom: 0;
}

.form__row-holder {
  margin-bottom: 25px;
}

.form__row--large {
  margin-bottom: 35px;
}

.form__row--facebook-login {
  padding-top: 15px;
}

.form__label {
  color: #808080;
  padding: 1px;
  box-sizing: border-box;
}

.form__label--absolute {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 1px 0;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: text;
  z-index: 2;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  transition: font-size 0.2s ease-out,
  padding 0.2s ease-out,
  color 0.2s ease-out,
  opacity 0.2s ease-out;
}

.form__label--absolute:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid #ffdb4d;
  margin-top: -3px;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.form__label--small {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #808080;
  margin-bottom: 3px;
}

.form__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #b3b3b3;
  color: #000;
  padding: 1px 1px 5px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  -webkit-appearance: none; /* for box shadows to show on iOS */
}

.form__input:focus {
  outline: none;
}

.form__input:focus + .form__label--absolute,
.form__input--filled + .form__label--absolute {
  font-size: 14px;
  padding: 0 1px;
}

.form__input:focus + .form__label--absolute:before,
.form__input--filled + .form__label--absolute:before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.form__textarea {
  border: 1px solid #b3b3b3;
  color: #808080;
  font-size: 18px;
  line-height: 20px;
  width: 100%;
  height: 65px;
  resize: vertical;
  padding: 2px 5px;
  box-sizing: border-box;
}

.form__submit {
  font-size: 24px;
  line-height: 26px;
  color: #000;
  text-align: center;
  background-color: #ffdb4d;
  border-radius: 2px;
  display: block;
  width: 100%;
  padding: 6px;
  border: none;
  transition: background-color 0.2s ease-in-out;
}

.form__submit:hover {
  background-color: #fc0;
}

.form__submit.is-disabled {
  pointer-events: none;
  color: #fff;
  background-color: #c3d0e0;
}

.form__small {
  font-size: 16px;
  line-height: 20px;

}

/* custom new radio & checkboxes styles */
.form__group {
  margin-bottom: 7px;
  position: relative;
}

.form__control {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 18px;
  line-height: 20px;
}

.form__control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form__indicator {
  position: absolute;
  top: 5px;
  left: 0;
  height: 12px;
  width: 12px;
  border: 1px solid #116d94;
  border-radius: 1px;
  box-sizing: border-box;
}

.form__indicator--top {
  top: 3px;
}

.form__control input:disabled ~ .form__indicator {
  border-color: #116d94;
  opacity: 0.6;
  pointer-events: none;
}

.form__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.form__control input:checked ~ .form__indicator:after {
  display: block;
}

.form__control--checkbox input:checked ~ .form__indicator {
  background: #fff;
}

.form__control--checkbox:disabled ~ .form__indicator {
  border-color: #116d94;
  opacity: 0.6;
  pointer-events: none;
}

.form__control--checkbox input:checked:disabled ~ .form__indicator {
  background-color: #fff;
}

.form__control--radio .form__indicator:after {
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background-color: #116d94;
}

.form__control--radio input:disabled ~ .form__indicator:after {
  background-color: #116d94;
}

.form__control--checkbox .form__indicator:after {
  top: 2px;
  left: 4px;
  width: 2px;
  height: 5px;
  transform: rotate(45deg);
  border: solid #116d94;
  border-width: 0 1px 1px 0;
}

.form__control--checkbox input:disabled ~ .form__indicator:after {
  border-color: #116d94;
}

.form__control--newsletter {
  font-size: 16px;
  line-height: 18px;
  color: #808080;
}

.form__control--gray {
  color: #808080;
}

.confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  background: rgba(255, 255, 255, 0.65);
}

.confirm-overlay.is-dark {
  background: rgba(0, 0, 0, 0.65);
}

.remove-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  background: rgba(0, 0, 0, 0.65);
}

.confirm-legal {
  position: absolute;
  top: 42px;
  left: 0;
  width: 300px;
  box-shadow: 0 0 5px #949494;
  border-radius: 1px;
  box-sizing: border-box;
  padding: 20px 18px;
  background-color: #fff;
  z-index: 16;
}

.confirm-legal:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 33px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #fff;
  box-shadow: 0 0 5px #949494;
}

.confirm-legal:after {
  content: "";
  width: 30px;
  height: 18px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 28px;
}

.confirm-legal__info {
  margin: 0 0 10px;
  line-height: 24px;
}

.confirm-legal__link-holder {
  margin-bottom: 15px;
}

.confirm-legal__link {
  color: #000;
}

.confirm-legal__button-holder {
  text-align: center;
}

.confirm-legal__button {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 26px;
  background-color: #ffdb4d;
  border-radius: 2px;
  padding: 6px 20px;
  border: none;
  box-sizing: border-box;
  transition: background-color 0.2s ease-in-out;
}

.confirm-legal__button:hover {
  background-color: #fc0;
}

.confirm-legal__button--yes {
  width: 58%;
}

.confirm-legal__button--no {
  width: 40%;
}

.confirm-legal__button--no {
  background-color: transparent;
}

.confirm-legal__button--no:hover {
  background-color: transparent;
  text-decoration: underline;
}

/* form files */
.form__file {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form__file-info {
  background-color: #9cb1c9;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 26px;
  border-radius: 2px;
  padding: 6px 20px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 12px;
}

.form__remove-file {
  position: absolute;
  top: 50%;
  right: 0;
  padding: 0;
  border: none;
  background: none;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
}

.form__file-label {
  background-color: #ccc;
  text-align: center;
  border-radius: 2px;
  padding: 6px 20px;
  box-sizing: border-box;
  display: block;
  cursor: pointer;
  transition: 0.2s background-color ease-in-out;
}

.form__file-label:hover {
  background-color: #ddd;
}

.form__file-text {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.form__file-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: -13px;
  width: 8px;
  height: 19px;
  background: url("../images/account/bg-file-label.png") no-repeat;
}

.form__file:focus + .form__file-label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

/* login form popup */
.popup-container {
  padding: 15px 35px;
  margin: 0 auto;
  box-sizing: border-box;
}

.popup-container--login,
.popup-container--password,
.popup-container--password-change,
.popup-container--phone-change,
.popup-container--email-change {
  width: 370px;
}

.form__password-forgot {
  float: right;
  color: #808080;
}

.form__login-facebook {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border: 1px solid #3b5998;
  background-color: #3b5998;
  color: #fff;
  padding: 5px 0 5px 78px;
  position: relative;
  border-radius: 2px;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  transition: opacity 0.2s ease-in-out;
}

.form__login-facebook:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 78px;
  width: 1px;
  height: 28px;
  margin: -14px 0 0;
  background-color: #fff;
}

.form__login-facebook:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 100%;
  background: #3b5998 url("../images/account/icon-linked-facebook.png") 50% 50% no-repeat;
}

.form__login-facebook:hover {
  opacity: 0.8;
}

.form__register-link {
  font-size: 18px;
  line-height: 20px;
  color: #000;
}

.button {
  font-size: 24px;
  line-height: 26px;
  color: #000;
  text-align: center;
  background-color: #ffdb4d;
  border-radius: 2px;
  display: inline-block;
  vertical-align: top;
  padding: 6px 12px;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
  box-sizing: border-box;
}

.button:hover {
  background-color: #fc0;
}

.button--large {
  display: block;
  width: 100%;
}

.form__button-show {
  position: absolute;
  bottom: 2px;
  right: 0;
  padding: 0;
  width: 30px;
  height: 30px;

  background: url("../images/account/icon-viewed.png") no-repeat 50% 50%;
  border: none;
  z-index: 2;
  transition: 0.2s opacity ease-in-out;
}

.form__button-show.is-active {
  background-image: url('../images/account/icon-viewed-close.png');
}

.form__button-show:hover,
.form__button-show:focus {
  opacity: 0.7;
}

.form__new-number {
  display: block;
}

.form__dropdown {
  position: absolute;
  top: 47px;
  left: 0;
  z-index: 10;
  width: 100%;
  max-height: 400px;
  border: 1px solid #dadada;
  border-top: none;
  background-color: #fff;
  overflow: auto;
}

.form__dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.form__dropdown ul li {
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
}

.form__dropdown ul li:first-child {
  padding-top: 8px;
}

.form__dropdown ul li:last-child {
  padding-bottom: 8px;
}

.form__dropdown ul li:hover {
  background-color: #dfdfdf;
}

.form__spinner {
  margin: 0;
  width: 30px;
  text-align: center;
  position: absolute;
  top: 18px;
  right: -42px;
  z-index: 2;
}

.form__spinner > div {
  width: 7px;
  height: 7px;
  background-color: #f00;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.form__spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.form__spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0)
  }
  40% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.notification {
  padding: 1rem;
  border: 1px solid #b3b3b3;
  border-left-color: rgb(238, 238, 238);
  border-left-width: .25rem;
  border-radius: .25rem;
}

.notification p {
  margin: 0;
}

.notification.is-warning {
  border-left-color: #ffdb4d;
}

/*
 * =============================================================================
 * [ greetings.css ]
 * =============================================================================
 */

.page-greetings {
  width: 920px;
  margin: 0 auto;
}

.greetings__title-top {
  text-align: center;
  font-size: 32px;
  line-height: 34px;
  margin: 0 0 44px;
  font-weight: normal;
}

.greetings__xado {
  margin-bottom: 30px;
  text-align: center;
}

.greetings__xado-logo {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
}

.greetins__xado-title {
  font-weight: normal;
  color: #fff;
  font-size: 32px;
  line-height: 34px;
  background-color: #00b600;
  padding: 0 20px 3px;
  margin: 0 10px;
  border-radius: 8px 8px 8px 0;
  position: relative;
}

.greetins__xado-title:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #00b600;
  transform: rotate(40deg);
}

.greetings__advantages {
  margin-bottom: 35px;
  background: url("../images/account/bg-greetings-gradient.jpg") 0 55px no-repeat;
  padding: 0 92px 25px 154px;
}

.greetings__advantages-image-box {
  float: left;
  border-bottom: 4px solid #ffd000;
}

.greetings__advantages-text-box {
  float: right;
  width: 330px;
  margin-top: -3px;
}

.greetings__advantages-text-holder {
  margin-bottom: 25px;
  padding-right: 65px;
}

.greetings__advantages-title {
  font-weight: normal;
  margin: 0 0 11px;
  font-size: 24px;
  line-height: 26px;
  color: #f00;
}

.greetings__advantages-text {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 20px;
}

.greetings__advantages-years {
  display: block;
  margin-left: -56px;
}

.greetings__steps {
  padding: 0 60px;
}

.greetings__steps-title {
  text-align: center;
  font-size: 50px;
  line-height: 52px;
  font-weight: normal;
  margin: 0 0 15px;
}

.greetings__steps-subtitle {
  color: #fff;
  font-size: 32px;
  line-height: 34px;
  display: inline-block;
  vertical-align: top;
  background-color: #00B600;
  padding: 0 20px 3px;
  margin: 11px 10px 0;
  border-radius: 8px 8px 8px 0;
  position: relative;
}

.greetings__steps-subtitle:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #00b600;
  transform: rotate(40deg);
}

.greetings__steps-list {
  list-style: none;
  padding: 30px 0 50px;
  margin: 0;
  border-top: 3px solid #3c3;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#dfdfdf+0,fbfbfb+14,fbfbfb+100 */
  background: rgb(223, 223, 223); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(223, 223, 223, 1) 0%, rgba(251, 251, 251, 1) 10%, rgba(251, 251, 251, 1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(223, 223, 223, 1) 0%, rgba(251, 251, 251, 1) 10%, rgba(251, 251, 251, 1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(223, 223, 223, 1) 0%, rgba(251, 251, 251, 1) 10%, rgba(251, 251, 251, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  text-align: center;
  border-radius: 0 0 15px 15px;
  counter-reset: number;

}

.greetings__steps-list-item {
  display: inline-block;
  vertical-align: top;
  width: 220px;
  margin: 0 10px;
  text-align: left;
  counter-increment: number;
  position: relative;
}

.greetings__steps-list-item:before {
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  line-height: 26px;
  background-color: #e60000;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  width: 28px;
  height: 26px;
  padding-top: 2px;
}

.greetings__steps-list-item:nth-child(2):before {
  background-color: #ffd000;
}

.greetings__steps-list-item:nth-child(3):before {
  background-color: #00b600;
}

.greetings__steps-list-title {
  font-weight: normal;
  font-size: 24px;
  line-height: 26px;
  margin: 0 0 15px;
  padding-left: 39px;
  padding-top: 3px;
  display: block;
}

.greetings__steps-list-text {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}

.greetings__button-holder {
  margin-top: -28px;
  text-align: center;
}

.greetings__button {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 26px;
  text-decoration: none;
  background-color: #ffd000;
  padding: 15px 52px 15px 30px;
  border-radius: 28px;
  color: #000;
  position: relative;
}

.greetings__button::before,
.greetings__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}

.greetings__button:before {
  width: 11px;
  height: 4px;
  right: 26px;
  margin: -2px 0 0;
  background-color: #000;
}

.greetings__button:after {
  border-bottom: 7px solid transparent;
  border-left: 7px solid #000;
  border-top: 7px solid transparent;
  margin: -7px 0 0;
}

.greetings__button:hover {
  text-decoration: underline;
}

/*
 * =============================================================================
 * [ profile.css ]
 * =============================================================================
 */

.container-width {
  width: 300px;
}

.sidebar {
  float: left;
  width: 235px;
}

.sidebar:after {
  content: "";
  position: absolute;
  width: 235px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  box-shadow: inset -10px 0 5px -5px rgba(0, 0, 0, .05);
  z-index: -1;
}

.sidebar__box {
  margin-bottom: 23px;
  position: relative;
  z-index: 1;
}

.sidebar-club-holder {
  position: relative;
  z-index: 1;
}

.sidebar__title {
  margin: 0 0 11px;
  padding: 10px;
  font-weight: normal;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  background-color: #ffdb4d;
}

.sidebar__list {
  list-style: none;
  padding: 0 25px 0 0;
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  color: #808080;
}

.sidebar__list-item {
  padding: 0;
  margin: 0 0 23px;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}

.sidebar__list-item.is-active {
  border-bottom: 2px solid #ffdb4d;
}

.sidebar__list-item.is-active .sidebar__list-link {
  font-size: 22px;
  color: #000;
}

.sidebar__list-link {
  display: block;
  padding: 11px 8px 7px;
  color: #808080;
  text-decoration: none;
}

.sidebar__list-link:hover {
  color: #000;
}

.sidebar__list-link--personal,
.sidebar__list-link--account,
.sidebar__list-link--recipient,
.sidebar__list-link--cart,
.sidebar__list-link--viewed,
.sidebar__list-link--favorites,
.sidebar__list-link--orders,
.sidebar__list-link--garage,
.sidebar__list-link--history,
.sidebar__list-link--organization {
  padding-left: 51px;
}

.sidebar__list-link--personal:before,
.sidebar__list-link--account:before,
.sidebar__list-link--recipient:before,
.sidebar__list-link--cart:before,
.sidebar__list-link--viewed:before,
.sidebar__list-link--favorites:before,
.sidebar__list-link--orders:before,
.sidebar__list-link--garage:before,
.sidebar__list-link--history:before,
.sidebar__list-link--organization:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 12px;
  background: url("../images/account/icon-personal.png") no-repeat;
  width: 21px;
  height: 21px;
}

.sidebar__list-link--account:before {
  background-image: url("../images/account/icon-account.png");
  width: 23px;
  height: 23px;
}

.sidebar__list-link--recipient:before {
  background-image: url("../images/account/icon-recipient.png");
  width: 27px;
  height: 21px;
}

.sidebar__list-link--cart:before {
  background-image: url("../images/account/icon-cart.png");
  width: 25px;
  height: 19px;
}

.sidebar__list-link--viewed:before {
  background-image: url("../images/account/icon-viewed.png");
  width: 22px;
  height: 15px;
}

.sidebar__list-link--favorites:before {
  background-image: url("../images/account/icon-favorites.png");
  width: 23px;
  height: 21px;
}

.sidebar__list-link--orders:before {
  background-image: url("../images/account/icon-orders.png");
  width: 23px;
  height: 23px;
}

.sidebar__list-link--garage:before {
  background-image: url("../images/account/icon-garage.png");
  width: 26px;
  height: 22px;
}

.sidebar__list-link--history:before {
  background-image: url("../images/account/icon-history.png");
  width: 22px;
  height: 22px;
}

.sidebar__list-link--organization:before {
  background-image: url("../images/account/icon-organization.png");
  width: 20px;
  height: 22px;
}

.sidebar__list-item.is-active .sidebar__list-link--history:before {
  top: 50%;
  left: 12px;
  margin-top: -11px;
}

.content {
  float: right;
  width: 1000px;
  padding-right: 8px;
}

.content--centered {
  float: none;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.content--cart-unlogged {
  padding: 0 25px;
}

.content--cart-unlogged .account__title {
  text-align: center;
}

.content--cart-unlogged .cart__wrapper {
  margin: 0 auto;
}

.account {
  padding-top: 10px;
}

.account__title {
  color: #333;
  font-size: 24px;
  line-height: 26px;
  font-weight: normal;
  margin: 0 0 20px;
}

.messengers__title {
  font-size: 18px;
  line-height: 20px;
  font-weight: normal;
  margin: 0 0 10px;
}

.messengers__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}

.messengers__list-item {
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
}

.messengers__list-item:first-child .messengers__label {
  border-radius: 4px 0 0 4px;
}

.messengers__list-item:last-child .messengers__label {
  border-radius: 0 4px 4px 0;
}

.messengers__list-button:hover,
.messengers__list-button.is-active {
  opacity: 1;
}

.messengers__label {
  display: block;
  width: 100%;
  height: 66px;
  padding: 0;
  text-align: center;
  background-color: #448aff;
  border: none;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

.messengers__label--facebook {
  background: #448aff url("../images/account/icon-messenger-facebook.png") no-repeat 50% 50%;
}

.messengers__label--telegram {
  background: #2ca5e0 url("../images/account/icon-messenger-telegram.png") no-repeat 50% 50%;
}

.messengers__label--viber {
  background: #713f86 url("../images/account/icon-messenger-viber.png") no-repeat 50% 50%;
}

.messengers__label:hover,
.messengers__label.is-active {
  opacity: 1;
}

.messengers__radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* ACCOUNT DATA PAGE */
.account-data__row {
  margin-bottom: 20px;
}

.account-data__button {
  float: right;
  font-size: 18px;
  line-height: 20px;
  padding: 10px 15px;
  background-color: #fff;
  border: 2px solid #ffdb4d;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
}

.account-data__button:hover {
  background-color: #ffdb4d;
}

.account-data__label {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #808080;
}

.account-data__text {
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  color: #000;
}

.linked-accounts__row {
  margin-bottom: 22px;
}

.linked-accounts__button {
  box-sizing: border-box;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 1px solid #3b5998;
  padding: 10px 0 10px 78px;
  position: relative;
  border-radius: 2px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  text-align: center;
}

.linked-accounts__button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 100%;
  background: #3b5998 50% 50% no-repeat;
}

.linked-accounts__button--facebook:before {
  background-image: url("../images/account/icon-linked-facebook.png");
}

.linked-accounts__button--google {
  border-color: #dd4d42;
}

.linked-accounts__button--google:before {
  background-image: url("../images/account/icon-linked-google.png");
  background-color: #dd4d42;
}

.linked-accounts__button--activated {
  width: 88%;
  float: left;
  background-color: #3b5998;
  color: #fff;
}

.linked-accounts__button--activated:before {
  border-right: 1px solid #fff;
}

.linked-accounts__remove {
  float: right;
  background-color: transparent;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  margin-top: 5px;
  position: relative;
}

.linked-accounts__remove:before,
.linked-accounts__remove:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 15px;
  width: 2px;
  height: 18px;
  background-color: #b3b3b3;
  transform: rotate(-45deg);
}

.linked-accounts__remove:after {
  transform: rotate(45deg);
}

/* DELIVERY PAGE */
.form__wrapper--delivery {
  width: 500px;
  margin: 0;
  padding-left: 100px;
  padding-right: 100px;
  display: none;
}

.delivery__button-add-holder {
  width: 300px;
  margin-bottom: 35px;
}

.delivery__button-add {
  width: 100%;
}

.delivery__address-container {
  float: left;
}

.delivery__address-label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 300px;
  margin: 0 20px 40px 0;
}

.delivery__address-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.delivery__address-box {
  position: relative;
  padding: 30px 20px 45px 50px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: 0.2s box-shadow ease-in-out;
  min-height: 236px;
}

.delivery__address-box--pickup {
  min-height: 100px;
}

.delivery__address-label:hover .delivery__address-box {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}

.delivery__address-box.is-active {
  border: 2px solid #ffdb4d;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.delivery__address-default {
  color: #e60000;
  position: absolute;
  top: 8px;
  right: 20px;
}

.delivery__info {
  margin-bottom: 0;
  color: #000;
}

.delivery__info-item {
  margin-bottom: 15px;
}

.delivery__info-item:last-of-type {
  margin-bottom: 0;
}

.delivery__info-text {
  margin: 0;
  position: relative;
}

.delivery__info-text p {
  margin: 0;
}

.delivery__info-text--name,
.delivery__info-text--attorney {
  display: block;
  font-size: 22px;
  line-height: 24px;
  font-weight: normal;
}

.delivery__info-text--name:before {
  content: "";
  position: absolute;
  top: 2px;
  left: -32px;
  background: url("../images/account/icon-personal.png") no-repeat;
  width: 21px;
  height: 21px;
}

.delivery__info-text--address:before {
  content: "";
  position: absolute;
  top: 2px;
  left: -32px;
  background: url("../images/account/icon-address.png") no-repeat;
  width: 14px;
  height: 22px;
}

.delivery__info-text--phone:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -30px;
  background: url("../images/account/icon-phone.png") no-repeat;
  width: 13px;
  height: 23px;
}

.delivery__info-text--attorney:before {
  content: "";
  position: absolute;
  top: 2px;
  left: -30px;
  background: url("../images/account/icon-attorney.png") no-repeat;
  width: 17px;
  height: 18px;
}

.delivery__controls {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.delivery__controls-item {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px 0 0;
}

.delivery__controls-item:before {
  content: "|";
  display: inline-block;
  vertical-align: top;
  margin: 0 5px 0 0;
}

.delivery__controls-item:first-child:before {
  display: none;
}

.delivery__controls-button {
  background: none;
  padding: 0;
  border: none;
}

.delivery__controls-button:hover,
.delivery__controls-button:focus {
  text-decoration: underline;
}

.button-close {
  background-color: transparent;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
}

.button-close--delivery {
  position: absolute;
  top: 10px;
  right: 10px;
}

.button-close:before,
.button-close:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 15px;
  width: 2px;
  height: 18px;
  background-color: #b3b3b3;
  transform: rotate(-45deg);
}

.button-close:after {
  transform: rotate(45deg);
}

.address__delete-confirm-box {
  width: 300px;
  margin: 0 auto;
  color: #000;
  box-sizing: border-box;
  padding: 6px 21px;
  text-align: center;
}

.address__delete-confirm-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: normal;
  margin: 0 0 20px;
}

.address__delete-button-holder {
  padding: 0;
}

.address__delete-cancel {
  float: left;
  width: 115px;
  box-sizing: border-box;
  padding: 8px;
  border: none;
  border-radius: 3px;
  font-size: 24px;
  line-height: 26px;
  background-color: transparent;
}

.address__delete-confirm {
  float: right;
  width: 115px;
  box-sizing: border-box;
  padding: 8px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 24px;
  line-height: 26px;
  background-color: #f00;
}

.address__delete-confirm[disabled='disabled'] {
  opacity: 0.5;
}

.spinner__overlay {
  z-index: 9000;
}

.form__wrapper--organization {
  display: none;
  box-shadow: none;
}

.delivery__info-text--org:before {
  content: "";
  position: absolute;
  top: 2px;
  left: -32px;
  background: url("../images/account/icon-organization.png") no-repeat;
  width: 22px;
  height: 20px;
}

.delivery__info-text em {
  display: inline-block;
  vertical-align: center;
  font-style: normal;
  color: #999;
  font-size: 18px;
  margin: 0 3px 0 0;
}

.delivery__info-text--inn {
  border-top: 1px solid #b3b3b3;
  padding-top: 12px;
  margin-left: -30px;
  font-size: 22px;
}

.delivery__info-text--name,
.delivery__info-text--attorney,
.delivery__info-text--org {
  display: block;
  font-size: 22px;
  line-height: 24px;
  font-weight: normal;
}

/*
 * =============================================================================
 * [ ordering.css ]
 * =============================================================================
 */

.main__title {
  color: #333;
  font-size: 24px;
  line-height: 26px;
  font-weight: normal;
  margin: 0 0 20px;
}

.ordering__title {
  text-align: center;
  color: #333;
  font-size: 28px;
  line-height: 30px;
  font-weight: normal;
  margin: 0 0 25px;
}

.ordering {
  padding: 0 60px 0 110px;
}

.ordering__cart {
  float: right;
}

.form__wrapper--ordering {
  float: left;
}

.form__ordering-login-button {
  padding: 3px 0;
  margin: 0;
  border: 0;
  background: none;
  font-size: 24px;
  line-height: 26px;
  color: #000;
  text-decoration: none;
}

.form__ordering-login-button--login {
  float: right;
  color: #fff;
  padding: 5px 35px;
  border-radius: 2px;
  background-color: #b3b3b3;
}

.ordering__office {
  margin: 0 0 5px;
}

.ordering__map {
  border-top: 2px solid #ffdb4d;
}

.confirm-gift {
  position: absolute;
  top: 42px;
  left: 0;
  width: 300px;
  box-shadow: 0 0 5px #949494;
  border-radius: 1px;
  box-sizing: border-box;
  padding: 20px 18px;
  background-color: #fff;
  z-index: 6;
}

.confirm-gift:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 33px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #fff;
  box-shadow: 0 0 5px #949494;
}

.confirm-gift:after {
  content: "";
  width: 30px;
  height: 18px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 28px;
}

.confirm-gift__info {
  margin: 0 0 10px;
  line-height: 24px;
}

.confirm-gift__button-holder {
  text-align: center;
}

.confirm-gift__button {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 26px;
  background-color: #ffdb4d;
  border-radius: 2px;
  padding: 6px;
  border: none;
  box-sizing: border-box;
  transition: background-color 0.2s ease-in-out;
}

.confirm-gift__button:hover {
  background-color: #fc0;
}

.confirm-gift__button--yes {
  width: 58%;
}

.confirm-gift__button--no {
  width: 40%;
}

.confirm-gift__button--no {
  background-color: transparent;
}

.confirm-gift__button--no:hover {
  background-color: transparent;
  text-decoration: underline;
}

.ordering__gift-box {
  display: none;
  padding-left: 21px;
  margin-top: -20px;
}

.ordering__delivery--margin {
  padding-top: 20px;
}

/* success page */
.success__title-holder {
  text-align: center;
  margin-bottom: 30px;
}

.success__title {
  margin: 0 0 5px;
  font-size: 28px;
  line-height: 30px;
  font-weight: normal;
}

.success__text {
  margin: 0 0 3px;
}

.success__text--gray {
  color: #808080;
}

.instruction__box--success {
  margin: 0 auto 30px;
  box-shadow: 0 0 5px #949494;
  border-radius: 3px;
}

.instruction__box {
  width: 600px;
  box-sizing: border-box;
  padding: 30px;
}

.instruction__title {
  margin: 0 0 5px;
  text-align: center;
  font-size: 24px;
  line-height: 26px;
  font-weight: normal;
}

.instruction__info {
  margin: 0 0 10px;
  color: #808080;
}

.instruction__info--margin {
  margin: 0 0 30px;
}

.instruction__step {
  margin-bottom: 20px;
}

.instruction__subtitle {
  font-weight: normal;
  font-size: 24px;
  line-height: 26px;
  color: #000;
}

.instruction__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.instruction__list-item {
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}

.instruction__list-item:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: 50%;
  background-color: #000;
  width: 5px;
  height: 5px;
}

.instruction__button-holder {
  text-align: center;
  margin-bottom: 30px;
}

.success .instruction__button-holder {
  margin-bottom: 0;
}

.instruction__button {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 26px;
  color: #000;
  text-align: center;
  background-color: #ffdb4d;
  padding: 5px 10px;
  width: 300px;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.instruction__button:hover {
  background-color: #fc0;
}

/*
 * =============================================================================
 * [ cart.css ]
 * =============================================================================
 */

.cart__wrapper {
  width: 500px;
  box-shadow: 0 0 5px #949494;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 0;
  position: relative;
}

.cart__wrapper--ordering {
  box-shadow: none;
  border: 1px solid #ccc;
}

/* don't show checkout button in ordering */
.cart--mini .cart__checkout-holder {
  display: none;
}

.cart__header {
  padding: 27px 18px 14px;
  border-bottom: 1px solid #ccc;
}

.cart__product {
  border-bottom: 1px solid #ccc;
  padding: 16px 0 0 0;
  position: relative;
}

.cart__footer {
  padding: 13px 0 28px;
}

.cart__login {
  float: left;
  width: 50%;
  margin: 0;
  color: #808080;
  font-size: 18px;
}

.cart__login-link,
.cart__delivery-color {
  color: #000;
}

.cart__delivery-color.red {
  color: #f00;
}

.cart__delivery-color.green {
  color: #00b600;
}

.cart__delivery-time {
  float: right;
  width: 60%;
  text-align: right;
  color: #666;
  margin: 0;
}

.cart__body--collapsed {
  display: none;
}

.cart__product {
  position: relative;
}

.cart__button-holder {
  position: absolute;
  top: 12px;
  right: 9px;
}

.cart__favorite {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 30px;
  height: 30px;
  position: relative;
}

.cart__favorite:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -12px;
  background: url("../images/account/icon-heart-white.png") no-repeat;
  width: 25px;
  height: 22px;
}

.cart__favorite.in-wishlist:before {
  background-position: 0 -22px;
}

.cart__favorite.in-wishlist {
  pointer-events: none;
  cursor: default;
}

.cart__close {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 4px;
  padding: 0;
  border: 0;
  background: none;
  width: 30px;
  height: 30px;
  position: relative;
}

.cart__close:before,
.cart__close:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 15px;
  width: 2px;
  height: 18px;
  background-color: #9cb1c9;
  transform: rotate(-45deg);
}

.cart__close:after {
  transform: rotate(45deg);
}

.cart__remove-box {
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px 20px 5px;
}

.cart__remove-box-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  transform: translateY(-50%);
}

.cart__remove-button {
  float: left;
  width: 42%;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  padding: 50px 0 8px;
  background-color: transparent;
  border: 0;
  position: relative;
}

.cart__remove-button--favorite:before {
  content: "";
  background: url("../images/account/icon-heart-yellow.png") no-repeat;
  width: 47px;
  height: 42px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cart__remove-button--favorite.in-wishlist {
  cursor: default;
  pointer-events: none;
}

.cart__remove-button--favorite.in-wishlist:before {
  background-position: 0 -42px;
}

.cart__remove-button--remove {
  float: right;
}

.cart__remove-button--remove:before,
.cart__remove-button--remove:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 0 0 -2px;
  width: 3px;
  height: 43px;
  background-color: #f00;
  transform: rotate(-45deg);
}

.cart__remove-button--remove:after {
  transform: rotate(45deg);
}

.cart__remove-button-holder {
  border-bottom: 1px solid #e6e6e6;
  position: relative;
}

.cart__remove-button-holder:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 67px;
  width: 1px;
  margin: 0 0 0 -1px;
  background-color: #e6e6e6;
}

.cart__remove-button-holder--center {
  text-align: center;
}

.cart__remove-button-holder--center:before {
  display: none;
}

.cart__remove-button-holder--center .cart__remove-button {
  float: none;
  display: inline-block;
  vertical-align: top;
}

.cart__remove-cancel {
  display: block;
  width: 100%;
  padding: 10px;
  border: 0;
  color: #f00;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  background-color: transparent;
}

.cart__remove-cancel:hover {
  text-decoration: underline;
}

.cart__product-image-holder {
  float: left;
  width: 34%;
  padding-top: 24px;
}

.cart__product-info {
  width: 64.8%;
  float: right;
}

.cart__product-option-list {
  list-style: none;
  padding: 0 90px 0 0;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 18px;
  color: #999;
}

.cart__product-option-list--small {
  font-size: 14px;
  line-height: 16px;
}
.cart__product-option-list-item {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

.cart__product-option-list-item:after {
  content: "|";
  display: inline-block;
  vertical-align: top;
  margin: 0 3px 0 7px;
}

.cart__product-option-list-item:last-child:after {
  display: none;
}

.cart__product-title {
  display: block;
  font-weight: normal;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 50px;
}

.cart__product-title-link {
  color: #000;
  text-decoration: none;
}

.cart__product-title-link:hover {
  text-decoration: underline;
}

.cart__price-holder {
  padding-bottom: 25px;
}

.cart__info {
  float: left;
  /*width: 30%;*/
  margin-right: 5px;
}

.cart__bage {
  font-size: 18px;
  line-height: 20px;
  color: #e60000;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #e60000;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 14px;
  position: relative;
}

.cart__bage:after {
      /*content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 0;
      border: 12px solid transparent;
      border-top-color: #e60000;
      border-bottom: 0;
      border-left: 0;
      margin-left: -6px;
      margin-bottom: -12px;*/
}

.cart__bage--action {
  background-color: #f60;
  border-color: #f60;
  color: #fff;
}

.cart__bage--black-friday {
    background-color: black;
    border-color: red;
    color: #fff;
}

.cart__bage--top {
  background-color: #e60000;
  border-color: #e60000;
  color: #fff;
}

.cart__bage--new {
  background-color: #00b8e6;
  border-color: #00b8e6;
  color: #fff;
}

.cart__bage--best {
  padding-left: 6px;
  padding-right: 6px;
  background-color: #3c3;
  border-color: #3c3;
  color: #fff;
}

.cart__action-text {
  margin: 0;
  color: #f60;
}

.cart__bage-percent {
  display: block;
  background: url("../images/account/bage-set-percent.png") no-repeat;
  width: 78px;
  height: 58px;
  position: relative;
  margin-top: -17px;
}

.cart__bage-percent strong {
  display: block;
  width: 44px;
  height: 100%;
  color: #fff;
  padding: 0;
  font-size: 50px;
  line-height: 55px;
  font-weight: normal;
  text-align: center;
  letter-spacing: -2px;
}

.quantity {
  float: right;
  width: 33%;
  border-right: 1px solid #b3b3b3;
  box-sizing: border-box;
}

.quantity__inner {
  margin-bottom: 5px;
}

.quantity__price {
  color: #999;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  padding: 0 10px 0 0;
}

.quantity__price .cart__price {
  display: inline;
  font-size: 18px;
  line-height: 20px;
}

.quantity__price .cart__price-main {
  font-size: 18px;
  line-height: 20px;
}

.quantity__price .cart__price-cent {
  font-size: 12px;
}

.cart__price-box {
  float: right;
  width: 35%;
  box-sizing: border-box;
  padding: 0 0 0 18px;
}

.cart__price-box .cart__price {
  margin-bottom: 2px;
}

.cart__price {
  font-size: 22px;
}

.cart__price-main {
  font-weight: normal;
  font-size: 36px;
  line-height: 38px;
}

.cart__price--old {
  font-size: 12px;
  color: #4d4d4a;
  padding: 0 0 0 10px;
}

.price-old {
  text-decoration: line-through;
  color: #e60000;
}

.cart__price--old .cart__price-main {
  font-size: 18px;
  line-height: 20px;
  color: #4d4d4a;
}

.cart__price--old .cart__price-cent {
  color: #4d4d4a;
}

.cart__price--economy {
  color: #00b600;
  font-size: 12px;
}

.cart__price-text-economy {
  font-size: 16px;
  line-height: 20px;
  margin: 0 5px 0 0;
}

.cart__price--economy .cart__price-main {
  font-size: 18px;
  line-height: 20px;
}

.cart__action-info {
  color: #f00;
  margin: 0 0 20px;
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
}

.quantity__remove,
.quantity__add {
  float: left;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 8px 9px 0 0;
  background-color: #cecece;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  transition: background-color 0.2s ease-in-out;
}

.quantity__remove:hover,
.quantity__add:hover,
.quantity__remove:focus,
.quantity__add:focus {
  background-color: #578dc8;
}

.quantity__remove:before,
.quantity__add:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background-color: #fff;
}

.quantity__add:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background-color: #fff;
}

.quantity__input {
  float: left;
  border: 2px solid #ececf4;
  background-color: #fff;
  font-size: 22px;
  line-height: 24px;
  width: 30px;
  margin: 0 9px 0 0;
  padding: 4px 0 3px;
  text-align: center;
  color: #000;
}

.cart__product-complect {
  position: relative;
}

.cart__product-complect-plus {
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 125px;
  width: 34px;
  height: 34px;
  background-color: #1db100;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
  z-index: 2;
}

.cart__product-complect-plus:before,
.cart__product-complect-plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  width: 4px;
  height: 24px;
  margin: -12px 0 0 -2px;
}

.cart__product-complect-plus:after {
  width: 24px;
  height: 4px;
  margin: -2px 0 0 -12px;
}

.cart__product-complect .cart__product {
  border-bottom-color: transparent;
}

.cart__product-complect .cart__product:last-child {
  border-bottom-color: #ccc;
  padding: 0;
}

.cart__product-complect .cart__product-image-holder {
  padding-top: 0;
}

.cart__product-complect-title-box {
  /*position: relative;*/
  padding: 16px 90px 16px 30px;
  border-bottom: 2px solid #00b600;
}

.cart__product-complect-title {
  display: block;
  font-weight: normal;
}

.total__text-holder {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  margin-bottom: 2px;
}

.total__text-title {
  font-weight: normal;
  color: #000;
  font-size: 24px;
  margin: 0;
}

.total__price {
  text-align: center;
}

.total__price-main {
  font-size: 36px;
  line-height: 40px;
  font-weight: normal;
}

.total__price-cent {
  font-size: 20px;
}

.total__more-holder {
  text-align: center;
  margin-bottom: 22px;
  margin-top: -2px;
}

.total__more-holder--show {
  padding-top: 11px;
}

.total__more {
  padding: 0;
  margin: 0;
  color: #808080;
  font-size: 16px;
  line-height: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px dotted #808080;
}

.total__more-text {
  display: block;
}

.cart__checkout-holder {
  text-align: center;
  margin-bottom: 28px;
}

.button__checkout {
  color: #fff;
  background-color: #00b600;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
}

.button__checkout:hover {
  background-color: #02C902;
}

.cart-details {
  width: 280px;
  margin: -2px auto 32px;
  display: none;
}

.cart-details__row {
  margin-bottom: 4px;
}

.cart-details__text {
  display: inline-block;
  vertical-align: top;
  width: 60%;
  font-weight: normal;
  text-align: right;
  color: #808080;
  margin: 0 10px 0 0;
}

.cart-details__row--club .cart-details__text {
  color: #008600;
}

.cart-details__row--club .cart-details__text span {
  color: #20b400;
}

.cart-details__row--club .cart-details__number {
  color: #00b600;
}

.cart-details__number {
  display: inline-block;
  vertical-align: top;
  width: 30%;
}

.cart-details__row--single .cart-details__text,
.cart-details__row--single .cart-details__number {
  width: 47%;
}

.cart-use:nth-last-of-type(1) .cart-use__box {
  margin-bottom: -29px;
}

.cart-use__button-holder {
  width: 235px;
  margin: 0 auto 15px;
}

.cart-use__button {
  font-size: 18px;
  line-height: 20px;
  padding: 0;
  background: none;
  border: 0;
  color: #808080;
  position: relative;
}

.cart-use__button-border {
  border-bottom: 1px dotted #808080;
}

.cart-use__button:hover .cart-use__button-border {
  border-bottom-color: transparent;
}

.cart-use__button--bonus-grn,
.cart-use__button--promocode,
.cart-use__button--gift-card {
  padding-left: 35px;
}

.cart-use__button--bonus-grn:before,
.cart-use__button--promocode:before,
.cart-use__button--gift-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/account/icon-bonus-grn.png");
  width: 24px;
  height: 24px;
}

.cart-use__button--promocode:before {
  background-image: url("../images/account/icon-promocode.png");
  width: 23px;
  height: 23px;
}

.cart-use__button--gift-card:before {
  background-image: url("../images/account/icon-gift-card.png");
  width: 23px;
  height: 23px;
}

.cart-use__box {
  background-color: #fafafa;
  box-shadow: inset 0 15px 15px -15px rgba(0, 0, 0, 0.3),
  inset 0 -7px 7px -7px rgba(0, 0, 0, 0.3);
  padding: 22px 0;
  margin-bottom: 18px;
  display: none;
}

/*TODO: get rid of this hack */
.cart-use__box.promo-discount-container {
  float: none;
  display: block;
}

.cart-use__box-inner {
  width: 280px;
  margin: 0 auto;
}

.cart-use__bonus-holder {
  text-align: center;
  margin-bottom: 10px;
}

.cart-use__bonus-box {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  padding: 3px 10px;
  background-color: #ffc300;
  border-radius: 4px;
}

.cart-use__bonus-number {
  display: inline-block;
  vertical-align: top;
  font-weight: normal;
  font-size: 30px;
  line-height: 32px;
  margin: 0 3px 0 0;
}

.cart-use__bonus-text-holder {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 10px;
  padding-top: 6px;
}

.cart-use__bonus-until {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  padding-top: 9px;
}

.cart-use__bonus-text {
  display: block;
}

.cart-use__info {
  margin: 0 0 14px;
  line-height: 18px;
  color: #808080;
}

.cart-use__text {
  margin: 0 0 12px;
  text-align: center;
  display: block;

}

.cart-use__promocode {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #999;
  width: 200px;
  font-size: 30px;
  margin: 0 auto 2px;
  display: block;
  padding: 0;
  border-radius: 4px;
  text-align: center;
}

.cart-use__success {
  margin: 0 0 8px;
  text-align: center;
  color: #008600;
}

.cart-use__success.error {
  float: none;
  color: #f00;
}

/* cart popup */
.cart-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  max-width: 100%;
  max-height: 100%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 2px;
  z-index: 15;
  overflow: auto;
}

.cart-popup__header {
  padding: 15px 20px;
  position: relative;
  border-bottom: 2px solid #ccc;
}

.cart-popup__title {
  font-size: 24px;
  line-height: 26px;
  font-weight: normal;
  margin: 0;
}

.cart-popup__close {
  position: absolute;
  top: 14px;
  right: 7px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-popup__close:before,
.cart-popup__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -12px;
  width: 23px;
  height: 2px;
  background-color: #9cb1c9;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cart-popup__close:after {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cart-popup__product {
  padding: 0;
  border-bottom: 2px solid #ccc;
  position: relative;
}

.cart-popup__footer {
  padding: 15px 20px 25px;
}

.cart-popup__footer-view-holder {
  margin-bottom: 30px;
}

.cart-popup__footer-view {
  float: right;
  text-decoration: none;
  color: #000;
}

.cart-popup__footer-view:hover {
  text-decoration: underline;
}

.cart-popup__continue {
  float: left;
  margin-top: 7px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
}

.cart-popup__continue:hover {
  text-decoration: underline;
}

.cart-popup__checkout {
  float: right;
  width: 300px;
}

/* product removed */
.removed {
  padding-left: 14px;
}

.removed__package-text {
  margin: 0;
  color: #f00;
}

.removed__title {
  font-size: 22px;
  line-height: 1;
  font-weight: normal;
  color: #22468f;
  margin: 0 0 10px;
}

.removed__link {
  text-decoration: none;
}

.removed__link:hover .remove__link-text {
  text-decoration: underline;
}

.removed__button {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  padding: 5px 15px;
  border-radius: 17px;
  color: #fff;
  background-color: #387aff;
  margin-right: 7px;
}

.remove__link-text {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 1;
  color: #22468F;
}

/*
 * =============================================================================
 * [ information ]
 * =============================================================================
 */
/*
 * =============================================================================
 * [ info.css ]
 * =============================================================================
 */
.info__banner {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
}

.info__text {
  margin-bottom: 30px;
}

.info__text p {
  margin: 0;
}

.info .info__main-title {
  /*border-bottom: 2px solid #fc0;*/
  color: #000;
  border-bottom: 2px solid #003595;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 50px;
  padding-bottom: 5px;
}

.info .info__title {
  /*display: none;*/
  color: #000;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.1;
  position: relative;
  margin: 0 0 40px;
}

.info__padding {
  padding: 0 35px;
}

.info__box-holder {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.info__box {
  box-sizing: border-box;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
  padding: 27px;
  width: 282px;
}

.info__box h2 {
  /*border-bottom: 2px solid #fc0;*/
  border-bottom: 2px solid #003595;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.1;
  margin: 0 -5px 15px;
  padding: 0 5px 4px;
}

.info__box p {
  color: #333;
  font-size: 21px;
  line-height: 1.2;
  margin: 0;
}

.info__subtitle {
  font-size: 22px;
  font-weight: normal;
  line-height: 1.1;
  margin: 0 0 35px;
}

.info__subtitle--benefits {
  margin-bottom: 70px;
}

.info__benefits-holder {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.info__benefits {
  /*border: 3px solid #fc0;*/
  box-sizing: border-box;
  border: 3px solid #003595;
  position: relative;
  width: 282px;
}

.info__benefits-inner {
  overflow: hidden;
  padding: 58px 27px 27px;
}

.info__benefits--coin:before {
  /*background: #fff url("../images/club/icon-give-money.svg") no-repeat 50% 50%;*/
  background: #fff url("../images/club/give-money-com-club.svg") no-repeat 50% 50%;
  background-size: 45px 40px;
  border-radius: 50%;
  /*border: 3px solid #fc0;*/
  border: 3px solid #003595;
  box-sizing: border-box;
  content: "";
  height: 70px;
  left: 27px;
  padding: 0;
  position: absolute;
  top: -35px;
  width: 70px;
}

.info__benefits--coin .info__benefits-inner {
  /*background: url("../images/club/bg-coins.svg") no-repeat calc(100% + 40px) -22px;*/
  background: url("../images/club/coins-com-club.svg") no-repeat calc(100% + 40px) -22px;
  background-size: 189px 172px;
}

.info__benefits--gift:before {
  /*background: #fff url("../images/club/icon-giftbox.svg") no-repeat 50% 50%;*/
  background: #fff url("../images/club/giftbox-com-club.svg") no-repeat 50% 50%;
  background-size: 54px 54px;

  border-radius: 50%;
  /*border: 3px solid #fc0;*/
  box-sizing: border-box;
  border: 3px solid #003595;
  content: "";
  height: 90px;
  left: 93px;
  padding: 0;
  position: absolute;
  top: -45px;
  width: 90px;
}

.info__benefits--gift .info__benefits-inner {
  /*background: url("../images/club/bg-gift.svg") no-repeat calc(100% + 70px) -20px;*/
  background: url("../images/club/gift-com-club.svg") no-repeat calc(100% + 70px) -20px;
  background-size: 208px 196px;
}


.info__benefits--brand:before {
  /*background: #fff url("../images/club/icon-progress-report.svg") no-repeat 50% 50%;*/
  background: #fff url("../images/club/progress-report-com-club.svg") no-repeat 50% 50%;
  background-size: 60px 55px;
  border-radius: 50%;
  /*border: 3px solid #fc0;*/
  box-sizing: border-box;
  border: 3px solid #003595;
  content: "";
  height: 100px;
  right: 27px;
  padding: 0;
  position: absolute;
  top: -50px;
  width: 100px;
}

.info__benefits--brand .info__benefits-inner {
  /*background: url("../images/club/bg-graphic-progression.svg") no-repeat calc(100% + 15px) -15px;*/
  background: url("../images/club/graphic-progression-com-club.svg") no-repeat calc(100% + 15px) -15px;
  background-size: 218px 191px;
}

.info__benefits p {
  color: #333;
  font-size: 24px;
  line-height: 1.1;
  margin: 0;
}

.info__title--personal-discount::before,
.info__title--points::before,
.info__title--currency::before {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  /*border-top: 17px solid #008a88;*/
  border-top: 17px solid #ff0624;
  content: "";
  left: -34px;
  position: absolute;
  top: 8px;
}
.info__title--points::before {
  /*border-top-color: #f6c881;*/
  border-top-color: #ffdb4e;
}
.info__title--currency::before {
  border-top-color: #3b5c65;
}
.info__personal-discount {
  margin-bottom: 50px;
}

.info__personal-discount .info__subtitle {
  color: #333;
  margin-bottom: 30px;
}

.info__personal-discount-inner {
  display: flex;
  flex-flow: nowrap row;
}
.info__table-holder {
  border: 1px solid #e6e6e6;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  flex-basis: 462px;
  margin: 0 50px 50px 0;
  padding-bottom: 40px;
}
.info__table {
  color: #333;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
  width: 100%;
}
.info__table th {
  /*background-color: #f2f9f9;*/
  background-color: #fff2f4;
  font-size: 24px;
  font-weight: normal;
  padding: 20px 3% 20px 10.8%;
}
.info__table th:last-child {
  padding-left: 3%;
  padding-right: 10.8%;
}
.info__table td {
  padding: 12px 5.411255411255411% 12px 10.822510822510822%;
  position: relative;
}

.info__table td::before {
  /*background-color: #b2dcdb;*/
  background-color: #ffb4bd;
  bottom: 0;
  content: "";
  height: 1px;
  left: 20%;
  position: absolute;
  width: 70%;
}
.info__table td:last-child {
  padding-left: 5.411255411255411%;
  padding-right: 10.822510822510822%;
}
.info__table td:last-child::before {
  /*background-color: #4cadab;*/
  background-color: #ff5065;
  left: 8%;
}

.info__table-text {
  color: #333;
  flex-basis: 278px;
  font-size: 22px;
  line-height: 1.1;
}

.info__personal-discount .accent {
  /*color: #008a88;*/
  color: #ff0624;
}

.info__points {
  padding-bottom: 50px;
}

.info__points-box-holder {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.info__points-box {
  align-items: center;
  /*background-color: #f6c881;*/
  background-color: #ffdb4e;
  border-radius: 72px;
  /*border: 3px solid #f6c881;*/
  border: 3px solid #ffdb4e;
  box-sizing: border-box;
  color: #333;
  display: flex;
  font-size: 20px;
  line-height: 1.1;
  padding-right: 20px;
  position: relative;
  width: 282px;
}

.info__points-box::before {
  background-color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 72px;
  margin-right: 9px;
  width: 72px;
}
.info__points-box:nth-child(1)::before {
  background-image: url("../images/club/bg-number-1.png");
}
.info__points-box:nth-child(2)::before {
  background-image: url("../images/club/bg-number-2.png");
}
.info__points-box:nth-child(3)::before {
  background-image: url("../images/club/bg-number-3.png");
}
.info__points-box p {
  margin: 0;
}

.info__points .info__box-holder {
  justify-content: flex-start;
  display: none;
}

.info__points .info__box {
  margin-right: 50px;
}

.info__currency {
  padding-bottom: 50px;
  display: none;
}

.info__currency-inner {
  display: flex;
  flex-flow: nowrap row;
}
.info__currency .info__table-holder {
  flex-basis: 352px;
}
.info__currency .info__table th {
  background-color: #f5f7f7;
}
.info__currency .info__table td::before {
  background-color: #c4ced0;
}

.info__currency .info__table td:last-child::before {
  background-color: #758d93;
}
.info__currency .info__table-text {
  flex-basis: 384px;
}

.info__currency .accent {
  color: #3b5c65;
}

.info__btn-holder {
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
  margin-bottom: 70px;
}

.info__btn {
  /*background-color: #20b400;*/
  background-color: #003595;
  border-radius: 50px;
  color: #fff;
  flex-basis: 362px;
  font-size: 36px;
  line-height: 1.1;
  padding: 27px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.info__btn:hover {
  /*background-color: rgba(32, 180, 0, 0.85);*/
  background-color: #003595;
}

/*
 * =============================================================================
 * [ category ]
 * =============================================================================
 */
/*
 * =============================================================================
 * [ filters.css ]
 * =============================================================================
 */
.filters {
  margin-bottom: 25px;
  position: relative;
}

.filters__header,
.filters__footer {
  text-align: center;
  position: relative;
  z-index: 1;
}

.filters__header-title {
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: normal;
  background-color: #799abc;
  padding: 10px 5px;
  margin: 0 0 15px;
}

.filters__button {
  font-size: 18px;
  line-height: 1.1;
  color: #f00;
  background-color: #fff;
  border: 1px solid #808080;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 15px;
  width: 165px;
  transition: border-color 0.2s ease-in-out;
  cursor: pointer;
}

.filters__button:hover {
  border-color: #f00;
}

.filters__body {
  padding-left: 25px;
  position: relative;
  z-index: 1;
}

.filters__box {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.filters__box:last-child {
  border-bottom: none;
}

.filters__box-header {
  position: relative;
  padding-right: 40px;
}

.filters__title {
  font-size: 18px;
  line-height: 1.1;
  font-weight: normal;
  color: #369;
  margin: 0 0 15px;
}

.filters__toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.filters__toggle::before,
.filters__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  margin: -6px 0 0 -4px;
  background-color: #666;
  transform: rotate(45deg);
}

.filters__toggle::after {
  transform: rotate(-45deg);
  margin-left: 4px;
}

.filters__toggle--right {
  position: absolute;
  top: -5px;
  right: 11px;
  transition: all 0.2s ease-in-out;
}

.filters__toggle--right::before,
.filters__toggle--right::after {
  background-color: #799abc;
}

.filters__toggle--right.is-folded {
  transform: rotate(-180deg);
}

.filters__control-group {
  margin-bottom: 15px;
  position: relative;
}

.filters__control {
  font-size: 18px;
  color: #666;
  position: relative;
  display: block;
  margin-bottom: 15px;
  padding-left: 30px;
  padding-right: 40px;
  cursor: pointer;
}

.filters__control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.filters__control-indicator {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
}

/* Checked state */
.filters__control input:checked ~ .filters__control-indicator {
  background: #20b400;
  border-color: #20b400;
}

/* Disabled state */
.filters__control input:disabled ~ .filters__control-indicator {
  pointer-events: none;
  opacity: .6;
  background: #ccc;
}

.filters__control.is-disabled {
  color: #e6e6e6;
  cursor: not-allowed;
}

/* Check mark */
.filters__control-indicator:after {
  position: absolute;
  display: none;
  content: '';
}

/* Show check mark */
.filters__control input:checked ~ .filters__control-indicator:after {
  display: block;
}

/* Checkbox tick */
.filters__control--checkbox .filters__control-indicator:after {
  top: 2px;
  left: 6px;
  width: 3px;
  height: 8px;
  transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

/* Disabled tick colour */
.filters__control--checkbox input:disabled ~ .filters__control-indicator:after {
  border-color: #7b7b7b;
}

.filters__box-footer {
  padding-left: 22px;
}

/* filters selected */
.filters-selected {
  margin-bottom: 13px;
  font-size: 18px;
  color: #666;
}

.filters-selected__text {
  margin: 0;
}

.filters-selected__button {
  border: 1px solid #f00;
  color: #f00;
  background-color: #fff;
  padding: 1px 8px;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 15px;
}

.filters-selected__control {
  display: inline-block;
  vertical-align: top;
  margin: 0 9px 9px 0;
  cursor: pointer;
  position: relative;
  padding: 1px 24px 1px 8px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.filters-selected__control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.filters-selected__control-indicator {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 12px;
  height: 12px;
}

.filters-selected__control-indicator:before,
.filters-selected__control-indicator:after {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -1px;
  transform: rotate(45deg);
}

.filters-selected__control-indicator:after {
  transform: rotate(-45deg);
}

.filters__item-quantity {
  position: absolute;
  top: 2px;
  right: 14px;
  font-size: 16px;
  line-height: 1.1;
  color: #999;
}
/*
 * =============================================================================
 * [ category.css ]
 * =============================================================================
 */
.category {
  display: flex;
  flex-wrap: wrap;
}
.category--content {
  margin: 0 -8px 0 -25px;
}

.category--selection {
  margin-bottom: 30px;
}

.category__box {
  width: 25%;
  padding: 12px 3px;
  box-sizing: border-box;
  border: solid #e6e6e6;
  border-width: 0 0 1px 1px;
  position: relative;
  overflow: hidden;
}

.category--selection .category__box:last-child {
  border-right-width: 1px;
}

.category__inner {
  background-color: #fff;
  min-height: 100%;
  position: relative;
  z-index: 10;
}

.category__inner::before {
  position: absolute;
  left: -12px;
  top: -24px;
  z-index: -1;
  display: none;
  width: 100%;
  height: 100%;
  padding: 24px 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.24);
  background-color: #fff;
  opacity: 0;
  content: "";
}

.category__inner--banner {
  margin: -12px -4px;
}

.category__banner-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.category__box:hover {
  overflow: visible;
}

.category__box:hover .category__inner {
  z-index: 20;
}
.category__box:hover .category__inner::before {
  display: block;
  opacity: 1;
}

.category__box:hover .category__inner--banner::before {
  display: none;
}

.category__box:hover .category__hidden-content {
  display: block;
}
.category__box:nth-child(-n+4) {
  border-top-width: 1px;
}

.category__hidden-content {
  display: none;
}

.category__image {
  margin-bottom: 10px;
}

.category__image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.category__image.not-available img {
  filter: grayscale(75%) opacity(50%);
}

.category__image.not-available .bage {
  display: none;
}

.category__info {
  padding-left: 10px;
  padding-right: 5px;
}

.category__item {
  margin-bottom: 10px;
}

.category__meta {
  margin-bottom: 10px;
}

.meta__rating {
  margin-top: -6px;
  margin-right: 7px;
}

.meta__comments {
  text-decoration: none;
  font-size: 14px;
  line-height: 1.1;
  color: #000;
}

.meta__comments:hover {
  text-decoration: underline;
}

.category__info-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: normal;
  color: #4d4d4d;
  margin: 0 0 15px;
}

.category__info-title a {
  text-decoration: none;
  color: #4d4d4d;
}

.category__price {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 5px;
}

.category__option {
  padding: 3px 6px;
  background-color: #f2f8ff;
  line-height: 1.1;
  border-radius: 2px;
  margin-right: 10px;
}

.oldprice {
  color: #ccc;
  text-decoration: line-through;
  margin-top: 2px;
  margin-right: 10px;
}
.category__price .oldprice + .price {
  color: #db0000;
}
.price {
  font-size: 22px;
  line-height: 1.1;
  display: flex;
}
.price .main-price {
  font-weight: normal;
}
.price .currency {
  font-size: 14px;
  margin: -2px 0 0 3px;
}

.category__price.not-available .price {
  color: #c3d0e0;
}

.buy {
  width: 34px;
  height: 34px;
  border-radius: 5px;
  transition: background-color 0.2s ease-in-out;
}

.buy:hover {
  background-color: #f2f8ff;
}

.buy--category {
  margin-top: -4px;
  margin-left: auto;
}

.buy--bonus {
  border-radius: 0;
  width: auto;
  height: auto;
  font-size: 16px;
  line-height: 1.1;
  color: #4d4d4d;
}

.buy--bonus:hover {
  background-color: transparent;
  text-decoration: none;
}

.buy__icon {
  display: block;
  margin: 0 auto;
  padding-top: 6px;
  fill: #20b400;
}

.category__price.not-available .buy__icon {
  fill: #c3d0e0;
}

.category__stock {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.product-available,
.product-not-available {
  font-size: 14px;
  line-height: 1.1;
  color: #20b400;
}

.product-not-available {
  color: #c3d0e0;
}

.category__box .link-add-to-favorites {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 34px;
  height: 34px;
  z-index: 5;
  border-radius: 5px;
  background: #fff;
  transition: background-color 0.2s ease-in-out;
}

.link-add-to-favorites-icon {
  display: block;
  margin: 0 auto;
  padding-top: 7px;
  fill: #fff;
  stroke: #c3d0e0;
}

.category__box .link-add-to-favorites:hover {
  background-color: #f2f8ff;
}

.category__box .link-add-to-favorites.in-wishlist .link-add-to-favorites-icon {
  fill: #db0000;
  stroke: #db0000;
}