/* Dropdown menu */
@media (min-width: 991px) {
	
	.menu-item-has-children > a::after {
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
		transform: rotate(45deg);
		right: -12px;
		position: relative;
		top: -2px;
		transition: all 0.25s;
	}
	.menu-item-has-children.active > a {
		color: #005633;
	}
	.menu-item-has-children.active > a::after {
		-webkit-transform: rotate(225deg);
		transform: rotate(225deg);
		top: 2px;
	}

    .header__menu li.menu-item-has-children > ul {
        display: block;
        opacity: 0;
        pointer-events: none;
        position: absolute;
		top: 90%;
        z-index: 9999;
        background: #f1eee3;
        padding: 5px 0 10px;
        transition: all 0.25s;
    }
    .header__menu li.menu-item-has-children.active > ul {
        opacity: 1;
        top: 100%;
        pointer-events: inherit;
    }
    .header__menu li.menu-item-has-children > ul li {
        display: block;
        width: 100%;
        margin: 0;
    }
    .header__menu li.menu-item-has-children > ul li a {
        display: block;
        width: 100%;
        padding: 10px 30px;
    }
	.header__menu li.menu-item-has-children > ul li a:hover {
        color: #1d823a!important;
    }
	.header__menu li.current-menu-item ul li > a {
		color: #000!important;
	}

}

/* Dropdown menu */
@media (max-width: 991px) {
	
	.header__menu li.menu-item-has-children {
		position: relative;
	}
	.header__menu li.menu-item-has-children > a {
		display: block;
		width: 100%;
	}
	.menu-item-has-children > a::after {
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
		transform: rotate(45deg);
		position: absolute;
		right: 0;
		top: 7px;
		transition: all 0.25s;
	}
	.header__menu li.menu-item-has-children > ul {
		display: none;
		background: #f1eee3;
		margin-top: 10px;
		margin-bottom: 10px;
		padding: 10px 0;
	}
	.header__menu li.menu-item-has-children.active > ul {
		display: block;
	}
	.header__menu li.menu-item-has-children > ul li {
		display: block;
		padding: 0;
		margin: 0;
		border: 0;
	}
	.header__menu li.menu-item-has-children > ul li a {
		display: block;
		width: 100%;
		padding: 10px 25px;
	}

}
/* End - Dropdown menu */

.topbar_banner {
    width: 100%;
    text-align: center;
    background: #fdf6e2;
    text-align: center;
    padding: 10px;
    color: #826113;
	font-weight: 500;
}

.pdp_action_banner {
	font-weight: 500;
	color: #1d823a;
	margin-top: 15px;
	position: relative;
}

.pdp_action_banner.has_img {
	padding-left: 120px;
	min-height: 100px;
	padding-top: 20px;
}

.pdp_action_banner img {
	max-width: 100px;
	max-height: 100px;
	width: auto;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
}

@media (max-width: 768px) {
    .topbar_banner {
        font-size: 13px;
        line-height: 19px;
    }
	.pdp_action_banner.has_img {
		padding-top: 5px;
	}
}