/*
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 */
.site-breadcrumbs{
	display: none;
}

.aff-btn {
	background: #ff5925;
	color: white;    
	padding: 10px 20px;
	margin: 5px;
}

.aff-btn:hover {
	color: white;
}

.aff-btn a {
	text-decoration:: none;
}

h2.wp-block-heading {
	font-size: 22px;
}

h2.wp-block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 30px;
  background: #ff5925;
  height: 2px;
}

strong {
	font-weight: 700;
}

/* POPUP  */
/* Popup Overlay styles */
#HSpopupOverlay {
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 100000;
}

#right-sidebar-inner h2 {
	font-size:20px;
}

/* Popup styles */
#HSpopup {
    background: white;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 450px;
    width: 100%;
    border-top: 2px solid #ff5925;
    position:fixed;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
     transform: translate(-50%,-50%);
}

/* Popup Close button styles */
.HSclose-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
	color: #444;
}