.stores-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  padding: 0 10px; }
  @media (max-width: 34.99em) {
    .stores-wrapper {
      padding: 0 25px;
      -ms-flex-pack: center;
          justify-content: center; } }
  .stores-wrapper .store-details {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    padding: 0 10px;
    margin: 0 0 50px; }
    @media (max-width: 74.9275em) {
      .stores-wrapper .store-details {
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
        margin: 0 0 30px; } }
    @media (max-width: 52.49em) {
      .stores-wrapper .store-details {
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
        margin: 0 0 20px; } }
    @media (max-width: 34.99em) {
      .stores-wrapper .store-details {
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
        margin: 0 10px 20px; } }
    .stores-wrapper .store-details.NoHours .store-details-container {
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px; }
    .stores-wrapper .store-details .store-details-container {
      background-color: #fff;
      padding: 20px 35px;
      margin-bottom: 2px;
      height: 170px;
      overflow: hidden;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px; }
      @media (max-width: 34.99em) {
        .stores-wrapper .store-details .store-details-container {
          padding: 20px;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-flow: column;
              flex-flow: column;
          -ms-flex-pack: center;
              justify-content: center; } }
      .stores-wrapper .store-details .store-details-container a {
        text-decoration: none; }
        @media (min-width: 64.0625em) {
          .stores-wrapper .store-details .store-details-container a .store-details-content:hover .store-name::after {
            width: 100%; } }
        @media (min-width: 64.0625em) {
          .stores-wrapper .store-details .store-details-container a .store-name::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--global-color);
            transition: opacity .25s;
            transition: width .25s ease-in-out; } }
      .stores-wrapper .store-details .store-details-container .store-name {
        position: relative;
        display: inline-block;
        padding-top: 15px;
        font-size: 15px;
        margin-bottom: 15px; }
      .stores-wrapper .store-details .store-details-container .store-map {
        font-size: 12px;
        margin-bottom: 15px;
        display: block; }
      .stores-wrapper .store-details .store-details-container .store-tel {
        font-size: 13px;
        margin-bottom: 10px; }
    .stores-wrapper .store-details .store-details-container::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
      border-radius: 5px;
      background-color: #f5f5f5; }
    .stores-wrapper .store-details .store-details-container::-webkit-scrollbar {
      width: 6px;
      background-color: #f5f5f5; }
    .stores-wrapper .store-details .store-details-container::-webkit-scrollbar-thumb {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
      background-color: rgba(0, 0, 0, 0.5); }
    .stores-wrapper .store-details .store-details-container::-webkit-scrollbar-track-piece:end {
      margin-bottom: 5px; }
    .stores-wrapper .store-details .store-details-container::-webkit-scrollbar-track-piece:start {
      margin-top: 5px; }
    .stores-wrapper .store-details .store-hours {
      font-size: 13px;
      background-color: #fff;
      padding: 20px 35px 20px;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08); }
      .stores-wrapper .store-details .store-hours .currentDay {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
            justify-content: space-between;
        -ms-flex-align: center;
            align-items: center; }
        .stores-wrapper .store-details .store-hours .currentDay .today {
          font-weight: 600; }
          .stores-wrapper .store-details .store-hours .currentDay .today span {
            color: #d09a22; }
      .stores-wrapper .store-details .store-hours .store-hours-container {
        display: none;
        margin-top: 15px; }
        .stores-wrapper .store-details .store-hours .store-hours-container .store-hours-content {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-flow: column;
              flex-flow: column; }
          .stores-wrapper .store-details .store-hours .store-hours-container .store-hours-content .hours.lastDay {
            -ms-flex-order: 1;
                order: 1; }
      .stores-wrapper .store-details .store-hours span.hours.CurrentDay {
        color: #d09a22; }
      .stores-wrapper .store-details .store-hours span.hours.closed {
        color: #be3838; }
      .stores-wrapper .store-details .store-hours.show .plus-moins-icon::after {
        content: none; }
  .stores-wrapper .stores-count {
    font-weight: 600;
    font-size: 19px;
    text-transform: uppercase;
    padding: 10px; }
    @media (max-width: 34.99em) {
      .stores-wrapper .stores-count {
        font-size: 15px; } }

.plus-moins-icon {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer; }
  .plus-moins-icon:before {
    content: "";
    width: 12px;
    height: 1px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .plus-moins-icon:after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.return-image-wrapper {
  position: relative;
  height: 180px;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden; }
  @media (max-width: 34.99em) {
    .return-image-wrapper {
      margin-bottom: 0; } }
  .return-image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    border-radius: 8px; }
    @media (max-width: 34.99em) {
      .return-image-wrapper img {
        border-radius: 0; } }

.return-title {
  font-size: 30px; }

.return-body-content {
  max-width: 686px;
  background-color: #fff;
  padding: 15px 20px;
  margin: 15px auto 20px;
  text-align: center;
  border-radius: 8px; }
  @media (max-width: 52.49em) {
    .return-body-content {
      max-width: 100%; } }
  @media (max-width: 34.99em) {
    .return-body-content {
      border-radius: 0;
      margin-top: 0;
      font-size: 13px; } }

.img-country-wrapper {
  background-color: #fff;
  border-radius: 8px; }
  @media (max-width: 34.99em) {
    .img-country-wrapper {
      border-radius: 0; } }
  .img-country-wrapper .country {
    padding: 20px;
    text-align: right;
    margin-right: 50px; }
    @media (max-width: 74.9275em) {
      .img-country-wrapper .country {
        margin-right: 30px; } }
    @media (max-width: 52.49em) {
      .img-country-wrapper .country {
        padding: 10px;
        margin-right: 15px; } }
    @media (max-width: 34.99em) {
      .img-country-wrapper .country {
        text-align: center;
        margin-right: 0; } }
    .img-country-wrapper .country span:first-of-type {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: end;
          justify-content: flex-end; }
      @media (max-width: 34.99em) {
        .img-country-wrapper .country span:first-of-type {
          -ms-flex-pack: center;
              justify-content: center; } }
    .img-country-wrapper .country span span {
      font-size: 14px;
      font-weight: 600; }

@media (max-width: 34.99em) {
  div.return-wrapper-mobile .link-breadscrumb {
    padding-left: 1.25em; } }

@media (max-width: 34.99em) {
  div.return-wrapper-mobile.return-stores-container {
    padding-left: 0;
    padding-right: 0; } }

@media (max-width: 34.99em) {
  div.return-wrapper-mobile.return-stores-container h1 {
    text-align: center;
    padding: 0 20px;
    font-size: 20px; } }

@media (max-width: 34.99em) {
  div.return-wrapper-mobile.return-stores-container p.subtitle {
    text-align: center;
    padding: 0 20px;
    font-size: 14px; } }
