/* Black */

/* White */
.block {
  background: rgba(255, 255, 255, 1);
  padding: 24px 32px 32px;
  margin-bottom: 8px;
  border-radius: 24px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .block {
    padding: 20px 16px;
  }
}
.block.halved {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

/* Black */

/* White */

.screen {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  padding: 16px 8px 0;
  pointer-events: none;
}

@media (min-width: 768px) {

  .screen {
    width: 720px;
  }
}

@media (min-width: 1024px) {

  .screen {
    width: 940px;
  }
}

/* Black */

/* White */

a.secondary-link {
  height: 56px;

  background: #f2f6f7;
  text-decoration: none;
  cursor: pointer;
  border-radius: 14px;

  display: -webkit-box;

  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center
}

a.secondary-link,
  a.secondary-link:hover,
  a.secondary-link:active,
  a.secondary-link:visited {
  color: rgba(20, 20, 20, 1);
}

/* Black */

/* White */

.support-block {
  text-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.support-block .main-text {
    max-width: 648px;
  }

.support-block .title {
    margin-bottom: 8px;
  }

.support-block .link-wrapper {
    margin-top: 24px;
    width: 100%;
    max-width: 468px;
  }

@media (min-width: 768px) {

  .support-block .link-wrapper {
      width: 312px;
      -webkit-box-pack: center;
              justify-content: center;
  }
}

/* Black */

/* White */

.promocode-input-container {
  max-width: 468px;
  width: 100%;
  position: relative;
}

.promocode-input-container .promocode-input {
    height: 64px;
    padding: 16px 22px;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 14px;
    text-align: center;
    width: 100%
  }

.promocode-input-container .promocode-input.error {
  border-color: #ff5641;
}

.promocode-input-container .promocode-error {
    color: #ff5641;
    margin-top: 8px;
    text-align: left;
  }

/* Black */

/* White */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 20, 20, 0.56);
  z-index: -1;
  -webkit-transition: opacity 0.01s;
  transition: opacity 0.01s;
  pointer-events: none;
  opacity: 0;
}
@media (min-width: 768px) {
  .overlay {
    display: none;
  }
}

/* Black */

/* White */

.screen-container {
  position: fixed;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  overflow: hidden
}

.screen-container.scrollable {
  overflow-y: auto;
  display: block;
}

.screen-container.expanded {
  overflow: hidden;
}

@media (min-width: 768px) {

  .screen-container {
    padding-top: 8px !important
  }
}

/* Black */

/* White */

.header {
  text-align: center;
  margin-bottom: 16px;
}

.header h3 {
    margin-bottom: 4px;
    margin-top: 16px;
  }

.header .header-icon-wrapper {
    background: black;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    margin: -74px auto 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    overflow: hidden;
  }

.header .header-icon-wrapper img {
      width: 80%;
      height: 80%;
    }

/* Black */

/* White */

.promocode-screen {
  margin: 140px auto auto;
}

@media (max-width: 768px) {

  .promocode-screen {
    margin: 0;
  }
}

.promocode-screen .promocode-title-wrapper {
    text-align: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-pack: center;
            justify-content: center;
}

.promocode-screen .promocode-title-wrapper .promocode-title {
      max-width: 520px;
    }

.promocode-screen .promocode-input-wrapper {
    width: 100%;
    position: relative;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: flex;
    margin-top: 24px;
}

/* Black */

/* White */

.expandable-block {
  -webkit-transition: padding-bottom 200ms, margin 200ms;
  transition: padding-bottom 200ms, margin 200ms;
  margin-bottom: 8px;
  pointer-events: none;

  display: -webkit-box;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: stretch;
          align-items: stretch;
}

.expandable-block .block {
    margin-bottom: 0;
  }

.expandable-block.expanded {
  padding-bottom: 8px;
}

.expandable-block.expanded .block {
      -webkit-box-flex: 0;
              flex: none;
      overflow: hidden;
}

.expandable-block.expanded.stretched {
  padding-bottom: 0;
}

.expandable-block.expanded.stretched .block {
        -webkit-box-flex: 1;
                flex: 1;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 0;
}

.expandable-block.expanded.stretched .block.remove-paddings {
  padding: 0;
}

@media (max-width: 768px) {

  .expandable-block.expanded .block {
        margin-top: auto;
  }

  .expandable-block.expanded.stretched {
    margin-left: -8px;
    margin-right: -8px;
  }
}

/* Black */

/* White */

button.button-icon {
  color: transparent;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

button.button-icon svg {
    fill: rgba(20, 20, 20, 0.56);
  }

button.button-icon:hover:not(:disabled) svg {
      fill: #307ff5;
}

button.button-icon.framed {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  box-shadow: 0 0 10px rgba(20, 20, 20, 0.32);
}

button.button-icon.framed svg {
      fill: rgba(20, 20, 20, 1);
}

.icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  overflow: hidden;
}

/* Black */

/* White */

.close-modal-button-wrapper {
  display: -webkit-box;
  display: flex;
}

.close-modal-button-wrapper .close-modal-button {
    margin-left: auto;

    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.24)
  }

.close-modal-button-wrapper .close-modal-button .icon svg, .close-modal-button-wrapper .close-modal-button:hover .icon svg {
        fill: rgba(255, 255, 255, 1);
}

.close-modal-button-wrapper.choose-on-map {
  position: absolute;
  z-index: 1000;
  top: 32px;
  left: 24px;
  background: none;
}

.close-modal-button-wrapper.choose-on-map .close-modal-button {
      width: 40px;
      height: 40px;
      background: white;
      box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);

      box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12157);

      box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.14118);
}

/* Black */

/* White */

.address-input-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-flex: 1;
          flex: 1;
  overflow: hidden;
}

.address-input-wrapper .close-modal-button-wrapper {
    margin-bottom: 20px;
  }

.address-input-wrapper.with-border {
  border-radius: 4px;
}

/* Black */

/* White */

.address-input-head-closed {
  width: 100%;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  margin: 16px 0 0;
  white-space: nowrap;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
  cursor: pointer
}

.address-input-head-closed > div {
  -webkit-box-flex: 1;
          flex: 1;
  overflow: hidden;
  margin-right: 16px;
}

.address-input-head-closed.disabled {
  color: rgba(20, 20, 20, 0.7);
  padding-bottom: 12px;
  margin-top: 12px;
  cursor: not-allowed;
}

/* Black */

/* White */

.address-input-head-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center
}

.address-input-head-wrapper > .icon {
  margin-right: 16px;
}

.address-input-head-wrapper.source .icon.icon-address-marker-20 .center {
      fill: #ff5641;
}

.address-input-head-wrapper.source .icon.icon-address-marker-20 .ring {
      stroke: #ff5641;
}

.address-input-head-wrapper.destination .icon.icon-address-marker-20 .center {
      fill: #307ff5;
}

.address-input-head-wrapper.destination .icon.icon-address-marker-20 .ring {
      stroke: #307ff5;
}

.address-input-head-wrapper .icon.icon-lock-20 {
    fill: rgba(20, 20, 20, 0.7);
}

.address-popup {
  -webkit-box-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  display: -webkit-box;
  display: flex;
  overflow: hidden;
}

.overscroll-preventer-container {
  overflow-y: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

  .overscroll-preventer-container .overscroll-preventer-inner {
    height: calc(100% + 3px);
    overflow-y: scroll;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

.address-list {
  overflow-y: scroll;
  -webkit-box-flex: 1;
          flex: 1;
}

/* Black */

/* White */

button.primary {
  height: 56px;
  border-radius: 14px;
  background: #307ff5;
  color: rgba(255, 255, 255, 1);
  border: none
}

button.primary:disabled {
  background: rgba(20, 20, 20, 0.24);
}

/* Black */

/* White */

.clear-input-wrapper {
  -webkit-box-flex: 1;
          flex: 1;
  position: relative;
}

.clear-input-wrapper .clear-input-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }

/* Black */

/* White */

.yandex-map {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
  height: 700px;
  width: 100%;
  margin-bottom: 110px;
  border-radius: 4px;
}

/* Black */

/* White */

.address-list-item-button {
  width: 100%;
  padding: 12px 36px;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start
}

.address-list-item-button:disabled .address-list-item-name,
    .address-list-item-button:disabled .address-list-item-subtitle {
      color: rgba(20, 20, 20, 0.7);
}

.address-list-item-button:disabled .address-list-item-caption {
      color: #ff5641;
}

/* Black */

/* White */

.shop-list-item-button {
  width: 100%;
  padding: 12px 36px;
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
}

@media (min-width: 768px) {

  .shop-list-item-button:last-child {
    margin-bottom: 100px;
  }
}

.shop-list-item-button:disabled .address-list-item-name,
    .shop-list-item-button:disabled .address-list-item-subtitle {
      color: rgba(20, 20, 20, 0.7);
}

.shop-list-item-button .shop-text {
    -webkit-box-flex: 1;
            flex: 1;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
}

.shop-list-item-button .shop-list-item-caption {}

.shop-list-item-button .image-container {
    margin-left: 16px;
}

@media (max-width: 768px) {

  .shop-list-item-button .image-container {
    display: none;
  }
}

.shop-list-item-button .image-container img {
      lign-self: flex-start;
      border-radius: 4px;
      max-height: 100px;
      -o-object-fit: contain;
         object-fit: contain;
      box-shadow: 0 0 1px 0 rgba(45, 39, 132, 0.2), 0 5px 6px 0 rgba(45, 39, 132, 0.2);
}

/* Black */

/* White */

.address-list-item-button {
  width: 100%;
  padding: 12px 36px;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start
}

.address-list-item-button:disabled .address-list-item-name,
    .address-list-item-button:disabled .address-list-item-subtitle {
      color: rgba(20, 20, 20, 0.7);
}

.address-list-item-button:disabled .address-list-item-caption {
      color: #ff5641;
}

/* Black */

/* White */

.address-input-element-wrapper input {
    width: 100%;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    margin: 16px 0 0;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 36px;
  }

.address-input-element-wrapper.hidden {
    position: absolute;
    top: -99999px;
    left: -99999px;
}

.confirm-choose-on-map-address {
  margin-top: 24px;
}

.choose-address-on-map {
  display: -webkit-box;
  display: flex;
  margin: 16px 0 0;
  padding: 12px 0;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.choose-address-on-map .icon {
    margin-right: 16px;
  }

.change-mode-button {
    position: absolute;
    width: 150px;

    left: calc(50% - 75px);
}

/* Black */

/* White */

.select-shop-screen {
  margin: 140px auto auto;
}

@media (max-width: 768px) {

  .select-shop-screen {
    margin: 0;
  }
}

.select-shop-screen .error {
    margin: 8px 0;
    color: #ff5641;
}

.select-shop-screen .input-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 100%;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    display: -webkit-box;
    display: flex;
    height: 100%;
}

.select-shop-screen .input-container .address-input-wrapper {
      width: 100%;
      max-width: 468px;
    }

.select-shop-screen .header {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.select-shop-screen .header.hide {
    overflow: hidden;
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.select-shop-screen.expanded {
  margin-top: 0;
  touch-action: none;
}

.select-shop-screen.expanded .address-input-wrapper {
      max-width: 100%;
}

.select-shop-screen {
  padding-bottom: 16px
}

.select-shop-screen.expanded {
  touch-action: none;
}

.select-shop-screen.transition-appear {
  opacity: 0;
}

.select-shop-screen.transition-appear-active {
  opacity: 1;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}

.select-shop-screen.transition-exit {
  opacity: 1;
}

.select-shop-screen.transition-exit-active {
  opacity: 0;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}

.select-shop-screen .detect-geolocation-wrapper {
    position: relative;
}

.select-shop-screen .detect-geolocation-wrapper .detect-geolocation-button {
      position: absolute;
      top: calc(-16px - 16px - 48px);
      right: -16px;
    }

.select-shop-screen .call-support {
    margin: 16px 0;
}

@media (min-width: 768px) {
      .select-shop-screen .detect-geolocation-wrapper .detect-geolocation-button {
        position: fixed;
        top: 16px;
        right: calc(-2 * 24px);
      }
}

/* Black */

/* White */

.footer {
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 52px;
  background-color: white;
  padding: 16px 0;
}

.footer .footer-text-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }

.footer .icon {
    margin-right: 8px;
  }

@media (min-width: 768px) {

  .footer {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

/* Black */

/* White */
/* Black */
/* White */
@font-face {
    font-family: "Styrene A Web";
    src: url(/fonts/93b31f73b1afd0589a0414d30ded5195.woff2) format("woff2"),
    url(/fonts/f517d881f523b537ce63171c6a7d6f2a.woff) format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Styrene A Web";
    src: url(/fonts/a0ab43fafc15360aaf101fa554224ff3.woff2) format("woff2"),
    url(/fonts/3a8a335e963149edf451d284f8a6fa38.woff) format("woff");
    font-weight: 300;
    font-style: normal;
}
.regular {
    font-weight: 300;
}
.medium {
    font-weight: 500;
}
.black-5 {
    color: rgba(20, 20, 20, 0.32);
}
.black-7 {
    color: rgba(20, 20, 20, 0.7);
}
.red {
    color: #ff5641;
}
.body {
    font-family: "Styrene A Web", sans-serif;
    font-size: 14px;
    line-height: 20px;
}
.caption {
    font-family: "Styrene A Web", sans-serif;
    font-size: 12px;
    line-height: 16px;
}
.label {
    font-family: "Styrene A Web", sans-serif;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
}
.title {
    font-family: "Styrene A Web", sans-serif;
    font-size: 18px;
    line-height: 24px;
}
h1,
.heading1 {
    font-family: "Styrene A Web", sans-serif;
    font-size: 24px;
    line-height: 30px;
}
h3,
.heading3 {
    font-family: "Styrene A Web", sans-serif;
    font-size: 22px;
    line-height: 28px;
}
a,
a:hover,
a:visited {
    color: #307ff5;
    text-decoration: none;
    cursor: pointer;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
}

::-webkit-scrollbar {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
  background-image: -webkit-linear-gradient(45deg, white, #FAE0C2);
  background-image: linear-gradient(45deg, white, #FAE0C2);
}

body {
  font-family: "Styrene A Web", sans-serif;
  overflow: hidden;
  color: #000;
  background-image: url(/assets/25f9fab530a134e173c110e58ccdffb1.png);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center 20%;
}

/* iOS 12 fix */
html,
body {
  -webkit-overflow-scrolling: touch !important;
  overflow: auto !important;
  height: 100% !important;
}

input,
button,
textarea,
a.button,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  font-family: "Styrene A Web";
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0
}

input:focus, button:focus, textarea:focus, a.button:focus, select:focus {
    outline: none;
}

input:disabled, button:disabled, textarea:disabled, a.button:disabled, select:disabled {
    cursor: not-allowed;
}

::-webkit-input-placeholder {
  color: rgba(20, 20, 20, 0.32);
}

::-moz-placeholder {
  color: rgba(20, 20, 20, 0.32);
}

::-ms-input-placeholder {
  color: rgba(20, 20, 20, 0.32);
}

::placeholder {
  color: rgba(20, 20, 20, 0.32);
}

label {
  cursor: pointer;
}

button,
a.button {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  cursor: pointer;
}

.main button {
    cursor: pointer
  }

.main button:disabled {
    cursor: not-allowed;
}

.loader,
.loader:after {
  border-radius: 50%;
}
.loader {
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Black */

/* White */

.landing-loader-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.landing-loader-container .text {
    color: white;
    margin-top: 16px;
  }

