/**
 * Styles
 *
 * @author Lex Lexter <hi@leximo.cz>
 * @version 1.0.0
 * @website https://leximo.cz/
 */

@font-face {
  font-family: 'Montserrat Fallback';
  size-adjust: 100%;
  src: local('Arial');
}
@font-face {
  font-family: 'Nunito Fallback';
  size-adjust: 100%;
  src: local('Arial');
}

/*
  Bodies
  ***
*/

body {
  position: relative;
  background-color: var(--cr-white);
  font: 300 18px var(--ff-nunito);
  color: var(--cr-black);
}

/*
  Links
  ***
*/

a {
  text-decoration-thickness: 1px;
  color: var(--cr-azure-dark);
}
a:hover {
  color: #1A4438;
}

/*
  Forms
  ***
*/

input, textarea, select, button {
  font: 300 16px var(--ff-nunito);
}

/*
  elem
  ***
*/

/*

.--admin .elem {
  position: relative;
}

*/

/*
  Border
  ---
*/

/*

.--admin .elem:before {
  content: '';
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px dashed transparent;
  border-radius: 24px;
}

*/

/* hover */

/*

.--admin .elem:hover:before {
  background-color: #fff;
  border-color: #333;
}

*/

/*
  Label
  ---
*/

/*

.--admin .elem[data-style]:after {
  content: attr(data-style);
  position: absolute;
  left: 0;
  top: 50%;
  margin: -12px 16px 0 6px;
  padding: 5px 8px 5px 8px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  border: 1px dashed #333;
  border-radius: 24px;
  font-size: 13px;
  color: #333;
  opacity: 0.2;
}

*/

/* hover */

/*

.--admin .elem[data-style]:hover:after {
  opacity: 1;
}

*/

/*
  icon
  ***
*/

.icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: center center no-repeat;
  background-size: contain;
  font-size: 0;
  fill: var(--cr-azure-dark-3);
}

/*
  SVG
  ---
*/

.icon svg {
  fill: var(--cr-azure-dark-3);
}

/*
  - circle
  ---
*/

.icon--circle {
  background-color: var(--cr-peach-light);
  background-size: 70% auto;
  border-radius: var(--rd-circle);
}

/*
  SVG
  ...
*/

.icon--circle svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*
  spinner
  ***
*/

.spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 6.4px solid;
  border-color: var(--cr-azure-dark-3);
  border-right-color: var(--cr-yellow);
  animation: spinner 0.8s infinite linear;
}

@keyframes spinner {

  to {
     transform: rotate(1turn);
  }

}

/*
  lock
  ***
*/

.lock {
  padding: 2px 0 2px 20px;
  background: url('../img/icons/black/lock.svg') left center no-repeat;
}

/*
  - unclock
  ---
*/

.lock--unlock {
  background-image: url('../img/icons/black/unlock.svg');
}

/*
  - reverse
  ---
*/

.lock--reverse {
  padding-left: 0;
  padding-right: 20px;
  background-position: right center;
}

/*
  help
  ***
*/

.help {
  display: inline;
  padding-right: 20px;
  background: url('../img/icons/abbr/help.svg') right center no-repeat;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  font-size: 15px;
  color: #3D3B32;
}

/*
  - info
  ---
*/

.help--info {
  background-image: url('../img/icons/abbr/info.svg');
}

/*
  cartoon
  ***
*/

.cartoon {
  display: block;
  font-size: 0;
}

/*
  IMG
  ---
*/

.cartoon img {
  height: 34px;
  max-width: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

/*
  - size
  ...
*/

@media only screen and (min-width: 1101px) {

  .cartoon--size-large img {
    height: 44px;
  }

}

/*
  space
  ---
*/

.cartoon__space {
  margin: 0 4px;
}

/*
  note
  ***
*/

.note {
  line-height: 1.6;
  font-size: 90%;
  color: var(--cr-grey-60);
}

/*
  Next SAME
  ---
*/

.note + .note {
  margin-top: -10px;
}

/*
  LINK
  ---
*/

.note a {
  color: inherit;
}

/*
  icon
  ---
*/

.note__icon {
  width: 20px;
  height: 20px;
  top: -1px;
  margin-right: 2px;
}

/*
  title
  ***
*/

.title {
  display: table;
}

/*
  icon
  ---
*/

.title__icon {
  display: table-cell;
  background-position: left center;
}

/*
  - like
  ---
*/

.title.--like-h5 .title__icon {
  width: 20px;
}


/*
  text
  ---
*/

.title__text {
  display: table-cell;
  padding-left: 12px;
  line-height: inherit;
}

/*
  num
  ***
*/

.num {
  width: 28px;
  padding: 3px 0 2px 0;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  background-color: var(--cr-peach-light);
  border-radius: var(--rd-piny);
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--cr-black);
}

/*
  - size
  ---
*/

@media only screen and (min-width: 951px) {

  .num--size-large {
    width: 48px;
    padding: 5px 0;
    border-radius: var(--rd-tiny);
    font-size: 24px;
  }
  .num--size-huge {
    width: 60px;
    padding: 5px 0;
    border-radius: var(--rd-small);
    font-size: 30px;
  }

}

/*
  tag
  ***
*/

.tag {
  line-height: 1;
  font-weight: 700;
  font-size: 13px;
  color: var(--cr-black);
}

/*
  label
  ***
*/

.label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 9px 11px 8px 11px;
  background-color: var(--cr-peach-light);
  border-radius: var(--rd-tiny);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  color: var(--cr-grey-80);
}

/*
  - size
  ---
*/

.label--size-tiny {
  padding: 4px 7px;
  font-weight: 700;
  font-size: 10px;
}
.label--size-small {
  padding: 7px 10px 8px 10px;
  font-size: 12px;
}

/*
  - after, - before
  ---
*/

.label--after {
  margin-left: 8px;
}

/*
  icon
  ---
*/

.label__icon {
  width: 16px;
  height: 16px;
  top: -1px;
  margin-right: 2px;
}

/*
  clock
  ***
*/

.clock {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.6;
  font-weight: 600;
  font-size: 16px;
}

/*
  BOLD
  ---
*/

.clock b {
  margin-right: 1px;
  padding: 0 3px;
  background-color: var(--cr-peach-light-3);
  font-weight: 700;
}

/*
  Gaps
  ...
*/

.clock b:first-of-type {
  border-top-left-radius: var(--rd-piny);
  border-bottom-left-radius: var(--rd-piny);
}
.clock b:last-of-type {
  border-top-right-radius: var(--rd-piny);
  border-bottom-right-radius: var(--rd-piny);
}

/*
  slick-arrow
  ***
*/

.slick-arrow {
  width: 44px;
  height: 44px;
  position: relative;
  display: inline-block;
  background-color: var(--cr-yellow);
  border-radius: var(--rd-circle);
  border: none;
  font-size: 0;
}

/* hover */

.slick-arrow:hover {
  background-color: var(--cr-yellow-dark);
}

/*
  Icon
  ---
*/

.slick-arrow:before, 
.slick-arrow:after {
  content: '';
  width: 8px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -4px;
  background-color: var(--cr-black);
}

/*
  - prev
  ...
*/

.slick-arrow.slick-prev:before, 
.slick-arrow.slick-prev:after {
  transform-origin: left center;
}
.slick-arrow.slick-prev:before {
  transform: rotate(-45deg);
}
.slick-arrow.slick-prev:after {
  transform: rotate(45deg);
}

/*
  - next
  ...
*/

.slick-arrow.slick-next:before, 
.slick-arrow.slick-next:after {
  transform-origin: right center;
}
.slick-arrow.slick-next:before {
  transform: rotate(45deg);
}
.slick-arrow.slick-next:after {
  transform: rotate(-45deg);
}

/*
  slick-dots
  ***
*/

.slick-dots {
  margin: 0;
  text-align: center;
  list-style: none;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  line-height: 1;
}

/*
  button
  ---
*/

.slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: #CAC7BF;
  border: none;
  border-radius: var(--rd-circle);
  font-size: 0;
  transition: background-color 150ms linear, 
              width 150ms ease-in-out;
}

/* - active */

.slick-dots li.slick-active button {
  width: 18px;
  background-color: #FDC32F;
}

/*
  grating
  ***
*/

.grating {
  text-align: center;
}

/*
  title
  ---
*/

.grating__title {
  width: 350px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 48px 0 0;
  text-align: left;
  font-size: 90%;
}

/*
  num
  ---
*/

.grating__num {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding-left: 44px;
  background: url('../img/icons/color/star-yellow.svg') left center no-repeat;
  background-size: 32px auto;
  font: 800 44px var(--ff-montserrat);
  color: var(--cr-green);
}

/*
  source
  ---
*/

.grating__source {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 24px;
  padding: 14px 0 10px 24px;
  border-left: 1px solid var(--cr-grey-20);
  text-align: left;
  font-size: 90%;
  color: var(--cr-grey-60);
}

/*
  icon
  ...
*/

.grating__source__icon {
  top: -1px;
  margin: 0 3px 0 0;
}

/*
  note
  ---
*/

.grating__note {
  margin: 16px 0 0 0;
}

/*
  srating
  ***
*/

.srating {
  width: 109px;
  height: 21px;
  position: relative;
  display: table;
  margin: 0;
  font-size: 0;
}

/*
  bar
  ---
*/

.srating__bar {
  display: table-cell;
  background: url('../img/srating.svg') no-repeat;
}

/*
  - align
  ...
*/

.srating__bar--align-left {
  background-position: right top;
}
.srating__bar--align-right {
  background-position: left bottom;
}

/*
  link
  ***
*/

.link {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1.35;
  text-decoration: underline;
  font-weight: 500;
  color: var(--cr-azure-dark);
}

/*
  button
  ***
*/

.button {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 8px 16px 16px 0;
  padding: 12px 26px;
  border: 2px solid var(--cr-peach-light-4);
  border-radius: var(--rd-circle);
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--cr-azure-dark-3);
  cursor: pointer;
}

/*
  [elem]
  ---
*/

#elem-2 .button {
  margin-left: 4px;
  margin-right: 4px;
}

/* actions */

.button:hover {
  border-color: var(--cr-yellow);
}
.button:active {
  border-color: var(--cr-yellow);
}

/*
  Adjust icon
  ---
*/

.button .icon:first-child {
  margin-right: 10px;
}
.button .icon:last-child {
  margin-left: 10px;
}

/*
  - size
  ...
*/

.button--size-tiny .icon:first-child {
  margin-right: 4px;
}
.button--size-tiny .icon:last-child {
  margin-left: 4px;
}

/*
  Exceptions
  ...
*/

.button .icon--cart {
  top: -3px;
}
.button .icon--down {
  top: -1px;
}

/* - active */

.button.--active .icon--down {
  transform: scaleY(-1);
}

/*
  - size
  ---
*/

.button--size-tiny {
  padding: 6px 16px;
  font-size: 12px;
}
.button--size-small {
  padding: 8px 20px;
  font-size: 14px;
}
.button--size-large {
  padding: 18px 36px;
  font-size: 18px;
}
.button--size-huge {
  padding: 24px 42px;
  font-size: 20px;
}
.button--size-full {
  width: 100%;
}

/*
  - color
  ---
*/

.button--color-primary {
  background-color: var(--cr-yellow);
  border: 2px solid var(--cr-yellow);
}
.button--color-secondary {
  background-color: var(--cr-peach-light-2);
  border-color: var(--cr-peach-light-2);
}

/* actions */

.button--color-primary:hover {
  background-color: var(--cr-yellow-dark);
  border-color: var(--cr-yellow-dark);
}
.button--color-primary:active {
  background-color: var(--cr-yellow-dark-2);
  border-color: var(--cr-yellow-dark-2);
}
.button--color-secondary:hover {
  background-color: var(--cr-peach-light);
  border-color: var(--cr-peach-light);
}
.button--color-secondary:active {
  background-color: var(--peach-light-2);
  border-color: var(--cr-peach-light-2);
}

/*
  title
  ---
*/

.button__title {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.6;
  font-weight: 700;
  font-size: 16px;
}

/*
  - size
  ---
*/

.button--size-large .button__title {
  font-size: 18px;
}
.button--size-small .button__title {
  font-size: 14px;
}
.button--size-tiny .button__title {
  font-size: 14px;
}

/*
  SMALL
  ...
*/

.button__title small {
  display: block;
  padding-bottom: 3px;
  font-weight: 400;
  font-size: 80%;
}

/*
  - color
  ---
*/

.button--color-secondary .button__title {
  text-decoration: underline;
}

/*
  button---list
  ***
*/

.button---list {
  margin: 16px 0;
}
.button---list__inset {
  margin: 0 -12px -12px 0;
  text-align: left;
  font-size: 0;
}

/*
  Adjust button
  ---
*/

.button---list .button {
  margin: 0 12px 12px 0;
}

/*
  - ta
  ---
*/

.button---list.--ta-center .button---list__inset {
  text-align: center;
}
.button---list.--ta--right .button---list__inset {
  text-align: right;
}

/*
  Adjust button
  ...
*/

.button---list.--ta-center .button {
  margin-left: 6px;
  margin-right: 6px;
}
.button---list.--ta--right .button {
  margin-left: 12px;
  margin-right: 0;
}

/*
  input
  ***
*/

.input {
  box-sizing: border-box;
  max-width: 100%;
  display: block;
  padding: 12px 20px;
  background: var(--cr-white) right 12px center no-repeat;
  border: 2px solid var(--cr-grey-30);
  border-radius: var(--rd-tiny);
  font-size: 16px;
}

/*
  - error
  ---
*/

.input.--error {
  border-color: var(--cr-red);
}

/*
  - width
  ---
*/

.input--width-full {
  width: 100%;
}

/*
  select
  ---
*/

select.input {
  padding-right: 36px;
  background-image: url('../img/icons/blue/down.svg');
}

/*
  checkbox, radio
  ---
*/

.input[type="checkbox"], 
.input[type="radio"] {
  appearance: none;
  width: 24px !important;
  height: 24px !important;
  float: left;
  margin: 0 8px 0 0;
  padding: 0;
  background: var(--cr-white) center center no-repeat;
  border-radius: 4px;
}
.input[type="checkbox"] {
  background-image: url('../img/icons/white/check.svg');
}
.input[type="radio"] {
  border-radius: var(--rd-circle);
}

/* checked */

.input[type="checkbox"]:checked, 
.input[type="radio"]:checked {
  background-color: var(--cr-azure);
}
.input[type="checkbox"]:checked {
  border-color: var(--cr-azure);
}
.input[type="radio"]:checked {
  box-shadow: inset 0 0 0 4px var(--cr-white);
}

/*
  input-row
  ***
*/

.input-row {
  box-sizing: border-box;
  max-width: 100%;
  position: relative;
  bottom: -3px;
  vertical-align: bottom;
  padding: 6px 0;
  background: transparent right 12px no-repeat;
  border: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid var(--cr-grey-20);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--cr-black);
}

/* focus */

.input-row:focus {
  border-bottom-color: var(--cr-azure);
  outline: none;
}

/*
  - error
  ---
*/

.input-row.--error {
  border-bottom-color: var(--cr-red);
}

/*
  : placeholder
  ---
*/

.input-row::placeholder {
  font-weight: 400;
  color: var(--cr-azure);
  opacity: 1;
}

/*
  SELECT
  ---
*/

select.input-row {
  padding-right: 24px;
  background-image: url('../img/icons/color/down-azure.svg');
}

/*
  input-submit
  ***
*/

.input-submit {
  height: 50px;
  padding: 0 26px;
  background: var(--cr-yellow) url('../img/input-submit.gif') -100px center no-repeat;
  border-radius: var(--rd-circle);
  border: none;
  font-weight: 700;
  font-size: 17px;
  color: var(--cr-azure-dark-3);
  transition: 150ms ease-in-out;
}

/* - loading */

.input-submit--loading {
  padding-left: 42px;
  background-position: 12px center;
}

/*
  field
  ***
*/

.field {
  margin-bottom: 16px;
  text-align: left;
}

/*
  - contain-checkboxes, contain-radios
  ---
*/

.field--contain-checkboxes label, 
.field--contain-radios label {
  display: block;
  padding: 4px 0;
  line-height: 1.6;
  font-size: 16px;
}

/*
  Clear
  ...
*/

.field--contain-checkboxes label:after {
  content: '';
  display: table;
  clear: both;
}

/*
  Adjust clock
  ...
*/

.field--contain-checkboxes label .clock {
  margin-left: 8px;
}

/*
  label
  ---
*/

.field__label {
  display: block;
  margin-bottom: 6px;
  line-height: 1.6;
  font-weight: 700;
  font-size: 16px;
}

/*
  STRONG
  ...
*/

.field__label strong {
  color: var(--cr-red);
}

/*
  excerpt
  ---
*/

.field__excerpt {
  display: block;
  margin: 7px 0 0 0;
  line-height: 1.5;
  font-style: italic;
  font-size: 14px;
}

/*
  error
  ---
*/

.field__error {
  display: block;
  margin: 7px 0 0 0;
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
  color: var(--cr-red);
}

/*
  flash
  ***
*/

.flash {
  margin-bottom: 24px;
}
.flash__inset {
  position: relative;
  margin: 0;
  padding: 13px 24px 12px 24px;
  background-color: var(--cr-azure-light-2);
  border-radius: var(--rd-tiny);
  line-height: 1.6;
  font-weight: 500;
  font-size: 16px;
}

/*
  + Same
  ---
*/

.flash + .flash {
  margin-top: -16px;
}

/*
  - inline
  ---
*/

.flash--inline {
  display: inline-block;
}

/*
  - table
  ---
*/

.flash--table {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

/*
  - button
  ---
*/

.flash--button .flash__inset {
  padding-right: 200px;
}

/*
  - icon
  ---
*/

.flash--icon .flash__inset {
  padding-left: 67px;
  text-align: left;
}

/*
  - type
  ---
*/

.flash--type-info .flash__inset {
  color: var(--cr-azure);
}
.flash--type-success .flash__inset {
  background-color: var(--cr-green-light-3);
  color: var(--cr-green-dark-2);
}
.flash--type-warning .flash__inset {
  background-color: var(--cr-orange-light);
  color: var(--cr-orange-dark);
}
.flash--type-error .flash__inset {
  background-color: var(--cr-red-light);
  color: var(--cr-red);
}

/*
  Adjust button
  ---
*/

@media only screen and (min-width: 851px) {

  .flash--button .button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }

}

/*
  close
  ---
*/

.flash__close {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 12px;
  background: url('../img/icons/color/times-red.svg') center center no-repeat;
  background-size: contain;
  text-decoration: none;
  font-size: 0;
}

/*
  title
  ---
*/

.flash__title {
  font-weight: 700;
}

/*
  excerpt
  ---
*/

.flash__excerpt {
  display: block;
  line-height: inherit;
  font-size: 90%;
}

/*
  icon
  ---
*/

.flash__icon {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 100%;
  top: 50%;
  margin: -20px 16px 0 0;
}

/*
  - icon
  ---
*/

.flash--icon .flash__icon {
  right: auto;
  left: 16px;
}

/*
  table
  ---
*/

.flash__table {
  width: 100%;
  display: table;
  line-height: inherit;
}

/*
  cell
  ...
*/

.flash__table__cell {
  display: table-cell;
  vertical-align: middle;
  line-height: inherit;
}

/*
  Caps
*/

.flash__table__cell:last-child {
  padding-left: 12px;
  white-space: nowrap;
}

/* Adjust button */

.flash__table__cell:last-child .button {
  margin: 0 0 0 8px;
}

/*
  aggreement
  ***
*/

.agreement {
  font-size: 15px;
}

/*
  line
  ---
*/

.agreement__line {
  display: block;
  margin: 0 0 8px 0;
  line-height: 1.6;
}

/*
  Caps
  ...
*/

.agreement__line:last-child {
  margin-bottom: 0;
}

/*
  input
  ...
*/

.agreement__input {
  position: relative;
  top: -1px;
  float: none !important;
  display: inline-block;
  vertical-align: middle;
}

/*
  form
  ***
*/

.form {
  display: block;
}

/*
  section
  ---
*/

.form__section {
  display: block;
}

/*
  title
  ...
*/

.form__section__title {
  width: 100%;
  float: left;
  clear: both;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cr-peach-light-3);
  line-height: 1.6;
  font-weight: 600;
  font-size: 15px;
}

/*
  legend
  ---
*/

.form__legend {
  margin: 0 0 26px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cr-peach-light-3);
  list-style: none;
  font-size: 15px;
}
.form__legend > li {
  margin-bottom: 4px;
}

/*
  form-notify
  ***
*/

.form-notify {
  display: block;
  margin-bottom: 16px;
}

/*
  Adjust input
  ---
*/

.form-notify .input {
  width: 100%;
  border-radius: 32px;
  text-align: center;
}

/*
  Adjust input-submut
  ---
*/

.form-notify .input-submit {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 -18px;
}

/*
  Adjust field
  ---
*/

.form-notify .field {
  width: 320px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.form-notify .field__label {
  display: none;
}

/*
  form-apply
  ***
*/

.form-apply {
  display: block;
  margin-bottom: 16px;
  font-size: 0;
}

/*
  field
  ---
*/

.form-apply__field {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

/*
  button
  ---
*/

.form-apply__button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 16px;
}

/*
  link
  ---
*/

.form-apply__link {
  display: inline-block;
  margin: 0 0 0 16px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 16px;
}

/*
  form-contact
  ***
*/

.form-contact {
  display: block;
}

/*
  Adjust input
  ---
*/

.form-contact .input {
  width: 100%;
}

/*
  head
  ---
*/

.form-contact__head {
  width: 285px;
  float: left;
  margin-bottom: 16px;
  text-align: center;
}

/*
  content
  ---
*/

.form-contact__content {
  overflow: hidden;
  margin: 0 0 16px 335px;
  padding-left: 50px;
  border-left: 1px solid var(--cr-peach-light-3);
}

/*
  form-newsletter
  ***
*/

.form-newsletter {
  display: block;
}

/*
  Adjust input
  ---
*/

.form-newsletter .input {
  width: 100%;
}

/*
  Adjust input-submit
  ---
*/

.form-newsletter .input-submit {
  height: 50px;
  float: right;
}

/*
  Adjust field
  ---
*/

.form-newsletter .field {
  width: calc(100% - 134px);
  float: left;
  margin: 0;
}
.form-newsletter .field__label {
  display: none;
}

/*
  excerpt
  ---
*/

.form-newsletter__excerpt {
  margin: 0;
}

/*
  fields
  ---
*/

.form-newsletter__fields {
  max-width: 75%;
  position: relative;
  margin: 16px auto 0 auto;
  font-size: 0;
}

/*
  form-filter
  ***
*/

.form-filter {
  display: block;
}

/*
  - border
  ---
*/

.form-filter--border .form-filter__inset {
  padding: 32px 36px 16px 36px;
  border: 2px solid var(--cr-peach-light-3);
  border-radius: var(--rd-small);
}

/*
  toggler
  ---
*/

.form-filter__toggler {
  display: table;
  margin: 0 auto;
}

/*
  Next
  ...
*/

.form-filter__toggler + .form-filter__inset {
  margin-top: 24px;
}

/*
  title
  ---
*/

.form-filter__title {
  margin: 0 0 24px 0;
}

/*
  table
  ---
*/

.form-filter__table {
  width: 100%;
  width: calc(100% + 32px);
  display: table;
  border-spacing: 16px 0;
  margin: 0 0 -16px -16px;
}

/*
  Adjust field
  ...
*/

.form-filter__table .field {
  margin-bottom: 32px;
}

/*
  cell
  ...
*/

.form-filter__table__cell {
  display: table-cell;
  vertical-align: top;
}


/*
  form-text
  ***
*/

.form-text {
  overflow: hidden;
}

/*
  Adjust input-submit
  ---
*/

.form-text .input-submit {
  float: left;
  margin-top: 4px;
}

/*
  row
  ---
*/

.form-text__row {
  margin: 0 0 16px 0;
  font-weight: 600;
  font-size: 17px;
}

/*
  Adjust input-row
  ...
*/

.form-text__row .input-row {
  margin: 0 6px;
}

/*
  sibling
  ---
*/

.form-text__sibling {
  display: inline;
}

/*
  show
  ...
*/

.form-text__sibling__show {
  margin-left: 6px;
  text-decoration: none;
}

/* - active */

.form-text__sibling.--active .form-text__sibling__show {
  display: none;
}

/*
  content
  ...
*/

.form-text__sibling__content {
  display: none;
}

/* - active */

.form-text__sibling.--active .form-text__sibling__content {
  display: inline;
}

/*
  note
  ---
*/

.form-text__note {
  margin: 24px 0;
  font-size: 85%;
}

/*
  After input-submit
  ...
*/

.input-submit + .form-text__note {
  margin: 0 0 0 160px;
  padding-top: 8px;
}

/*
  form-search-extended
  ***
*/

.form-search-extended__inset {
  padding: 42px 84px 42px 246px;
  background: var(--cr-azure-light) 84px center no-repeat;
  background-size: auto 80%;
  border-radius: var(--rd-medium);
  text-align: left;
}

/*
  button
  ---
*/

.form-search-extended__button {
  margin: 0;
}

/*
  field
  ---
*/

.form-search-extended__field {
  margin: 0;
}

/*
  flash
  ---
*/

.form-search-extended__flash {
  margin: 16px 0 0 0;
}

/*
  form-search
  ***
*/

.form-search {
  padding: 0 24px;
  background-color: var(--cr-azure-light);
  border-radius: var(--rd-medium);
}
.form-search__inset {
  max-width: 360px;
  margin: 0 auto;
  padding: 20px 30px 20px 120px;
  background: left bottom no-repeat;
}
.form-search__inset__inset {
  position: relative;
}

/*
  input
  ---
*/

.form-search__input {
  box-sizing: border-box;
  width: 100%;
  padding-right: 120px;
}

/*
  button
  ---
*/

.form-search__button {
  position: absolute;
  right: 6px;
  top: 6px;
  padding: 9px 12px 9px 12px;
  background-color: var(--cr-azure-dark-2);
  border: none;
  border-radius: var(--rd-tiny);
  font-size: 15px;
  font-weight: 600;
  color: var(--cr-white);
}

/*
  form-lecture
  ***
*/

.form-lecture__inset {
  position: relative;
  padding-left: 600px;
  background-color: var(--cr-pink);
  border-radius: var(--rd-medium);
}

/*
  - layout
  ---
*/

.--layout-cermat .form-lecture {
  margin: 42px -130px 0;
}

/*
  Adjust input
  ---
*/

.form-lecture .input {
  width: 100%;
}

/*
  Adjust field
  ...
*/

.form-lecture .field {
  margin-bottom: 12px;
}

/*
  - contain
  ...
*/

.form-lecture .field--contain-radios {
  margin: 16px 0;
}
.form-lecture .field--contain-radios label {
  display: inline-block;
  margin-right: 24px;
}

/*
  label
  ...
*/

.form-lecture .field__label {
  position: absolute;
  left: -10000px;
}

/*
  image
  ---
*/

.form-lecture__image {
  width: 600px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--cr-grey-20) center center no-repeat;
  background-size: cover;
  border-radius: var(--rd-medium) 0 0 var(--rd-medium);
}

/*
  Skew
  ...
*/

.form-lecture__image:before {
  content: '';
  width: 150px;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  transform: skewX(-7deg) translateX(-50px);
  background-color: var(--cr-pink);
}

/*
  content
  ---
*/

.form-lecture__content {
  position: relative;
  z-index: 1;
  padding: 58px 52px 112px 52px;
}

/*
  title
  ---
*/

.form-lecture__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.form-lecture__excerpt {
  margin: 8px 0 16px 0;
}

/*
  note
  ---
*/

.form-lecture__note {
  margin: 12px 0 0 0;
}

/*
  item-06
  ---
*/

.form-lecture__item-06 {
  position: relative;
  z-index: 2;
  max-width: 661px;
  margin: -80px auto 0 auto;
}

/*
  - image
  ---
*/

.note--image {
  padding: 6px 90px 6px 0;
  background: right center no-repeat;
}

/*
  badge
  ***
*/

.badge {
  display: block;
}
.badge__inset {
  width: 180px;
  height: 180px;
  display: table;
  background-color: var(--cr-peach-light);
  border-radius: var(--rd-circle);
  text-align: center;
  font-size: 15px;
}
.badge__inset__inset {
  display: table-cell;
  vertical-align: middle;
  padding: 10% 17%;
}

/*
  title
  ---
*/

.badge__title {
  margin: 8px 0 0 0;
  line-height: 1.4;
}

/*
  -- list
  ---
*/

.badge---list {
  display: inline-block;
  list-style: none;
}

/*
  Adjust badge
  ---
*/

.badge---list .badge {
  margin: 0 0 -24px 0;
  line-height: 1;
}

/*
  Gaps
  ...
*/

.badge---list .badge:last-child {
  margin-bottom: 0;
}

/*
  icon
  ---
*/

.badge__icon {
  width: 62px;
  height: 62px;
}

/*
  dialog
  ***
*/

.dialog {
  display: block;
  max-width: 540px;
  margin: 0 auto;
}

/*
  Adjust form-newsletter
  ---
*/

.dialog .form-newsletter {
  margin-top: 24px;
}

/*
  icon
  ---
*/

.dialog__icon {
  width: 102px;
  height: 102px;
  margin-bottom: 24px;
}

/*
  - small
  ...
*/


.dialog__icon--small {
  width: 62px;
  height: 62px;;
}

/*
  title
  ---
*/

.dialog__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.dialog__excerpt {
  margin: 12px 0 12px 0;
}

/*
  contact
  ***
*/

.contact {
  position: relative;
  font-size: 16px;
}

/*
  - icon
  ---
*/

.contact--icon {
  padding-left: 58px;
}

/*
  icon
  ---
*/

.contact__icon {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: -10px;
  background-size: auto 32px;
}

/*
  title
  ---
*/

.contact__title {
  margin: 0;
}

/*
  contact__excerpt
  ---
*/

.contact__excerpt {
  margin: 8px 0 0 0;
}

/*
  contact__methods
  ---
*/

.contact__methods {
  margin: 8px 0 0 0;
}

/*
  LINK
  ---
*/

.contact__methods a {
  display: block;
  text-decoration: none;
  font: 700 17px var(--ff-montserrat);
  line-height: 1.4;
  color: var(--cr-azure-dark-2);
}

/*
  Gaps
  ...
*/

.contact__methods a:first-child {
  font-size: 30px;
}

/*
  contact__button---list
  ---
*/

.contact__button---list {
  margin: 12px 0 0 0;
}

/*
  list-params
  ***
*/

.list-params {
  display: block;
  list-style: none;
  margin-left: 0;
  font-size: 0;
}
.list-params li {
  display: inline-block;
  vertical-align: top;
  margin-right: 12px;
  font-size: 15px;
}

/*
  Adjust label
  ---
*/

.list-params .label {
  display: table;
}
.list-params .label--inline {
  display: inline-block;
}

/*
  list-stats
  ***
*/

.list-stats {
  display: block;
}

/*
  list
  ---
*/

.list-stats__list {
  margin: 0 -16px -32px -16px;
  list-style: none;
  text-align: center;
  font-size: 0;
}

/*
  item
  ---
*/

.list-stats__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 16px 32px -16px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 16px;
}

/*
  cartoon
  ...
*/

.list-stats__item__cartoon {
  margin-bottom: 16px;
}

/*
  list-logos
  ***
*/

.list-logos {
  overflow: hidden;
}

/*
  list
  ---
*/

.list-logos__list {
  margin: 0 -10px -20px -10px;
  list-style: none;
  text-align: center;
  font-size: 0;
}

/*
  ITEM
  ...
*/

.list-logos__list li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 20px 10px;
  line-height: 1;
}

/*
  Elements
  ...
*/

.list-logos__list img, 
.list-logos__list a {
  display: block;
  margin: 0;
}

/*
  list-promote
  ***
*/

.list-promote__inset {
  width: calc(100% + 56px);
  display: table;
  margin-left: -28px;
  border-collapse: separate;
  border-spacing: 28px 0;
  margin: 0;
}

/*
  list
  ---
*/

.list-promote__list {
  display: table-cell;
  vertical-align: top;
  list-style: none;
  font-size: 0;
}

/*
  - align-left
  ...
*/

.list-promote__list--align-left {
  width: 182px;
  border-right: 1px solid var(--cr-peach-light-3);
}

/*
  ITEM
  ...
*/

.list-promote__list li {
  margin: 0;
  line-height: 1;
  font-size: 15px;
}

/*
  - align-right
  ...
*/

.list-promote__list--align-right li {
  width: 25%;
  display: inline-block;
  vertical-align: middle;
}

/*
  LINK
  ...
*/

.list-promote__list a {
  overflow: hidden;
  display: block;
  margin-right: 28px;
  padding: 3px 12px;
  line-height: 1.6;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* hover */

.list-promote__list a:hover {
  background-color: var(--cr-azure-light);
  border-radius: var(--rd-piny);
}

/*
  list-socials
  ***
*/

.list-socials {
  margin: 0;
  line-height: 1;
  font-size: 0;
}

/*
  LINK
  ---
*/

.list-socials a {
  display: inline-block;
  margin: 0 10px 0 0;
}

/*
  - ta
  ...
*/

.list-socials.--ta-center a {
  margin: 0 5px;
}

/*
  IMG
  ...
*/

.list-socials a img {
  margin: 0;
}

/*
  list-iconize
  ***
*/

.list-iconize {
  margin-left: 0;
  list-style: none;
}
.list-iconize > li {
  position: relative;
  padding-left: 24px;
}

/*
  Icon
  ---
*/

.list-iconize > li:before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 5px;
  background: center center no-repeat;
  background-size: contain;
}

/*
  [style]
  ...
*/

.list-iconize li[style*="--icon"] {
  padding: 6px 0 6px 54px;
}

/*
  - icon
  ...
*/

.list-iconize > li.--check-orange:before {
  background-image: url('../img/icons/color/check-orange.svg');
}
.list-iconize > li.--check-green:before {
  background-image: url('../img/icons/color/check-green.svg');
}
.list-iconize > li.--plus-green:before {
  background-image: url('../img/icons/color/plus-green.svg');
}
.list-iconize > li.--times-red:before {
  background-image: url('../img/icons/color/times-red.svg');
}
.list-iconize > li.--minus-grey:before {
  background-image: url('../img/icons/color/minus-grey.svg');
}

/*
  [style]
*/

.list-iconize li[style*="--icon"]:before {
  width: 40px;
  height: 100%;
  background-image: var(--icon);
}

/*
  list-numerize
  ***
*/

.list-numerize {
  margin-left: 0;
  list-style: none;
  counter-reset: numerize;
}

/*
  ITEM
  ---
*/

.list-numerize > li {
  position: relative;
  padding: 2px 0 2px 42px;
  counter-increment: numerize;
}

/*
  Gaps
  ...
*/

.list-numerize > li:first-child {
  margin-top: 0;
}
.list-numerize > li:last-child {
  margin-bottom: 0;
}

/*
  - timeline
  ...
*/

.list-numerize--timeline > li {
  margin: 24px 0;
}

/*
  Line
*/

.list-numerize--timeline > li:after {
  content: '';
  width: 1px;
  position: absolute;
  left: 15px;
  top: 37px;
  bottom: -16px;
  background-color: var(--cr-azure-dark-2);
}

/* - color */

.list-numerize--timeline.list-numerize--color-yellow > li:after {
  background-color: var(--cr-yellow);
}

/* Gaps */

.list-numerize--timeline > li:last-child:after {
  display: none;
}

/*
  Number
  ...
*/

.list-numerize > li:before {
  content: counter(numerize);
  width: 27px;
  position: absolute;
  left: 0;
  top: 3px;
  padding: 3px 0 2px 0;
  background-color: var(--cr-azure-dark-2);
  border-radius: var(--rd-piny);
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--cr-white);
}

/*
  - fs
*/

.list-numerize > li.--fs-small:before {
  top: 1px;
}

/*
  - ta
*/

.list-numerize.--ta-center > li:before {
  position: relative;
  left: auto;
  top: auto;
  display: table;
  margin: 0 auto 8px auto;
}

/*
  - color
*/

.list-numerize--color-yellow > li:before {
  background-color: var(--cr-yellow);
  color: var(--cr-black);
}

/*
  - circle
*/

.list-numerize--circle > li:before {
  box-shadow: 0 0 0 5px var(--cr-azure-light-2);
  border-radius: var(--rd-small);
}

/* - color */

.list-numerize--color-yellow.list-numerize--circle > li:before {
  box-shadow: 0 0 0 5px var(--cr-yellow-light);
}

/*
  nav-tabs
  ***
*/

.nav-tabs {
  position: relative;
  overflow-y: hidden;
  overflow-x: auto;
  text-align: left;
  white-space: nowrap;
  font-size: 0;
}

/*
  - align
  ---
*/

.nav-tabs--align-center {
  text-align: center;
}

/*
  item
  ---
*/

.nav-tabs__item {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  margin: 0 4px 0 0;
  padding: 26px 32px 26px 68px;
  background-color: var(--cr-peach-light-2);
  border-radius: var(--rd-tiny) var(--rd-tiny) 0 0;
  line-height: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--cr-black);
}

/* - hover */

.nav-tabs__item:hover {
  background-color: var(--cr-peach-light);
}

/* - active */

.nav-tabs__item.--active {
  background-color: var(--cr-peach-light);
}

/*
  - align
  ---
*/

.nav-tabs--align-center .nav-tabs__item {
  margin: 0 2px;
}


/*
  Adjust icon
  ---
*/

.nav-tabs__item .icon {
  width: 28px;
  position: absolute;
  left: 24px;
  top: 20px;
  bottom: 20px;
}

/*
  nav-fields
  ***
*/

.nav-fields {
  position: relative;
  text-align: center;
}

/*
  Adjust button
  ---
*/

.nav-fields__button {
  margin: 16px 0 0 0;
}

/*
  title
  ---
*/

.nav-fields__title {
  margin: 0 0 16px 0;
}

/*
  list
  ---
*/

.nav-fields__list {
  margin: 0 -4px 0 0;
  list-style: none;
  text-align: left;
  font-size: 0;
}
.nav-fields__list > li {
  box-sizing: border-box;
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0 4px 4px 0;
  line-height: 1;
}
.nav-fields__list > li > a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 9px 16px 9px 50px;
  background-color: var(--cr-white);
  box-shadow: var(--sh-tiny);
  border-radius: var(--rd-circle);
  line-height: 1.6;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--cr-black);
}

/* hover */

.nav-fields__list > li:hover > a {
  background-color: var(--cr-azure-light);
}

/* - active */

.nav-fields__list > li.--active > a {
  background-color: var(--cr-azure-light);
}

/*
  - col
  ---
*/

.nav-fields__list > li.--col-1 {
  width: 100%;
  margin-bottom: 12px;
}

/*
  Adjust icon
  ---
*/

.nav-fields__list .icon {
  width: 22px;
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
}

/*
  nav-pagination
  ***
*/

.nav-pagination {
  text-align: center;
  font-size: 0;
}

/*
  link
  ---
*/

.nav-pagination__link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  padding: 14px 18px;
  background-color: var(--cr-white);
  box-shadow: var(--sh-small);
  border-radius: var(--rd-circle);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--cr-black);
}

/* hover */

.nav-pagination__link:hover {
  background-color: var(--cr-peach-light-3);
  box-shadow: none;
}

/* - active */

.nav-pagination__link.--active {
  background-color: var(--cr-peach-light-3);
  box-shadow: none;
}

/*
  Adjust icon
  ...
*/

.nav-pagination__link .icon {
  top: -2px;
  fill: var(--cr-black);
}

/*
  Gaps
*/

.nav-pagination__link .icon:first-child {
  margin-right: 6px;
}
.nav-pagination__link .icon:last-child {
  margin-left: 6px;
}

/*
  nav-steps
  ***
*/

.nav-steps {
  position: relative;
  display: table;
  table-layout: fixed;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
  font-size: 0;
}

/*
  border
  ---
*/

.nav-steps:before {
  content: '';
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 13px;
  bottom: 0;
  box-shadow: var(--sh-medium);
  border-right: none;
  border-radius: var(--rd-circle) 0 0 var(--rd-circle);
}

/*
  item
  ---
*/

.nav-steps__item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 -13px;
  background: url('../img/nav-steps__item.png') right top no-repeat;
  line-height: 1;
}
.nav-steps__item__inset {
  height: 66px;
  display: block;
  padding: 14px 28px 0 30px;
  line-height: 1.6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--cr-black);
}

/*
  Caps
  ...
*/

.nav-steps__item:first-child {
  border-radius: var(--rd-circle) 0 0 var(--rd-circle);
}

/*
  Reorder
  ...
*/

.nav-steps__item:nth-child(1) {
  z-index: 5;
}
.nav-steps__item:nth-child(2) {
  z-index: 4;
}
.nav-steps__item:nth-child(3) {
  z-index: 3;
}
.nav-steps__item:nth-child(4) {
  z-index: 2;
}
.nav-steps__item:nth-child(5) {
  z-index: 1;
}

/* - active */

.nav-steps__item.--active {
  background-position: right bottom;
}

/* - past */

.nav-steps__item.--past {
  background-position: right center;
}

/*
  SMALL
  ...
*/

.nav-steps__item small {
  width: 24px;
  height: 18px;
  display: table;
  margin: 0 auto 4px auto;
  padding: 6px 0 0 0;
  background: center center no-repeat;
  background-size: auto 50%;
  border: 2px solid var(--cr-grey-30);
  border-radius: var(--rd-tiny);
  color: var(--cr-grey-30);
}

/* - active, past */

.nav-steps__item.--active small, 
.nav-steps__item.--past small {
  background-color: var(--cr-azure-dark-2);
  border-color: var(--cr-azure-dark-2);
  color: var(--cr-white);
}

/* - past */

.nav-steps__item.--past small {
  background-image: url('../img/icons/white/check.svg');
  font-size: 0;
}

/*
  nav-drop
  ***
*/

.nav-drop {
  pointer-events: none;
  width: 280px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding-top: 16px;
  text-align: left;
  opacity: 0;
}

/* hover */

.nav-drop---holder:hover > .nav-drop {
  pointer-events: all;
  opacity: 1;
}

/*
  - size
  ---
*/

.nav-drop--size-small {
  width: 200px;
  padding-top: 8px;
}

/*
  - align
  ---
*/

.nav-drop--align-right {
  left: auto;
  right: 0;
  transform: none;
  text-align: right;
}

/*
  2nd level
  ---
*/

.nav-drop .nav-drop {
  left: 100%;
  top: 0;
  transform: none;
  padding: 0 0 0 32px;
}

/*
  list
  ---
*/

.nav-drop__list {
  margin: 0;
  padding: 16px;
  background-color: var(--cr-white);
  box-shadow: var(--sh-medium);
  border-radius: var(--rd-small);
  list-style: none;
}
.nav-drop__list > li {
  position: relative;
  margin: 0;
  line-height: 1;
}
.nav-drop__list > li > a {
  position: relative;
  display: block;
  padding: 8px 16px;
  border-radius: var(--rd-tiny);
  line-height: 1.5;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--cr-black);
}
.nav-drop__list > li > a  > img {
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 6px;
  border-radius: 24px;
}

/* hover */

.nav-drop__list > li:hover > a {
  background-color: var(--cr-peach-light);
}

/* active */

.nav-drop__list > li.--active > a {
  color: var(--cr-azure-dark);
}

/*
  Adjust icon
  ...
*/

.nav-drop__list > li > a > .icon {
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -7px;
}

/*
  nav-sub
  ***
*/

.nav-sub {
  text-align: center;
  font-size: 0;
}
.nav-sub__inset {
  margin-bottom: -8px;
}

/*
  title
  ---
*/

.nav-sub__title {
  display: inline-block;
  margin: 0 12px 0 0;
  line-height: 1.6;
  font-weight: 400;
  font-size: 15px;
  color: var(--cr-black);
}

/*
  LINK
  ---
*/

.nav-sub a {
  display: inline-block;
  margin: 0 3px 8px 3px;
  padding: 8px 14px;
  background-color: var(--cr-white);
  box-shadow: var(--sh-tiny);
  border-radius: var(--rd-circle);
  line-height: 1.6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

/* hover */

.nav-sub a:hover {
  background-color: var(--cr-peach-light-3);
  box-shadow: none;
}

/* - active */

.nav-sub a.--active {
  background-color: var(--cr-peach-light-3);
  box-shadow: none;
}

/*
  Gaps
  ...
*/

.nav-sub a:last-child {
  margin-right: 0;
}

/*
  table-simple
  ***
*/

.table-simple {
  min-width: 1px !important;
  position: relative;
}

/*
  ROWS
  ---
*/

.table-simple tr {
  box-shadow: none;
}

/*
  CELLS
  ---
*/

.table-simple th, 
.table-simple td {
  padding: 2px 6px 2px 0;
}

/*
  - borders
  ...
*/

.table-simple--borders th, 
.table-simple--borders td {
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid var(--cr-grey-20);
}


/*
  Caps
  ...
*/

.table-simple th:first-child, 
.table-simple td:first-child, 
.table-simple th:last-child, 
.table-simple td:last-child {
  border-radius: 0;
}

/*
  table-cart
  ***
*/

.table-cart {
  position: relative;
  background-color: var(--cr-peach-light-2);
  border-radius: var(--rd-tiny);
}

/*
  table
  ---
*/

.table-cart__table {
  margin: 0;
  border-collapse: collapse;
}

/*
  Rows
  ...
*/

.table-cart__table tr {
  margin: 0;
  box-shadow: none;
}

/*
  - important
*/

.table-cart__table tr.--important {
  background-color: var(--cr-white);
  box-shadow: var(--sh-medium);
  font-size: 18px;
}

/*
  - unimportant
*/

.table-cart__table tr.--unimportant {
  background-color: rgba(0, 0, 0, 0.025);
  font-size: 14px;
}

/*
  CELLS
  ...
*/

.table-cart__table th, 
.table-cart__table td {
  padding: 17px 24px;
  background: transparent !important;
  border-top: 1px solid var(--cr-peach-light-3);
  border-bottom: none;
  border-radius: 0 !important;
}

/*
  - size
*/


.table-cart__table--size-small th, 
.table-cart__table--size-small td {
  padding-top: 12px;
  padding-bottom: 12px;
}


/*
  THEAD
  ...
*/

.table-cart__table thead th, 
.table-cart__table thead td {
  padding: 12px 24px;
  border-top: none;
}

/*
  TBODY
  ...
*/

.table-cart__table tbody th {
  font-weight: 600;
}

/*
  detail-order
  ***
*/

.detail-order {
  max-width: 720px;
  position: relative;
  margin: 0 auto;
}

/*
  head-01
  ---
*/

.detail-order__head-01 {
  margin-left: -92px;
  margin-right: -92px;
}

/*
  nav-steps
  ---
*/

.detail-order__nav-steps {
  margin-bottom: 42px;
}

/*
  content
  ---
*/

.detail-order__content {
  margin-top: 42px;
}

/*
  Next SAME
  ...
*/

.detail-order__content + .detail-order__content {
  margin-top: 32px;
}

/*
  buttons
  ---
*/

.detail-order__buttons {
  margin-top: 42px;
}

/*
  Adjust button
  ...
*/

.detail-order__buttons .button {
  margin: 0;
}

/*
  Caps
*/

.detail-order__buttons .button:first-child {
  float: right;
  margin: 0;
}
.detail-order__buttons .button:last-child {
  float: left;
  margin: 8px 0 0 0;
}

/*
  Adjust selection
*/

.detail-order__buttons .selection {
  float: left;
  margin-top: 10px;
}

/*
  selection
  ***
*/

.selection {
  position: relative;
  padding: 1px 94px 0 0;
  line-height: 1.3;
  font-size: 18px;
}

/*
  title
  ---
*/

.selection__title {
  display: block;
  line-height: inherit;
}

/*
  link
  ---
*/

.selection__link {
  display: block;
  margin-top: 2px;
  line-height: inherit;
  font-size: 15px;
}

/*
  count
  ---
*/

.selection__count {
  box-sizing: border-box;
  width: 75px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 14px 12px;
  background-color: var(--cr-azure);
  border-radius: var(--rd-circle);
  text-align: center;
  font-weight: 500;
  color: var(--cr-white);
}

/*
  table-list
  ***
*/

.table-list {
  position: relative;
}

/*
  pagination
  ---
*/

.table-list__pagination {
  margin: 32px 0 6px 0;
}

/*
  button---list
  ---
*/

.table-list__button---list {
  margin-top: 32px;
}
/*
  label
  ---
*/

.table-list__label {
  margin-left: 12px;
}

/*
  Cells
  ---
*/

.table-list th, 
.table-list td {
  vertical-align: middle;
}

/*
  - small
  ...
*/

.table-list__table--size-small th, 
.table-list__table--size-small td {
  padding: 8px 20px;
}


/*
  - input
  ...
*/

.table-list th.--input, 
.table-list td.--input {
  width: 24px;
  padding-right: 0;
}

/*
  Adjust input
*/

.table-list th.--input .input, 
.table-list td.--input .input {
  float: none;
  margin: 0;
}

/*
  scroll
  ---
*/

.table-list__scroll {
  overflow-x: auto;
  overflow-y: hidden;
}

/*
  table
  ---
*/

.table-list__table {
  width: 100%;
  margin: 0;
}

/*
  Adjust label
  ...
*/

.table-list__table .label {
  margin: 0 4px 4px 0;
}

/*
  Adjust button
  ...
*/

.table-list__table .button {
  margin: 0 6px 0 0;
}


/*
  -- list
  ---
*/

.table-list---list {
  position: relative;
}

/*
  Adjust table-list
  ...
*/

.table-list---list .table-list {
  margin-bottom: 28px;
}

/*
  Gaps
*/

.table-list---list .table-list:last-child {
  margin-bottom: 0;
}

/*
  accordion
  ***
*/

.accordion {
  margin-bottom: 16px;
}
.accordion__inset {
  position: relative;
  display: block;
  background-color: var(--cr-white);
  border: 1px solid var(--cr-grey-20);
  border-radius: var(--rd-tiny);
}

/*
  title
  ---
*/

.accordion__title {
  position: relative;
  display: block;
  padding: 14px 102px 15px 32px;
  line-height: 1.6;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
}

/*
  - input
  ...
*/

.accordion--input .accordion__title {
  padding-left: 56px;
}

/*
  trigger
  ...
*/

.accordion__title__trigger {
  position: absolute;
  right: 24px;
  top: 24px;
}

/* - active */

.accordion.--active .accordion__title__trigger {
  transform: scaleY(-1);
}

/*
  label
  ...
*/

.accordion__title__label {
  position: absolute;
  right: 20px;
  top: 14px;
}

/*
  input
  ...
*/

.accordion__title__input {
  position: absolute;
  left: 20px;
  top: 15px;
}

/*
  cards
  ...
*/

.accordion__title__cards {
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 6px;
}

/*
  cards
  ...
*/

.accordion__title__excerpt {
  display: block;
  line-height: 1.5;
  font-weight: 400;
  color: var(--cr-grey-70);
}

/*
  content
  ---
*/

.accordion__content {
  overflow: hidden;
  display: block;
  padding: 1px 32px 12px 32px;
  font-size: 16px;
}

/*
  - input
  ...
*/

.accordion--input .accordion__content {
  padding-left: 56px;
  padding-top: 12px;
}

/*
  Adjust BLOCK
  ...
*/

.accordion__content p {
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/*
  video
  ***
*/

.video {
  width: 100%;
  position: relative;
  display: table;
  margin-bottom: 16px;
  text-decoration: none;
}

/*
  - icon
  ---
*/

.video--icon:before {
  content: '';
  width: 12%;
  height: 14%;
  min-width: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: url('../img/icons/color/play-yellow.svg') center center no-repeat;
  background-size: contain;
}

/*
  - color
  ...
*/

.video--icon--color-green:before {
  background-image: url('../img/icons/color/play-green.svg');
}

/*
  - circle
  ---
*/

.video--circle {
  padding: 60px 0;
}

/*
  IMG
  ---
*/

.video img {
  width: 100%;
  position: relative;
  display: block;
  margin: 0;
  border-radius: 2.5vmin;
}

/*
  circle
  ---
*/

.video__circle {
  position: absolute;
  left: 10%;
  top: 0;
  right: 10%;
  bottom: 0;
  border-radius: var(--rd-full);
}

/*
  title
  ---
*/

.video__title {
  display: block;
  margin-top: 12px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

/*
  box
  ***
*/

.box__inset {
  position: relative;
  padding: 42px 54px 32px 54px;
  background-color: var(--cr-peach-light);
  border: 1px solid transparent;
  border-radius: var(--rd-medium);
  font-size: 18px;
}

/*
  icon
  ---
*/

.box__icon {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: -15px;
  z-index: 10;
  margin-left: -15px;
  background: center center no-repeat;
  background-size: contain;
}

/*
  plus
  ...
*/

.box__icon--plus {
  background-image: url('../img/icons/color/plus-green.svg');
}

/*
  - size
  ---
*/

.box__inset--size-tiny {
  padding: 24px 32px 8px 32px;
}
.box__inset--size-small {
  padding: 36px 42px 20px 42px;
}

@media only screen and (min-width: 1101px) {


  .box__inset--size-large {
    padding: 64px 76px 48px 76px;
  }

}

.box__inset--size-huge {
  padding: 94px 90px 78px 90px;
}

/*
  cimage
  ---
*/

.box__cimage {
  pointer-events: none;
  width: 160px;
  height: 160px;
  position: absolute;
  left: -70px;
  top: -70px;
  background: center center no-repeat;
  background-size: contain;
}

@media only screen and (min-width: 951px) {

  /*
    clabel
    ---
  */

  .box__clabel {
    position: absolute;
    left: 50px;
    top: -14px;
  }

}

/*
  format
  ---
*/

.box__format {
  margin-top: 24px;
}

/*
  title
  ---
*/

.box__title {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/*
  foot
  ---
*/

.box__foot {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/*
  item-01
  ***
*/

.item-01__inset {
  position: relative;
  font-size: 16px;
}

/*
  - image
  ---
*/

.item-01--image .item-01__inset {
  padding-left: 88px;
}

/*
  - border
  ---
*/

.item-01__inset--border {
  padding: 28px 32px;
  border: 2px solid var(--cr-peach-light);
  border-radius: var(--rd-medium);
}

/*
  - image
  ---
*/

.item-01--image .item-01__inset--border {
  padding-left: 120px;
}

/*
  image
  ---
*/

.item-01__image {
  width: 60px;
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  background: center center no-repeat;
  background-size: contain;
}

/*
  - border
  ...
*/

.item-01__inset--border .item-01__image {
  top: 32px;
  left: 32px;
  bottom: 32px;
}

/*
  title
  ---
*/

.item-01__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.item-01__excerpt {
  margin: 12px 0 0 0;
}


/*
  item-02
  ***
*/

.item-02__inset {
  position: relative;
  padding: 18px 24px;
  background-color: var(--cr-white);
  border-radius: var(--rd-medium);
  font-size: 15px;
}

/*
  - link
  ---
*/

.item-02--link .item-02__inset {
  padding-right: 130px;
}

/*
  title
  ---
*/

.item-02__title {
  margin: 0 0 4px 0;
  line-height: 1.4;
  font-weight: 600;
  font-size: 100%;
}

/*
  excerpt
  ---
*/

.item-02__excerpt {
  margin: 0;
}

/*
  Adjust link
  ---
*/

.item-02__link {
  width: 100px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 90%;
}

/*
  button---list
  ---
*/

.item-02__button---list {
  margin: 16px 0 8px 0;
}

/*
  item-03
  ***
*/

.item-03__inset {
  position: relative;
  display: block;
  padding: 0 0 0 70px;
  font-size: 15px;
}

/*
  title
  ---
*/

.item-03__image {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  background: center center no-repeat;
  background-size: contain;
}

/*
  title
  ---
*/

.item-03__title {
  margin: 0;
  font-weight: 700;
  font-family: var(--ff-nunito);
}

/*
  -- collapse
  ...
*/

.item-03--collapse .item-03__title {
  width: 100%;
  min-height: 50px;
  display: table;
}
.item-03--collapse .item-03__title span {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding-right: 32px;
  line-height: inherit;
  cursor: pointer;
}

/*
  Icon
*/

.item-03--collapse .item-03__title span:after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  background: url('../img/icons/black/up.svg') center center no-repeat;
  background-size: contain;
}

/*
  excerpt
  ---
*/

.item-03__excerpt {
  margin: 8px 0 0 0;
}

/*
  item-04
  ***
*/

.item-04__inset {
  position: relative;
  display: block;
  padding-left: 173px;
  background-color: var(--cr-white);
  box-shadow: var(--sh-small);
  border-radius: var(--rd-medium);
  text-decoration: none;
  font-size: 16px;
  color: var(--cr-black);
}

/*
  image
  ---
*/

.item-04__image {
  width: 173px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background: center center no-repeat;
  background-size: cover;
  border-radius: var(--rd-medium) 0 0 var(--rd-medium);
}

/*
  - bg
  ...
*/

.item-04__image.--bg-white {
  border-right: 1px dashed rgba(0, 0, 0, 0.1);
}

/*
  SPAN
  ...
*/

.item-04__image span {
  position: absolute;
  left: 27%;
  top: 30%;
  right: 27%;
  bottom: 30%;
  background: center center no-repeat;
  background-size: contain;
}

/*
  IMG
  ...
*/

.item-04__image img {
  display: block;
  opacity: 0;
}

/*
  content
  ---
*/

.item-04__content {
  padding: 26px 190px 26px 32px;
}

/*
  button
  ---
*/

.item-04__button {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

/*
  label
  ---
*/

.item-04__label {
  margin: 0 0 0 8px;
}

/*
  date
  ---
*/

.item-04__date {
  display: inline-block;
  vertical-align: middle;
  color: var(--cr-grey-70);
}

/*
  title
  ---
*/

.item-04__title {
  margin: 12px 0 0 0;
  color: var(--cr-black);
}

/*
  excerpt
  ---
*/

.item-04__excerpt {
  margin: 8px 0 0 0;
}

/*
  item-05
  ***
*/

.item-05__inset {
  position: relative;
  padding-left: 118px;
  font-size: 18px;
}

/*
  quote
  ---
*/


.item-05__quote {
  margin: 0;
}

/*
  image
  ---
*/

.item-05__image {
  width: 94px;
  position: relative;
  float: left;
  margin: 0 24px 0 -118px;
}

/*
  Quote
  ...
*/

.item-05__image:before {
  content: '';
  width: 23px;
  height: 19px;
  position: absolute;
  right: -1px;
  top: 10px;
  background: url('../img/icons/color/quote-yellow.svg') no-repeat;
  background-size: contain;
}

/*
  IMG
  ...
*/

.item-05__image img {
  display: block;
  border-radius: var(--rd-full);
}

/*
  item-06
  ***
*/

.item-06__inset {
  position: relative;
  padding: 24px 28px;
  border-radius: var(--rd-small) var(--rd-small) 0 var(--rd-small);
  font-size: 16px;
}

/*
  - size
  ...
*/


.item-06__inset--size-small {
  padding: 14px 20px;
}

/*
  - reverse
  ...
*/


.item-06--reverse .item-06__inset {
  border-radius: var(--rd-small) var(--rd-small) var(--rd-small) 0;
}

/*
  Arrow
  ---
*/

.item-06__inset:after {
  content: '';
  width: 20px;
  height: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: right top;
  transform: skewX(45deg);
  background-color: inherit;
}

/*
  - reverse
  ...
*/


.item-06--reverse .item-06__inset:after {
  left: 0;
  right: auto;
  transform: skewX(-45deg);
}

/*
  srating
  ---
*/

.item-06__srating {
  margin-bottom: 12px;
}

/*
  avatar
  ---
*/

.item-06__avatar {
  position: absolute;
  left: 100%;
  bottom: 0;
  margin-left: 20px;
}

/*
  quote
  ---
*/

.item-06__quote {
  margin: 0;
}

/*
  excerpt
  ---
*/

.item-06__excerpt {
  margin: 0;
}
.item-06__excerpt + .item-06__excerpt {
  margin-top: 6px;
}

/*
  - inline
  ...
*/

.item-06--inline .item-06__excerpt {
  display: inline;
}

/*
  source
  ---
*/

.item-06__source {
  display: block;
  margin-top: 12px;
  quotes: none;
}

/*
  Icon
  ...
*/

.item-06__source:before {
  content: '-';
  margin: 0 3px 0 1px;
}

/*
  - inline
  ...
*/

.item-06--inline .item-06__source {
  display: inline;
  margin-top: 0;
}


/*
  item-07
  ***
*/

.item-07__inset {
  position: relative;
  overflow: hidden;
  padding-left: 204px;
  background-color: var(--cr-peach-light);
  border-radius: var(--rd-small);
  font-size: 16px;
}

/*
  image
  ---
*/

.item-07__image {
  width: 204px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: center center no-repeat;
  background-size: cover;
  border-radius: var(--rd-small) 0 0 var(--rd-small);
}

/*
  IMG
  ...
*/

.item-07__image img {
  display: block;
  opacity: 0;
}

/*
  content
  ---
*/

.item-07__content {
  width: 100%;
  height: 240px;
  display: table;
}
.item-07__content__inset {
  display: table-cell;
  vertical-align: middle;
  padding: 24px 32px;
}

/*
  title
  ---
*/

.item-07__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.item-07__excerpt {
  margin: 12px 0 0 0;
}

/*
  Next SAME
  ...
*/

.item-07__excerpt + .item-07__excerpt {
  margin-top: 6px;
}

/*
  item-08
  ***
*/

.item-08__inset {
  min-height: 80px;
  position: relative;
  padding-left: 64px;
  font-size: 18px;
}

/*
  - icon
  ---
*/

.item-08--icon .item-08__inset {
  padding-left: 180px;
}

/*
  Line
  ---
*/

.item-08__inset:before, 
.item-08__inset:after {
  content: '';
  position: absolute;
}
.item-08__inset:before {
  width: 12px;
  height: 12px;
  left: 0;
  top: 3px;
  background-color: var(--cr-yellow);
  border: 6px solid var(--cr-yellow-light);
  border-radius: var(--rd-full);
}
.item-08__inset:after {
  width: 1px;
  left: 11px;
  top: 40px;
  bottom: 4px;
  background-color: var(--cr-peach-light-2);
}

/*
  - icon
  ---
*/

.item-08--icon .item-08__inset:before {
  left: 110px;
}
.item-08--icon .item-08__inset:after {
  left: 121px;
}

/*
  content
  ---
*/

.item-08__content:first-child {
  margin-bottom: -16px;
}

/*
  icon
  ---
*/

.item-08__icon {
  width: 80px;
  height: 84px;
  position: absolute;
  left: 0;
  top: -6px;
  background-position: center top;
}

/*
  item-14
  ***
*/

.item-14__inset {
  background-color: var(--cr-peach-light);
  border-radius: var(--rd-small);
  font-size: 14px;
}

/*
  image
  ---
*/

.item-14__image {
  display: block;
  height: 120px;
  border-radius: var(--rd-small) var(--rd-small) 0 0;
  background: center center no-repeat;
  background-size: cover;
}

/*
  Adjust button
  ---
*/

.item-14 .button {
  margin: 12px 0 0 0;
}

/*
  content
  ---
*/

.item-14__content {
  padding: 24px 32px;
}

/*
  title
  ---
*/

.item-14__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.item-14__excerpt {
  margin: 12px 0 0 0;
}

/*
  note
  ---
*/

.item-14__note {
  margin: 16px 0 0 0;
  padding-right: 60px;
  background: right center no-repeat;
  font-size: 12px;
}

/*
  item-09
  ***
*/

.item-09__inset {
  min-height: 230px;
  position: relative;
  padding-left: 234px;
  font-size: 18px;
}

/*
  image
  ---
*/

.item-09__image {
  width: 190px;
  position: absolute;
  left: 0;
  top: 0;
} 

/*
  IMG
  ...
*/

.item-09__image img {
  display: block;
  border-radius: var(--rd-large);
}

/*
  item-10
  ***
*/

.item-10__inset {
  padding: 32px 36px;
  border: 1px solid var(--cr-grey-20);
  border-radius: var(--rd-small);
  font-size: 16px;
}

/*
  - free
  ---
*/

.item-10--free .item-10__inset {
  padding: 0;
  border: none;
  border-radius: 0;
}

/*
  - size
  ---
*/

.item-10--size-small .item-10__inset {
  padding: 24px 28px;
  font-size: 15px;
}


/*
   IN
   ---
  */

[class*="--bg-"] .item-10__inset {
  background-color: var(--cr-white);
  border-color: var(--cr-white);
}

/*
  IMG
  ---
*/

.item-10 img {
  position: relative;
  display: inline-block !important;
  vertical-align: middle;
  margin: 0;
}

/*
  srating
  ---
*/

.item-10__srating {
  float: left;
}

/*
  date
  ---
*/

.item-10__date {
  float: right;
  margin: 0;
  white-space: nowrap;
  font-size: 14px;
  color: var(--cr-grey-60);
  white-space: nowrap;
}

/*
  IMG
  ...
*/

.item-10__date img {
  bottom: 0;
  margin-right: 2px;
}

/*
  quote
  ---
*/

.item-10__quote {
  margin: 18px 0 0 0;
}

/*
  title
  ---
*/

.item-10__title {
  margin: 0 0 8px 0;
  background: right center no-repeat;
}

/*
  excerpt
  ---
*/

.item-10__excerpt {
  margin: 0;
}

/*
  source
  ---
*/

.item-10__source {
  margin-top: 12px;
  font-size: 95%;
}

/*
  IMG
  ...
*/

.item-10__source img {
  bottom: -1px;
  margin-right: 6px;
  border-radius: var(--rd-circle);
}

/*
  LINK
  ...
*/

.item-10__source a {
  position: relative;
  z-index: 100;
  display: block;
  font-size: 85%;
}

/*
  item-11
  ***
*/

.item-11__inset {
  width: 100%;
  display: table;
  table-layout: fixed;
  font-size: 18px;
}

/*
  - align
  ---
*/

@media only screen and (min-width: 951px) {

  .item-11--align-right .item-11__inset {
    direction: rtl;
  }

}

/*
  content
  ---
*/

.item-11__content {
  display: table-cell;
  vertical-align: middle;
  padding: 0 80px 0 32px;
  direction: ltr;
}

/*
  - align
  ---
*/

@media only screen and (min-width: 951px) {

  .item-11--align-right .item-11__content {
    padding: 0 32px 0 80px;
  }

}

/*
  media
  ---
*/

.item-11__media {
  display: table-cell;
  vertical-align: middle;
  padding-left: 80px;
  direction: ltr;
  font-size: 0;
}

/*
  - align
  ---
*/

@media only screen and (min-width: 951px) {

  .item-11--align-right .item-11__media {
    padding: 0 80px 0 0;
  }

}

/*
  image
  ---
*/

.item-11__image {
  border-radius: var(--rd-large);
}

/*
  item-12
  ***
*/

.item-12__inset {
  position: relative;
}

/*
  content
  ---
*/

.item-12__content, 
.item-12__content__inset {
  position: relative;
}
.item-12__content {
  z-index: 1;
  margin-left: 370px;
  padding: 54px 48px 32px 48px;
  background-color: var(--cr-peach-light);
  border-radius: 0 var(--rd-medium) var(--rd-medium) 0;
}

/*
  Skew
  ...
*/

.item-12__content:before {
  content: '';
  width: 150px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: skewX(-4deg);
  background-color: inherit;
}

/*
  image
  ---
*/

.item-12__image {
  width: 370px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: center center no-repeat;
  background-size: cover;
  border-radius: var(--rd-medium) 0 0 var(--rd-medium);
}

/*
  item-13
  ***
*/

.item-13__inset {
  position: relative;
  padding: 48px 52px;
  background-color: var(--cr-peach-light);
  border: 3px solid var(--cr-peach-light);
  border-radius: var(--rd-medium);
  text-align: left;
  font-size: 15px;
}

/*
  title
  ---
*/

.item-13__title {
  position: relative;
  display: table;
  margin: 0 auto;
  white-space: nowrap;
}

/*
  - icon
  ...
*/

.item-13__title--icon {
  padding-left: 56px;
}

/*
  icon
  ...
*/

.item-13__title__icon {
  width: 40px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

/*
  excerpt
  ---
*/

.item-13__excerpt {
  margin: 24px 0 0 0;
  text-align: center;
}

/*
  list-iconize
  ---
*/

.item-13__list-iconize {
  margin: 24px 0 0 0;
}

/*
  - border
  ...
*/

.item-13__list-iconize--border {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/*
  label
  ---
*/

.item-13__label {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
}

/*
  sinfo
  ---
*/

.item-13__sinfo {
  margin: 32px 0 0 0;
}

/*
  price
  ---
*/

.item-13__price {
  margin: 24px 0 0 0;
}

/*
  button
  ---
*/

.item-13__button {
  display: table;
  margin: 24px auto 0 auto;
}

/*
  waranty
  ---
*/

.item-13__waranty {
  margin: 16px 0 0 0;
}

/*
  price
  ***
*/

.price {
  line-height: 1.5;
  text-align: center;
}

/*
  STRONG
  ---
*/

.price strong {
  display: block;
  font: 700 26px var(--ff-montserrat);
  line-height: 1.3;
  color: var(--cr-azure-dark-2);
}

/*
  - size
  ...
*/

.price--size-large strong {
  font-size: 38px;
}


/*
  waranty
  ***
*/

.waranty {
  line-height: 1.5;
  text-align: center;
}

/*
  icon
  ---
*/

.waranty__icon {
  width: 26px;
  height: 26px;
}

/*
  LINK
  --
*/

.waranty a {
  display: inline-block;
  vertical-align: middle;
  color: var(--cr-black);
}


/*
  sinfo
  ***
*/

.sinfo {
  position: relative;
  margin-bottom: 16px;
  padding: 14px 24px;
  background-color: var(--cr-white);
  border: 1px solid var(--cr-grey-20);
  border-radius: var(--rd-small);
  font-size: 15px;
}

/*
  - image
  ---
*/

.sinfo--image {
  padding-right: 70px;
}

/*
  icon
  ---
*/

.sinfo__icon {
  width: 28px;
  height: 28px;
  position: absolute;
  left: -12px;
  top: -12px;
  background-size: 55% auto;
}

/*
  image
  ---
*/

.sinfo__image {
  width: 100px;
  position: absolute;
  right: -40px;
  top: 10%;
  bottom: 10%;
  background: center center no-repeat;
  background-size: contain;
}

/*
  excerpt
  ---
*/

.sinfo__excerpt {
  margin: 0;
}

/*
  map-google
  ***
*/

.map-google {
  position: relative;
}

/*
  canvas
  ---
*/

.map-google__canvas {
  height: 472px;
  overflow: hidden;
  background-color: var(--cr-grey-20);
  border-radius: var(--rd-medium);
}
.map-google__canvas__inset {
  position: relative;
  height: calc(100% + 15px);
}

/*
  box
  ---
*/

.map-google__box {
  max-width: 938px;
  margin: -64px auto 0 auto;
}

/*
  map-cities
  ***
*/

.map-cities {
  position: relative;
}

/*
  box
  ---
*/

@media only screen and (min-width: 701px) {

  .map-cities__box__inset {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

}

/*
  map-google
  ---
*/

.map-cities__map-google .map-google__canvas {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*
  banner-01
  ***
*/

.banner-01__inset {
  position: relative;
  border: 16px solid var(--cr-peach-light);
  border-radius: var(--rd-large);
  text-align: center;
  font-size: 18px;
}
.banner-01__inset__inset {
  max-width: 940px;
  margin: 0 auto;
  padding: 80px 120px;
}

/*
  - size
  ---
*/

.banner-01--size-small .banner-01__inset {
  border-width: 10px;
}
.banner-01--size-small .banner-01__inset__inset {
  padding: 42px 64px;
}

@media only screen and (min-width: 1301px) {

  /*
    - align
    ---
  */

  .banner-01--align-left .banner-01__inset {
    text-align: left;
  }
  .banner-01--align-right .banner-01__inset {
    text-align: right;
  }

}

/*
  title
  ---
*/

.banner-01__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.banner-01__excerpt {
  margin: 16px 0 0 0;
}

/*
  button---list
  ---
*/

.banner-01__button---list {
  margin: 24px 0 0 0;
}

/*
  image
  ---
*/

.banner-01__image {
  width: 290px;
  position: absolute;
  display: none;
  top: 60px;
  bottom: 60px;
  background: center center no-repeat;
  background-size: contain;
}

/*
  - offset
  ---
*/

.banner-01__image.banner-01__image--offset {
  width: 600px;
  top: 20px;
  bottom: 10px;
}

@media only screen and (min-width: 1301px) {

  /*
    - align
    ---
  */

  .banner-01--align-left .banner-01__image {
    right: 210px;
    display: block;
  }
  .banner-01--align-right .banner-01__image {
    left: 210px;
    display: block;
  }

  /*
    - offset
    ---
  */

  .banner-01--align-left .banner-01__image.banner-01__image--offset {
    right: -200px;
  }
  .banner-01--align-right .banner-01__image.banner-01__image--offset {
    left: -200px;
  }

}

/*
  content
  ---
*/

.banner-01__content {
  max-width: 570px;
  margin: 0 auto;
}

@media only screen and (min-width: 1301px) {

  /*
    - align
    ---
  */

  .banner-01--align-left .banner-01__content {
    float: left;
  }
  .banner-01--align-right .banner-01__content {
    float: right;
  }

}

/*
  head-01
  ***
*/

.head-01 {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/*
  - align
  ---
*/

.head-01--align-left {
  text-align: left;
}
.head-01--align-right {
  text-align: right;
}

/*
  - offset
  ...
*/

.head-01--align-left.head-01--align--offset {
  margin-left: 60px;
}
.head-01--align-right.head-01--align--offset {
  margin-right: 60px;
}

/*
  - image
  ---
*/

.head-01--image {
  padding-bottom: 214px;
}

/*
  - align
  ...
*/

.head-01--align-left.head-01--image {
  padding: 42px 40% 42px 0;
}
.head-01--align-right.head-01--image {
  padding: 42px 0 42px 40%;
}

/*
  - nav-tabs
  ---
*/

.head-01 .nav-tabs {
  margin-top: 32px;
}

/*
  - icon
  ---
*/

.head-01--icon {
  padding: 6px 0 6px 116px;
}

/*
  - align
  ...
*/

.head-01--icon--align-right {
  padding-left: 0;
  padding-right: 116px;
}

/*
  title
  ---
*/

.head-01__title {
  margin: 0;
}

/*
  subtitle
  ---
*/

.head-01__subtitle {
  margin: 16px 0 0 0;
}

/*
  image
  ---
*/

.head-01__image {
  width: 30%;
  height: 190px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -85px;
  background: center bottom no-repeat;
  background-size: contain;
}

/*
  - align
  ...
*/

.head-01--align-left .head-01__image {
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  margin-left: 0;
}
.head-01--align-right .head-01__image {
  height: auto;
  left: 0;
  top: 0;
  margin-left: 0;
}

/*
  icon
  ---
*/

.head-01__icon {
  width: 100px;
  position: absolute;
  top: -6px;
  bottom: -6px;
}

/*
  - align
  ...
*/

.head-01--align-left .head-01__icon {
  right: 0;
}
.head-01--align-right .head-01__icon {
  left: 0;
}

/*
  excerpt
  ---
*/

.head-01__excerpt {
  margin: 20px 0 0 0;
  font-size: 18px;
}

/*
  flash
  ---
*/

.head-01__flash {
  margin-top: 20px;
  margin-bottom: 0;
}

/*
  - first
  ...
*/

.head-01__flash--first {
  margin: 0 0 20px 0;
}

/*
  content
  ---
*/

.head-01__content {
  margin: 16px 0 0 0;
}

/*
  label
  ---
*/

.head-01__label {
  margin-top: 12px;
}

/*
  grating
  ---
*/

.head-01__grating {
  margin: 16px 0 0 0;
}

/*
  - pos
  ...
*/

.head-01__grating--pos-top {
  margin: 0 0 16px 0;
}

/*
  button---list
  ---
*/

.head-01__button---list {
  margin-top: 0;
  padding-top: 24px;
}

/*
  promo-01
  ***
*/

.promo-01 {
  padding: 0 60px;
}
.promo-01__inset {
  position: relative;
  background-color: var(--cr-peach-light);
  border-radius: var(--rd-large);
}

/*
  image
  ---
*/

.promo-01__image {
  width: 42%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: center center no-repeat;
  background-size: cover;
  border-radius: 0 var(--rd-large) var(--rd-large) 0;
}

/*
  title
  ---
*/

.promo-01__title {
  margin: 0;
}

@media only screen and (min-width: 1101px) {

  .promo-01__title {
    font-size: 48px;
  }

}

/*
  excerpt
  ---
*/

.promo-01__excerpt {
  margin: 24px 0 0 0;
  font-size: 19px;
}

/*
  label
  ---
*/

.promo-01__label {
  margin: 16px 0 0 0;
}

/*
  note
  ---
*/

.promo-01__note {
  margin: 20px 0 0 0;
}

/*
  promo-01__button---list
  ---
*/

.promo-01__button---list {
  margin-top: 20px;
}

/*
  promo-01__list
  ---
*/

.promo-01__list {
  margin-top: 20px;
}

/*
  promo-01__badge---list
  ---
*/

.promo-01__badge---list {
  position: absolute;
  right: -92px;
  top: 64px;
  z-index: 2;
  margin: 0;
}

/*
  content
  ---
*/

.promo-01__content {
  position: relative;
}
.promo-01__content__inset {
  float: right;
  margin: 100px 120px 100px 100px;
}

/*
  - image
  ...
*/

.promo-01--image .promo-01__content {
  width: 58%;
}
.promo-01--image .promo-01__content__inset {
  width: 660px;
}

/*
  promo-02
  ***
*/

.promo-02 {
  position: relative;
}

/*

.promo-02:before, 
.promo-02:after {
  content: '';
  width: 20px;
  height: 100%;
  z-index: 10;
  position: absolute;
  top: 0;
  background: red;
}
.promo-02:before {
  left: -18px;
}
.promo-02:after {
  right: -18px;
}

*/


.promo-02__inset {
  max-width: 1340px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding-top: 130px;
}

/*
  image
  ---
*/

.promo-02__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: var(--cr-azure-dark-2) center center no-repeat;
  background-size: cover;
}

/*
  Mask
  ...
*/

.promo-02__image:before, 
.promo-02__image:after {
  content: '';
  position: absolute;
}
.promo-02__image:before {
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  background: url('../img/masks/02.png') center top no-repeat, 
              url('../img/masks/03.png') center bottom no-repeat;
  background-size: 100% auto;
}
.promo-02__image:after {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #fff;
}

/*
  box
  ---
*/

.promo-02__box {
  max-width: 700px;
}

/*
  promo-03
  ***
*/

.promo-03__inset {
  position: relative;
  padding: 300px 0 480px 0;
  background: var(--peach-light) center center no-repeat;
  background-size: cover;
  border-radius: var(--rd-large);
}

/*
  Gradient
  ---
*/

.promo-03__inset:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%);
  border-radius: inherit;
}


/*
  title
  ---
*/

.promo-03__title {
  margin: 0;
}

/*
  box
  ---
*/

.promo-03__box {
  max-width: 940px;
  margin: -438px auto 0 auto;
  border-radius: var(--rd-medium);
}

/*
  list
  ***
*/

.list__inset {
  position: relative;
  margin: 0 -12px -24px -12px;
  list-style: none;
  font-size: 0;
}

/*
  - gaps
  ---
*/

.list--gaps-none > .list__inset {
  margin: 0;
}
.list--gaps-tiny > .list__inset {
  margin: 0 -3px -6px -3px;
}
.list--gaps-small > .list__inset {
  margin: 0 -6px -12px -6px;
}

@media only screen and (min-width: 901px) {

  .list--gaps-large > .list__inset {
    margin: 0 -24px -48px -24px;
  }

}

/*
  head-01
  ---
*/

.list__head-01 {
  margin-bottom: 42px;
}

/*
  item
  ---
*/

.list__item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 24px;
  line-height: 1;
}
.list__item__inset {
  margin-left: 12px;
  margin-right: 12px;
}

/*
  - gaps
  ...
*/

.list--gaps-none > .list__inset > .list__item {
  margin-bottom: 0;
}
.list--gaps-tiny > .list__inset > .list__item {
  margin-bottom: 6px;
}
.list--gaps-small > .list__inset > .list__item {
  margin-bottom: 12px;
}

@media only screen and (min-width: 901px) {

  .list--gaps-large > .list__inset > .list__item {
    margin-bottom: 48px;
  }

}

.list--gaps-none > .list__inset > .list__item > .list__item__inset {
  margin-left: 0;
  margin-right: 0;
}
.list--gaps-tiny > .list__inset > .list__item > .list__item__inset {
  margin-left: 3px;
  margin-right: 3px;
}
.list--gaps-small > .list__inset > .list__item > .list__item__inset {
  margin-left: 6px;
  margin-right: 6px;
}

@media only screen and (min-width: 901px) {

  .list--gaps-large > .list__inset > .list__item > .list__item__inset {
    margin-left: 24px;
    margin-right: 24px;
  }

}

/*
  button---list
  ---
*/

.list__button---list {
  margin: 32px 0 0 0;
}

/*
  - timeline
  ...
*/

.list--timeline .list__item:before, 
.list--timeline .list__item:after {
  content: '';
  position: absolute;
}
.list--timeline .list__item:before {
  width: 1px;
  left: 50%;
  top: 0;
  bottom: -24px;
  background-color: var(--cr-peach-light-2);
}
.list--timeline .list__item:after {
  width: 13px;
  height: 13px;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  background-color: var(--cr-yellow);
  box-shadow: 0 0 0 6px var(--cr-yellow-light), 
              0 0 0 24px var(--cr-white);
  border-radius: var(--rd-circle);
}

/*
  - gaps
  ...
*/

.list--timeline.list--gaps-small .list__item:before {
  bottom: -12px;
}
.list--timeline.list--gaps-large .list__item:before {
  bottom: -48px;
}

/*
  Gaps
  ...
*/

.list--timeline .list__item:first-child:before {
  top: 50% !important;
}
.list--timeline .list__item:last-child:before {
  bottom: 0 !important;
}

/*
  foot
  ---
*/

.list__foot {
  margin: 42px 0 0;
}

/*
  note
  ---
*/

.list__note {
  margin: 32px 0 0 0;
  text-align: center;
}

/*
  carousel
  ***
*/

.carousel {
  position: relative;
}

/*
  Adjust slick
  ---
*/

.carousel .slick-slide {
  margin: 0 10px;
}
.carousel--fade .slick-list {
  margin: 0 -10px;
}

/*
  - fade
  ...
*/

.carousel--fade .slick-list {
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 20%,rgba(0,0,0,1) 50%,rgba(0,0,0,1) 80%,rgba(0,0,0,0) 100%);
}

/*
  Adjust slick-arrow
  ---
*/

.carousel .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  margin-top: -22px;
}

/*
  - prev, - next
  ...
*/

.carousel .slick-arrow.slick-prev {
  left: 60px;
}
.carousel .slick-arrow.slick-next {
  right: 60px;
}

/*
  Adjust slick-dots
  ---
*/

.carousel .slick-dots {
  margin-top: 18px;
}

/*
  note
  ---
*/

.carousel__note {
  margin: 24px 0 0 0;
  text-align: center;
}

/*
  layout-table
  ***
*/

.layout-table {
  position: relative;
}

/*
  table
  ---
*/

.layout-table__table {
  width: 100%;
  width: calc(100% + 32px);
  display: table;
  margin-left: -16px;
  border-spacing: 16px 0;
}

/*
  col
  ...
*/

.layout-table__table__col {
  display: table-cell;
  vertical-align: middle;
}

/*
  button---list
  ---
*/

.layout-table__button---list {
  margin: 20px 0 0 0;
}

/*
  note
  ---
*/

.layout-table__note {
  margin: 32px 0 0 0;
  text-align: center;
}

/*
  modal
  ***
*/

.modal {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1200;
  background-color: rgba(4, 47, 60, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: 150ms linear;
}

/* - active */

.modal.--active {
  pointer-events: all;
  opacity: 1;
}

/*
  inset
  ---
*/

.modal__inset {
  width: 880px;
  position: absolute;
  left: 50%;
  top: 6%;
  bottom: 6%;
  margin-left: -440px;
}

/*
  - size
  ...
*/

.modal__inset--size-small {
  width: 540px;
  margin-left: -270px;
}

/*
  window
  ---
*/

.modal__window {
  box-sizing: border-box;
  height: 100%;
  position: relative;
  transform: scale(0.75);
  padding: 0;
  transition: 150ms ease-in-out;
}
.modal__window__inset {
  box-sizing: border-box;
  max-height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 42px 52px;
  background-color: var(--cr-white);
  border-radius: var(--rd-medium);
  scrollbar-width: thin;
}

/* - active */

.modal.--active .modal__window {
  transform: scale(1);
}

/*
  button---list
  ---
*/

.modal__button---list {
  margin: 32px 0 0 0;
}

/*
  head
  ---
*/

.modal__head-01 {
  margin-bottom: 32px;
}

/*
  close
  ---
*/

.modal__close {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 32px;
  top: 6%;
  font-size: 0;
}

/*
  icon
  ...
*/

.modal__close:before, 
.modal__close:after {
  content: '';
  width: 60%;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -30%;
  background-color: var(--cr-white);
}
.modal__close:before {
  transform: rotate(-45deg);
}
.modal__close:after {
  transform: rotate(45deg);
}

/*
  site-wrap
  ***
*/

.site-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 121px;
}

/*
  site-content
  ***
*/

.site-content {
  max-width: 1920px;
  position: relative;
  margin: 0 auto;
  padding: 0 60px;
}

/*
  site-head
  ***
*/

.site-head {
  height: 121px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1100;
  padding: 0 24px;
  background-color: #fff;
  text-align: center;
}
.site-head__inset {
  box-sizing: border-box;
  max-width: 1280px;
  position: relative;
  margin: 0 auto;
  padding: 10px 0 0 100px;
}

/*
  - bar
  ---
*/

.--bar .site-head {
  top: 32px;
}

/*
  - layout
  ---
*/

.--layout-school .site-head__inset {
  max-width: 1420px;
}

/* - unpin */

.--unpin .site-head {
  position: absolute;
}

@media only screen and (min-width: 1401px) {

  /*
    - pin
    ---
  */

  .site-head--pin {
    height: 70px;
    box-shadow: var(--sh-medium);
    border-bottom-color: transparent !important;
    text-align: left;
  }
  .site-head--pin .site-head__inset {
    max-width: none;
    padding-left: 180px;
  }

}

/*
  cart
  ---
*/

.site-head__cart {
  width: 36px;
  height: 36px;
  position: relative;
  float: right;
  display: none;
  margin: 4px 0 0 16px;
  border: 2px solid var(--cr-peach-light-4);
  border-radius: var(--rd-circle);
}

/*
  SVG
  ...
*/

.site-head__cart svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* hover */

.site-head__cart:hover svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*
  burger
  ---
*/

.site-head__burger {
  float: right;
  display: none;
  margin-left: 16px;
}

/* - active */


.site-head__burger.--active {
  z-index: 15;
}

/*
  button
  ---
*/

.site-head__button {
  float: right;
  margin: 23px 0 0 0;
}

@media only screen and (min-width: 1401px) {

  /*
    - pin
    ...
  */

  .site-head--pin .site-head__button {
    margin-top: 6px;
  }

}

/*
  logo
  ---
*/

.site-head__logo {
  position: absolute;
  left: 0;
  top: 10px;
  overflow: hidden;
  text-decoration: none;
}

@media only screen and (min-width: 1401px) {

  /*
    - pin
    ...
  */

  .site-head--pin .site-head__logo {
    opacity: 0;
  }

}

/*
  - row
  ...
*/

.site-head__logo--row {
  top: 16px;
  opacity: 0;
}

@media only screen and (min-width: 1401px) {

  /*
    - pin
    ...
  */

  .site-head--pin .site-head__logo--row {
    opacity: 1 !important;
  }

}

/*
  IMG
  ...
*/

.site-head__logo img {
  display: block;
  margin: 0;
}

@media only screen and (min-width: 1401px) {

  /*
    nav
    ---
  */

  .site-head__nav {
    display: inline-block;
    margin-top: 24px;
  }

  /*
    - pin
    ...
  */

  .site-head--pin .site-head__nav {
    margin-top: 2px;
    padding-left: 30px;
  }

  /*
    list
    ...
  */

  .site-head__nav__list {
    margin: 0;
    list-style: none;
  }
  .site-head__nav__list > li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    line-height: 1;
  }
  .site-head__nav__list > li.--out {
    display: none;
  }
  .site-head__nav__list > li > a {
    position: relative;
    display: block;
    padding: 11px 10px;
    border-radius: var(--rd-tiny);
    line-height: 1.5;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--cr-black);
  }

  /* hover */

  .site-head__nav__list > li:hover > a {
    background-color: var(--cr-peach-light);
  }

  /* active */

  .site-head__nav__list > li.--active > a {
    color: var(--cr-azure-dark);
  }

  /*
    Adjust label
  */

  .site-head__nav__list > li > a > .label {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
  }

  /* - pin */

  .site-head--pin .site-head__nav__list > li > a > .label {
    top: auto;
    bottom: -22px;
  }

  /*
    Adjust icon
  */

  .site-head__nav__list > li > a > .icon {
    top: -1px;
    margin-left: 4px;
  }

  /* active */

  .site-head__nav__list > li.--active > a > .icon {
    fill: var(--cr-azure-dark);
  }

  /*
    drop
    ...
  */

  .site-head__nav__drop {
    pointer-events: none;
    width: 280px;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    padding-top: 16px;
    text-align: left;
    opacity: 0;
  }

  /* hover */

  li:hover > .site-head__nav__drop {
    pointer-events: all;
    opacity: 1;
  }

  /*
    2nd level
    ---
  */

  .site-head__nav__drop .site-head__nav__drop {
    left: 100%;
    top: 0;
    transform: none;
    padding: 0 0 0 32px;
  }

  /*
    list
    ---
  */

  .site-head__nav__drop__list {
    margin: 0;
    padding: 16px;
    background-color: var(--cr-white);
    box-shadow: var(--sh-medium);
    border-radius: var(--rd-small);
    list-style: none;
  }
  .site-head__nav__drop__list > li {
    position: relative;
    margin: 0;
    line-height: 1;
  }
  .site-head__nav__drop__list > li > a {
    position: relative;
    display: block;
    padding: 8px 16px;
    border-radius: var(--rd-tiny);
    line-height: 1.5;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--cr-black);
  }

  /* hover */

  .site-head__nav__drop__list > li:hover > a {
    background-color: var(--cr-peach-light);
  }

  /* active */

  .site-head__nav__drop__list > li.--active > a {
    color: var(--cr-azure-dark);
  }

  /*
    Adjust icon
    ...
  */

  .site-head__nav__drop__list > li > a > .icon {
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -7px;
  }

}

@media only screen and (max-width: 1400px) {

  /*
    nav
    ---
  */

  .site-head__nav {
    pointer-events: none;
    width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: 150ms linear;
  }

  /* - active */
  
  .site-head__nav.--active {
    pointer-events: all;
    opacity: 1;
  }

  /*
    list
    ...
  */

  .site-head__nav__list {
    width: 360px;
    max-height: calc(100% - 72px - 32px);
    position: absolute;
    right: 60px;
    top: 72px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--cr-white);
    box-shadow: var(--sh-medium);
    border-radius: var(--rd-tiny);
    scrollbar-width: thin;
  }

  /*
    Adjust icon
    ...
  */

  .site-head__nav .icon {
    width: 46px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }

  /* SVG */

  .site-head__nav .icon svg {
    position: absolute;
    left: 15px;
    top: 19px;
  }

  /* - active */

  .site-head__nav .icon.--active svg {
    transform: scaleY(-1);
  }

  /* - right */

  .site-head__nav .icon--right svg {
    transform: rotate(90deg);
    left: 17px;
    top: 15px;
  }

  /* - active */

  .site-head__nav .icon--right.--active svg {
    transform: rotate(90deg) scaleX(-1);
  }

  /*
    Adjust label
    ...
  */

  .site-head__nav .label {
    margin-left: 8px;
  }

  /*
    LIST
    ...
  */

  .site-head__nav ul {
    margin: 0;
    list-style: none;
    font-size: 18px;
  }
  .site-head__nav ul li {
    margin: 0;
    line-height: 1;
  }
  .site-head__nav ul li a {
    position: relative;
    display: block;
    padding: 10px 24px;
    border-bottom: 1px solid var(--cr-grey-10);
    line-height: 1.6;
    text-decoration: none;
    font-weight: 600;
    color: var(--cr-black);
  }
  .site-head__nav ul li a:before {
    content: '';
    width: 6px;
    height: 6px;
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    background-color: var(--cr-azure);
    border-radius: var(--rd-circle);
  }
  .site-head__nav ul li:last-child a {
    border-bottom: none;
  }

  /* 2nd level */

  .site-head__nav ul li ul li a {
    padding-left: 42px;
  }

  /* 3nd level */

  .site-head__nav ul li ul li ul li a {
    padding-left: 58px;
  }

  /* 4nd level */

  .site-head__nav ul li ul li ul li ul li a {
    padding-left: 74px;
  }

  /* 2nd level */

  .site-head__nav ul ul {
    display: none;
    background-color: rgba(0, 0, 0, 0.01);
    border-bottom: 1px solid var(--cr-grey-10);
    font-size: 90%;
  }

  /* - active */

  .site-head__nav ul ul.--active {
    display: block;
  }

}

@media only screen and (max-width: 650px) {

  /*
    nav
    ---
  */

  .site-head__nav {
    width: 100%;
  }

}

/*
  links
  ---
*/

.site-head__links {
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
  font-size: 0;
}

@media only screen and (min-width: 1401px) {

  /* - pin */

  .site-head--pin .site-head__links {
    right: 120px;
    top: 16px;
  }

}

/*
  item
  ...
*/

.site-head__links__item {
  position: relative;
  padding: 0 6px 0 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  color: var(--cr-black);
}

/*
  flag
*/

.site-head__links__item__flag {
  bottom: -5px;
  margin-right: 3px;
}

/*
  icon
*/

.site-head__links__item__icon {
  top: -2px;
}

/* - first */

.site-head__links__item__icon.--first {
  top: -3px;
  margin-right: 4px;
}

/*
  site-section
  ***
*/

.site-section {
  position: relative;
  margin: 0 auto;
  padding: 0 60px;
  border-radius: var(--rd-large);
}
.site-section.site-reviews {
  padding-left: 24px;
  padding-right: 24px;
}

/*
  - pull
  ---
*/

.site-section--pull {
  max-width: none;
  margin-left: -60px;
  margin-right: -60px;
  border-radius: 0;
}

/*
  - strip
  ---
*/

.site-section--strip:before {
  content: '';
  width: 100%;
  height: 111px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #513655;
}

/*
  - eshop, mode-5
  ...
*/

.--eshop.--mode-5 .site-section--strip:before {
  background-color: #513655;
}

/*
  inset
  ---
*/

.site-section__inset {
  max-width: 1180px;
  position: relative;
  margin: 0 auto;
  padding: 72px 0;
  border-radius: inherit;
}
.site-section[class*="--bg"] > .site-section__inset {
  padding-left: 24px;
  padding-right: 24px;
}

/*
  - padding
  ...
*/

.site-section__inset--space-none {
  padding: 0 !important;
}
.site-section__inset--space-none-top {
  padding-top: 0 !important;
}
.site-section__inset--space-none-bottom {
  padding-bottom: 0 !important;
}
.site-section__inset--space-tiny {
  padding: 16px 0;
}
.site-section__inset--space-tiny-top {
  padding-top: 16px;
}
.site-section__inset--space-tiny-bottom {
  padding-bottom: 16px;
}
.site-section__inset--space-small {
  padding: 42px 0;
}
.site-section__inset--space-small-top {
  padding-top: 42px;
}
.site-section__inset--space-small-bottom {
  padding-bottom: 42px;
}
.site-section__inset--space-large {
  padding: 102px 0;
}
.site-section__inset--space-large-top {
  padding-top: 102px;
}
.site-section__inset--space-large-bottom {
  padding-bottom: 102px;
}
.site-section__inset--space-huge {
  padding: 164px 0;
}
.site-section__inset--space-huge-top {
  padding-top: 164px;
}
.site-section__inset--space-huge-bottom {
  padding-bottom: 164px;
}

/*
  - width
  ...
*/

.site-section__inset--width-tiny {
  max-width: 780px;
}
.site-section__inset--width-small {
  max-width: 920px;
}
.site-section__inset--width-medium {
  max-width: 1120px;
}
.site-section__inset--width-large {
  max-width: 1420px;
}
.site-section__inset--width-huge {
  max-width: 1700px;
}
.site-section__inset--width-none {
  max-width: none;
}

/*
  - exception
  ...
*/

.site-section__inset--exception-01 {
  margin-bottom: -238px;
}

/*
  - gradient
  ---
*/

.site-section__gradient {
  height: 200px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--cr-peach-light);
  border-radius: inherit;
}

/*
  Fade
  ...
*/

.site-section__gradient:before, 
.site-section__gradient:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.site-section__gradient:before {
  background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,245,235,0) 10%,rgba(255,245,235,0) 90%,rgba(255,255,255,1) 100%);
}
.site-section__gradient:after {
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0,rgba(255,255,255,1) 100%);
}

/*
  pull
  ---
*/

@media only screen and (min-width: 1451px) {

  .site-section__pull--size-large {
    margin-left: -239px;
    margin-right: -239px;
  }

}

/*
  ins
  ---
*/

.site-section__ins {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1201px) {

  /*
    aside
    ---
  */

  .site-section__aside {
    width: 300px;
    float: left;
  }

  /*
    - wide
    ---
  */

  .site-section__aside--wide {
    width: 400px;
  }

  /*
    - align
    ---
  */

  .site-section__aside--align-right {
    float: right;
  }

  /*
    content
    ---
  */

  .site-section__content {
    width: calc(100% - 332px);
    float: right;
  }

  /*
    - slim
    ---
  */

  .site-section__content--slim {
    width: calc(100% - 472px);
  }

  /*
    - align
    ---
  */

  .site-section__content--align-left {
    float: left;
  }

}

/*
  format
  ---
*/

.site-section__format {
  margin-top: 42px;
}

/*
  icon
  ---
*/

.site-section__icon {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

/*
  num
  ---
*/

.site-section__num {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

/*
  After icon
  ...
*/

.site-section__icon + .site-section__num {
  transform: translate(20%, -50%);
}

/*
  site-foot-simple
  ***
*/

.site-foot-simple {
  padding: 0 60px;
  border-top: 1px solid var(--cr-grey-10);
}
.site-foot-simple__inset {
  position: relative;
  box-sizing: border-box;
  max-width: 940px;
  margin: 0 auto;
  padding: 60px 0 48px 0;
  text-align: center;
}

/*
  title
  ---
*/

.site-foot-simple__title {
  margin: 0;
}

/*
  address
  ---
*/

.site-foot-simple__address {
  margin: 8px 0 0 0;
  font-size: 0;
}

/*
  Adjust icon
  ...
*/

.site-foot-simple__address .icon {
  margin-right: 8px;
}

/*
  SPAN
  ...
*/

.site-foot-simple__address span {
  display: inline-block;
  margin: 8px 10px 0 10px;
  vertical-align: middle;
  font-size: 16px;  
}

/*
  LINK
  ...
*/

.site-foot-simple__address a {
  text-decoration: none;
  font-weight: 600;
  color: inherit;
}

/*
  list-socials
  ---
*/

.site-foot-simple__list-socials {
  margin: 24px 0 0 0;
}

/*
  note
  ---
*/

.site-foot-simple__note {
  margin: 12px 0 0 0;
  font-size: 12px;
}

/*
  site-foot
  ***
*/

.site-foot {
  position: relative;
  overflow: hidden;
  background-color: var(--cr-azure-light-2);
}

/*
  Columns
  ---
*/
 
.site-foot:before {
  content: '';
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--cr-pink);
}

/*
  col
  ---
*/

.site-foot__col {
  width: 50%;
  position: relative;
  float: left;
  overflow: hidden;
}
.site-foot__col__inset {
  width: 609px;
}

@media only screen and (min-width: 1401px) {

  /*
    - align
    ---
  */

  .site-foot__col--align-left .site-foot__col__inset {
    padding: 80px 100px 80px 6%;
    float: right;
  }
  .site-foot__col--align-right .site-foot__col__inset {
    padding: 80px 6% 80px 100px;
    float: left;
  }

}

@media only screen and (min-width: 601px) {

  /*
    subcol
    ---
  */

  .site-foot__subcol {
    width: 45%;
    width: calc(50% - 20px);
  }

  /*
    - align
    ---
  */

  .site-foot__subcol--align-left {
    float: left;
  }
  .site-foot__subcol--align-right {
    float: right;
  }

}

/*
  title
  ---
*/

.site-foot__title {
  margin: 0 0 12px 0;
}

/*
  note
  ---
*/

.site-foot__note {
  margin: 10px 0 0 0;
}

/*
  list-socials
  ---
*/

.site-foot__list-socials {
  float: left;
  margin-top: 18px;
  padding-right: 16px;
}

/*
  button---list
  ---
*/

.site-foot__button---list {
  margin-top: 24px;
  margin-bottom: 0;
}

/*
  nav
  ---
*/

.site-foot__nav {
  margin-top: -3px;
}

/*
  LINK
  ...
*/

.site-foot__nav a {
  display: block;
  padding: 4px 0;
  line-height: 1.6;
  font-weight: 600;
  font-size: 16px;
}

/*
  address
  ---
*/

.site-foot__address {
  margin: -3px 0 16px 0;
  line-height: 1.55;
  font-size: 16px;
}

/*
  LINK
  ...
*/

.site-foot__address a {
  display: block;
  padding: 3px 0;
  line-height: inherit;
  font-weight: 600;
}

/*
  site-alerts
  ***
*/

.site-alerts {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 32px 6% 42px 6%;
}

/*
  Adjust flash
  ---
*/

.site-alerts .flash {
  display: table;
  margin: 0 auto 12px auto;
}
.site-alerts .flash__inset {
  box-shadow: var(--sh-medium);
}

/*
  Gaps
  ...
*/

.site-alerts .flash:last-child {
  margin-bottom: 0;
}

/*
  site-message
  ***
*/

.site-message {
  padding: 84px 0 102px 0;
  border-top: 1px solid var(--cr-grey-10);
  text-align: center;
}

/*
  Adjust button
  ---
*/

.site-message .button {
  margin: 24px 6px 0 6px;
}

/*
  image
  ---
*/

.site-message__image {
  display: block;
  margin: 0 auto 24px auto;
}

/*
  title
  ---
*/

.site-message__title {
  margin: 0;
}

/*
  SMALL
  ...
*/

.site-message__title small {
  font-size: 60%;
}

/*
  excerpt
  ---
*/

.site-message__excerpt {
  margin: 16px 0 0 0;
  font-size: 20px;
}

/*
  site-loader
  ***
*/

.site-loader {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  background-color: rgba(243, 224, 205, 0.6);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 150ms linear;
}

/* - active */

.site-loader.--active {
  pointer-events: all;
  opacity: 1;
}

/*
  Adjust spinner
  ---
*/

.site-loader .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}

/*
  a
  ***
*/

.a {
  display: inline-block;
  text-decoration: none;
  color: var(--cr-azure-dark);
}

/*
  - align
  ---
*/

.a--align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

/*
  Icon
  ---
*/

.a__icon {
  width: 16px;
  height: 16px;
  top: -1px;
  margin-right: 4px;
}

/*
  size
  ...
*/

.a__icon--size-large {
  width: 26px;
  height: 26px;
}

/*
  title
  ---
*/

.a__title {
  text-decoration: underline;
  font-size: 15px;
}

/*
  subtitle
  ***
*/

.subtitle {
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--ff-montserrat);
  color: var(--cr-azure-dark-3);
}

/*
  - size
  ---
*/

.subtitle--size-small {
  line-height: 1.5;
  font-size: 14px;
}

.subtitle--size-large {
  line-height: 1.5;
  font-size: 20px;
}

/*
  list-progress
  ***
*/

.list-progress {
  display: block;
  text-align: left;
}

/*
  list
  ---
*/

.list-progress__list {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  list-style: none;
}

/*
  item
  ---
*/

.list-progress__item {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  background-color: var(--cr-white);
}
.list-progress__item__inset {
  display: block;
  padding: 30px 32px 30px 122px;
  line-height: 1.4;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-large);
  color: var(--cr-azure-dark-2);
}

/*
  Gaps
  ...
*/

.list-progress__item:first-child {
  border-top-left-radius: var(--rd-medium);
  border-bottom-left-radius: var(--rd-medium);
}
.list-progress__item:last-child {
  border-top-right-radius: var(--rd-medium);
  border-bottom-right-radius: var(--rd-medium);
}

/*
  Plus
  ...
*/

.list-progress__item:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 1;
  right: -15px;
  top: 50%;
  margin-top: -15px;
  background: url('../img/icons/color/plus-green.svg') center center no-repeat;
  background-size: contain;
}

/*
  Gaps
*/

.list-progress__item:last-child:after {
  display: none;
}

/*
  subtitle
  ...
*/

.list-progress__item__subtitle {
  margin-bottom: 4px;
  font-size: 14px;
}

/*
  icon
  ...
*/

.list-progress__item__icon {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 26px;
  top: 50%;
  margin-top: -45px;
}

/*
  list-icomarks
  ***
*/

.list-icomarks {
  margin-left: 0;
  list-style: none;
}

/*
  item
  ---
*/

.list-icomarks__item {
  position: relative;
  padding: 4px 0 4px 72px;
}

/*
  Icon
  ...
*/

.list-icomarks__item:before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  left: 36px;
  top: 50%;
  z-index: 1;
  margin-top: -11px;
  background: var(--cr-azure) url('../img/icons/white/info.svg') 7px 3px no-repeat;
  background-size: auto 9px;
  border: 2px solid var(--cr-black);
  border-radius: 50%;
}

/*
  - check
*/

.list-icomarks__item.--check:before {
  background-color: var(--cr-green);
  background-image: url('../img/icons/white/check.svg');
  background-position: 4.5px 2.5px;
}

/*
  icon
  ...
*/

.list-icomarks__item__icon {
  width: 42px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/*
  table-params
  ***
*/

.table-params {
  display: block;
  margin: 24px 0;
}

/*
  a
  ---
*/

.table-params__a {
  display: table;
  margin: 12px auto 0 auto;
}

/*
  table
  ---
*/

.table-params__table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 4px;
}

/*
  CAPTION
  ...
*/

.table-params__table caption {
  margin-bottom: 8px;
  line-height: 1.6;
  text-align: left;
}

/*
  CELLS
  ...
*/

.table-params__table th {
  font-weight: 700;
  color: var(--cr-azure-dark-2);
}


/*
  address
  ***
*/

.address {
  display: block;
  margin: 24px 0;
  text-align: center;
  font-size: 16px;
}

/*
  title
  ---
*/

.address__title {
  display: inline-block;
  margin: 0 0 18px 0;
  padding: 10px 0 10px 58px;
  background: url('../img/icons/color/pin-red.svg') 12px center no-repeat;
  font-weight: 600;
  font-size: 19px;
  color: var(--cr-black);
}

/*
  content
  ---
*/

.address__content {
  width: 100%;
  min-height: 142px;
  display: table;
  background-color: var(--cr-white);
  border-radius: var(--rd-medium);
  text-align: left;
}

/*
  col
  ...
*/

.address__content__col {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 24px 32px;
}

/*
  Gaps
*/

.address__content__col:first-child {
  border-top-left-radius: var(--rd-medium);
  border-bottom-left-radius: var(--rd-medium);
}
.address__content__col:last-child {
  border-top-right-radius: var(--rd-medium);
  border-bottom-right-radius: var(--rd-medium);
}

/*
  - image
*/

.address__content__col--image {
  padding: 0;
  background: #eee center center no-repeat;
  background-size: cover;
}

/* IMG */

.address__content__col--image img {
  opacity: 0;
}

/*
  - icon
*/

.address__content__col--icon {
  padding-left: 102px;
  background: 32px center no-repeat;
  background-size: 50px auto;
}

/*
  price
  ---
*/

.address__price {
  margin-top: 36px;
}

/*
  grecaptcha-badge
  ***
*/

.grecaptcha-badge {
  visibility: collapse;
}

/*
  SHIT
  ***
*/

.--layout-city .site-section#recenze {
  margin-top: 64px;
}

