/* -----------------------------------------------------------------------------
Advertisement Set One ► Advertise with Us
----------------------------------------------------------------------------- */








/* -----------------------------------------------------------------------------
Advertisement Set Two ► I Am an Affiliate
----------------------------------------------------------------------------- */








/* -----------------------------------------------------------------------------
Advertisement Set Three ► Refer a Friend
----------------------------------------------------------------------------- */
#container-refer-a-friend {
    display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

#flex-refer-a-friend {
    /* display: flex; ► Removed these.
	justify-content: center; */
    width: 720px;
    height: 90px;
	overflow: hidden;
}

#refer-a-friend {
    display: flex;
	justify-content: center;
    position: relative;
}

.ads-refer-a-friend {
	position: absolute;
}

.ads-refer-a-friend:hover {
    cursor: pointer;
}

.FadeInOutThree {
	animation-name: FadeInOutThree;
	animation-timing-function: ease-in-out;
}

@keyframes FadeInOutThree {
	0% {
		opacity:1;
	}
	17% {
		opacity:1;
	}
	25% {
		opacity:0;
	}
	92% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}



/* -----------------------------------------------------------------------------
Advertisement - Toggle Ads
----------------------------------------------------------------------------- */
#container-toggle-ads {
    display: flex;
	justify-content: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

#flex-toggle-ads {
    display: flex;
	justify-content: center;
    width: 720px;
    height: 90px;
    overflow: hidden;
}

#toggle-ads {
    display: flex;
	justify-content: center;
    position: relative;
}

.class-toggle-ads {
    display: none;
	position: absolute;
}

.class-toggle-ads:hover {
    cursor: pointer;
}

.FadeInOutToggleAds {
	animation-name: FadeInOutToggleAds;
	animation-timing-function: ease-in-out;
}

@keyframes FadeInOutToggleAds {
	0% {
		opacity:1;
	}
	17% {
		opacity:1;
	}
	25% {
		opacity:0;
	}
	92% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}









