/*********embeded fonts**************/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Myriad Pro";
  src: url("MyriadPro-Regular.woff2") format("woff2"),
    url("MyriadPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-default: "Jost", sans-serif;
  --font-secondary: "Jost", sans-serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #1f4e3d;
  --white: #ffffff;
  --color-primary: #1a582a;
  --color-secondary: #4ea162;
  --color-heading: #04000b;
  --color-paragraph: #787878;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #eff2f5;
  --bg-gradient: linear-gradient(
    97deg,
    #49a760 50%,
    rgba(252, 197, 27, 1) 100%
  );
}
/*********embeded fonts**************/
/*========================Global=====================*/
body {
  background: #ffffff;
  font-family: "Jost", sans-serif;
  color: #000000;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover,
a:focus,
a.active {
  color: #175b2a;
}
ul {
  padding: 0;
  margin: 0;
}
/*========================Global=====================*/
.header {
  position: relative;
}

.header .header-top .navbar-brand {
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

header img.navbar-brand {
  display: block;
  height: 82px;
  width: auto;
}

.justify-nav-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
}

.desktop-nav {
  width: 100%;
  display: block;
  padding: 0;
}
.desktop-nav > ul > li:not(:last-child) {
  box-sizing: border-box;
  border-right: #fff 1px solid;
}
.desktop-nav > ul > li > a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  display: block;
  padding: 12px 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.desktop-nav > ul > li:hover > a,
.desktop-nav > ul > li > a.active {
  color: #fff !important;
  background-color: #28a3dc !important;
}

.desktop-nav > ul > li:hover > a {
  color: #fff;
  background-color: #ba8200;
}

/* .nav-link.active  {
  color: #fff;
  background-color: #ba8200;
} */

.text-box-link {
  width: auto;
  display: flex;
  box-sizing: border-box;
  padding: 12px 25px;
  background-color: #ba8200;
  border: none;
  border-radius: 0px;
  transition: all 0.3s;
}

.text-box-link span {
  width: 22px;
  height: 22px;
  display: block;
  float: left;
  margin: 0 7px 0 0;
}

.text-box-link span img {
  width: 100%;
  height: 22px;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.text-box-link div {
  width: calc(100% - 40px);
  float: left;
  white-space: nowrap;
  color: #fff;
  margin-top: 1px;
  font-size: 14px;
}

.btn {
  border-width: 1px;
  cursor: pointer;
  line-height: normal;
  padding: 12px 35px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mega-menu {
  width: 100%;
  display: none;
  position: absolute;
  z-index: 4;
  left: 0px;
  top: 100%;
  background: #ba8200;
  box-sizing: border-box;
  padding: 30px;
  margin-top: -2px;
}

.header {
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.desktop-nav > ul > li > a svg circle,
.desktop-nav > ul > li > a svg path {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.desktop-nav > ul > li:hover > a svg circle,
.desktop-nav > ul > li:hover > a svg path {
  stroke: #fff !important;
}

.desktop-nav > ul > li:hover > .mega-menu {
  display: block;
}

::selection {
  color: #ffffff;
  background-color: #252525;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.header-bottom {
  background-color: #2158a8;
}

header .header-top {
  position: relative;
  background-color: #fff;
  /*    border-bottom: 1px solid #dee2e6 !important;*/
  box-sizing: border-box;
}

.position-relative {
  position: relative !important;
}

.btn {
  display: inline-block;
  font-weight: 700;
  line-height: 1.667;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in;
}

.btn {
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: uppercase;
  background-size: 150%;
  background-position-x: 25%;
  position: relative;
  overflow: hidden;
}

.dropdown-toggle {
  position: relative;
  padding-right: 30px !important;
}

.dropdown-toggle:after {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: #1a582a 0.3em solid !important;
}

ul.dropdown-menu {
  padding: 0px !important;
  margin: 0xpx !important;
}

ul.dropdown-menu a {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 6px 15px;
}

.ml-20px {
  margin-left: 20px;
}

.border-right-white {
  border-right: #dee2e6 1px solid;
}

.position-relative {
  position: relative;
}

.reg-drop {
  width: 300px;
  height: auto;
  display: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 100%;
  border-top: #fff 1px solid;
}

.reg-drop > a {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 12px 25px;
  background-color: #ba8200;
  border-radius: 0px;
  transition: all 0.3s;
  color: #fff;
  border-bottom: #fff 1px solid;
}

.reg-drop > a:hover {
  background-color: #4ea162;
}

.reg-drop > a:last-child {
  border: none;
}

.registration-hover:hover .reg-drop {
  display: block;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
  /*    border-bottom: 1px solid #dee2e6 !important;*/
}
.border-bottom {
  border-bottom: none !important;
}
.btn-light-green {
  color: #fff !important;
  padding: 6px 15px;
  border: #4ea162 1px solid;
  background-color: #4ea162;
}
.btn-red {
  color: #fff !important;
  padding: 6px 15px;
  border: #ff0000 1px solid;
  background-color: #ff0000;
}
.hamburger {
  display: none;
}

.shopping-cart li {
  margin-bottom: 5px;
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
  border-bottom: 1px solid #e7e7e7;
}

.shopping-cart li:last-child {
  margin-bottom: 0px;
  border: none;
}

.shopping-cart li img {
  float: left;
  margin-right: 12px;
  max-width: 70px;
  max-height: 70px;
}

.shopping-cart li .item-name {
  display: block;
  font-size: 16px;
}

.shopping-cart li .item-detail {
  display: block;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.shopping-cart li .item-price {
  color: #ba8200;
  margin-right: 8px;
}

.shopping-cart:after {
  bottom: 100%;
  left: 89%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

.shopping-cart {
  min-width: 300px !important;
  margin-top: 0px !important;
}

.mb-5px {
  margin-bottom: 5px;
}

.align-center-menu {
  align-items: center;
  height: 45px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.not-relative {
  position: static !important;
}

.chils-m-tb-15 > .col-lg-3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mega-menu h2 {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: #fff 1px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mega-menu a {
  color: #fff;
}

nav.desktop-nav > ul > li:not(:first-child) {
  position: relative;
}

.desktop-nav > ul > li > ul {
  width: 275px;
  height: auto;
  display: none;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 100%;
  border-top: #fff 1px solid;
}

.desktop-nav .nav-link:focus > ul > li > ul > li > a {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 12px 15px;
  background-color: #ba8200;
  border-radius: 0px;
  transition: all 0.3s;
  color: #fff;
  font-size: 14px;
  border-bottom: #fff 1px solid;
  text-transform: uppercase;
}

.desktop-nav > ul > li > ul > li > a:hover {
  background-color: #4ea162;
}

.desktop-nav > ul > li:hover > ul {
  display: block;
}

.header .header-top .navbar-brand {
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  height: 110px !important;
  width: auto !important;
}

img.g20-logo {
  box-sizing: border-box;
  height: 70px;
  object-fit: contain;
}
.map-section {
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #979797;
}
.home-section {
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
}
.left-panel {
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 15px;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
iframe {
  width: 100%;
  height: 100%;
}
.left-panel ul li {
  margin: 0 0 10px 0;
}

.default-radio-check {
  display: flex;
  position: relative;
  margin: 0px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 10px 10px 40px;
  border: #ddd 1px solid;
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 10%);
}

/* Hide the browser's default checkbox */
.default-radio-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.default-radio-check .checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #eee;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* On mouse-over, add a grey background color */
.default-radio-check:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.default-radio-check input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.default-radio-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.default-radio-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.default-radio-check .checkmark:after {
  content: "\f111";
  font: normal normal normal 14px/1 FontAwesome;
  left: 6.5px;
  top: 5.5px;
  color: #fff;
  width: 5px;
  height: 10px;
  /*border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);*/
}
#map {
  height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
.district-holder {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 10px 10px 10px 40px;
  border: #ddd 1px solid;
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 10%);
  margin-top: -7px;
  background-color: #fff;
  border-top: none;
}
/*.district-holder > ul{
    max-height: 130px;
    overflow-y: auto;
}*/
.mCSB_inside > .mCSB_container {
  margin-right: 15px !important;
}
.left-panel.mCustomScrollbar {
  padding-right: 0px !important;
}
.owl-theme#banner-carousel .owl-nav {
  margin: 0px;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.owl-theme#banner-carousel .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 0px;
  padding: 0px;
  background: transparent;
  display: block;
  border-radius: 0px;
}
.owl-theme#banner-carousel .owl-nav .owl-prev {
  float: left;
}
.owl-theme#banner-carousel .owl-nav .owl-next {
  float: right;
}
.banner-content-color-noo.text-center {
  text-align: left !important;
}
.banner-content-color-noo .deep-blue-sec {
  margin: 0;
  text-align: center !important;
}

.banner-content {
  width: calc(100% - 200px);
  text-align: center;
  display: block;
  position: absolute;
  z-index: 3;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-content h2 {
  font-size: 84px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.banner-content h3 {
  font-size: 50px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  margin: 0;
}
.banner-content-color-noo {
  width: 100%;
  display: block;
  padding: 0 35px;
  box-sizing: border-box;
  text-align: left;
}
.banner-content .search-section {
  padding: 10px 15px !important;
  background: rgba(18, 71, 122, 0.9);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.filter-action {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.info.leaflet-control {
  background: #ffffff70;
  box-sizing: border-box;
  padding: 15px;
  border: #ddd 2px solid;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 10%);
}
.logo-outer {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.logo-txt h4 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: #1863af;
}
.logo-txt p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #172953;
}
.default-section {
  padding-top: 45px;
  padding-bottom: 45px;
}
.max-width-400px {
  max-width: 400px;
}
.map-section.pa-0 {
  padding: 0px !important;
  position: relative;
}
.info-body {
  box-sizing: border-box;
  padding: 0;
}
.info-body .info-loop-heading {
  width: 100%;
  height: 40px;
  display: block;
  align-items: center;
  background-color: #2ba6de;
  color: #fff;
  line-height: 40px;
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 15px;
  margin: 0;
}
.info-table-holder {
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}
.info-table-holder table {
  width: 100%;
  margin-bottom: 2%;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgb(218, 218, 218);
  font-weight: 700;
}

.info-table-holder table tr {
  margin-bottom: 1px;
  border-bottom: 0.5px solid rgb(218, 218, 218);
  word-break: break-all;
}
.info-table-holder table td {
  background-color: white;
  color: rgb(68, 68, 68);
  font-weight: 400;
  border: 1px solid rgb(236, 236, 236);
  font-size: 16px;
  padding: 5px 15px !important;
}
.no-data {
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
}
.info-holder {
  max-height: 400px;
  overflow-y: auto;
}
.white-text {
  color: #fff !important;
}

::ng-deep .ol-control button {
  width: 40px;
  height: 40px;
  background-color: #2158a8 !important;
  border-radius: 0;
  border: none;
}

/**
 * The zoomslider in the third map shall be horizontal, placed in the top-right
 * corner, smaller and orange.
 */
#map .ol-zoomslider {
  top: 5px;
  left: auto;
  right: 5px;
  background-color: #17295385;
  width: 200px;
  height: 15px;
  padding: 0;
  /* box-shadow: 0 0 5px #172953; */
  border-radius: 7.5px;
}

/* #map .ol-zoomslider:hover {
  background-color: rgba(255, 69, 0, 0.3);
} */

#map .ol-zoomslider-thumb {
  height: 15px;
  width: 15px;
  margin: 0;
  filter: none;
  background-color: #2ba6de;
  border-radius: 7.5px;
}
#map a.ol-zoomslider-handle:hover {
  background-color: rgba(255, 69, 0, 0.7);
}
#map .custom-mouse-position {
  width: auto;
  display: inline-block;
  position: absolute;
  z-index: 55;
  top: 30px;
  right: 5px;
  background-color: #1729539e;
  padding: 3px 12px;
  color: #fff;
  font-size: 14px;
}
