@charset "UTF-8";
@import "bootstrap-grid.css";
@font-face {
  font-family: "GothamPro";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/gothampro-regular.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/gothampro-medium.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/gothampro-bold.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: black;
  font-weight: 900;
  src: url("../fonts/gothampro-black.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/Lato-Bold.woff2") format("woff2");
}
* {
  box-sizing: border-box;
  transition: 0.3s ease;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background-color: #000;
  color: #fff;
}

input, textarea {
  outline: none;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.2;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  color: #000;
  background-color: #fff;
  margin: 0;
}
body.load-overflow {
  overflow: hidden;
}

.prelouder .louder::before {
  content: "";
  width: 180px;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1;
  animation: line-animated-wait-prelouder 2s linear infinite;
}

.loaded .prelouder {
  display: none;
}

@keyframes line-animated-wait-prelouder {
  0% {
    left: -180px;
  }
  100% {
    left: 100%;
  }
}
h1, h2, h3, h4, p, input, button, a {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

section {
  position: relative;
}

img {
  width: 100%;
  pointer-events: none;
  cursor: default;
}
img::-moz-selection {
  background-color: transparent;
  color: #fff;
}
img::selection {
  background-color: transparent;
  color: #fff;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.all-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

:root {
  --green: #009e60;
  --green-dark: #064c2b;
  --green-50: #e9f7f0;
  --text: #111827;
  --muted: #6b7280;
  --border: #e7e9f0;
  --bg: #f6faf7;
  --white: #fff;
  --shadow: 0 1px 2px 0 rgba(0,0,0,0.28),0 2px 6px 2px rgba(0,0,0,0.07);
  --yellow: #facc15;
  --green-strong: #16a34a;
}

.delivery-page {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Modal */
  /* ЕСИА */
  /* Toast + пуш */
  /* Системная плашка */
}
.delivery-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.delivery-page main {
  flex: 1;
}
.delivery-page a {
  color: var(--green);
  text-decoration: none;
}
.delivery-page .header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.delivery-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.delivery-page .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.delivery-page .row * {
  width: auto;
}
.delivery-page .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.delivery-page .logo {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  background: var(--green);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  margin-top: 0;
  background-image: url("../img/my-delivery.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px;
}
.delivery-page .brand h1 {
  font-size: 1rem;
  font-weight: 700;
}
.delivery-page .topnav {
  display: flex;
  gap: 18px;
}
.delivery-page .topnav a {
  color: var(--muted);
  padding: 18px 0;
  transition: color 0.15s ease;
  font-weight: 500;
  font-size: 14px;
}
.delivery-page .topnav a:hover {
  color: var(--green-dark);
}
.delivery-page .topnav a.active {
  color: var(--green-dark);
  font-weight: 500;
  border-bottom: 2px solid var(--green);
}
.delivery-page .page {
  position: relative;
  max-width: 980px;
  width: 100%;
}
.delivery-page .page-inner {
  max-width: 980px;
  margin: 28px auto;
  padding: 0 12px;
  width: 100%;
}
.delivery-page .hero {
  background: linear-gradient(135deg, var(--green-50), #f1fbf6);
  border: 1px solid #d4e9df;
  padding: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  overflow: hidden;
}
.delivery-page .hero .right-part {
  max-width: 200px;
  padding-top: 24px;
  margin-bottom: -10px;
}
.delivery-page .hero h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.delivery-page .hero p {
  color: var(--muted);
}
.delivery-page .input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%;
  font-weight: bold;
  resize: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
}
.delivery-page .input::-moz-placeholder {
  color: va(--muted);
}
.delivery-page .input::placeholder {
  color: va(--muted);
}
.delivery-page .input:focus {
  outline: 3px solid rgba(0, 158, 96, 0.18);
  border-color: var(--green);
}
.delivery-page .btn {
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.delivery-page .btn:hover {
  transform: scale(1.02);
}
.delivery-page .btn.secondary {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid var(--border);
}
.delivery-page .btn.warn {
  background: var(--yellow);
  color: #111;
}
.delivery-page .btn.success {
  background: var(--green-strong);
  color: #fff;
}
.delivery-page .btn:disabled {
  opacity: 0.6;
}
.delivery-page .controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  margin-top: 16px;
  padding: 7px;
  background: linear-gradient(135deg, #38ac72, #2fef8f);
  border-radius: 7px;
  box-shadow: var(--shadow);
}
.delivery-page .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.delivery-page .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 16px;
  margin-top: 16px;
}
.delivery-page .tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  overflow: hidden;
}
.delivery-page .tile.-nodown-padding {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.delivery-page .tile.-nodown-padding b {
  width: 100%;
}
.delivery-page .tile.-nodown-padding .timeline {
  width: 100%;
}
.delivery-page .tile.-nodown-padding img {
  margin-bottom: -10px;
  max-width: 140px;
  margin-top: 14px;
}
.delivery-page .tile b {
  font-size: 16px;
  line-height: 22px;
}
.delivery-page .tile p {
  margin-top: 21px;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  color: var(--muted);
}
.delivery-page .grid {
  display: grid;
  gap: 14px;
}
.delivery-page .-big-child {
  margin-bottom: 30px;
  border-radius: 0;
  padding: 0;
  border: 0;
}
@media (min-width: 680px) {
  .delivery-page .grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .delivery-page .grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.delivery-page .meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.delivery-page .timeline {
  margin-top: 12px;
  padding-left: 0;
}
.delivery-page .item {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.delivery-page .dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 6px;
  flex: 0 0 10px;
}
.delivery-page .dot.-grey {
  background: #c2c8d4;
}
.delivery-page .pillwrap {
  display: flex;
  gap: 7px;
  margin-top: 30px;
  align-items: flex-start;
}
.delivery-page .pillwrap .partner-service {
  width: 12.5%;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}
.delivery-page .pillwrap .partner-service .logo-part {
  width: 60px;
  border-radius: 4px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: calc(100% + 4px);
  background-position: center;
}
.delivery-page .pill {
  border: 0;
  background: #fff;
  border-radius: 999px;
  padding: 0;
  font-size: 0.9rem;
  font-size: 12px;
  text-align: center;
  margin-top: 7px;
  font-weight: 600;
}
.delivery-page .pill:hover {
  border-color: #cdebdc;
}
.delivery-page .page {
  display: none;
}
.delivery-page .page.active {
  display: block;
}
.delivery-page footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.delivery-page .hidden {
  display: none !important;
}
.delivery-page .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.delivery-page .modal-backdrop.-show-modal {
  display: flex;
}
.delivery-page .modal {
  background: #fff;
  border-radius: 12px;
  max-width: 720px;
  width: 100%;
  padding: 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.delivery-page .modal .item {
  margin-top: 4px;
}
.delivery-page .modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}
.delivery-page .modal header b {
  font-size: 1.05rem;
}
.delivery-page .modal .body {
  padding: 14px 16px;
}
.delivery-page .close {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
}
.delivery-page .esia-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 6px 0;
}
.delivery-page .esia-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 6px;
}
.delivery-page .esia-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #0a58ca;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.delivery-page .esia-title {
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  color: #111827;
}
.delivery-page .esia-sub {
  margin-top: 4px;
  text-align: center;
  color: #6b7280;
}
.delivery-page .esia-card {
  margin-top: 16px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  padding: 18px;
}
.delivery-page .esia-note {
  margin-top: 10px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}
.delivery-page .esia-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}
.delivery-page .esia-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  background: #0a58ca;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.delivery-page .esia-btn:hover {
  background-color: #1d5deb;
}
.delivery-page .esia-ghost {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.delivery-page .esia-inp {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cdd6f4;
  background: #f8fbff;
  border-radius: 8px;
}
.delivery-page .esia-inp + .esia-inp {
  margin-top: 10px;
}
.delivery-page .esia-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.delivery-page .esia-muted {
  color: #6b7280;
  font-size: 0.9rem;
}
.delivery-page .esia-code {
  text-align: center;
}
.delivery-page .esia-timer {
  margin-top: 10px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}
.delivery-page .badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: #111827;
}
.delivery-page .toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 250;
  font-size: 0.9rem;
}
.delivery-page .push-sms {
  position: fixed;
  right: 16px;
  top: 16px;
  background: #111827;
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 260;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  max-width: 90vw;
  line-height: 1.2;
}
.delivery-page .push-sms .hint {
  font-size: 0.88rem;
  opacity: 0.85;
}
.delivery-page .push-sms.fade {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.delivery-page .alert {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #f4d24d;
  background: linear-gradient(180deg, #fff7cc, #fff3a3);
  color: #4b3b00;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.delivery-page .alert b {
  font-weight: 800;
}
.delivery-page .alert .msg {
  line-height: 1.35;
}
.delivery-page .all-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.delivery-page #services {
  display: flex;
  align-items: center;
  padding-bottom: 60px;
  display: none;
}
.delivery-page #services.active {
  display: flex;
}
.delivery-page #services h2 {
  margin-bottom: 30px;
}
.delivery-page #services .tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.delivery-page #services .tile .btn {
  padding: 8px 16px;
  margin-top: 14px;
}
.delivery-page #services .tile:first-child {
  background-color: #d0fbf1;
  border: 1px solid #addfd3;
}
.delivery-page #services .tile:nth-child(2) {
  background-color: #cfedff;
  border: 1px solid #b5d0e1;
}
.delivery-page #services .tile:nth-child(3) {
  background-color: #e1e2fe;
  border: 1px solid #c0c3ea;
}
.delivery-page #services .tile:nth-child(4) {
  background-color: #fff0d4;
  border: 1px solid #ead7b3;
}
.delivery-page #services .tile:nth-child(5) {
  background-color: #c5f6fc;
  border: 1px solid #b5dfe4;
}
.delivery-page #services .tile p {
  color: #000;
}
.delivery-page .-sities-list {
  padding-top: 9px;
}
.delivery-page .-sities-list .pillwrap {
  margin-top: 0;
  flex-wrap: wrap;
}
.delivery-page .-sities-list .pillwrap .pill {
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid var(--border);
  cursor: pointer;
}
.delivery-page .-sities-list .pillwrap .pill:hover {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}
.delivery-page #officeList {
  background: linear-gradient(135deg, var(--green-50), #f1fbf6);
  border: 1px solid #d4e9df;
  padding: 0 16px;
}
.delivery-page .-add-review {
  background: linear-gradient(135deg, var(--green-50), #f1fbf6);
  border: 1px solid #d4e9df;
}
.delivery-page #reviewsList {
  padding-top: 6px;
}
.delivery-page #support {
  display: flex;
  align-items: center;
  display: none;
  padding-bottom: 60px;
}
.delivery-page #support.active {
  display: flex;
}
.delivery-page #support .card {
  background: linear-gradient(180deg, #38ac72, #2fef8f);
  border: 0;
  box-shadow: var(--shadow);
}
.delivery-page #support .card p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}
.delivery-page #support h2 {
  margin-bottom: 30px;
}
.delivery-page .input-wrap {
  position: relative;
  width: 100%;
}
.delivery-page .input-wrap .error-msg {
  background-color: #fde4e4;
  border-radius: 2px;
  padding: 4px 8px;
  font-size: 14px;
  color: #000;
  margin-top: 4px;
}
.delivery-page .input-wrap .signature-for-input {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  color: #0b1f33;
}
.delivery-page .input-wrap input {
  width: 100%;
  border: 0;
  background-color: #f5f7fa;
  height: 52px;
  border-radius: 4px;
  font-size: 18px;
  padding: 17px 16px;
  font-weight: 400;
  color: #0b1f33;
  border: 2px solid transparent;
}
.delivery-page .input-wrap input::-moz-placeholder {
  color: rgba(11, 31, 51, 0.35);
  font-size: 16px;
}
.delivery-page .input-wrap input::placeholder {
  color: rgba(11, 31, 51, 0.35);
  font-size: 16px;
}
.delivery-page .input-wrap input:focus {
  border: 2px solid #99b1e6;
}
.delivery-page .notify-sms {
  position: fixed;
  z-index: 9999;
  background-color: #0d4cd3;
  right: -2000px;
  top: 15px;
  padding: 14px;
  padding-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.7), 0 8px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.delivery-page .notify-sms.-active-code {
  right: 15px;
}
.delivery-page .notify-sms.-active-code .progress-line::before {
  animation: line-anim 30s linear;
}
.delivery-page .notify-sms .decor-logo {
  display: flex;
  align-items: center;
  max-width: 32px;
  margin-right: 10px;
}
.delivery-page .notify-sms .sms-number {
  font-weight: bold;
  margin-bottom: 4px;
}
.delivery-page .notify-sms .signature-for-sms {
  font-size: 14px;
}
.delivery-page .notify-sms .progress-line {
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.delivery-page .notify-sms .progress-line.-active-line::before {
  animation: line-anim 30s linear;
}
.delivery-page .notify-sms .progress-line::before {
  width: 5%;
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 100%;
}
@keyframes line-anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.delivery-page .mt10 {
  margin-top: 10px;
}

/*! CSS Used from: Embedded */
body {
  background: #fafcff;
  margin: 0;
}
body.-auth {
  background: #e4ecfd;
}

main {
  margin-top: 77px;
  display: flex;
  justify-content: center;
  padding: 0 17px;
  padding-bottom: 100px;
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 21px;
}

.shadow-block {
  width: calc(100vw - 34px);
}

.content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 1px 4px #e3ebfc, 0 24px 48px rgba(230, 235, 245, 0.4);
  border-radius: 12px;
}

.title {
  margin: 0;
  font-family: Lato, Arial, sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #0b1f33;
}

.sub-title {
  margin-top: 16px;
  font-family: Lato, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #66727f;
}

br {
  margin: 0;
}

.loader {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.dot-flashing {
  width: 16px;
  height: 16px;
  background: #c5d3f1;
  position: relative;
  border-radius: 50%;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0.5s;
}

.dot-flashing:after,
.dot-flashing:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 50%;
}

.dot-flashing:after {
  background: #c5d3f1;
  right: -32px;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1.2s;
}

.dot-flashing:before {
  background: #c5d3f1;
  left: -32px;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}

@media all and (min-width: 768px) {
  .shadow-block {
    width: 640px;
  }
  .title {
    font-size: 24px;
    line-height: 32px;
  }
  .sub-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media all and (min-width: 1140px) {
  .shadow-block {
    width: 597px;
  }
}
/*! CSS Used keyframes */
@keyframes dotFlashing {
  0%, 25%, 50% {
    background: #e0e9fc;
  }
  75% {
    background: #c5d3f1;
  }
  100% {
    background: #99b1e6;
  }
}
.auth {
  padding-bottom: 0;
  margin-top: 17px;
  margin-bottom: 17px;
}
.auth img {
  width: 60px;
  margin: 0 auto;
  margin-bottom: 12px;
}
.auth .-left-text {
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  color: #0b1f33;
  margin-top: 24px;
}
.auth .shadow-block {
  max-width: 549px;
}
.auth .contacts {
  text-align: left;
  margin-top: 24px;
}
.auth .contacts .signature-with-value {
  margin-bottom: 17px;
}
.auth .contacts .signature-with-value:last-child {
  margin-bottom: 0;
}
.auth .contacts .signature-with-value .signature {
  color: #66727f;
  margin-bottom: 5px;
}
.auth .contacts .signature-with-value a {
  color: #0d4cd3;
  font-size: 20px;
}

.-study2 {
  word-break: break-all;
  margin-top: 14px;
  text-align: left;
  color: #e62149;
}

.-hide {
  display: none !important;
}

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 991px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 768px) {
  /**/
  .delivery-page .hero {
    padding-right: 0;
  }
  .delivery-page .hero .right-part {
    max-width: 160px;
  }
  .delivery-page .pillwrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .delivery-page .pillwrap .partner-service {
    width: calc(25% - 7px);
  }
  .delivery-page .-sities-list .pillwrap {
    justify-content: flex-start;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 520px) {
  /**/
  .delivery-page .brand {
    padding-top: 10px;
  }
  .delivery-page .hero {
    padding-top: 14px;
  }
  .delivery-page .hero .left-part {
    padding-bottom: 14px;
  }
  .delivery-page .topnav {
    gap: 14px;
  }
  #services .page-inner {
    max-width: 360px;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 380px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 320px) {
  /**/
}
/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/
}/*# sourceMappingURL=main.css.map */