body {
  margin: 0;
  font-family: sans-serif;
}

.c-Wrapper {
  display: flex;
  position: relative;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1672px){
  .c-Wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 600px){
  .c-Wrapper {
    flex-direction: column;
  }
}

.c-SidePanel {
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
  height: 100vh;
  background-color: #fff;
  padding: 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1200px){
  .c-SidePanel {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media screen and (max-width: 600px){
  .c-SidePanel {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .c-SidePanel::-webkit-scrollbar {
    width: 8px;
    height: 12px;
  }

  .c-SidePanel::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: #F4F4F4;
  }

  .c-SidePanel::-webkit-scrollbar-thumb {
      background-color: #bababa;
      outline: none;
  }
}
.search-store-list{
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative
}
.search-store-list .search-icon{
  position: absolute;
    top: 24px;
    left: 30px;
}
.store-filter-toggle{
  padding: 0 30px;
}

.c-SidePanel [type=search] {
  outline: 0;
  width: 100%;
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 20px 30px 20px 60px;
  color: #BABABA;
  font-size: 12px;
  font-family: "GT America", sans-serif;
  font-style: normal;
  border: 0;
  text-transform: uppercase;
}

.c-Map {
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
  height: 100vh;
  display: block;
}

@media screen and (max-width: 1200px){
  .c-Map {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;

  }
}
@media screen and (max-width: 600px){
  .c-Map {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
    height: 50vh;
  }
}

.c-StoreList {
  padding-left: 0;
  list-style: none;
  margin-bottom: 80px;
  margin-top: 0;
  max-height: calc(100vh - 55px);
  overflow-y: auto;

}

.c-StoreList::-webkit-scrollbar {
    width: 8px;
    height: 12px;
}

.c-StoreList::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: #F4F4F4;
}

.c-StoreList::-webkit-scrollbar-thumb {
    background-color: #bababa;
    outline: none;
}


.c-StoreList__item {
  background-color: #fff;
  padding: 20px;
  border-bottom: 1px solid #E6E6E6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-StoreList__item_ar {
  flex-direction: row-reverse;
}
.c-StoreList__item:hover span{
  color: #fff !important;
}

.c-StoreList__item.is-active,
.c-StoreList__item:hover {
  color: #fff;
  background-color: #124634;
}
.dont-hover:hover{
  background-color: #fff !important;
  color: #1A1A1A !important;
}

.c-InfoPanel {
  width: 30%;
  height: calc(100vh - 80px);
  background-color: #fff;
  padding: 40px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: none;
}

@media screen and (max-width: 1200px){
  .c-InfoPanel{
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media screen and (max-width: 600px){
  .c-InfoPanel {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
   	width: 100%;
   	height: 100%;
  }
  .c-InfoPanel::-webkit-scrollbar {
    width: 8px;
    height: 12px;
  }

  .c-InfoPanel::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: #F4F4F4;
  }

  .c-InfoPanel::-webkit-scrollbar-thumb {
      background-color: #bababa;
      outline: none;
  }
}
.c-InfoPanel h3{
    font-family: "GT America", sans-serif;
    font-style: normal;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #124634;
}

.c-InfoPanel__opening-periods {
  list-style: none;
  padding-left: 0;
}

.c-InfoPanel__close {
  position: absolute;
  top: 42px;
  right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  box-shadow: none;
  border: 0;
  cursor: pointer;
}
.c-InfoPanel__close:focus{
  outline: none;
  box-shadow: none;
}

.c-InfoPanel__store-details {
  padding-left: 0;
  list-style: none;
}

.c-InfoPanel__store-details li {
  margin-bottom: 24px;
    font-family: "GT America", sans-serif;
    font-style: normal;
    font-size: 15px;
    font-weight: 300;
    color: #1A1A1A;
    line-height: 1.5;
}
.c-InfoPanel__store-details li strong{
      font-family: "GT America", sans-serif;
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    color: #124634;
}
.get-direction{
    background-color: #124634;
    width: auto;
    max-width: 220px;
    color: #fff;
    max-height: 44px;
    border-radius: 4px;
    padding: 12px 25px;
    line-height: 1;

}
.get-direction:hover{
  color: #fff;
}

.c-InfoPanel__store-details li ul li {
  margin-bottom: 0;
}

.c-InfoPanel__store-details li strong {
  display: block;
  color: #124634;
  margin-bottom: 5px;
}
.js-store-info-btn{
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    box-shadow: none;
    border: 0;
    cursor: pointer;
}
.js-store-info-btn:focus{
  outline: none;
  box-shadow: none;
}
svg.info-icon .info-circle, svg.info-icon .info-exclamation-top, svg.info-icon .info-exclamation-dot {
  fill: #124634;
  position: relative;
  z-index: 2;
}
svg.info-icon .info-circle-bg {
  fill: #fff;
}
.store-locator{
  padding-bottom: 80px;
}
.store-locator .store-locator-title{
    font-family: "FreightText Pro";
    font-style: normal;
    font-size: 50px;
    font-weight: 600;
    float: none;
    margin: 0 auto;
    text-align: center;
    display: block;
    width: 60%;
    margin-bottom: .25em;
    color: #1A1A1A;
    margin-top: 60px;
}
@media screen and (max-width: 900px){
	.store-locator .store-locator-title{
		width: 100%;
	}
}
@media screen and (max-width: 600px){
	.store-locator .store-locator-title{
		font-size: 26px;
	}
}
.store-locator  .rich-text p{
    font-family: "FreightText Pro";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    width: 40%;
    float: none;
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-bottom: 60px;
    color: #1A1A1A;
}
@media screen and (max-width: 900px){
	.store-locator  .rich-text p{
		width: 100%;
    	margin-bottom: 60px;
    }
}
@media screen and (max-width: 600px){
	.store-locator  .rich-text p{
		font-size: 18px;
	}
}
