/*
Theme Name: Wolt Child Theme
Theme URI: http://wolt.like-themes.com/
Author: Like Themes
Author URI: http://like-themes.com/
Description: Blank Child Theme for Wolt
Template: wolt
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: four-columns, right-sidebar, full-width-template
Text Domain: wolt

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

.mega-menu-row > .mega-sub-menu {
	max-width: 80%!important;
	margin: 0 auto!important;
}

.mega-menu-icon {
    /* position: absolute;
    left: -6%;
    top: 19%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px; */
    position: absolute;
    left: -8%;
    top: 14%;
    transform: translate(-50%, -50%);
    width: 67px;
    height: 67px;
}



/* Popup container styles */
.popup-container {
  display: none; /* Hide by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 999; /* Ensure the popup appears above other content */
}

/* Popup content styles */
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Close button styles */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #555;
}



