.loader-wrapper {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
}

  .loader-wrapper .spinner {
    text-align: center
  }

  .loader-wrapper .spinner > div {
  width: 1rem;
  height: 1rem;
  margin: 1rem 0.25rem;
  background-color: #141414;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
          animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

  .loader-wrapper .spinner .bounce1 {
      -webkit-animation-delay: -0.32s;
              animation-delay: -0.32s;
}

  .loader-wrapper .spinner .bounce2 {
      -webkit-animation-delay: -0.16s;
              animation-delay: -0.16s;
}

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

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

.language-selector {
}

.not-authorized-layout {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

  .not-authorized-layout header {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
    background: #141414;
    margin-bottom: 8rem;
  }

  .not-authorized-layout header .logo-full-icon {
      margin-top: 0.5rem;
      margin-left: 0.5rem;
      padding: 0;
      height: 5rem;
      fill: rgba(223, 255, 239, 1);
    }

  .not-authorized-layout header .language-selector {
      margin-right: 0.5rem;
      margin-left: auto;
    }

  .not-authorized-layout .content {
    width: 100%;
    max-width: 20rem;
    padding: 1rem;
  }

  .not-authorized-layout h1 {
    color: #141414;
    font-family: "Futura PT";
    font-weight: 300;
    font-size: 1.5rem;
    margin: 0 0 1rem;
    text-align: center;
  }

  .not-authorized-layout a {
    color: #848580;
    margin: 0 0.5rem
  }

  .not-authorized-layout a.disabled-link {
  color: #e4e5e0;
  text-decoration: none;
  pointer-events: none;
}

  .not-authorized-layout .error {
    color: #f55838;
    font-weight: normal;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
  }

  .not-authorized-layout form .form-field {
    margin: 1rem 0;
  }

  .not-authorized-layout .form-footer {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
  }

  .not-authorized-layout .form-footer button {
      margin-left: auto;
    }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 36px;
  height: 1px;
  border-radius: 0;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.navigation {
  background: #141414;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  width: 4rem;

  display: -webkit-box;

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

  .navigation .mobile-header {
    display: none;
  }

  .navigation .content {
    -webkit-box-flex: 1;
            flex: 1;

    background: #141414;
    color: #f4f5f0;
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch;
  }

  .navigation .content .items {
      width: 100%;
      min-height: 100%;

      display: -webkit-box;

      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      padding-bottom: 1rem;
    }

  .navigation .content .items .logo {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        -webkit-box-align: center;
                align-items: center;
        -webkit-box-pack: center;
                justify-content: center;
        margin: 1rem 1rem 2rem;
      }

  .navigation .content .items .logo .logo-full-icon {
          display: none;
          height: 2rem;
          fill: rgba(0, 249, 201, 1);
        }

  .navigation .content .items .logo .logo-icon {
          width: 2rem;
          height: 2rem;
          fill: rgba(0, 249, 201, 1);
        }

@media (max-width: 960px) {

  .navigation .content .items .logo .logo-full-icon {
            display: block;
  }

  .navigation .content .items .logo .logo-icon {
            display: none;
  }
}

.navigation .content .items > a,
      .navigation .content .items .logout {
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        width: 100%;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        -webkit-box-align: center;
                align-items: center;
        background: none;
        border: none;
        padding: 0.5rem 1rem;
        margin: 0;
        color: rgba(0, 249, 201, 1);
        text-decoration: none;
        -webkit-transition: color 0.2s;
        transition: color 0.2s;
}

.navigation .content .items > a .icon, .navigation .content .items .logout .icon {
  height: 2rem;
  margin-right: 1rem;
  fill: rgba(0, 249, 201, 1);
  stroke: rgba(0, 249, 201, 1);
}

.navigation .content .items > a .icon.disputes-icon, .navigation .content .items .logout .icon.disputes-icon {
  height: 1.4rem;
}

.navigation .content .items > a:hover, .navigation .content .items .logout:hover {
  color: #f4f5f0;
}

.navigation .content .items > a:hover .icon, .navigation .content .items .logout:hover .icon {
  fill: #f4f5f0;
  stroke: #f4f5f0;
}

.navigation .content .items > a.logout, .navigation .content .items .logout.logout {
  display: none;
}

.navigation .content .items > a.partially-current, .navigation .content .items .logout.partially-current {
  pointer-events: none;
  cursor: default;
  background: rgba(0, 249, 201, 1);
  color: rgba(0, 249, 201, 1);
}

.navigation .content .items > a.partially-current .icon, .navigation .content .items .logout.partially-current .icon {
  fill: #141414;
  stroke: #141414;
}

.navigation .content .items > a,
      .navigation .content .items .logout {
  -webkit-box-pack: center;
          justify-content: center;
}

.navigation .content .items > a > .icon, .navigation .content .items .logout > .icon {
  margin: 0;
}

.navigation .content .items > a > .title, .navigation .content .items .logout > .title {
  display: none;
}

@media (max-width: 960px) {

  .navigation .content .items > a,
      .navigation .content .items .logout {
    -webkit-box-pack: center;
            justify-content: center;
  }

  .navigation .content .items > a > .icon, .navigation .content .items .logout > .icon {
    width: 3rem;
    height: 2rem;
  }

  .navigation .content .items > a > .icon.disputes-icon, .navigation .content .items .logout > .icon.disputes-icon {
    height: 1.4rem;
  }

  .navigation .content .items > a > .icon.deliveries-icon, .navigation .content .items .logout > .icon.deliveries-icon {
    width: 2rem;
    margin-right: 0.5rem;
  }

  .navigation .content .items > a > .title, .navigation .content .items .logout > .title {
    display: inline;
    font-weight: 300;
    font-size: 1.5rem;
  }

  .navigation .content .items > a.logout, .navigation .content .items .logout.logout {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
  }
}

.navigation .content .items .separator {
        margin-top: auto;
}

@media (max-width: 960px) {

  .navigation {
    width: 100%;
  }

  .navigation .mobile-header {
      height: 4rem;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
              flex-direction: row;
      -webkit-box-align: center;
              align-items: center;
      padding: 0rem 1rem;
  }

      .navigation .mobile-header .logo-icon {
        width: 2rem;
        height: 2rem;
        fill: rgba(0, 249, 201, 1);
        opacity: 0;
        -webkit-transition: opacity 0.4s;
        transition: opacity 0.4s;
      }

      .navigation .mobile-header .hamburger-button {
        margin-left: auto;
        outline: none;
      }

        .navigation .mobile-header .hamburger-button .hamburger-inner,
        .navigation .mobile-header .hamburger-button .hamburger-inner::before,
        .navigation .mobile-header .hamburger-button .hamburger-inner::after {
          background-color: rgba(0, 249, 201, 1);
        }

      .navigation .mobile-header .hamburger-button.is-active .hamburger-inner,
        .navigation .mobile-header .hamburger-button.is-active .hamburger-inner::before,
        .navigation .mobile-header .hamburger-button.is-active .hamburger-inner::after {
    background-color: rgba(0, 249, 201, 1);
  }

  .navigation .content {
      position: absolute;
      z-index: 1;
      top: 4rem;
      left: 0;
      right: 0;
      height: calc(100% - 4rem);
      -webkit-transition: height 0.2s ease-in-out;
      transition: height 0.2s ease-in-out;
  }

      .navigation .content .items {
        overflow-y: scroll;
      }

  .navigation.mobile-hidden .content {
        height: 0;
        -webkit-transition: height 0.2s ease-in-out;
        transition: height 0.2s ease-in-out;
  }
        .navigation.mobile-hidden .mobile-header .logo-icon {
          opacity: 1;
        }
}

.admin-layout .content > .user {
    -webkit-box-flex: initial;
            flex: initial;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
            justify-content: flex-end;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #e4e5e0;
    font-size: 0.75rem;
  }
@media (max-width: 960px) {
    .admin-layout .content > .user {
        display: none;
    }
}
.user .name {
    font-weight: 500;
    margin-right: 1rem;
}
.user .email {}
.user .logout {
    margin: 0 0rem 0 1rem;
    font-size: 0.75rem;
    border: none;
    background: none;
    color: #141414;
    cursor: pointer;
}

.admin-layout {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  flex-wrap: nowrap;
}

  .admin-layout .content,
  .admin-layout .content > div {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    overflow: hidden;
  }

  .admin-layout a {
    position: relative;
  }

  .admin-layout a .unread-messages-in-disputes {
      position: absolute;
      top: 0.75rem;
      right: 0.25rem;
      min-width: 1rem;
      padding: 0 0.125rem;
      height: 1rem;
      font-size: 0.75rem;
      line-height: 1rem;
      text-align: center;
      border-radius: 0.5rem;
      background: #398af5;
      color: #f4f5f0;
    }

@media (min-width: 1400px) {

  .admin-layout a .unread-messages-in-disputes {
      right: 1rem;
  }
}

@media (max-width: 960px) {

  .admin-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }

  .admin-layout a .unread-messages-in-disputes {
      position: static;
      position: initial;
      right: unset;
      top: unset;
      margin-left: 1rem;
      font-size: 1rem;
      height: 1.25rem;
      line-height: 1.25rem;
      padding: 0 0.25rem;
  }
}

.list-header {
  padding: 1rem;
  border-bottom: 1px solid #e4e5e0;
}

.two-column-layout {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  overflow: hidden;
}

  .two-column-layout .left-column {
    width: 30%;
    max-width: 41rem;
    min-width: 21rem;
  }

  .two-column-layout .right-column {
    -webkit-box-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: flex;
    border-left: 1px solid #e4e5e0;
  }

  .two-column-layout .right-column .right-column-container {
      -webkit-box-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      max-width: 100%;
    }

  .two-column-layout .right-column .right-column-container header {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        -webkit-box-align: center;
                align-items: center;

        box-shadow: 0 0.1rem 0.1rem rgba(20, 20, 20, 0.2);
        padding: 1rem;
        height: 3.5rem;
      }

  .two-column-layout .right-column .right-column-container header .back {
          display: none;
        }

  .two-column-layout .right-column .right-column-container .right-column-main-window {
        -webkit-box-flex: 1;
                flex: 1;
        -webkit-overflow-scrolling: touch;
        position: relative;
        padding: 1rem;
      }

@media (max-width: 960px) {

  .two-column-layout {
    position: relative;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    overflow: visible;
    width: 200%;
  }

  .two-column-layout .left-column {
      position: absolute;
      max-width: none;
      min-width: auto;
      width: 50%;
      top: 0;
      left: 0;
      bottom: 0;
  }

  .two-column-layout .right-column {
      position: absolute;
      width: 50%;
      top: 0;
      left: 50%;
      bottom: 0;
  }

      .two-column-layout .right-column .right-column-container {
        width: 100%;
      }

        .two-column-layout .right-column .right-column-container header {
          padding-left: 0;
        }
          .two-column-layout .right-column .right-column-container header .back {
            display: inline;
            display: initial;
            height: 2rem;
            margin-right: 0.5rem
          }
          .two-column-layout .right-column .right-column-container header .back svg {
    height: 2rem;
    fill: #141414;
  }

  .two-column-layout.focus-right {
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.item-placeholder {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  color: #e4e5e0;
  font-size: 2rem;
  padding: 1rem;
}

  .item-placeholder p {
    text-align: center;
  }

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.no-items {
  height: 100%;
  padding: 1rem;
  text-align: center;
  color: #e4e5e0;
  background: none;
  border: none;
  font-size: 1rem;
  box-shadow: inset 0 0.1rem 0.2rem rgba(20, 20, 20, 0.2);
}

.list-wrapper {
  -webkit-box-flex: 1;
          flex: 1;
}
  .list-wrapper .list-item {
    height: 128px;
    border: solid #e4e5e0;
    border-width: 1px 0 0
  }
  .list-wrapper .list-item:first-child {
  border-width: 0;
}
  .list-wrapper .list-item:last-child {
  border-bottom-width: 1px;
}

.privezurf-delivery-status-icon {
  stroke: none
}
.privezurf-delivery-status-icon.new {
  fill: #848580;
}
.privezurf-delivery-status-icon.offered_to_performer {
  fill: #848580;
}
.privezurf-delivery-status-icon.rejected {
  fill: #848580;
}
.privezurf-delivery-status-icon.ignored_by_performer {
  fill: #848580;
}
.privezurf-delivery-status-icon.accepted_by_performer {
  fill: #ffc603;
}
.privezurf-delivery-status-icon.source_arrived {
  fill: #ffc603;
}
.privezurf-delivery-status-icon.source_picked_up {
  fill: #141414;
}
.privezurf-delivery-status-icon.destination_arrived {
  fill: #e642f5;
}
.privezurf-delivery-status-icon.destination_dropped_off {
  fill: #40bf7f;
}
.privezurf-delivery-status-icon.canceled {
  fill: #f55838;
}
.privezurf-delivery-status-icon.performer_not_found {
  fill: #f55838;
}
.privezurf-delivery-status-icon.returning {
  fill: #398af5;
}
.privezurf-delivery-status-icon.returned {
  fill: #398af5;
}
.privezurf-delivery-status-icon.anomaly {
  fill: #f58738;
}
.from-icon circle {
    fill: #848580;
}
.from-icon path {
    fill: #e4e5e0;
}

.to-icon circle {
    fill: #e4e5e0;
}
.to-icon path {
    fill: #848580;
}

.privezurf-delivery-summary.item-card {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        -webkit-box-align: center;
                align-items: center;
}
.privezurf-delivery-summary .contents {
        -webkit-box-flex: 1;
                flex: 1;
        overflow: hidden;
}
.privezurf-delivery-summary .contents .privezurf-delivery-status-icon {
            width: 0.65rem;
            height: 0.65rem;
            margin: 0 0.5rem;
        }
.privezurf-delivery-summary .contents .phone {
            color: #141414;
            font-weight: 500;
        }
.privezurf-delivery-summary .contents .price {
            margin-left: auto;
        }
.privezurf-delivery-summary .contents .addresses > div {
        width: 100%;
        height: 1rem;
        margin-top: 0.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #848580;
}
.privezurf-delivery-summary .contents .addresses > div svg {
                    width: 1rem;
                    height: 1rem;
                    margin-right: 0.25rem;
                    vertical-align: bottom;
}

.copy-text {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;

  overflow: hidden;
}

  .copy-text-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
            justify-content: flex-end;
  }

  .copy-text-reverse .copy-text-button {
        margin-right: 8px;
        margin-left: 0;
      }

  .copy-text-label {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .copy-text-button {
    cursor: pointer;
    margin-left: 8px;
    border: none;
    outline: none;
    background-color: transparent;
    width: 16px;
    height: 16px;
  }

.toaster-message {
    text-align: center;
    padding: 16px;
    border-radius: 6px;
  }

    .toaster-message-success {
      background-color: #40bf7f;
    }

    .toaster-message-failure {
      background-color: #f55838;
    }

.two-column-layout .left-column.admin-privezurf-left-column {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  overflow: hidden;
  width: 40%;
}

@media (max-width: 960px) {
  .two-column-layout .left-column.admin-privezurf-left-column {
    width: 50%
  }
}

.admin-privezurf-right-column {
  overflow: hidden;
}

.resend-confirmation-code-button{
  background: transparent;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 1px 12px;
  font-size: 12px;
  margin-bottom: 4px;
  margin-left: 8px;
}

.resend-confirmation-code-button[disabled] {
  cursor: not-allowed;
}
.interim-point-icon circle {
    fill: #f55838;
}

.admin-privezurf-delivery-order header > h1 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: start;
                align-items: flex-start;
        margin-right: auto;
        padding: 0;
}
.admin-privezurf-delivery-order header > h1 .order-header {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
}
.admin-privezurf-delivery-order header > h1 .detailed-status {
        font-size: 0.75rem;
        color: #848580;
        font-weight: 300;
        text-align: left;
}
.admin-privezurf-delivery-order header > h1 .privezurf-delivery-status-icon {
        width: 0.65rem;
        height: 0.65rem;
        margin-right: 0.5rem;
}
  .admin-privezurf-delivery-order .details {
    overflow: hidden;
    overflow-y: scroll;
  }
  .admin-privezurf-delivery-order .details .privezurf-delivery-status-icon,
    .admin-privezurf-delivery-order .details .privezurf-delivery-performer-status-icon {
      width: 0.65rem;
      height: 0.65rem;
      margin-right: 0.5rem;
    }
  .admin-privezurf-delivery-order .details button.all-statuses-toggle {
      display: inline-block;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: none;
      cursor: pointer;
      text-align: left;
      opacity: 0.6;
      font-size: 0.75rem;
      padding: 0.25rem;
      outline: none;
      background: #e4e5e0;
      color: #848580
    }
  .admin-privezurf-delivery-order .details button.all-statuses-toggle:hover {
        opacity: 1;
}
  .admin-privezurf-delivery-order .details .all-statuses-collapsing-block {
      margin: 0;
      padding: 0;
      opacity: 0;
      -webkit-transition: height 0.2s, opacity 0.4s;
      transition: height 0.2s, opacity 0.4s;
      overflow: hidden
    }
  .admin-privezurf-delivery-order .details .all-statuses-collapsing-block.visible {
        padding: 8px 0;
        overflow: visible;
        overflow: initial;
        opacity: 1;
        -webkit-transition: height 0.2s, opacity 0.4s;
        transition: height 0.2s, opacity 0.4s;
}
  .admin-privezurf-delivery-order .details > div {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1rem;
        margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-order .details .aside {
      padding: 1.25rem 1rem 0;
      position: absolute;
      top: 0;
      right: 0;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: end;
              align-items: flex-end;
}
  .admin-privezurf-delivery-order .details .aside > div {
        margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-order .details .aside .created {
        color: #848580;
}
  .admin-privezurf-delivery-order .details .aside .deferred {
        color: #141414;
}
  .admin-privezurf-delivery-order .details h1 {
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-order .details .phone {
      color: #141414;
}
  .admin-privezurf-delivery-order .details .map-wrapper {
      max-width: 100%;
      width: 36rem;
      box-shadow: 0 0 1rem rgba(20, 20, 20, 0.2);
      margin: 1rem 0;
}
  .admin-privezurf-delivery-order .details .addresses > div {
        margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-order .details .addresses > div .verification-code {
          color: #141414;
          width: 400px;
          font-weight: bold;
          cursor: pointer;
          margin-bottom: 4px;
}
  .admin-privezurf-delivery-order .details .addresses > div .address-top-row {
          margin-bottom: 0.25rem;
          display: -webkit-box;
          display: flex;
}
  .admin-privezurf-delivery-order .details .addresses > div .address-top-row svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.25rem;
            vertical-align: bottom
          }
  .admin-privezurf-delivery-order .details .addresses > div .address-top-row svg.interim-point-icon {
        width: 0.5rem;
        height: 1rem;
        margin: 0 0.5rem 0 0.25rem;
}
  .admin-privezurf-delivery-order .details .addresses > div .address-top-row svg.from-icon circle {
                fill: #398af5;
}
  .admin-privezurf-delivery-order .details .addresses > div .address-top-row svg.from-icon path {
                fill: #f4f5f0;
}
  .admin-privezurf-delivery-order .details .addresses > div .address-top-row svg.to-icon circle {
                fill: #ffc603;
}
  .admin-privezurf-delivery-order .details .addresses > div .address-top-row svg.to-icon path {
                fill: #141414;
}
  .admin-privezurf-delivery-order .details .addresses > div span {
          white-space: nowrap;
}
  .admin-privezurf-delivery-order .details .addresses > div h4 {
          margin-top: 0.25rem;
          color: #848580;
}
  .admin-privezurf-delivery-order .details .addresses > div ul {
          padding-left: 1rem;
}
  .admin-privezurf-delivery-order .details .comment {
      word-break: break-word;
}
@media (max-width: 960px) {
      .admin-privezurf-delivery-order header .delivery-status-icon {
        margin-right: 0.5rem;
      }
      .admin-privezurf-delivery-order .details .aside {
        position: static;
        -webkit-box-align: start;
                align-items: flex-start;
        padding: 0;
        margin: 0;
      }
}

.admin-privezurf-delivery-map {
  width: 100%;
  height: 24rem;
}

.admin-privezurf-left-column .list-header {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
  }

    .admin-privezurf-left-column .list-header a {
      margin-left: auto;
      cursor: pointer;
      opacity: 0.6
    }

    .admin-privezurf-left-column .list-header a,
      .admin-privezurf-left-column .list-header a svg {
    height: 1.5rem;
}

    .admin-privezurf-left-column .list-header a svg {
        fill: none;
        stroke: #141414;
}

    .admin-privezurf-left-column .list-header a:hover {
    opacity: 1;
}

    .admin-privezurf-left-column .list-header a.current {
    pointer-events: none;
    cursor: default;
}

    .admin-privezurf-left-column .list-header a.current svg {
          stroke: #e4e5e0;
}

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.privezurf-performer-status-icon {
    stroke: none
}
.privezurf-performer-status-icon.new {
    fill: #f4f5f0;
}
.privezurf-performer-status-icon.registration {
    fill: #f4f5f0;
}
.privezurf-performer-status-icon.phone_confirmation {
    fill: #f58738;
}
.privezurf-performer-status-icon.legal_check {
    fill: #cae0fc;
}
.privezurf-performer-status-icon.legal_check_blocked {
    fill: #f55838;
}
.privezurf-performer-status-icon.legal_check_success {
    fill: #398af5;
}
.privezurf-performer-status-icon.idle {
    fill: #398af5;
}
.privezurf-performer-status-icon.translates_geolocation {
    fill: #40bf7f;
}
.privezurf-performer-status-icon.active {
    fill: #40bf7f;
}
.privezurf-performer-status-icon.checkout {
    fill: #40bf7f;
}
.privezurf-performer-status-icon.offered_order {
    fill: #40bf7f;
}
.privezurf-performer-status-icon.on_order {
    fill: #e642f5;
}
.privezurf-performer-status-icon.blocked_no_geo {
    fill: #141414;
}
.privezurf-performer-status-icon.blocked_chat_leave {
    fill: #141414;
}
.privezurf-performer-status-icon.blocked_rules_violation {
    fill: #141414;
}
.privezurf-performer-summary.item-card {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
}
.privezurf-performer-summary .contents {
    -webkit-box-flex: 1;
            flex: 1;
    overflow: hidden;
}
.privezurf-performer-summary .contents .privezurf-performer-status-icon {
      width: 0.65rem;
      height: 0.65rem;
      margin: 0 0.5rem;
    }
.privezurf-performer-summary .contents .phone {
      color: #141414;
      font-weight: 500;
    }

.admin-privezurf-delivery-performer header > h1 {
                display: -webkit-box;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                        flex-direction: column;
                -webkit-box-align: start;
                        align-items: flex-start;
                margin-right: auto;
                padding: 0;
}
.admin-privezurf-delivery-performer header > h1 .performer-header {
                font-size: 1rem;
                font-weight: 500;
                text-align: left;
}
.admin-privezurf-delivery-performer header > h1 .detailed-status {
                font-size: 0.75rem;
                color: #848580;
                font-weight: 300;
                text-align: left;
}
.admin-privezurf-delivery-performer header > h1 .privezurf-performer-status-icon {
                width: 0.65rem;
                height: 0.65rem;
                margin-right: 0.5rem;
}
    .admin-privezurf-delivery-performer .details {
        overflow: hidden;
        overflow-y: scroll;
    }
    .admin-privezurf-delivery-performer .details .privezurf-performer-status-icon {
            width: 0.65rem;
            height: 0.65rem;
            margin-right: 0.5rem;
        }
    .admin-privezurf-delivery-performer .details > div {
                font-size: 0.75rem;
                font-weight: 300;
                line-height: 1rem;
                margin-bottom: 0.5rem;
}
    .admin-privezurf-delivery-performer .details .aside {
            padding: 1.25rem 1rem 0;
            position: absolute;
            top: 0;
            right: 0;
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                    flex-direction: column;
            -webkit-box-align: end;
                    align-items: flex-end;
}
    .admin-privezurf-delivery-performer .details .aside > div {
                margin-bottom: 0.5rem;
}
    .admin-privezurf-delivery-performer .details h1 {
            font-size: 1rem;
            line-height: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
}
    .admin-privezurf-delivery-performer .details .phone {
            color: #141414;
}
    .admin-privezurf-delivery-performer .details .map-wrapper {
            max-width: 100%;
            width: 36rem;
            box-shadow: 0 0 1rem rgba(20, 20, 20, 0.2);
            margin: 1rem 0;
}
@media (max-width: 960px) {
            .admin-privezurf-delivery-performer header .privezurf-performer-status-icon {
                margin-right: 0.5rem;
            }
            .admin-privezurf-delivery-performer .details .aside {
                position: static;
                -webkit-box-align: start;
                        align-items: flex-start;
                padding: 0;
                margin: 0;
            }
}

.admin-privezurf-delivery-performer header > h1 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: start;
                align-items: flex-start;
        margin-right: auto;
        padding: 0;
}
.admin-privezurf-delivery-performer header > h1 .performer-header {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
}
.admin-privezurf-delivery-performer header > h1 .detailed-status {
        font-size: 0.75rem;
        color: #848580;
        font-weight: 300;
        text-align: left;
}
.admin-privezurf-delivery-performer header > h1 .privezurf-performer-status-icon {
        width: 0.65rem;
        height: 0.65rem;
        margin-right: 0.5rem;
}
  .admin-privezurf-delivery-performer .details {
    overflow: hidden;
    overflow-y: scroll;
  }
  .admin-privezurf-delivery-performer .details .privezurf-performer-status-icon {
      width: 0.65rem;
      height: 0.65rem;
      margin-right: 0.5rem;
    }
  .admin-privezurf-delivery-performer .details > div {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1rem;
        margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-performer .details .aside {
      padding: 1.25rem 1rem 0;
      position: absolute;
      top: 0;
      right: 0;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: end;
              align-items: flex-end;
}
  .admin-privezurf-delivery-performer .details .aside > div {
        margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-performer .details h1 {
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-performer .details .phone {
      color: #141414;
}
  .admin-privezurf-delivery-performer .details .map-wrapper {
      max-width: 100%;
      width: 36rem;
      box-shadow: 0 0 1rem rgba(20, 20, 20, 0.2);
      margin: 1rem 0;
}
@media (max-width: 960px) {
      .admin-privezurf-delivery-performer header .privezurf-performer-status-icon {
        margin-right: 0.5rem;
      }
      .admin-privezurf-delivery-performer .details .aside {
        position: static;
        -webkit-box-align: start;
                align-items: flex-start;
        padding: 0;
        margin: 0;
      }
}

.new-icon path,
.new-icon polyline {
  fill: none;
  stroke-width: 0.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.admin-privezurf-setting header > h1 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: start;
                align-items: flex-start;
        margin-right: auto;
        padding: 0;
}
.admin-privezurf-setting header > h1 .order-header {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
}
  .admin-privezurf-setting .details {
    overflow: hidden;
    overflow-y: scroll
  }
  .admin-privezurf-setting .details > div {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1rem;
        margin-bottom: 0.5rem;
}
  .admin-privezurf-setting .details h1 {
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
}

/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #f5f2f0;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #9a6e3a;
	/* This background color was intended by the author of this theme. */
	background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function,
.token.class-name {
	color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

.admin-privezurf-left-column .list-header .settings-list-header-navigation a, .admin-privezurf-table .list-header .settings-list-header-navigation a {
    color: #141414;
    opacity: 1;
}
  .admin-privezurf-left-column .list-header .settings-list-header-navigation a.current, .admin-privezurf-table .list-header .settings-list-header-navigation a.current {
    text-decoration: none;
}



.admin-privezurf-delivery-performers-notifications {
  padding: 1rem;
}

  .admin-privezurf-delivery-performers-notifications h1 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .admin-privezurf-delivery-performers-notifications hr {
    border-color: #e4e5e0;
    border-style: solid;
    border-width: 1px 0 0 0;
    margin: 1rem 0;
  }

  .admin-privezurf-delivery-performers-notifications button.button {
    background: #141414;
    color: rgba(223, 255, 239, 1);
    padding: 0.375rem 1rem;
  }

  .admin-privezurf-delivery-performers-notifications button.button .loader-wrapper .spinner > div {
      background: rgba(223, 255, 239, 1);
    }

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.admin-privezurf-coc header > h1 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        -webkit-box-align: center;
                align-items: center;
        margin-right: auto;
        padding: 0;
        gap: 8px;
}
.admin-privezurf-coc header > h1 .header {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
}
  .admin-privezurf-coc .details {
    overflow: hidden;
    overflow-y: scroll
  }
  .admin-privezurf-coc .details > div {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1rem;
        margin-bottom: 0.5rem;
}
  .admin-privezurf-coc .details h1 {
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
}
  .admin-privezurf-coc .details .aside {
      padding: 1.25rem 1rem 0;
      position: absolute;
      top: 0;
      right: 0;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: end;
              align-items: flex-end;
}
  .admin-privezurf-coc .details .aside > div {
        margin-bottom: 0.5rem;
}
  .admin-privezurf-coc .details .aside .created {
        color: #848580;
}
@media (max-width: 960px) {
      .admin-privezurf-coc .details .aside {
        position: static;
        -webkit-box-align: start;
                align-items: flex-start;
        padding: 0;
        margin: 0;
      }
}

.admin-privezurf-left-column .list-header {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
  }

    .admin-privezurf-left-column .list-header a {
      margin-left: auto;
      cursor: pointer;
      opacity: 0.6
    }

    .admin-privezurf-left-column .list-header a,
      .admin-privezurf-left-column .list-header a svg {
    height: 1.5rem;
}

    .admin-privezurf-left-column .list-header a svg {
        fill: none;
        stroke: #141414;
}

    .admin-privezurf-left-column .list-header a:hover {
    opacity: 1;
}

    .admin-privezurf-left-column .list-header a.current {
    pointer-events: none;
    cursor: default;
}

    .admin-privezurf-left-column .list-header a.current svg {
          stroke: #e4e5e0;
}

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.privezurf-delivery-zone-summary.item-card {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
}
.privezurf-delivery-zone-summary .contents {
    -webkit-box-flex: 1;
            flex: 1;
    overflow: hidden;
}

.admin-privezurf-delivery-zone header > h1 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: start;
                align-items: flex-start;
        margin-right: auto;
        padding: 0;
}
.admin-privezurf-delivery-zone header > h1 .zone-header {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
}
  .admin-privezurf-delivery-zone .details {
    overflow: hidden;
    overflow-y: scroll
  }
  .admin-privezurf-delivery-zone .details > div {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1rem;
        margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-zone .details .aside {
      padding: 1.25rem 1rem 0;
      position: absolute;
      top: 0;
      right: 0;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: end;
              align-items: flex-end;
}
  .admin-privezurf-delivery-zone .details .aside > div {
        margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-zone .details h1 {
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
}
  .admin-privezurf-delivery-zone .details h4 {
      margin: 16px 8px 8px;
      font-size: 14px;
}
  .admin-privezurf-delivery-zone .details form .form-field {
      margin-bottom: 8px;
}
@media (max-width: 960px) {
      .admin-privezurf-delivery-zone .details .aside {
        position: static;
        -webkit-box-align: start;
                align-items: flex-start;
        padding: 0;
        margin: 0;
      }
}

.admin-privezurf-left-column .list-header {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
  }

    .admin-privezurf-left-column .list-header a {
      margin-left: auto;
      cursor: pointer;
      opacity: 0.6
    }

    .admin-privezurf-left-column .list-header a,
      .admin-privezurf-left-column .list-header a svg {
    height: 1.5rem;
}

    .admin-privezurf-left-column .list-header a svg {
        fill: none;
        stroke: #141414;
}

    .admin-privezurf-left-column .list-header a:hover {
    opacity: 1;
}

    .admin-privezurf-left-column .list-header a.current {
    pointer-events: none;
    cursor: default;
}

    .admin-privezurf-left-column .list-header a.current svg {
          stroke: #e4e5e0;
}

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.privezurf-delivery-zone-summary.item-card {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
}
.privezurf-delivery-zone-summary .contents {
    -webkit-box-flex: 1;
            flex: 1;
    overflow: hidden;
}

.admin-privezurf-geo-zone header > h1 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: start;
                align-items: flex-start;
        margin-right: auto;
        padding: 0;
}
.admin-privezurf-geo-zone header > h1 .zone-header {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
}
  .admin-privezurf-geo-zone .details {
    overflow: hidden;
    overflow-y: scroll
  }
  .admin-privezurf-geo-zone .details > div {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1rem;
        margin-bottom: 0.5rem;
}
  .admin-privezurf-geo-zone .details .aside {
      padding: 1.25rem 1rem 0;
      position: absolute;
      top: 0;
      right: 0;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: end;
              align-items: flex-end;
}
  .admin-privezurf-geo-zone .details .aside > div {
        margin-bottom: 0.5rem;
}
  .admin-privezurf-geo-zone .details h1 {
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
}
  .admin-privezurf-geo-zone .details h4 {
      margin: 16px 8px 8px;
      font-size: 14px;
}
  .admin-privezurf-geo-zone .details form .form-field {
      margin-bottom: 8px;
}
@media (max-width: 960px) {
      .admin-privezurf-geo-zone .details .aside {
        position: static;
        -webkit-box-align: start;
                align-items: flex-start;
        padding: 0;
        margin: 0;
      }
}

.admin-privezurf-geo-zone header > h1 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: start;
                align-items: flex-start;
        margin-right: auto;
        padding: 0;
}
.admin-privezurf-geo-zone header > h1 .zone-header {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
}
  .admin-privezurf-geo-zone .details {
    overflow: hidden;
    overflow-y: scroll
  }
  .admin-privezurf-geo-zone .details > div {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1rem;
        margin-bottom: 0.5rem;
}
  .admin-privezurf-geo-zone .details .aside {
      padding: 1.25rem 1rem 0;
      position: absolute;
      top: 0;
      right: 0;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: end;
              align-items: flex-end;
}
  .admin-privezurf-geo-zone .details .aside > div {
        margin-bottom: 0.5rem;
}
  .admin-privezurf-geo-zone .details h1 {
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
}
  .admin-privezurf-geo-zone .details h4 {
      margin: 16px 8px 8px;
      font-size: 14px;
}
  .admin-privezurf-geo-zone .details form .form-field {
      margin-bottom: 8px;
}
@media (max-width: 960px) {
      .admin-privezurf-geo-zone .details .aside {
        position: static;
        -webkit-box-align: start;
                align-items: flex-start;
        padding: 0;
        margin: 0;
      }
}

.admin-privezurf-table {
    -webkit-box-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    overflow: hidden;
}

    .admin-privezurf-table .list-header {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        -webkit-box-align: center;
                align-items: center;
    }

    .admin-privezurf-table .list-header a {
            margin-left: auto;
            cursor: pointer;
            opacity: 0.6
        }

    .admin-privezurf-table .list-header a,
            .admin-privezurf-table .list-header a svg {
    height: 1.5rem;
}

    .admin-privezurf-table .list-header a.table-icon, .admin-privezurf-table .list-header a svg.table-icon {
    width: 24px;
    height: 24px;
}

    .admin-privezurf-table .list-header a svg {
                fill: none;
                stroke: #141414;
}

    .admin-privezurf-table .list-header a svg.table-icon {
    fill: #141414;
    stroke: none;
}

    .admin-privezurf-table .list-header a:hover {
    opacity: 1;
}

    .admin-privezurf-table .list-header a.current {
    pointer-events: none;
    cursor: not-allowed;
}

    .admin-privezurf-table .list-header a.current svg {
                    stroke: #e4e5e0;
}

    .admin-privezurf-table .list-header a.current svg.table-icon {
    stroke: none;
}

    .admin-privezurf-table .list-header a.current svg.table-icon path {
                            fill: #e4e5e0;
}

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.privezurf-tariff-list-header-groups {

}

.privezurf-tariff-list-header {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-align: center;
            align-items: center;
}

.privezurf-tariff-list-header div {
        padding: 16px 2px;
        font-size: 10px;
        text-align: center;
    }

.table-wrapper {
  -webkit-box-flex: 1;
          flex: 1;
}
  .table-wrapper .table-item {
    height: 128px;
    border: solid #e4e5e0;
    border-width: 1px 0 0 1px
  }
  .table-wrapper .table-item:first-child {
  border-width: 0;
}
  .table-wrapper .table-item:last-child {
  border-width: 1px;
}


.admin-privezurf-table {
    -webkit-box-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    overflow: hidden;
}

    .admin-privezurf-table .list-header {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        -webkit-box-align: center;
                align-items: center;
    }

    .admin-privezurf-table .list-header a {
            margin-left: auto;
            cursor: pointer;
            opacity: 0.6
        }

    .admin-privezurf-table .list-header a,
            .admin-privezurf-table .list-header a svg {
    height: 1.5rem;
}

    .admin-privezurf-table .list-header a.table-icon, .admin-privezurf-table .list-header a svg.table-icon {
    width: 24px;
    height: 24px;
}

    .admin-privezurf-table .list-header a svg {
                fill: none;
                stroke: #141414;
}

    .admin-privezurf-table .list-header a svg.table-icon {
    fill: #141414;
    stroke: none;
}

    .admin-privezurf-table .list-header a:hover {
    opacity: 1;
}

    .admin-privezurf-table .list-header a.current {
    pointer-events: none;
    cursor: not-allowed;
}

    .admin-privezurf-table .list-header a.current svg {
                    stroke: #e4e5e0;
}

    .admin-privezurf-table .list-header a.current svg.table-icon {
    stroke: none;
}

    .admin-privezurf-table .list-header a.current svg.table-icon path {
                            fill: #e4e5e0;
}

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.privezurf-tariff-list-header-groups {

}

.privezurf-tariff-list-header {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-align: center;
            align-items: center;
}

.privezurf-tariff-list-header div {
        padding: 16px 2px;
        font-size: 10px;
        text-align: center;
    }

.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.work-time-input-items {
        margin-top: 16px;
    }
    .work-time-input-add-button-wrapper {
        margin-top: 12px;
        padding: 4px;
    }

.work-time-input-item {
    margin-bottom: 8px;
}

    .work-time-input-item + .work-time-input-item {
        padding-top: 12px;
        margin-top: 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

.work-time-input-item:last-child {
    margin-bottom: 0;
}

.work-time-input-item-footer {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
                justify-content: space-between;
}

.work-time-input-item-day-pick {
        display: -webkit-box;
        display: flex;
        height: 44px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 10px;
}

.checkbox-day {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: calc(100% / 7);
}


  .checkbox-day + .checkbox-day {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }


  .checkbox-day-checked {
    background-color: rgba(47, 43, 78, 0.85);
  }


  .checkbox-day-checked + .checkbox-day {
      border-color: rgba(235, 235, 235, 1);
    }


  .checkbox-day .checkbox-label {
      font-size: 12px;
      font-weight: 500;
    }


  .checkbox-day .checkbox-control:checked + .checkbox-label {
      color: rgba(255, 255, 255, 1);
    }

.checkbox {
  cursor: pointer;
}

  .checkbox-control {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: none;
  }

.time-range {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

  .time-range-divider {
    margin: 0 6px;
    line-height: 0;
  }

.admin-privezurf-left-column .list-header {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
  }

    .admin-privezurf-left-column .list-header a {
      margin-left: auto;
      cursor: pointer;
      opacity: 0.6
    }

    .admin-privezurf-left-column .list-header a,
      .admin-privezurf-left-column .list-header a svg {
    height: 1.5rem;
}

    .admin-privezurf-left-column .list-header a svg {
        fill: none;
        stroke: #141414;
}

    .admin-privezurf-left-column .list-header a:hover {
    opacity: 1;
}

    .admin-privezurf-left-column .list-header a.current {
    pointer-events: none;
    cursor: default;
}

    .admin-privezurf-left-column .list-header a.current svg {
          stroke: #e4e5e0;
}

.PresetDateRangePicker_panel {
  padding: 0 22px 11px
}
.PresetDateRangePicker_button {
  position: relative;
  height: 100%;
  text-align: center;
  background: 0 0;
  border: 2px solid #00a699;
  color: #00a699;
  padding: 4px 12px;
  margin-right: 8px;
  font: inherit;
  font-weight: 700;
  line-height: normal;
  overflow: visible;
  box-sizing: border-box;
  cursor: pointer
}
.PresetDateRangePicker_button:active {
  outline: 0
}
.PresetDateRangePicker_button__selected {
  color: #fff;
  background: #00a699
}
.SingleDatePickerInput {
  display: inline-block;
  background-color: #fff
}
.SingleDatePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb
}
.SingleDatePickerInput__rtl {
  direction: rtl
}
.SingleDatePickerInput__disabled {
  background-color: #f2f2f2
}
.SingleDatePickerInput__block {
  display: block
}
.SingleDatePickerInput__showClearDate {
  padding-right: 30px
}
.SingleDatePickerInput_clearDate {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
.SingleDatePickerInput_clearDate__default:focus,
.SingleDatePickerInput_clearDate__default:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.SingleDatePickerInput_clearDate__small {
  padding: 6px
}
.SingleDatePickerInput_clearDate__hide {
  visibility: hidden
}
.SingleDatePickerInput_clearDate_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
.SingleDatePickerInput_clearDate_svg__small {
  height: 9px
}
.SingleDatePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
.SingleDatePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
.SingleDatePicker {
  position: relative;
  display: inline-block
}
.SingleDatePicker__block {
  display: block
}
.SingleDatePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
.SingleDatePicker_picker__rtl {
  direction: rtl
}
.SingleDatePicker_picker__directionLeft {
  left: 0
}
.SingleDatePicker_picker__directionRight {
  right: 0
}
.SingleDatePicker_picker__portal {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
.SingleDatePicker_picker__fullScreenPortal {
  background-color: #fff
}
.SingleDatePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
.SingleDatePicker_closeButton:focus,
.SingleDatePicker_closeButton:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
.SingleDatePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.DayPickerKeyboardShortcuts_buttonReset {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  font-size: 14px
}
.DayPickerKeyboardShortcuts_buttonReset:active {
  outline: 0
}
.DayPickerKeyboardShortcuts_show {
  width: 33px;
  height: 26px;
  position: absolute;
  z-index: 2
}
.DayPickerKeyboardShortcuts_show::before {
  content: "";
  display: block;
  position: absolute
}
.DayPickerKeyboardShortcuts_show__bottomRight {
  bottom: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__bottomRight::before {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__bottomRight:hover::before {
  border-right: 33px solid #008489
}
.DayPickerKeyboardShortcuts_show__topRight {
  top: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__topRight::before {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__topRight:hover::before {
  border-right: 33px solid #008489
}
.DayPickerKeyboardShortcuts_show__topLeft {
  top: 0;
  left: 0
}
.DayPickerKeyboardShortcuts_show__topLeft::before {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0
}
.DayPickerKeyboardShortcuts_show__topLeft:hover::before {
  border-left: 33px solid #008489
}
.DayPickerKeyboardShortcuts_showSpan {
  color: #fff;
  position: absolute
}
.DayPickerKeyboardShortcuts_showSpan__bottomRight {
  bottom: 0;
  right: 5px
}
.DayPickerKeyboardShortcuts_showSpan__topRight {
  top: 1px;
  right: 5px
}
.DayPickerKeyboardShortcuts_showSpan__topLeft {
  top: 1px;
  left: 5px
}
.DayPickerKeyboardShortcuts_panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px;
  text-align: left
}
.DayPickerKeyboardShortcuts_title {
  font-size: 16px;
  font-weight: 700;
  margin: 0
}
.DayPickerKeyboardShortcuts_list {
  list-style: none;
  padding: 0;
  font-size: 14px
}
.DayPickerKeyboardShortcuts_close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2
}
.DayPickerKeyboardShortcuts_close:active {
  outline: 0
}
.DayPickerKeyboardShortcuts_closeSvg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.DayPickerKeyboardShortcuts_closeSvg:focus,
.DayPickerKeyboardShortcuts_closeSvg:hover {
  fill: #82888a
}
.CalendarDay {
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: center
}
.CalendarDay:active {
  outline: 0
}
.CalendarDay__defaultCursor {
  cursor: default
}
.CalendarDay__default {
  border: 1px solid #e4e7e7;
  color: #484848;
  background: #fff
}
.CalendarDay__default:hover {
  background: #e4e7e7;
  border: 1px solid #e4e7e7;
  color: inherit
}
.CalendarDay__hovered_offset {
  background: #f4f5f5;
  border: 1px double #e4e7e7;
  color: inherit
}
.CalendarDay__outside {
  border: 0;
  background: #fff;
  color: #484848
}
.CalendarDay__outside:hover {
  border: 0
}
.CalendarDay__blocked_minimum_nights {
  background: #fff;
  border: 1px solid #eceeee;
  color: #cacccd
}
.CalendarDay__blocked_minimum_nights:active,
.CalendarDay__blocked_minimum_nights:hover {
  background: #fff;
  color: #cacccd
}
.CalendarDay__highlighted_calendar {
  background: #ffe8bc;
  color: #484848
}
.CalendarDay__highlighted_calendar:active,
.CalendarDay__highlighted_calendar:hover {
  background: #ffce71;
  color: #484848
}
.CalendarDay__selected_span {
  background: #66e2da;
  border: 1px double #33dacd;
  color: #fff
}
.CalendarDay__selected_span:active,
.CalendarDay__selected_span:hover {
  background: #33dacd;
  border: 1px double #33dacd;
  color: #fff
}
.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected:hover {
  background: #00a699;
  border: 1px double #00a699;
  color: #fff
}
.CalendarDay__hovered_span,
.CalendarDay__hovered_span:hover {
  background: #b2f1ec;
  border: 1px double #80e8e0;
  color: #007a87
}
.CalendarDay__hovered_span:active {
  background: #80e8e0;
  border: 1px double #80e8e0;
  color: #007a87
}
.CalendarDay__blocked_calendar,
.CalendarDay__blocked_calendar:active,
.CalendarDay__blocked_calendar:hover {
  background: #cacccd;
  border: 1px solid #cacccd;
  color: #82888a
}
.CalendarDay__blocked_out_of_range,
.CalendarDay__blocked_out_of_range:active,
.CalendarDay__blocked_out_of_range:hover {
  background: #fff;
  border: 1px solid #e4e7e7;
  color: #cacccd
}
.CalendarDay__hovered_start_first_possible_end {
  background: #eceeee;
  border: 1px double #eceeee
}
.CalendarDay__hovered_start_blocked_min_nights {
  background: #eceeee;
  border: 1px double #e4e7e7
}
.CalendarMonth {
  background: #fff;
  text-align: center;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.CalendarMonth_table {
  border-collapse: collapse;
  border-spacing: 0
}
.CalendarMonth_verticalSpacing {
  border-collapse: separate
}
.CalendarMonth_caption {
  color: #484848;
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 37px;
  caption-side: top;
  caption-side: initial
}
.CalendarMonth_caption__verticalScrollable {
  padding-top: 12px;
  padding-bottom: 7px
}
.CalendarMonthGrid {
  background: #fff;
  text-align: left;
  z-index: 0
}
.CalendarMonthGrid__animating {
  z-index: 1
}
.CalendarMonthGrid__horizontal {
  position: absolute;
  left: 9px
}
.CalendarMonthGrid__vertical,
.CalendarMonthGrid__vertical_scrollable {
  margin: 0 auto
}
.CalendarMonthGrid_month__horizontal {
  display: inline-block;
  vertical-align: top;
  min-height: 100%
}
.CalendarMonthGrid_month__hideForAnimation {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none
}
.CalendarMonthGrid_month__hidden {
  visibility: hidden
}
.DayPickerNavigation {
  position: relative;
  z-index: 2
}
.DayPickerNavigation__horizontal {
  height: 0
}
.DayPickerNavigation__verticalScrollable_prevNav {
  z-index: 1
}
.DayPickerNavigation__verticalDefault {
  position: absolute;
  width: 100%;
  height: 52px;
  bottom: 0;
  left: 0
}
.DayPickerNavigation__verticalScrollableDefault {
  position: relative
}
.DayPickerNavigation__bottom {
  height: auto
}
.DayPickerNavigation__bottomDefault {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: flex;
  justify-content: space-between
}
.DayPickerNavigation_button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0;
  margin: 0
}
.DayPickerNavigation_button__default {
  border: 1px solid #e4e7e7;
  background-color: #fff;
  color: #757575
}
.DayPickerNavigation_button__default:focus,
.DayPickerNavigation_button__default:hover {
  border: 1px solid #c4c4c4
}
.DayPickerNavigation_button__default:active {
  background: #f2f2f2
}
.DayPickerNavigation_button__disabled {
  cursor: default;
  border: 1px solid #f2f2f2
}
.DayPickerNavigation_button__disabled:focus,
.DayPickerNavigation_button__disabled:hover {
  border: 1px solid #f2f2f2
}
.DayPickerNavigation_button__disabled:active {
  background: 0 0
}
.DayPickerNavigation_button__horizontalDefault {
  position: absolute;
  top: 18px;
  line-height: .78;
  border-radius: 3px;
  padding: 6px 9px
}
.DayPickerNavigation_bottomButton__horizontalDefault {
  position: static;
  margin: -10px 22px 30px
}
.DayPickerNavigation_leftButton__horizontalDefault {
  left: 22px
}
.DayPickerNavigation_rightButton__horizontalDefault {
  right: 22px
}
.DayPickerNavigation_button__verticalDefault {
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0,0,0,.1);
  position: relative;
  display: inline-block;
  text-align: center;
  height: 100%;
  width: 50%
}
.DayPickerNavigation_nextButton__verticalDefault {
  border-left: 0
}
.DayPickerNavigation_nextButton__verticalScrollableDefault,
.DayPickerNavigation_prevButton__verticalScrollableDefault {
  width: 100%
}
.DayPickerNavigation_svg__horizontal {
  height: 19px;
  width: 19px;
  fill: #82888a;
  display: block
}
.DayPickerNavigation_svg__vertical {
  height: 42px;
  width: 42px;
  fill: #484848
}
.DayPickerNavigation_svg__disabled {
  fill: #f2f2f2
}
.DayPicker {
  background: #fff;
  position: relative;
  text-align: left
}
.DayPicker__horizontal {
  background: #fff
}
.DayPicker__verticalScrollable {
  height: 100%
}
.DayPicker__hidden {
  visibility: hidden
}
.DayPicker__withBorder {
  box-shadow: 0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);
  border-radius: 3px
}
.DayPicker_portal__horizontal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%
}
.DayPicker_portal__vertical {
  position: static;
  position: initial
}
.DayPicker_focusRegion {
  outline: 0
}
.DayPicker_calendarInfo__horizontal,
.DayPicker_wrapper__horizontal {
  display: inline-block;
  vertical-align: top
}
.DayPicker_weekHeaders {
  position: relative
}
.DayPicker_weekHeaders__horizontal {
  margin-left: 9px
}
.DayPicker_weekHeader {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  text-align: left
}
.DayPicker_weekHeader__vertical {
  left: 50%
}
.DayPicker_weekHeader__verticalScrollable {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center
}
.DayPicker_weekHeader_ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px
}
.DayPicker_weekHeader_li {
  display: inline-block;
  text-align: center
}
.DayPicker_transitionContainer {
  position: relative;
  overflow: hidden;
  border-radius: 3px
}
.DayPicker_transitionContainer__horizontal {
  -webkit-transition: height .2s ease-in-out;
  transition: height .2s ease-in-out
}
.DayPicker_transitionContainer__vertical {
  width: 100%
}
.DayPicker_transitionContainer__verticalScrollable {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll
}
.DateInput {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle
}
.DateInput__small {
  width: 97px
}
.DateInput__block {
  width: 100%
}
.DateInput__disabled {
  background: #f2f2f2;
  color: #dbdbdb
}
.DateInput_input {
  font-weight: 200;
  font-size: 19px;
  line-height: 24px;
  color: #484848;
  background-color: #fff;
  width: 100%;
  padding: 11px 11px 9px;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-radius: 0
}
.DateInput_input__small {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: .2px;
  padding: 7px 7px 5px
}
.DateInput_input__regular {
  font-weight: auto
}
.DateInput_input__readOnly {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.DateInput_input__focused {
  outline: 0;
  background: #fff;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #008489;
  border-left: 0
}
.DateInput_input__disabled {
  background: #f2f2f2;
  font-style: italic
}
.DateInput_screenReaderMessage {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}
.DateInput_fang {
  position: absolute;
  width: 20px;
  height: 10px;
  left: 22px;
  z-index: 2
}
.DateInput_fangShape {
  fill: #fff
}
.DateInput_fangStroke {
  stroke: #dbdbdb;
  fill: transparent
}
.DateRangePickerInput {
  background-color: #fff;
  display: inline-block
}
.DateRangePickerInput__disabled {
  background: #f2f2f2
}
.DateRangePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb
}
.DateRangePickerInput__rtl {
  direction: rtl
}
.DateRangePickerInput__block {
  display: block
}
.DateRangePickerInput__showClearDates {
  padding-right: 30px
}
.DateRangePickerInput_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #484848
}
.DateRangePickerInput_arrow_svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px
}
.DateRangePickerInput_clearDates {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
.DateRangePickerInput_clearDates__small {
  padding: 6px
}
.DateRangePickerInput_clearDates_default:focus,
.DateRangePickerInput_clearDates_default:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.DateRangePickerInput_clearDates__hide {
  visibility: hidden
}
.DateRangePickerInput_clearDates_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
.DateRangePickerInput_clearDates_svg__small {
  height: 9px
}
.DateRangePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
.DateRangePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
.DateRangePicker {
  position: relative;
  display: inline-block
}
.DateRangePicker__block {
  display: block
}
.DateRangePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
.DateRangePicker_picker__rtl {
  direction: rtl
}
.DateRangePicker_picker__directionLeft {
  left: 0
}
.DateRangePicker_picker__directionRight {
  right: 0
}
.DateRangePicker_picker__portal {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
.DateRangePicker_picker__fullScreenPortal {
  background-color: #fff
}
.DateRangePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
.DateRangePicker_closeButton:focus,
.DateRangePicker_closeButton:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
.DateRangePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.privezurf-delivery-work-shift-summary.item-card {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
}
.privezurf-delivery-work-shift-summary .top-row {
    margin-bottom: 8px;
}
.privezurf-delivery-work-shift-summary .item {
    color: #141414;
}
.privezurf-delivery-work-shift-summary .contents {
    -webkit-box-flex: 1;
            flex: 1;
    overflow: hidden;
}
.privezurf-delivery-work-shift-summary .contents .work-shift-status-icon {
      width: 0.65rem;
      height: 0.65rem;
      margin: 0 0.5rem;
    }
.privezurf-delivery-work-shift-summary .contents .price {
      margin-left: auto;
    }

.work-shift-status-icon {
  stroke: none
}
.work-shift-status-icon.NOTSTARTED {
  fill: #848580;
}
.work-shift-status-icon.STARTED {
  fill: #ffc603;
}
.work-shift-status-icon.FINISHED {
  fill: #40bf7f;
}

.admin-privezurf-work-shift header > h1 {
                display: -webkit-box;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                        flex-direction: column;
                -webkit-box-align: start;
                        align-items: flex-start;
                margin-right: auto;
                padding: 0;
}
.admin-privezurf-work-shift header > h1 .work-shift-status-icon {
                width: 0.65rem;
                height: 0.65rem;
                margin: 0 0.5rem;
}
.admin-privezurf-work-shift header > h1 .shift-header {
                font-size: 1rem;
                font-weight: 500;
                text-align: left;
}
.admin-privezurf-work-shift header > h1 .shift-header .mobile-header {
                    display: none;
                }
@media (max-width: 960px) {
                .admin-privezurf-work-shift header > h1 .shift-header .mobile-header {
                        display: -webkit-box;
                        display: flex;
                        height: 3rem;
                }
}
.admin-privezurf-work-shift .details {
        overflow: hidden;
        overflow-y: scroll;
}
.admin-privezurf-work-shift .details > div {
                font-size: 0.75rem;
                font-weight: 300;
                line-height: 1rem;
                margin-bottom: 0.5rem;
}
.admin-privezurf-work-shift .details .aside {
            padding: 1.25rem 1rem 0;
            position: absolute;
            top: 0;
            right: 0;
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                    flex-direction: column;
            -webkit-box-align: end;
                    align-items: flex-end;
}
.admin-privezurf-work-shift .details .aside > div {
                margin-bottom: 0.5rem;
}
.admin-privezurf-work-shift .details h1 {
            font-size: 1rem;
            line-height: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
}
.admin-privezurf-work-shift .details h4 {
            margin: 16px 8px 8px;
            font-size: 14px;
}
.admin-privezurf-work-shift .details form .form-field {
            margin-bottom: 8px;
}
@media (max-width: 960px) {
            .admin-privezurf-work-shift .details .aside {
                position: static;
                -webkit-box-align: start;
                        align-items: flex-start;
                padding: 0;
                margin: 0;
            }
}

.admin-privezurf-work-shift header > h1 {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: start;
                align-items: flex-start;
        margin-right: auto;
        padding: 0;
}
.admin-privezurf-work-shift header > h1 .shift-header {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
}
.admin-privezurf-work-shift header > h1 .shift-header .mobile-header {
          display: none;
        }
@media (max-width: 960px) {
        .admin-privezurf-work-shift header > h1 .shift-header .mobile-header {
            display: -webkit-box;
            display: flex;
            height: 3rem;
        }
}
.admin-privezurf-work-shift .details {
    overflow: hidden;
    overflow-y: scroll;
}
.admin-privezurf-work-shift .details > div {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1rem;
        margin-bottom: 0.5rem;
}
.admin-privezurf-work-shift .details .aside {
      padding: 1.25rem 1rem 0;
      position: absolute;
      top: 0;
      right: 0;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
      -webkit-box-align: end;
              align-items: flex-end;
}
.admin-privezurf-work-shift .details .aside > div {
        margin-bottom: 0.5rem;
}
.admin-privezurf-work-shift .details h1 {
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
}
.admin-privezurf-work-shift .details h4 {
      margin: 16px 8px 8px;
      font-size: 14px;
}
.admin-privezurf-work-shift .details form .form-field {
      margin-bottom: 8px;
}
@media (max-width: 960px) {
      .admin-privezurf-work-shift .details .aside {
        position: static;
        -webkit-box-align: start;
                align-items: flex-start;
        padding: 0;
        margin: 0;
      }
}

.admin-privezurf-left-column .list-header {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
        -webkit-box-align: center;
                align-items: center;
    }

        .admin-privezurf-left-column .list-header a {
            margin-left: auto;
            cursor: pointer;
            opacity: 0.6
        }

        .admin-privezurf-left-column .list-header a,
            .admin-privezurf-left-column .list-header a svg {
        height: 1.5rem;
}

        .admin-privezurf-left-column .list-header a svg {
                fill: none;
                stroke: #141414;
}

        .admin-privezurf-left-column .list-header a:hover {
        opacity: 1;
}

        .admin-privezurf-left-column .list-header a.current {
        pointer-events: none;
        cursor: default;
}

        .admin-privezurf-left-column .list-header a.current svg {
                    stroke: #e4e5e0;
}
.loader {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid transparent;
    border-color: #848580 transparent #848580 transparent;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
    margin-left: 0.5rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
.privezurf-schedules-of-automatic-payment-summary.item-card {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
}
.privezurf-schedules-of-automatic-payment-summary .top-row {
    margin-bottom: 8px;
}
.privezurf-schedules-of-automatic-payment-summary .item {
    color: #141414;
}
.privezurf-schedules-of-automatic-payment-summary .contents {
    -webkit-box-flex: 1;
            flex: 1;
    overflow: hidden;
}
.privezurf-schedules-of-automatic-payment-summary .contents .price {
      margin-left: auto;
    }
.admin-privezurf-schedule-of-automatic-payment header > h1 {
                display: -webkit-box;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                        flex-direction: column;
                -webkit-box-align: start;
                        align-items: flex-start;
                margin-right: auto;
                padding: 0;
}
.admin-privezurf-schedule-of-automatic-payment header > h1 .schedule-header {
                font-size: 1rem;
                font-weight: 500;
                text-align: left;
}
.admin-privezurf-schedule-of-automatic-payment header > h1 .schedule-header .mobile-header {
                    display: none;
                }
@media (max-width: 960px) {
                .admin-privezurf-schedule-of-automatic-payment header > h1 .schedule-header .mobile-header {
                        display: -webkit-box;
                        display: flex;
                        height: 3rem;
                }
}
.admin-privezurf-schedule-of-automatic-payment .details {
        overflow: hidden;
        overflow-y: scroll;
}
.admin-privezurf-schedule-of-automatic-payment .details > div {
                font-size: 0.75rem;
                font-weight: 300;
                line-height: 1rem;
                margin-bottom: 0.5rem;
}
.admin-privezurf-schedule-of-automatic-payment .details .aside {
            padding: 1.25rem 1rem 0;
            position: absolute;
            top: 0;
            right: 0;
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                    flex-direction: column;
            -webkit-box-align: end;
                    align-items: flex-end;
}
.admin-privezurf-schedule-of-automatic-payment .details .aside > div {
                margin-bottom: 0.5rem;
}
.admin-privezurf-schedule-of-automatic-payment .details h1 {
            font-size: 1rem;
            line-height: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
}
.admin-privezurf-schedule-of-automatic-payment .details h4 {
            margin: 16px 8px 8px;
            font-size: 14px;
}
.admin-privezurf-schedule-of-automatic-payment .details form .form-field {
            margin-bottom: 8px;
}
@media (max-width: 960px) {
            .admin-privezurf-schedule-of-automatic-payment .details .aside {
                position: static;
                -webkit-box-align: start;
                        align-items: flex-start;
                padding: 0;
                margin: 0;
            }
}
.admin-privezurf-schedule-of-automatic-payments header > h1 {
                display: -webkit-box;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                        flex-direction: column;
                -webkit-box-align: start;
                        align-items: flex-start;
                margin-right: auto;
                padding: 0;
}
.admin-privezurf-schedule-of-automatic-payments header > h1 .schedule-header {
                font-size: 1rem;
                font-weight: 500;
                text-align: left;
}
.admin-privezurf-schedule-of-automatic-payments header > h1 .schedule-header .mobile-header {
                    display: none;
                }
@media (max-width: 960px) {
                .admin-privezurf-schedule-of-automatic-payments header > h1 .schedule-header .mobile-header {
                        display: -webkit-box;
                        display: flex;
                        height: 3rem;
                }
}
.admin-privezurf-schedule-of-automatic-payments .details {
        overflow: hidden;
        overflow-y: scroll;
}
.admin-privezurf-schedule-of-automatic-payments .details > div {
                font-size: 0.75rem;
                font-weight: 300;
                line-height: 1rem;
                margin-bottom: 0.5rem;
}
.admin-privezurf-schedule-of-automatic-payments .details .aside {
            padding: 1.25rem 1rem 0;
            position: absolute;
            top: 0;
            right: 0;
            display: -webkit-box;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                    flex-direction: column;
            -webkit-box-align: end;
                    align-items: flex-end;
}
.admin-privezurf-schedule-of-automatic-payments .details .aside > div {
                margin-bottom: 0.5rem;
}
.admin-privezurf-schedule-of-automatic-payments .details h1 {
            font-size: 1rem;
            line-height: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
}
.admin-privezurf-schedule-of-automatic-payments .details h4 {
            margin: 16px 8px 8px;
            font-size: 14px;
}
.admin-privezurf-schedule-of-automatic-payments .details form .form-field {
            margin-bottom: 8px;
}
@media (max-width: 960px) {
            .admin-privezurf-schedule-of-automatic-payments .details .aside {
                position: static;
                -webkit-box-align: start;
                        align-items: flex-start;
                padding: 0;
                margin: 0;
            }
}
.reports {
  padding: 1rem;
}

  .reports h1 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .reports hr {
    border-color: #e4e5e0;
    border-style: solid;
    border-width: 1px 0 0 0;
    margin: 1rem 0;
  }

  .reports button.button {
    background: #141414;
    color: rgba(223, 255, 239, 1);
    padding: 0.375rem 1rem;
  }

  .reports button.button .loader-wrapper .spinner > div {
      background: rgba(223, 255, 239, 1);
    }

  .reports .DateRangePicker {
    margin-bottom: 1rem;
    margin-right: 1rem;
  }
input,
textarea,
button,
a.button {
  font-size: 1rem;
  font-family: "Futura PT";
  font-weight: 300;
}

/** Common input styles */
input.input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;

  margin: 0;
  border: 1px solid #e4e5e0;
  border-radius: 4px;
  outline: none;
  color: #141414;
  background: #fff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s
}
input.input:hover {
  border-color: #141414;
}
input.input:focus {
  border-color: rgba(223, 255, 239, 1);
}
input.input:disabled,
    input.input:disabled:hover {
  border-color: #e4e5e0;
  background: #f4f5f0;
  cursor: not-allowed;
}
input.input::-webkit-input-placeholder {
  color: #848580;
}
input.input::-moz-placeholder {
  color: #848580;
}
input.input::-ms-input-placeholder {
  color: #848580;
}
input.input::placeholder {
  color: #848580;
}

/** Large input */
input.std-input {
  font-size: 1rem;
  padding: 0.5rem;
}

/** Small input */
input.sm-input {
  font-size: 0.75rem;
  padding: 0.5rem;
  max-height: 2rem;
}

/** Common textarea styles */
textarea.textarea {
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;

  margin: 0;
  border: 1px solid #e4e5e0;
  border-radius: 4px;
  outline: none;
  color: #141414;
  background: #fff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s
}
textarea.textarea:hover {
  border-color: #141414;
}
textarea.textarea:focus {
  border-color: rgba(223, 255, 239, 1);
}
textarea.textarea:disabled,
    textarea.textarea:disabled:hover {
  border-color: #e4e5e0;
  background: #f4f5f0;
  cursor: not-allowed;
}
textarea.textarea::-webkit-input-placeholder {
  color: #848580;
}
textarea.textarea::-moz-placeholder {
  color: #848580;
}
textarea.textarea::-ms-input-placeholder {
  color: #848580;
}
textarea.textarea::placeholder {
  color: #848580;
}

/** Small textarea */
textarea.sm-textarea {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.5rem;
}

a.button {
  padding: 6px 16px;
  text-decoration: none;
}

/** Common button styles */
button.button, a.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  background: rgba(223, 255, 239, 1);
  color: #141414;
  border-radius: 4px;
  border: none;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s
}
button.button:disabled, a.button:disabled {
  opacity: 0.2;
}
button.button:focus,
  button.button:active,
  a.button:focus,
  a.button:active {
  border-color: rgba(223, 255, 239, 1);
  outline: none;
}
button.button:hover, a.button:hover {
  border-color: rgba(223, 255, 239, 1);
}

/** Large button */
button.std-button, a.std-button {
  padding: 0.5rem 1rem;
}

/** large react-select multiselect */

form .std-multiselect__control,
  form .std-multiselect__control.std-multiselect__control--menu-is-open,
  form .std-multiselect__control.std-multiselect__control--is-focused {
  font-size: 1rem;
  margin: 0;
  border: 1px solid #e4e5e0;
  box-shadow: none;
  border-radius: 4px;
  outline: none;
  color: #141414;
  background: #fff;
  -webkit-transition: border-color 0.2s, opacity 0.2s;
  transition: border-color 0.2s, opacity 0.2s;
}

form .std-multiselect__control.std-multiselect__control--is-focused, form .std-multiselect__control.std-multiselect__control--menu-is-open.std-multiselect__control--is-focused, form .std-multiselect__control.std-multiselect__control--is-focused.std-multiselect__control--is-focused {
  border-color: rgba(223, 255, 239, 1);
  border-width: 1px;
}

form .std-multiselect__control.std-multiselect__control--is-disabled, form .std-multiselect__control.std-multiselect__control--menu-is-open.std-multiselect__control--is-disabled, form .std-multiselect__control.std-multiselect__control--is-focused.std-multiselect__control--is-disabled {
  background: #f4f5f0;
}

form .std-multiselect__menu {
  border: 1px solid rgba(223, 255, 239, 1);
  box-shadow: none;
}

/** small react-select multiselect */

form .sm-multiselect__control,
  form .sm-multiselect__control.sm-multiselect__control--menu-is-open,
  form .sm-multiselect__control.sm-multiselect__control--is-focused {
  margin: 0;
  border: 1px solid #e4e5e0;
  box-shadow: none;
  border-radius: 4px;
  outline: none;
  color: #141414;
  background: #fff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  font-size: 0.75rem;
  min-height: 2rem;
}

form .sm-multiselect__control.sm-multiselect__control--is-focused, form .sm-multiselect__control.sm-multiselect__control--menu-is-open.sm-multiselect__control--is-focused, form .sm-multiselect__control.sm-multiselect__control--is-focused.sm-multiselect__control--is-focused {
  border-color: rgba(223, 255, 239, 1);
  border-width: 1px;
}

form .sm-multiselect__control.sm-multiselect__control--is-disabled, form .sm-multiselect__control.sm-multiselect__control--menu-is-open.sm-multiselect__control--is-disabled, form .sm-multiselect__control.sm-multiselect__control--is-focused.sm-multiselect__control--is-disabled {
  background: #f4f5f0;
}

form .sm-multiselect__control .sm-multiselect__indicator, form .sm-multiselect__control.sm-multiselect__control--menu-is-open .sm-multiselect__indicator, form .sm-multiselect__control.sm-multiselect__control--is-focused .sm-multiselect__indicator {
      padding: 0.25rem;
}

form .sm-multiselect__menu {
  border: 1px solid rgba(223, 255, 239, 1);
  background: #141414;
  color: rgba(223, 255, 239, 1);
  font-size: 0.75rem;
  box-shadow: 0 0 0.25rem rgba(20, 20, 20, 0.2);
}

form .sm-multiselect__menu .sm-multiselect__option {
    border-bottom: 1px solid #f4f5f0
  }

form .sm-multiselect__menu .sm-multiselect__option.sm-multiselect__option--is-focused {
  color: #141414;
  background: rgba(223, 255, 239, 1);
}

/** Common checkbox styles */
input.checkbox {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  border: 1px solid #e4e5e0;
  border-radius: 4px;
  outline: none
}
input.checkbox:hover {
  border-color: #141414;
}
input.checkbox:focus,
    input.checkbox:focus:hover {
  border-color: rgba(223, 255, 239, 1);
}
input.checkbox:checked:before {
  content: "";
  position: absolute;
}

/** Small checkbox styles */
input.sm-checkbox {
  padding: 0.25rem 0;
  font-size: 0.75rem;
  margin: 0.25rem 0.5rem 0.25rem 0;
  width: 1rem;
  height: 1rem
}
input.sm-checkbox:checked:before {
  top: 0.25rem;
  left: 0.25rem;
  width: 0.375rem;
  height: 0.375rem;
  background: #141414;
  border-radius: 4px;
  border-color: #141414;
}

/** Common label styles */
label.label {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

/** Small label styles */
label.sm-label {
  font-size: 0.75rem;
}

/** Common select styles */
select.select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-family: "Futura PT";
  font-weight: 300;

  color: rgba(223, 255, 239, 1);
  text-transform: uppercase;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  border: 1px solid rgba(223, 255, 239, 1);
  border-radius: 4px;
  background-color: #141414;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23fddf94%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 0.75em auto;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  cursor: pointer
}
select.select::-ms-expand {
  display: none;
}
select.select:hover {
  border-color: #f4f5f0;
  color: #f4f5f0;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23f4f5f0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
}
select.select:focus {
  border-color: #f4f5f0;
  color: #141414;
  background-color: rgba(223, 255, 239, 1);
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232d3460%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  outline: none;
}
select.select option {
  font-weight: normal;
}

button.toggle-button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    opacity: 0.6;
    font-size: 0.75rem;
    padding: 0.25rem;
    outline: none;
    background: #e4e5e0;
    color: #848580
}

button.toggle-button:hover {
  opacity: 1;
}

@font-face {
  font-family: "Futura PT";
  src: url(/fonts/91bf9c8a7bf1995e2170ab08b3ff218d.woff2) format("woff2"),
  url(/fonts/01e5bb51c6d86f71ca84ec6c53c1beba.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Futura PT";
  src: url(/fonts/221c80cf9ed7c09b9421dee9551ac386.woff2) format("woff2"),
  url(/fonts/3f1325e3c4c24406c9c1bc73381a1e73.woff) format("woff");
  font-weight: 300;
  font-style: normal;
}

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

html {
  font-size: 16px;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Futura PT", sans-serif;
  font-weight: 300;
  background: #fff;
}

html,
body {
  -webkit-tap-highlight-color: transparent;
}

h1 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.danger-text {
  color: #f55838;
}

.muted-text {
  color: #848580;
}

.disabled-text {
  color: #e4e5e0;
}

.price {
  color: #141414;
  background: #e4e5e0;
  border-radius: 4px;
  white-space: nowrap;
  padding: 0 0.25rem;
  font-size: 0.75rem
}

.price.negative {
  background: #f55838;
  color: #f4f5f0;
  opacity: 0.8;
}

label.sm-label {
  font-size: 10px;
  margin-bottom: 2px;
  display: block
}

label.sm-label.input {
  margin-left: 8px;
}
.item-card {
  display: block;
  -webkit-box-flex: 1;
          flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  color: #141414;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1rem;

  -webkit-transition: background-color 0.1s;

  transition: background-color 0.1s
}
.item-card:hover {
  background: #f9f9f9;
}
.item-card.selected {
  background: rgba(223, 255, 239, 1);
  color: #141414;
}
.item-card.selected .addresses > div {
      color: #141414;
}
.item-card .top-row,
  .item-card .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
}
.item-card .top-row .item-time {
    margin-left: auto;
    color: #848580;
}
.item-card .row {
    margin-top: 0.5rem;
}
.admin-filters .admin-filter-toggle, .admin-form .admin-filter-toggle {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    opacity: 0.6;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    outline: none;
    background: #e4e5e0;
    color: #848580
  }
.admin-filters .admin-filter-toggle:hover, .admin-form .admin-filter-toggle:hover {
  opacity: 1;
}
.admin-filters .fields, .admin-form .fields {
    padding: 0 0.5rem;
    opacity: 0;
    -webkit-transition: height 0.2s, opacity 0.4s;
    transition: height 0.2s, opacity 0.4s;
    overflow: hidden;
  }
.admin-filters .fields .form-field, .admin-form .fields .form-field {
      margin: 0.5rem 0;
    }
.admin-filters.visible .fields, .admin-form.visible .fields {
  overflow: visible;
  overflow: initial;
  opacity: 1;
  -webkit-transition: height 0.2s, opacity 0.4s;
  transition: height 0.2s, opacity 0.4s;
}
.divider {
  height: 1px;
  border: none;
  width: 100%;
  background: #e4e5e0;
}
.admin-count {
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  background: #e4e5e0;
  color: #848580;
  box-shadow: 0 0.1rem 0.2rem rgba(20, 20, 20, 0.2);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.DateRangePicker .DateRangePickerInput {
    display: -webkit-box;
    display: flex;
    min-width: 18rem;
    -webkit-box-align: center;
            align-items: center;
    border: none;
  }

.DateRangePicker .DateRangePickerInput .DateRangePickerInput_arrow {
      margin: 0 1rem;
      color: #141414;
      font-weight: 500;
    }

.DateRangePicker .DateRangePickerInput .DateInput__small {
      -webkit-box-flex: 1;
              flex: 1;
    }

.DateRangePicker .DateRangePickerInput .DateInput__small input {
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;

        border: 1px solid #e4e5e0;
        border-radius: 4px;
        font-size: 0.75rem;
        padding: 0.5rem;
        outline: none;
        color: #141414;
        background: #fff;
        -webkit-transition: border-color 0.2s;
        transition: border-color 0.2s
      }

.DateRangePicker .DateRangePickerInput .DateInput__small input:hover {
  border-color: #141414;
}

.DateRangePicker .DateRangePickerInput .DateInput__small input:focus {
  border-color: rgba(223, 255, 239, 1);
}

.DateRangePicker .DateRangePickerInput .DateInput__small input:disabled,
          .DateRangePicker .DateRangePickerInput .DateInput__small input:disabled:hover {
  border-color: #e4e5e0;
  background: #f4f5f0;
  cursor: not-allowed;
}

.DateRangePicker .DateRangePickerInput .DateInput__small input::-webkit-input-placeholder {
  color: #848580;
}

.DateRangePicker .DateRangePickerInput .DateInput__small input::-moz-placeholder {
  color: #848580;
}

.DateRangePicker .DateRangePickerInput .DateInput__small input::-ms-input-placeholder {
  color: #848580;
}

.DateRangePicker .DateRangePickerInput .DateInput__small input::placeholder {
  color: #848580;
}

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder {
      box-shadow: 0 2px 6px #e4e5e0, 0 0 0 1px #e4e5e0;
      border-radius: 4px;
    }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarMonth_caption {
        font-size: 1rem;
        line-height: 1.75rem;
      }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .DayPickerNavigation_button__default {
        border: 1px solid #e4e5e0;
        background-color: #fff;
        color: #848580;
      }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .DayPicker_weekHeader {
        color: #848580;
      }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarDay__default {
        background: #fff;
        border: 1px solid #e4e5e0;
        color: #141414;
      }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarDay__selected_span {
        background: #141414;
        border: 1px solid #e4e5e0;
        color: rgba(223, 255, 239, 1);
      }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarDay__selected,
      .DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarDay__selected:active,
      .DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarDay__selected:hover {
        background: rgba(223, 255, 239, 1);
        border: 1px solid #e4e5e0;
        color: #141414;
      }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarDay__blocked_out_of_range,
      .DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarDay__blocked_out_of_range:active,
      .DateRangePicker .DateRangePickerInput .DayPicker__withBorder .CalendarDay__blocked_out_of_range:hover {
        background: #e4e5e0;
        color: #848580;
      }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .DayPickerKeyboardShortcuts_show__bottomRight::before {
        border-right-color: #141414;
      }

.DateRangePicker .DateRangePickerInput .DayPicker__withBorder .DayPickerKeyboardShortcuts_showSpan {
        color: rgba(223, 255, 239, 1);
      }

