@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800;900&display=swap');
body {
	font-family: 'Prompt', sans-serif;
	font-size: 14px;
	background: var(--main-bg);
	color: var(--main-color);
	padding-top: 6.5rem;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--leagues-color);
	font-weight: 700;
}
h1 {
	font-size: 32px;
}
h2 {
	font-size: 28px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
a, .text-primary {
	color: var(--link-color);
	text-decoration: none;
}
a:hover {
	color: var(--link-color-hover);
}
#live tr td:first-child {
	padding-left: 5px;
	padding-right: 5px;
}
.text-primary {
	color: var(--link-color) !important;
}
.text-secondary {
	color: var(--main-color) !important;
}
.btn {
	border-radius: .5rem;
	font-weight: 600;
}
.btn-primary {
	color: var(--leagues-bg);
	background: var(--link-color);
	border-color: var(--link-color);
}
.btn-primary:hover {
	color: var(--leagues-bg);
	background: var(--link-color);
	border-color: var(--link-color);
	opacity: .8;
}
.btn-outline-primary {
	color: var(--link-color);
	border-color: var(--link-color);
}
.btn-outline-primary:hover {
	color: var(--link-color);
	background: var(--leagues-bg);
	border-color: var(--link-color);
}
.navbar {
	background: var(--nav-bg);
	padding: 1rem 0;
}
*:focus {
	box-shadow: none !important;
}
.navbar-brand img {
	width: 100%;
	max-width: 300px;
}
.navbar-toggler {
	background: var(--leagues-bg);
}
.navbar-toggler span {
	font-size: 30px;
	color: var(--link-color);
}
.nav-link {
	font-weight: 600;
	color: var(--main-color);
}
.nav-link.active {
	color: var(--link-color);
}
.nav-link:hover {
	color: var(--link-color-hover);
}
.menu-container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.alert {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: .5rem;
	transition:0.5s;
	cursor:pointer;
}
.alert:before {
	content: '';
	position: absolute;
	width: 0;
	height: calc(100% - 44px);
	border-left: 1px solid;
	border-right: 2px solid;
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
	left: 0;
	top: 50%;
	transform: translate(0,-55%);
	height: 40%;
}
.alert .alert-icon {
	font-size: 20px;
	text-align: center;
	margin-right: .5rem;
	text-shadow: none;
}
.alert-success {
	border: 1px solid rgba(36, 241, 6, 0.46);
	background-color: rgba(7, 149, 66, 0.12156862745098039);
	box-shadow: 0px 0px 2px #259c08;
	color: #0ad406;
}
.alert-success:hover {
	color: #0ad406;
	background-color: rgba(7, 149, 66, 0.35);
	transition:0.5s;
}
.alert-primary {
	border: 1px solid rgba(6, 44, 241, 0.46);
	background-color: rgba(7, 73, 149, 0.12156862745098039);
	box-shadow: 0px 0px 2px #0396ff;
	color: #0396ff;
}
.alert-primary:hover {
	color: #0396ff;
	background-color: rgba(7, 73, 149, 0.35);
	transition:0.5s;
}
.alert-warning {
	border: 1px solid rgba(241, 142, 6, 0.81);
	background-color: rgba(220, 128, 1, 0.16);
	box-shadow: 0px 0px 2px #ffb103;
	color: #ffb103;
}
.alert-warning:hover {
	color: #ffb103;
	background-color: rgba(220, 128, 1, 0.33);
	transition:0.5s;
}
.alert-danger {
	border: 1px solid rgba(241, 6, 6, 0.81);
	background-color: rgba(220, 17, 1, 0.16);
	box-shadow: 0px 0px 2px #ff0303;
	color: #ff0303;
}
.alert-danger:hover {
	color: #ff0303;
	background-color: rgba(220, 17, 1, 0.33);
	transition:0.5s;
}
.alert-info {
	border: 1px solid rgba(6, 241, 226, 0.81);
	background-color: rgba(1, 204, 220, 0.16);
	box-shadow: 0px 0px 2px #03fff5;
	color: #03d0ff;
}
.alert-info:hover {
	color: #03d0ff;
	background-color: rgba(1, 204, 220, 0.33);
	transition:0.5s;
}
.card {
	border-radius: .8rem;
	background: var(--third-bg);
}
.card-header:first-child {
	border-radius: 0.8rem 0.8rem 0 0;
}
#main-container {
	min-height: calc(100vh - 176px);
}
#table_live {
	font-size: 14px;
}
#soccer .scoretitle td, .result-split td, .con-livestreaming th {
	color: var(--header-color);
	background-color: var(--header-bg);
	font-weight: 600;
	padding: 5px 0;
}
.con-livestreaming .playstream {
	font-size: 25px;
}
.Leaguestitle td, .copyright-table td {
	background: var(--leagues-bg);
	border-bottom: 1px solid rgba(0,0,0,.1) !important;
}
.copyright-table {
	color: var(--leagues-color);
}
.hidden-info, .display-info {
	position: relative;
	cursor: pointer;
}
.l1 {
	float: left;
	padding: 5px 0;
	display: flex;
	align-items: center;
	font-weight: 600;
	color: var(--leagues-color);
}
.l1 img {
	max-height: 18px;
	border-radius: 3px;
	margin-right: .7rem;
}
.l2 {
	float: right;
	padding-top: 5px;
}
.l5 {
	float: right;
}
.tipsNum {
	margin-right: 10px;
	color: rgba(255,255,255,.6);
	display: none;
}
table .collapse:not(.show) {
	display: block;
}
#live {
	max-width: 100%;
	overflow: auto;
}
#live .closes, #live .collapse, #live .expand {
	display: inline-block;
	float: left;
	width: 25px;
	height: 28px;
	border-left: 1px solid rgba(0,0,0,.08);
	position: relative;
}
#live .collapse:before, .expand:before {
	display: inline-block;
	content: "";
	position: absolute;
	top: 10px;
	left: 8px;
	width: 0;
	height: 0;
	vertical-align: middle;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}
#live .collapse:before {
	border-bottom: 4px solid #666;
}
#live .expand:before {
	transform: rotate(0deg);
	border-top: 4px solid #666;
}
#ScoreTh {
	padding: 5px 8px !important;
}
#ScoreTh, .handpoint {
	text-align: center;
}
.time, .status {
	text-align: left;
}
.allno {
	display: flex;
	align-items: center;
	justify-content: center;
}
.allno span {
	width: 11px;
	height: 12px;
	background-image: url(../img/allno.png);
	background-repeat: no-repeat;
	cursor: pointer;
}
.tds td {
	padding: 10px 2px;
	background: var(--secondary-bg);
	border-bottom: 1px solid var(--leagues-bg);
}
.tds:hover td {
	cursor: pointer;
	background: var(--secondary-bg-hover);
}
td.text-info {
	background: var(--secondary-bg);
}
.add-div {
	display: flex;
	align-items: center;
	justify-content: center;
}
.red {
	color: red !important;
}
.red2{
	color: #de5b5c !important;
}
.goal_bg { background-color: #095e1f; }
.redcard_bg { background-color: #580202; }
.yellowcard, .redcard { padding: 0 4px; border-radius: 2px; margin: 0 2px }
.yellowcard { background-color: #fdd668; color: #9c6c44; }
.redcard { background-color: #d64444; color: #fff; }
#div_goal {
	display: flex;
}
#flGoalDiv {width:100%;max-width:600px;margin-top:5px;border:3px solid #2f6f13;}
.dark #flGoalDiv {background-color: #292929;border: 3px solid #585858;box-shadow: 0 0 10px #000;}
#flGoalDiv td {font-family: 'Arial';font-size: 12px;}
#flGoalDiv .line td {line-height: 18px;font-size: 14px;padding: 6px 0;}
.line .teamname {width:100%;max-width: 150px;padding: 0 10px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;display: inline-block;}
.line i.rank {float: right;font-size: 12px;font-style: normal;}
.GoalDiv-t {background-color: #DBECA6;color:#666;padding-left: 10px;}
.dark .GoalDiv-t {background-color: #0e100d;color:#999;}
.goal-time {color: #D64444;font-size: 12px;float: right;margin-right: 15px;}
.sjicon {width: 30px;height: 30px;border-radius: 50%;margin: 0 auto;}
.team-hg {
	color: #da2727;
	transform: scale(.85);
	display: inline-block;
}
#flGoalDiv {
	background: var(--main-bg);
	border: 3px solid #114484;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.GoalDiv-t {
	background: #d0e4ff;
	color: #666;
	padding-left: 10px;
}
.dark #flGoalDiv .line td {
	border-color: #444;
}
.line i.rank {
	float: right;
	font-size: 12px;
	font-style: normal;
}
.sjicon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin: 0 auto;
}
.con-livestreaming table {
	color: var(--main-color);
	font-size: 14px;
}
.con-livestreaming th {
	border-bottom: 0;
	vertical-align: middle;
}
.con-livestreaming td {
	padding: 6px 0;
	background: var(--leagues-bg);
	border-bottom: 1px solid var(--leagues-bg);
	white-space: nowrap;
	vertical-align: middle;
}
.enterfullscreen {
	font-size: 25px;
	opacity: .5;
	transition: 0.5s;
}
.enterfullscreen:hover {
	opacity: 1;
}
.btn-close {
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
}
.modal-content {
	background: var(--third-bg);
}
.modal-header, .modal-footer {
	border-color: var(--leagues-bg);
}
.noty_bar {
	border-radius: 0.375rem !important;
}
.noty_body, .noty_buttons {
	text-align: center;
}
footer {
	margin-top: 1rem;
	padding: 1rem;
	text-align: center;
	background: var(--third-bg);
}
.switch {
	cursor: pointer;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.switch .switch-style {
	height: 14px;
	width: 26px;
	background: #c1c1c1;
	-webkit-border-radius: 3px;
	border-radius: 10px;
	display: inline-block;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	float: right;
}
.switch .switch-style:before {
	display: block;
	content: '';
	height: 12px;
	position: absolute;
	width: 12px;
	background-color: #fff;
	-webkit-border-radius: 2px;
	border-radius: 50%;
	left: 0.1em;
	top: 0.1em;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.switch > input[type="checkbox"]:checked + .switch-style:before {
	left: 50%;
}
.preferences {
	font-size: 14px;
	margin-bottom: 1rem;
}
.preferences ul {
	padding-left: 0;
	list-style: none;
}
.preferences input {
	display: none;
}
.preferences .selectbox span.on, .switch > input[type="checkbox"]:checked + .switch-style {
	background-color: var(--link-color);
}
.preferences .selectbox {
	border:1px solid var(--link-color);
	border-radius:3px;
	margin:0 0 5px 0;
	overflow: hidden;
}
.preferences .selectbox span {
	width:50%;
	line-height: 22px;
	float:left;
	text-align:center;
	display:inline-block;
	cursor:pointer;
}
.preferences .selectbox span.on {
	background:var(--link-color) !important;
	color:#fff;
}
.preferences .selectbox.sound {
	display: flex;
	margin-top:5px;
}
.preferences .selectbox.sound span:not(:last-child) {
	border-right: 1px solid var(--link-color);
}
.preferences .selectbox span:hover {
	background:var(--link-color-hover);
}
.matchinfo_setting h5 {
	margin-bottom: .5rem;
	padding-bottom: .5rem;
	border-bottom: 1px solid var(--leagues-bg);
}
#livemenu {
	border-bottom: 1px solid var(--link-color);
	overflow-y: auto;
	flex-wrap: nowrap;
	white-space: nowrap;
}
#livemenu .nav-link, #livemenu .nav-link {
	background-color: var(--leagues-bg);
	border-color: var(--leagues-bg);
	margin: 0 1px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
#livemenu .nav-link.active, #livemenu .nav-link.on {
	color: var(--leagues-bg);
	background-color: var(--link-color);
	border-color: var(--link-color);
}
#livemenu .nav-link:hover, #livemenu .nav-link:hover, #livemenu .nav-link.active:hover, #livemenu .nav-link.on:hover {
	opacity: .8;
}
#showoptional2, #showCountry, #showFilterBox {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	z-index: 999999;
	background: rgb(0 0 0 / 40%);
	visibility: hidden;
}
.con_showoptional2 {
	width: 100%;
	max-width: 600px;
	background: var(--header-bg);
	border:1px solid var(--leagues-bg);
	padding: 1rem;
	border-radius: 1rem;
}
#showoptional2 h1, #showoptional h1, #showCompany h1, #showCountry h1, #showFilterBox h1 {
	float: left;
	font-size: 11px;
	font-weight: bold;
	padding-left: 15px;
}
#showoptional2 li, #showCountry li, #showCompany li, #showFilterBox li {
	line-height: 24px;
	display: block;
	width: 47%;
	float: left;
	padding-left: 5px;
}
#showoptional2 li label, #countryListDiv li label, #showoptional li label, #showCompany li label {
	line-height: 24px;
	display: inline-block;
	width: 90%;
	cursor: pointer;
}
#showoptional2 li input, #showCountry li input, #showCompany li input {
	vertical-align: top;
	margin: 6px 5px 0 0;
}
#myleague2, #countryListDiv, #myleague {
	overflow: auto;
	max-height: 300px;
	margin: 10px 0;
}
#myleague2 ul, #countryListDiv ul, #showCompany ul, #myleague ul, #showoptional ul {
	padding: 10px;
	overflow: hidden;
	margin-bottom: 10px;
	margin-right: 10px;
	background: var(--nav-bg);
}
#showoptional2 li, #showCountry li, #showCompany li, #showFilterBox li {
	line-height: 24px;
	display: block;
	width: 47%;
	float: left;
	padding-left: 5px;
}
#myleague2::-webkit-scrollbar, #countryListDiv::-webkit-scrollbar, #myleague::-webkit-scrollbar, #livemenu::-webkit-scrollbar, .schedule-date::-webkit-scrollbar {
	width: 10px;
	height: 4px;
}
#myleague2::-webkit-scrollbar-track, #countryListDiv::-webkit-scrollbar-track, #myleague::-webkit-scrollbar-track, #livemenu::-webkit-scrollbar-track, .schedule-date::-webkit-scrollbar-track {
	background: var(--leagues-bg);
}
#myleague2::-webkit-scrollbar-thumb, #countryListDiv::-webkit-scrollbar-thumb, #myleague::-webkit-scrollbar-thumb, #livemenu::-webkit-scrollbar-thumb, .schedule-date::-webkit-scrollbar-thumb {
	background: var(--link-color);
	border-radius: 8px;
}
#myleague2::-webkit-scrollbar-thumb:hover, #countryListDiv::-webkit-scrollbar-thumb:hover, #myleague::-webkit-scrollbar-thumb:hover, #livemenu::-webkit-scrollbar-thumb:hover, .schedule-date::-webkit-scrollbar-thumb:hover {
	background: var(--link-color-hover);
	border-radius: 8px;
	overflow: hidden;
}
.sotit {
	position: relative;
	border-bottom: 1px solid var(--leagues-bg);
	padding: 0 10px;
	padding-bottom: 10px;
	text-align: center;
}
.cc a, #div_search .cc a {
	position: absolute;
	right: 10px;
	padding: 0;
	width: 24px;
	height: 24px;
}
.el-radio > input[type="radio"] + .el-radio-style {
	display: inline-block;
	padding: 0 15px;
	line-height: 35px;
	cursor: pointer;
	font-weight: bold;
}
.el-radio > input[type="radio"] {
	display: none;
}
.el-radio > input[type="radio"]:checked + .el-radio-style {
	border-bottom: 2px solid var(--link-color);
	color: var(--link-color);
}
.bt-selected {
	border-top: solid 1px var(--leagues-bg);
	text-align: center;
	padding: 6px 0 2px 0;
}
.bts {
	display: block;
	clear: both;
	padding: 10px;
	text-align: center;
	margin-top: 5px;
	overflow: hidden;
}
.bts span {
	background-color: var(--leagues-bg);
	margin: 0 3px;
	margin-top: 10px;
	font-size: 13px;
	font-weight: bold;
	line-height: 36px;
	height: 36px;
	cursor: pointer;
	padding: 0 18px;
	border-radius: 3px;
	display: inline-block;
	vertical-align: middle;
}
body .bts {
	border-top: 1px solid var(--leagues-bg);
}
body .bts span, body .win-note, body .loadngdiv, body ul.menu, body .tabsBox, body .twin, body .discription span, body .tvLink ul li a, body .BtvLink ul li a, body #div_search {
	border: 1px solid transparent;
}
.bts .fgSpan input[type="checkbox"] {
	vertical-align: middle;
	margin: -2px 5px 0 0;
}
.fg_Title {
	color: var(--link-color);
	padding: 5px 10px;
	background: var(--leagues-bg);
	margin-right: 10px;
}
.ads-container img {
	border-radius: 1rem;
	margin-top: 1rem;
	width: 100%;
	max-width: 100%;
	height: auto;
}
.schedule-date {
	width: 100%;
	padding-left: 0;
	list-style: none;
	display: flex;
	align-items: center;
	overflow-y: auto;
}
.schedule-date li {
	width: 7.14%;
	min-width: 50px;
	padding: 0.3rem 0.8rem;
	background: var(--leagues-bg);
	border-radius: 0.5rem;
	text-align: center;
	font-size: 11px;
}
.schedule-date li:not(:last-child) {
	margin-right: .3rem;
}
.schedule-date .date {
	font-size: 15px;
	font-weight: 600;
}
.schedule-date li a {
	color: var(--main-color);
}
.schedule-date li.today a {
	color: #ff9800;
}
.schedule-date li.active a {
	color: var(--link-color);
}
article.content {
	text-align: justify;
	margin-top: 1.5rem;
}
.review-situs .review-logo {
	text-align: center;
}
.review-situs .review-logo img {
	max-height:35px;
	height: 100%;
	max-width: 100%;
	width: auto;
}
.review-situs .review-content {
	border-left: 1px solid rgba(0,0,0,.125);
}
@media(max-width: 992px) {
	.ads-sides {
		width: 50%;
	}
	.ads-container img {
		border-radius: .5rem;
	}
	.preferences {
		position: fixed;
		width: 100%;
		left: 0;
		bottom: 0;
		margin-bottom: 0;
		display: none;
		padding-right: calc(var(--bs-gutter-x) * .5);
		padding-left: calc(var(--bs-gutter-x) * .5);
	}
	.preferences .card {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
		box-shadow: 0px 0 14px 0px rgb(0 0 0 / 50%);
	}
}
@media(min-width: 992px) {
	.preferences {
		display: block !important;
	}
}
.shine {
	position: relative;
	overflow: hidden;
}
.shine:before {
	content: '';
	position: absolute;
	width: 100px;
	height: 100%;
	background-image: linear-gradient(
		120deg,
		rgba(255,255,255, 0) 30%,
		rgba(255,255,255, .8),
		rgba(255,255,255, 0) 70%
	);
	top: 0;
	left: -100px;
	animation: shine 2s infinite linear;
}
@keyframes shine {
	0% {left: -100px}
	20% {left: 100%}
	100% {left: 100%}
}
.pulse {
	border-radius: 8px;
	box-shadow: 0 0 0 0 rgba(13, 110, 253, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
	}
}
.heartbeat {
	border-radius: 8px;
	animation: heartbeat 1.5s ease-in-out infinite both;
}
@keyframes heartbeat {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	10% {
		-webkit-transform: scale(0.96);
		transform: scale(0.96);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	17% {
		-webkit-transform: scale(0.98);
		transform: scale(0.98);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	33% {
		-webkit-transform: scale(0.94);
		transform: scale(0.94);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	45% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
}
.slide-top {
	-webkit-animation: slide-top 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-top 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-top {
	0% {
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
}
.loading-cont {
	background: var(--leagues-bg);
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	box-shadow: 0 0 15px 0px rgb(0 0 0 / 47%);
}
.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid var(--link-color);
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: var(--link-color) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@media (min-width: 768px) {
	.nav-link {
		padding: .5rem .8rem !important;
	}
}
@media (max-width: 768px) {
	h1 {
		font-size: 27px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 22px;
	}
	.nav-item .btn {
		width: 100%;
	}
	.review-situs .review-content {
		border-top: 1px solid rgba(0,0,0,.125);
		border-left: 0;
	}
}
@media (max-width: 450px) {
	.navbar-brand img {
		max-width: 200px;
	}
}
@media (max-width: 340px) {
	.navbar-brand img {
		max-width: 180px;
	}
}
.blink {
	cursor: pointer !important;
	animation-name: blink;
	animation-duration: 0.6s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: linear;
}
@keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}