/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
/* Target the whole form row */
#footer-callout-wrap {
    background-color: transparent;
    border-top: 0;
}
body {
    overflow-x:hidden;
}
a:focus {
    outline:none !important;
}
#top-bar-wrap {
      background-color: transparent !important;
    border-bottom: none !important;
}
.top-bar-left {
    float: none !important;
}
#topbar-template {
    display: unset;
}
.newsletter-one-row .nf-form-content nf-fields-wrap {
  display: flex;
  margin: 0 auto;
}
.icombpx a {
	color: #fff;
}
.newsletter-one-row .nf-field-label {
	display:none;
}
/* Style the email input */
.newsletter-one-row form input[type="email"] {
    padding: 6.5px 15px 6.5px 15px !important;
    background-color: #fff;
    border: 1px solid #000 !important;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    width: 500px;
}
.nf-form-fields-required {
	display:none;
}
/* Style the subscribe button */
.newsletter-one-row input[type=submit] {
  padding: 14px 30px 14px 30px !important;
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect */
.newsletter-one-row .nf-field-container.submit-wrap input[type="button"]:hover,
.newsletter-one-row .nf-field-container.submit-wrap button:hover {
  background-color: #333;
}
/* Mobile: stack input & button */
@media (max-width: 600px) {
	.newsletter-one-row .nf-form-content nf-fields-wrap {
		display: unset;
		margin: 0 auto;
	}
	.newsletter-one-row form input[type="email"] {
		 width: 100%;
		border-radius:0;
	}
	/* Style the subscribe button */
	.newsletter-one-row input[type=submit] {
	  border-radius: 0;
	}

}