@import
	url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap')
	;

@
keyframes popover_anim {from { top:-150px;
	visibility: hidden;
}

to {
	top: 7vh;
}

}
@
keyframes popover_anim_invert {from { top:7vh;
	
}

to {
	top: -150px;
}

}
.popover {
	position: fixed;
	z-index: 200;
	top: 7vh;
	left: 50%;
	transform: translateX(-50%);
	max-width: 480px;
	width: 100%;
	border-radius: 6px;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 13px 1px, rgba(0, 0, 0, 0.2) 0px
		3px 1px -2px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
	overflow: hidden;
	font-family: 'Roboto' !important;
	animation: 500ms ease-in-out 0ms 1 popover_anim;
	color: black;
}

.popover_hide {
	top: -150px;
	animation: 500ms ease-in-out 0ms 1 popover_anim_invert;
}

.popover_content {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-gap: 10px;
	margin: 10px;
}

.popover_icon {
	width: 80px;
	height: 80px;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.popover_icon img {
	width: 100%;
	height: auto;
	display: block;
}

.popover_icon.autoportal {
	background-image:
		url(https://cdn.iol.pt/img/autoportal/icon_autoportal.png);
}

.popover_icon.iol {
	background-image: url(https://cdn.iol.pt/img/iol/icon_iol.png);
}

.popover_icon.maisfutebol {
	background-image:
		url(https://cdn.iol.pt/img/maisfutebol/icon_maisfutebol.png);
}

.popover_icon.selfie {
	background-image: url(https://cdn.iol.pt/img/selfie/icon_selfie.png);
}

.popover_icon.tvi {
	background-image: url(https://cdn.iol.pt/img/tvi/icon_tvi.png);
}

.popover_icon.tvi24 {
	background-image: url(https://cdn.iol.pt/img/logostvi/preto/tvi.png);
}

.popover_icon.tviplayer {
	background-image:
		url(https://cdn.iol.pt/img/tviplayer/icon_tviplayer.png);
}

.popover_icon.away {
	background-image:
		url(https://away.iol.pt/img/logo-cid.svg);
}

.popover_icon.cnn {
	background-image:
		url(https://cdn.iol.pt/img/logos/cnn/logoCNN_vermelho.png);
}

.popover_text {
	font-size: 19px;
	font-weight: 500;
	line-height: 22px;
	color: black;
}

.popover_bottom {
	font-family: 'Roboto' !important;
	text-align: right;
	margin: 10px;
}

.popover_bottom button {
	border: none;
	padding: 8px 28px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	border-radius: 4px;
	border: 0;
	outline: 0;
}

.popover_bottom button:hover {
	background-color: #283845;
	color: #fff;
	cursor: pointer;
}

.popover_yes {
	background-color: #ED1A3B;
	color: white;
	font-weight: 700;
}

.popover_no {
	background-color: #efefef;
	color: #ED1A3B;
	font-weight: 100;
}

/* bell */
.bell {
	font-family: 'Roboto' !important;
	position: fixed;
	z-index: 200;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	border-radius: 6px;
	background-color: #fff;
	color: black;
	/*box-shadow: 0 0 6px rgba(0,0,0,.75);*/
	box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 13px 1px, rgba(0, 0, 0, 0.2) 0px
		3px 1px -2px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
	overflow: hidden;
	transition: width 0.3s ease-out 0s, height 0.3s ease-out 0s;
}

.bell_content {
	display: inline-grid;
	grid-template-columns: 90px 1fr;
	width: 290px;
	transition: all 0.3s ease-out 0s;
}

.bell_icon {
	width: 50px;
	height: 50px;
	/*background-color: #ED1A3B;*/
	background-color: #c8282e;
	border-radius: 6px;
	display: inline-grid;
	cursor: pointer;
	overflow: hidden;
	transition: width 0.3s ease-out 0s, height 0.3s ease-out 0s, background
		0.3s;
}

.flexContainer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 10px;
}

.flexbox-item {
	flex-grow: 1;
}

.flexbox-item-1 {
	margin: 10px;
}

.bell_icon.selfie, .popover_yes.selfie {
	background-color: #FFC600;
}

.popover_no.selfie {
	color: #FFC600;
}

.bell_icon.tviplayer, .popover_yes.tviplayer {
	background-color: #37C8F5;
}

.popover_no.tviplayer {
	color: #37C8F5;
}

.bell_icon.tvi, .popover_yes.tvi {
	background-color: #1E7FAD;
}

.popover_no.tvi {
	color: #1E7FAD;
}

.bell_icon.iol, .popover_yes.iol {
	background-color: #0066CC;
}

.popover_no.iol {
	color: #0066CC;
}

.bell_icon.maisfutebol, .popover_yes.maisfutebol {
	background-color: #F06926;
}

.popover_no.maisfutebol {
	color: #F06926;
}

.bell_icon.autoportal, .popover_yes.autoportal {
	background-color: #ED1A3B;
}

.popover_no.autoportal {
	color: #ED1A3B;
}

.bell_icon img {
	display: block;
	width: 50px;
	align-self: center;
	justify-self: center;
	transition: width 0.3s ease-out 0s, height 0.3s ease-out 0s;
}

.bell_resize {
	width: 290px;
	height: 90px;
}

.bell_resize .bell_icon {
	width: 90px;
	height: 90px;
}

.bell_resize .bell_icon img {
	width: 90px;
}

.bell_message {
	padding: 6px;
	align-self: center;
	/*justify-self: center;*/
}

.bell_title {
	font-size: 15px;
}

.bell_site {
	font-size: 13px;
	font-weight: bold;
}

.bell_bottom {
	position: relative;
	margin-top: 6px;
}

.bell_bt {
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	text-align: center;
	width: 35%;
	background-color: #ccc;
	color: #000;
	padding: 6px 0;
	cursor: pointer;
}

.bell_bt:nth-child(2) {
	margin-left: 5px;
}

.bell_bt:hover {
	/*background-color: #ED1A3B;*/
	background-color: #283845;
	color: #fff;
}

.bell_close {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-block;
	vertical-align: middle;
	align: right;
	background-color: #ccc;
	color: #000;
	padding: 6px;
	cursor: pointer;
}

.bell_close:hover {
	background-color: #283845;
}

.bell_close svg {
	display: block;
	width: 18px;
	height: auto;
	fill: black;
}

.bell_close:hover svg {
	fill: white;
}