/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/
@media only screen and (max-width: 767px) {
h6{
	font-weight:700 !important;}
}

html {
  scroll-behavior: smooth !important;
}

/*Yellow bottom border in text*/
.b-text, p a{
	border-bottom:2px solid #F8C633;
	margin-top: 3px;
	color:#000;
}
p a:hover{
	color:#000;
}

/*remove coordinate from tooltip map*/
.wpgmza_infowindow_address {
    display: none;
}

.ol-attribution.ol-uncollapsible {
    display: none;
}

/*Cookie consent bar style*/
.cli-plugin-button, .cli-plugin-button:visited, .medium.cli-plugin-button, .medium.cli-plugin-button:visited {
    font-size: 15px !important;
    font-weight: 400;
    line-height: 25px !important;
    font-family: 'Bitter' !important;
}

.cli-style-v2 .cli-bar-message {
    font-size: 15px !important;
    line-height: 26px !important;
    font-family: 'Bitter' !important;
    font-weight: 400 !important;
}
#cookie-law-info-bar[data-cli-style="cli-style-v2"] .cli_messagebar_head {
    font-size: 30px !important;
    line-height: 26px !important;
    font-family: 'Oswald' !important;
    font-weight: 500 !important;
}

.cookie_action_close_header_reject, .cli-plugin-button {
	border:1px solid #fff !important;
}
.cookie_action_close_header{
	border:1px solid #F8C633 !important;
}
#cookie-law-info-bar[data-cli-style="cli-style-v2"] {
    padding: 30px 25px !important;
}
#cookie-law-info-bar {
    z-index: 99999;
}

/*Line animation for navigation menu*/

#nav div a {
  position: relative;
  color: #F8C633;
  text-decoration: none;
	z-index:2;
}

#nav div a:hover {
  color: #F8C633;
}



#nav div a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#nav div a:hover::before {
  transform: scaleX(1);
}
/*Line animation for footer nav*/

#nav-f div a {
  position: relative;
  color: #53585F;
  text-decoration: none;
	z-index:2;
}

#nav-f div a:hover {
  color: #53585F;
}

#nav-f div a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #53585F;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#nav-f div a:hover::before {
  transform: scaleX(1);
}

/*Line animation for content*/

#con div a, .phone-f{
  position: relative;
  color: #fff;
  text-decoration: none !important;
	z-index:2;
	border-bottom:0px !important;
}


#con div a:hover, .phone-f:hover{
  color: #fff;
}

#con div a::before, .phone-f::before{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#con div a:hover::before, .phone-f:hover::before{
  transform: scaleX(1);
}



/* Changing bullets to square */
.elementor-widget-text-editor ul {
  list-style: none; 
}
.elementor-widget-text-editor ul li:last-child, ol li:last-child{
	margin-bottom:20px !important;
}
.elementor-widget-text-editor ul li ul li:last-child, ol li ol li:last-child{
	margin-bottom:0px !important;
}
@media only screen and (max-width: 767px) {
	.elementor-widget-text-editor ul li::before {
	font-size:70% !important;	
	margin-left: -1.5em !important;}
.elementor-widget-text-editor ul li ul li::before {
	font-size:70% !important;	
	margin-left: -1.5em !important;}
}
.elementor-widget-text-editor ul li::before {
  content: "\25A0";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #000000; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  /* display: inline-block;  Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
	font-size:20px;
  margin-left: -1em; /* Also needed for space (tweak if needed) */
	position:absolute;
	vertical-align:middle;
}

.elementor-widget-text-editor ul li ul li::before {
  content: "\25A0";  
  color: #F8C633; 
  font-weight: bold; 
 /* display: inline-block; */
  width: 1em; 
font-size:20px;
  margin-left: -1em; 
	position:absolute;
	vertical-align:middle;
}
.elementor-widget-text-editor ul{
    padding-inline-start: 20px;
}


.elementor-widget-text-editor ul li ul{
	padding-left: 20px !important;
}

/* Styling ordered list */
.elementor-widget-text-editor ol {
   list-style: none;
   counter-reset: item;
 }
 .elementor-widget-text-editor ol li {
   counter-increment: item;
   margin-bottom: 5px;
	 border-left: 2px solid #F8C633;
	 padding-left: 9.5px;
 }
.elementor-widget-text-editor  ol li:before {
   content: counter(item);
	font-weight:bold;
   color: inherit;
	width: 2em;
	padding-right: 18.5px;
   text-align: center;
   display: inline-block;
	 text-align:right;
	 line-height: 19px;
	 margin-left:-2em;
 }

