.bonus-of-month-widget .widget-box {
	opacity: 0 !important;
}
.bonus-of-month-widget .widget-box.show_widget {
	opacity: 1 !important;
	transition: opacity .15s linear;
}

#ddexitpopwrapper { /* dynamically generated wrapper DIV that surrounds exit pop content DIV */
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
		pointer-events: none;
    align-items: center;
    justify-content: center;
}

#ddexitpopwrapper .veil { /* dynamically generated "overlay" DIV that covers entire window when pop up is shown */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,.7);
    content: "";
    z-index: 1;
    display: none;
    cursor: default;
}


.ddexitpop { /* user defined exit popup DIV style */
    width: 90%;
    max-width: 620px;
    padding: 20px;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
	color: #fff;
    background: #222;
	background-size: cover;
    left: 0;
	-webkit-animation-duration: .5s; /* customize animation duration */
	animation-duration: .5s; /* customize animation duration */
    visibility: hidden;
	box-shadow: 5px 5px 20px rgba(0,0,0,.25);
	font-family: 'Rajdhani', sans-serif;
	display: none;
}
#ddexitpopwrapper.open .ddexitpop {
	display: block;
}

div.closeexitpop{ /* Large x close button  */
	width: 70px;
	height: 70px;
	overflow: hidden;
	display: none;
	position: fixed;
	cursor: pointer;
	text-indent: -1000px;
	z-index: 3;
	top: 10px;
	right: 10px;
}

#ddexitpopwrapper.open{
	pointer-events: auto;
}

#ddexitpopwrapper.open .veil { /* style of veil when exit pop is open */
    display: block;
}

#ddexitpopwrapper.open div.closeexitpop {
    display: block;
}

#ddexitpopwrapper.open .ddexitpop{ /* style of exit pop content DIV when exit pop is open */
    visibility: visible;
}
.ddexitpop .overlay-provider-logo {
    padding: 15px;
    background: rgba(0,0,0,.75);
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(255,255,255,.2) inset;
	margin-bottom: 10px;
}
.ddexitpop .overlay-provider-logo img {
	width: 80px;
}
.ddexitpop .overlay-intro-text {
	font-weight: bold;
	font-size: 2rem;
}
.ddexitpop .overlay-bonus-value {
	font-size: 2.6rem;
	color: #7cbc17;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1;
}
.ddexitpop ul li {
	font-size: 1.7rem;
	line-height: 1.25;
	padding-left: 20px;
	position: relative;
	margin-bottom: 5px;
}
.ddexitpop ul li:before {
	content: "";
    width: 10px;
    height: 6px;
    display: block;
    position: absolute;
    top: 7px;
    background: url("/wp-content/themes/esports-net/images/arrow-nav-white.svg") no-repeat;
    background-size: 10px auto;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    left: 0;
    transform: rotate(-90deg);
	font-weight: 500;
}
.ddexitpop .button.gray {
	background-color: #333;
}
.ddexitpop .button.gray:before {
	background: none;
}
.overlay-button-section {
	display: flex;
	flex-flow: row wrap;
	margin: 20px -20px -20px;
	background: rgba(0,0,0,.75);
	padding: 15px;
	clear: both;
}
.overlay-button-section .button {
	display: flex;
	flex: 0 1 100%;
	margin: 0 0 10px;
	justify-content: center;
}
.overlay-button-section .button:last-child {
	margin-bottom: 0;
}
.ddexitpop .overlay-legal-bottom {
	display: flex;
    flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}
.ddexitpop .overlay-legal-bottom .overlay-disclaimer {
	font-size: .9em;
    font-style: italic;
}
.ddexitpop .overlay-legal-bottom .overlay-site-logo img {
    height: 15px;
	width: auto;	
	filter: grayscale(1);
}


@media screen and (min-width: 768px){
	.ddexitpop {
		background-size: cover;
	}
	.ddexitpop .overlay-provider-logo {
		margin-bottom: 10px;
	}
	.ddexitpop .overlay-provider-logo img {
		width: 140px;
	}
	
	.ddexitpop .overlay-intro-text {
		font-size: 2.4rem;
	}
	.ddexitpop .overlay-bonus-value {
		font-size: 4rem;
	}
	.ddexitpop ul li {
		font-size: 2rem;
	}
	.ddexitpop ul li:before {
		top: 8px;
	}
	.overlay-button-section {
		flex-flow: row;
		padding: 20px 15px;
	}
	.overlay-button-section .button {
		flex: 0 1 50%;
		margin: 0 5px;
	}
	.ddexitpop .overlay-legal-bottom .overlay-disclaimer {
		font-size: 1.1em;
	}
	.ddexitpop .overlay-legal-bottom .overlay-site-logo img {
		height: 25px;
	}
}