@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Work+Sans:wght@300;400;500;600;700;800;900&display=swap");


.grid-row {
  display: grid;
  flex-wrap: wrap;
  gap: 15px;
  grid-template-columns: auto auto auto;
}

@media (min-width: 1900px) {
  .container {
    max-width: 1640px;
  }
}
.owl-nav {
  margin-top: 20px;
  padding-right: 0;
}
.owl-nav button {
  width: 15px;
  height: 15px;
  text-indent: -9999px;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
}
.owl-nav button:not(:last-child) {
  margin: 0 15px;
}
.owl-nav button.owl-prev {
  background-image: url(../images/arrow-left.svg) !important;
}
.owl-nav button.owl-prev.disabled {
  opacity: 0.5;
}
.owl-nav button.owl-next {
  background-image: url(../images/arrow-right.svg) !important;
}
.owl-nav button.owl-next.disabled {
  opacity: 0.5;
}

.ag-switch {
  display: flex;
  justify-content: space-between;
  width: 260px;
  padding: 5px;
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.14);
  position: relative;
}
.ag-switch a {
  display: block;
  width: 50%;
  float: left;
  text-align: center;
  padding: 5px;
  position: relative;
}
.ag-switch a.active {
  color: #ffffff;
}
.ag-switch .selector {
  position: absolute;
  display: block;
  width: 125px;
  height: 26px;
  background-color: #a58346;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.ag-switch .selector.left {
  left: 5px;
}
.ag-switch .selector.right {
  right: 5px;
}

body {
  font-family: "Work Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 100%;
  height: 50px;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(71, 162, 63, 0.2);
  -moz-box-shadow: 0px 10px 20px 0px rgba(71, 162, 63, 0.2);
  box-shadow: 0px 10px 20px 0px rgba(71, 162, 63, 0.2);
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #a58346;
  padding: 17px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 22px;
  right: 10px;
}

.select-styled:hover {
  background-color: #a58346;
}

.select-styled:active,
.select-styled.active {
  background-color: #a58346;
}

.select-styled:active:after,
.select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #fff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #a58346;
}

.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #a58346;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}

.select-options li:hover {
  color: #a58346;
  background: #fff;
}

.select-options li[rel=hide] {
  display: none;
}

.topbanner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../../images/dealer-page.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 500px;
}


.topbanner.gurkha-world {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../../images/gurkha-world.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 500px;
}

.topbanner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.topbanner .searchBox {
  position: relative;
  z-index: 2;
}
.topbanner .searchBox h2, .topbanner .searchBox h1 {
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: 38px;
  margin-bottom: 15px;
}
.topbanner .selectWrapper {
  display: flex;
}
.topbanner .selectWrapper .selectBox {
  width: 100%;
}
.topbanner .selectWrapper .select-styled {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #ffffff;
  color: #000000;
}
.topbanner .selectWrapper .select-styled::after {
  border: 7px solid #a58346;
  border-color: #44ac49 #fff #fff;
}
.topbanner .selectWrapper .select-styled:active:after,
.topbanner .selectWrapper .select-styled.active:after {
  top: 22px !important;
}
.topbanner .selectWrapper .searchBtn button {
  height: 48px;
  border: none;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #a58346;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.topbanner .selectWrapper .searchBtn button span {
  display: inline-block;
  margin: 0 5px;
}

.mapwrapper {
  background-color:#faf9f8;
}
.mapwrapper .storesData h5 {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
}

.mapp {
  padding-left: 15px;
  padding-right: 15px;
}

.addressList .address {
  padding: 10px;
  border: 1.5px solid #a58346;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  display: flex;
  /* justify-content: space-between; */
  column-gap: 10px;
  margin-bottom: 25px;
  -webkit-box-shadow: 4px 6px 11px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 4px 6px 11px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 4px 6px 11px 0px rgba(0, 0, 0, 0.11);
}
.addressList .address .storeAddress h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.addressList .address .storeAddress p {
  font-size: 14px;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 15px;
}
.addressList .address .shareBtn {
  position: relative;
  right: -10px;
}
.addressList .address .shareBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #a58346;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  color: #fff;
  padding: 0 5px;
}
.addressList .address .addressLinks {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.addressList .address .addressLinks .call {
  display: block;
  margin-bottom: 10px;
}
.addressList .address .addressLinks .call::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../../images/call.svg);
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 5px;
  position: relative;
  top: 2px;
  
  background-size: contain;

}
.addressList .address .addressLinks .direction::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../../images/direction.svg);
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.nicescroll-box {
  max-height: 550px;
  padding-right: 15px;
}

/* Set the size of the div element that contains the map */
#map {
  height: 600px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}

.footer {
  background-color: #a58346;
}

.telephoneNumbers {
  display: flex;
  grid-template-columns: auto auto;
  gap: 15px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .selectWrapper {
    flex-wrap: wrap;
  }

  .searchBox {
    padding: 0 30px;
  }

  .searchBtn {
    width: 100%;
  }
  .searchBtn button {
    width: 100%;
    justify-content: center;
  }

  .storesData {
    /* margin-top: 50px; */
  }

  .telephoneNumbers,
.get-direction {
    width: 100%;
  }

  .addressLinks {
    flex-wrap: wrap;
  }
  .addressLinks a {
    margin-bottom: 15px;
  }

  .grid-row {
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
    grid-template-columns: auto ;
  }
}

@media (min-width: 768px) {
  .grid-row {
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
    grid-template-columns: auto auto;
  }
}

@media (min-width: 1200px) {
  .grid-row {
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
    grid-template-columns: auto auto auto;
  }

  .addressList .address {
    max-width: 370px;
  }
}

@media (min-width: 1900px) {
  .addressList .address {
    max-width: 500px;
  }
}

