.intra-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #008ab0;
  color: white;
  min-width: 1em;
  border-radius: 50%;
  vertical-align: middle;
  font: 15px Arial, sans-serif;
}

intra-circle:before {
  content:'';
  float: left;
  width: auto;
  padding-bottom: 100%;
}

.pickup-buttons {
  display: none;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e1e1e1;
  .pickup-tab {
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 35px 5px;
    box-sizing: border-box;
    cursor: pointer;
    color: #ffffff;
    background-color: #008ab0;
    position: relative;
    border-radius: 4px 4px 0 0;

    &.active {
      color: #363636;
      background-color: #ffffff;
      background-color: #ffffff;
      border: 1px solid #e1e1e1;
      border-bottom: none;

      &::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -1.5px;
        width: 100%;
        height: 0;
        border-bottom: 2px solid #ffffff
      }
    }
  }
  @media screen and (max-width: 768px) {
    display: flex;
  }
  
  &.show-buttons-desktop {
    @media screen and (max-width: 1336px) {
      display: flex;
    }
  }
}

.pickup-points-container {
  display: flex;
  margin-bottom: 1.5rem;
}

.pickupPoints {
  height: 600px;
  overflow: auto;
  flex-grow: 1;
  &.hide {
    display: none;
  }
}

.pickup-map {
  height: 600px;
  flex-grow: 12;
  &.hide {
    display: none !important;
  }
  @media screen and (max-width: 768px) {
    min-height: calc(100vh - 120px);
    max-height: 100vh;
  }
}

.pickupPointDistance {
  font-weight: bold;
  color: #008ab0;
  float: top;
}

.pickupPointName {
  font-weight: bold;
  font: 12px Arial, sans-serif;
}

.pickupPointInfo {
  padding-bottom: 15px;
  line-height: 16px;
}

.section-result-title {
  color: #000;
  font-size: 15px;
  line-height: 16px;
  padding-top: 5px;
  padding-bottom: 0px;
  white-space: normal;
}

.pickupPointAddress {
  padding-bottom: 5px;
}

.changeAddress {
  font-size: 16px;
  margin-top: 1em;
  margin-bottom: 3em;
  display: block;
  color: #008ab0;
}

.data-shippingSection-no-points {
  font: 14px Arial, sans-serif;
}