/* Links */
/* Footer top region */
/* Footer middle region */
/* Footer bottom region */
/* Submit button */
/* Button variant 1 */
/* Button variant 1 - alternative */
/* Button variant 2 */
/* Button variant 2 - alternative*/
/* Box shadow colors */
/* Container colors */
/* Search colors */
/* Menu colors */
/** General **/
/** Mobile **/
/* Navigation colors */
/* @font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Thin.ttf);
  font-weight: 200;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Black.ttf);
  font-weight: 900;
} */
@keyframes load {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.layout-item-location-widget {
  width: 100%;
  background-color: #005DAA;
  padding: 40px;
}
.layout-item-location-widget__container {
  max-width: 880px;
  margin: auto;
}
.layout-item-location-widget__container #location-widget {
  position: relative;
}
.layout-item-location-widget__container .search-input {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  height: 48px;
  background-color: white;
  border: 1px solid #ced4da;
}
.layout-item-location-widget__container .search-input input {
  margin-left: 10px;
  width: 100%;
  border: none;
  height: 46px;
  font-family: "Poppins";
  color: #231B73;
  line-height: 25.5px;
  font-size: 17px;
  font-weight: 500;
}
.layout-item-location-widget__container .search-input input:focus {
  outline: none;
}
.layout-item-location-widget__container .search-input input::-moz-placeholder {
  font-family: "Poppins";
  color: #231B73;
  font-size: 17px;
  line-height: 25.5px;
  font-weight: 500;
}
.layout-item-location-widget__container .search-input input::placeholder {
  font-family: "Poppins";
  color: #231B73;
  font-size: 17px;
  line-height: 25.5px;
  font-weight: 500;
}
.layout-item-location-widget__container .search-dropdown {
  position: absolute;
  width: 100%;
  z-index: 66;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list {
  padding: 10px;
  width: 100%;
  background-color: white;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li {
  cursor: pointer;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li svg {
  margin-left: 10px;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li p {
  margin: 0;
  margin-right: auto;
  margin-top: 2px;
  padding: 0px 20px;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  text-transform: capitalize;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li p span {
  font-family: "Poppins";
  font-size: 17px;
  font-weight: 500;
  line-height: 25.5px;
  text-align: left;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li button {
  display: none;
  background-color: #a262bb;
  color: white;
  border: none;
  height: 48px;
  width: 120px;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  z-index: 6;
  cursor: pointer;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li:hover {
  background-color: #e6d3ec;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li:hover button {
  display: flex;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li.highlighted {
  background-color: #e6d3ec;
}
.layout-item-location-widget__container .search-dropdown .suggestions-list li.highlighted button {
  display: flex;
}
.layout-item-location-widget--title {
  display: flex;
  font-family: "Poppins";
  font-size: 25px;
  font-weight: 600;
  line-height: 37.5px;
  text-align: left;
  color: white;
  margin-bottom: 20px;
}

.loader-location {
  width: 40px;
  height: 40px;
  border: 5px solid #FFF;
  border-bottom-color: #005DAA;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
