/*
Theme Name: Handart Child Theme
Theme URI: http://demo.roadthemes.com/handart/
Description:  Handart Child Theme
Author: Plaza-Themes
Author URI: http://plazathemes.com/
Template: handart
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, post-formats, sticky-post, threaded-comments
Text Domain: handart

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.
*/

.menu a:hover{
	background: rgba(0,0,0,0) !important;
}
a.button.buy-now-button {
    width: 100%;
    text-align: center;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

/* Show popup */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

/* Popup box */
.popup {
  background: #6F73D2;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  color: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  height: 350px;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: 0.3s ease;
}

.popup-overlay.active .popup {
  transform: scale(1);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Text */
.popup h1 {
  margin: 0;
  font-size: 22px;
}

.popup .big {
  font-size: 48px;
  font-weight: bold;
}

.sub {
  font-size: 14px;
  margin-top: 5px;
}

.hurry {
  margin: 15px 0;
  font-size: 14px;
}

/* Form */
.form-area input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.form-area button {
  width: 100%;
  padding: 12px;
  background: black;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.form-area button:hover {
  background: #222;
}
form#phoneForm {
    margin-top: 180px;
}

/* Mobile */
@media (max-width: 480px) {
  .popup {
    padding: 20px;
  }

  .popup .big {
    font-size: 36px;
  }
}