.button {
  font: 400 14px 'Roboto', sans-serif;
  color: #171e2b;
  letter-spacing: 0.1px;
  /*padding: 0 16px;*/
  padding: 0 12px;
  height: 40px;
  border-radius: 6px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; }
  .button__main {
    font-weight: 500; }
  .button__additional {
    border: 1px solid #b0b3ba;
    justify-content: space-between; }
    .button__additional.open {
      border: 1px solid #376fd8;
      background: #fff; }
      .button__additional.open .button__image-arrow {
        transform: rotate(180deg); }
    .button__additional > button {
      display: flex;
      justify-content: space-between; }
  .button__quantity {
    font: 400 14px 'Roboto', sans-serif;
    color: #376fd8;
    letter-spacing: 0.1px;
    display: inline-flex; }
  .button__image {
    width: 20px;
    height: 20px; }
    .button__image.size-16 {
      width: 16px;
      height: 16px; }
    .button__image-arrow {
      margin-left: 6px;
      margin-right: -3px; }
  .button__slide:after {
    content: '';
    width: 17px;
    height: 17px;
    margin-left: 8px;
    background: url(/images/arrow_slide_icon.svg) no-repeat center;
    background-size: 17px 17px; }
  .button__wide {
    width: 100%; }
  .button_red {
    color: #fff;
    background: #e35151; }
  .button_grey {
    background: #f9f9f9; }
  .button_blue {
    color: #fff;
    background: #376fd8; }
    .button_blue:hover {
      background: #3d7aec; }
  .button_white {
    color: #171e2b;
    background: transparent; }
  .button_azure {
    color: #171e2b;
    background: rgba(83, 128, 213, .03); }
  .button:disabled {
    filter: grayscale(1);
    opacity: 0.5; }

.navigation-button {
  width: 24px;
  height: 24px;
  display: flex; }
  .navigation-button__pen svg, .navigation-button__approve svg, .navigation-button__user svg, .navigation-button__basket svg, .navigation-button__back svg {
    fill: #666;
    transition: fill 0.2s; }
    .navigation-button__pen:hover svg, .navigation-button__approve:hover svg, .navigation-button__user:hover svg, .navigation-button__basket:hover svg, .navigation-button__back:hover svg {
      fill: #e35151; }
  .navigation-button__pen:hover svg, .navigation-button__approve:hover svg, .navigation-button__user:hover svg, .navigation-button__back:hover svg {
    fill: #376fd8; }
  .navigation-button__close svg {
    stroke: #666; }
    .navigation-button__close svg:hover {
      stroke: #e35151; }
  .navigation-button__eye {
    color: #666; }
    .navigation-button__eye:hover {
      color: #376fd8; }

.action-button {
  font: 400 14px 'Roboto', sans-serif;
  color: #171e2b;
  letter-spacing: 0.1px;
  height: 40px;
  padding: 0 14px;
  position: relative;
  border: 1px solid #376fd8;
  background: rgba(83, 128, 213, .03);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center; }
  .action-button img {
    width: 16px;
    height: 16px;
    margin-right: 8px; }
  .action-button svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    fill: #376fd8;
    transition: fill 0.2s, stroke 0.2s; }
  .action-button_disabled {
    pointer-events: none;
    color: #666;
    border: 1px solid #b0b3ba;
    background: #f2f3f3;
    cursor: default; }
    .action-button_disabled svg {
      fill: #666; }
  .action-button__sms svg {
    fill: none;
    stroke: #376fd8; }
    .action-button__sms.action-button_disabled svg {
      stroke: #666; }
  .action-button__stat {
    border-color: #b0b3ba;
    background: rgba(83, 128, 213, .03); }

.quantity-button {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .quantity-button svg {
    width: 16px;
    height: 16px; }
  .quantity-button__plus {
    background: rgba(66, 185, 117, .03); }
    .quantity-button__plus svg {
      fill: #42b975; }
  .quantity-button__minus {
    background: rgba(227, 81, 81, .03); }
    .quantity-button__minus svg {
      fill: #e35151; }
  .quantity-button_blue {
    background: #376fd8; }
    .quantity-button_blue svg {
      fill: #fff; }

.close-button {
  width: 16px;
  height: 16px;
  background: url(/images/close_icon.svg) no-repeat center;
  background-size: 16px 16px; }
  .close-button__form {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    background-size: 24px 24px; }
  .close-button__modal {
    position: absolute;
    top: 16px;
    right: 16px; }
  .close-button__gallery {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center; }
    .close-button__gallery svg {
      width: 10px;
      height: 10px;
      fill: #fff; }

/* Специфичные стили для контейнеров кнопок в блоках отмены и предложений */

.reservation-proposal__buttons {
  display: flex;
  align-items: center;
  column-gap: 8px; }

.header-content__item .header-icon__item.header-icon__item-chat {
  padding: 18px 10px 14px; }
  .header-content__item .header-icon__item.header-icon__item-chat svg {
    fill: none;
    stroke: #171e2b;
    width: 23px;
    height: 23px; }
