*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	/* --varGreenColor: #41ff8d;
	--varWhiteColor: #fff;
	--varRedColor: #ff0000;
	--varBlackfontColor: #000;
	--varBlackBgColor: #000;
	--varAquaColor: #1ed0cd; */


 	--varGreenColor: #66e128;
    --varWhiteColor: #fff;
    --varRedColor: #f92121;
    --varBlackfontColor: #000;
    --varBlackBgColor: #000;
    --varAquaColor: #a8cc1d;

}


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');






a,
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	transition: all 500ms ease;
}

a:hover {
	color: var(--varBlueColor);
}

ul,
ol {
	list-style: none;
	padding: 0;
}

.no-padding {
	padding: 0 !important;
}

body {
	margin: 0;
	padding: 0;
	font: 400 14px "Poppins", sans-serif;
	
}
.mpbtn2{
	background: maroon;border-radius: 10px;
}
.mpbtn3{
	font-family: Arial, sans-serif; color: white;
}
.mpbtn4{
	font-weight: bold; color: white;
}
.mpbtn5{
	background-color: black;
}
.greenButton,
.redButton,
.whiteButton {
	display: inline-block;
	padding: 10px 30px;
	font: 600 14px "Poppins", sans-serif;
	text-transform: uppercase;
	border-radius: 10px;
}

.greenButton {
	background: var(--varGreenColor);
	color: var(--varBlackfontColor);
}

.greenButton:hover {
	background: var(--varRedColor);
	color: var(--varWhiteColor) !important;
}

.redButton {
	background: var(--varRedColor);
	color: var(--varWhiteColor);
}

.redButton:hover {
	background: var(--varBlueColor);
	color: var(--varWhiteColor);
}

.whiteButton {
	background: var(--varWhiteColor);
	color: var(--varBlackfontColor);
	box-shadow: 0 0 8px #b0fcce;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	margin-bottom: 20px;
	column-gap: 5px;
}

.whiteButton:hover {
	background: var(--varGreenColor);
	color: var(--varBlackfontColor);
}

.sectionHead {
	background: var(--varGreenColor);
	padding: 5px 15px;
}

.sectionHead h6 {
	font: 600 24px/30px 'Poppins', sans-serif;
	color: #4655df;
	margin: 0;
	text-transform: uppercase;
}

/***** Menu *****/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.menu {
	background: transparent;
	padding: 15px 0;
}

.menu ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 20px;
	margin-bottom: 0;
}

.menu ul li {
	position: relative;
	padding: 10px 15px;
}

.menu ul li a {
	font: 600 16px 'Poppins', sans-serif;
	color: var(--varWhiteColor);
	text-transform: uppercase;
	position: relative;
}

.menu ul li a:after,
.menu ul li a:before {
	content: "";
	position: absolute;
	bottom: -8px;
	border-radius: 20px;
	background: var(--varGreenColor);
	height: 4px;
	opacity: 0;
	visibility: hidden;
	transition: all 500ms ease;
}

.menu ul li:last-child a {
	color: var(--varBlackfontColor);
}

.menu ul li:last-child a:after,
.menu ul li:last-child a:before {
	display: none;
}

.menu ul li a:after {
	left: 0;
	width: 80%;
}

.menu ul li a:before {
	right: 0;
	width: 10%;
}

.menu ul li a:hover:after,
.menu ul li a:hover:before,
.menu ul li a.active:after,
.menu ul li a.active:before {
	visibility: visible;
	opacity: 1;
	transition: all 500ms ease;
}

.menu ul li ul {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-ms-transition: 0s;
	-o-transition: 0s;
	transition: 0s;
	z-index: 10;
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: 11px;
	width: 200px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
	display: inline-block;
	background: #d7ebff;
}

.menu ul li ul li {
	display: block;
	margin-left: 0;
	padding: 0;
}

.menu ul li ul li a {
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.6);
	padding: 12px 15px;
	color: #617585;
	font: 400 16px 'Poppins', sans-serif;
	text-transform: capitalize;
	position: relative;
}

.menu ul li ul li a.lspace {
	padding-left: 30px
}

.menu ul li ul:first-child a {
	border-top: 0px solid #076dcc
}

.menu ul li:hover ul {
	opacity: 1;
	visibility: visible;
	margin-top: 0px
}

.menu button {
	width: 40px;
	height: 54px;
	display: none;
	position: relative;
	background: transparent;
	border: none;
}

.menu button span {
	position: absolute;
	width: 40px;
	height: 2px;
	background-color: #fff;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	top: 50%;
	right: 0;
	bottom: 0;
	left: 0;
	transform: translateY(-50%);
	transition: all .3s linear;
	-webkit-transition: all .3s linear
}

.menu button span::before,
.menu button span::after {
	position: absolute;
	content: "";
	background-color: #fff;
	width: 30px;
	height: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	left: 0;
	right: 0;
	transition: all .3s linear;
	-webkit-transition: all .3s linear
}

.menu button span::before {
	top: -10px
}

.menu button span::after {
	bottom: -10px
}

.menu button.close span {
	width: 0;
	height: 0
}

.menu button.close span::before {
	transform: rotate(-45deg);
	top: 0
}

.menu button.close span::after {
	transform: rotate(45deg);
	bottom: -2px
}



/**** Result *****/
.result {
	padding: 50px 0 15px;
	position: relative;
	z-index: 1;
}

.result:after,
.result:before {
	content: "";
	position: absolute;
	bottom: 0;
	background: url('images/left_card.svg') no-repeat;
	background-size: cover;
	width: 397px;
	height: 270px;
	z-index: -1;
}

.result:after {
	left: 0;
}

.result:before {
	right: 0;
}

.result h2 {
	font: 800 25px/50px 'Poppins', sans-serif;
	color: #05ff69;
	margin-bottom: 30px;
}

.result h3 {
	font: 700 30px/50px 'Poppins', sans-serif;
	color: #05ff69;
	margin-bottom: 5px;
}

.result p {
	font: 700 30px/40px 'Poppins', sans-serif;
	color: var(--varAquaColor);
	margin-bottom: 5px;
}

.result .code {
	font: 600 18px/24px 'Poppins', sans-serif;
	color: var(--varGreenColor);
	margin-bottom: 20px;
	display: block;
}

.result .date {
	font: 600 18px/24px 'Poppins', sans-serif;
	color: var(--varWhiteColor);
	margin-bottom: 5px;
}

.result .redButton {
	border-radius: 30px;
	box-shadow: 0 0 8px #ff9f9f;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

/**** Fianl Ank *****/
.fianlAnk {
	padding: 50px 0 80px;
	background: rgba(65, 255, 141, 0.2);
}

.fianlAnk .blackBox {
	background: rgba(0, 0, 0, 1);
	padding: 20px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
	position: relative;
	border-radius: 25px;
	min-height: 200px;
}

.fianlAnk .blackBox:after,
.fianlAnk .blackBox:before {
	content: "";
	position: absolute;
	width: 161px;
	height: 122px;
	z-index: -1;
	background-repeat: no-repeat;
}

.fianlAnk .blackBox:after {
	left: -9px;
	top: -9px;
	background-image: url('images/frame-left.png');
}

.fianlAnk .blackBox:before {
	right: -16px;
	bottom: -9px;
	background-image: url('images/frame-right.png');
}

.fianlAnk .blackBox div {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	flex-direction: column;
}

.fianlAnk .blackBox p {
	font: 800 20px/50px 'Poppins', sans-serif;
	color: #05ff69;
	text-align: center;
	margin-bottom: 0;
}

.fianlAnk .blackBox span {
	font: 600 18px/50px 'Poppins', sans-serif;
	color: var(--varWhiteColor);
	text-align: center;
}

/**** Chart Zone *****/
.gameResult {
	padding: 50px 0;
}

.gameResult ul {
	list-style: none;
}

.gameResult ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	border: 1px solid #b0fcce;
	border-radius: 30px;
	padding: 15px 20px;
}

.gameResult ul li .whiteButton {
	margin-bottom: 0;
}

.gameResult ul li p {
	font: 800 20px/30px 'Poppins', sans-serif;
	color: var(--varWhiteColor);
	text-transform: uppercase;
	display: block;
	text-align: center;
	margin-bottom: 0;
}

.gameResult ul li .time {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 15px;
}

.gameResult ul li span {
	font: 600 12px/20px 'Poppins', sans-serif;
	color: var(--varWhiteColor);
	display: block;
	text-align: center;
}

.gameResult ul li .number {
	font: 600 18px/24px 'Poppins', sans-serif;
	color: var(--varWhiteColor);
	display: block;
	text-align: center;
}

/**** Chart Zone *****/
.ChartZone {
	padding: 50px 0;
}

.ChartZone h6 span {
	color: #000;
}

.ChartZone ul {
	margin: 20px 0 0;
}

.ChartZone ul li {
	display: block;
}

.ChartZone ul li a {
	display: block;
	padding: 10px 15px;
	font: 700 24px/30px 'Poppins', sans-serif;
	color: var(--varAquaColor);
	text-align: center;
	border-bottom: 2px solid var(--varGreenColor);
	text-transform: uppercase;
	transition: all 500ms ease;
}

.ChartZone ul li a:hover {
	color: var(--varWhiteColor);
	transition: all 500ms ease;
}

.ChartZone .whiteButton {
	color: #4655df;
	font-size: 24px;
}

.ChartZone .whitebox {
	background: #fff;
	border-radius: 40px;
	padding: 30px;
	margin-top: 15px;
}

.ChartZone .whitebox i {
	display: inline-block;
	margin-bottom: 15px;
	height: 80px;
}

.ChartZone .whitebox p {
	font: 500 24px/30px 'Poppins', sans-serif;
	color: var(--varBlackfontColor);
	padding: 0 30px;
}

/**** Kalyan *****/
.kalyan table {
	margin: 40px 0 0;
	border: 2px solid #41ff8d;
	width: 100%;
}

.kalyan table tr td {
	text-align: center;
	vertical-align: middle;
	font: 700 20px/30px 'Poppins', sans-serif;
	color: var(--varWhiteColor);
	border-right: 2px solid #41ff8d;
	border-bottom: 2px solid #41ff8d;
	position: relative;
}

.kalyan table tr td .innerdata {
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex-direction: column;
	row-gap: 10px;
}

.kalyan table tr td .innerdata span:after {
	content: "";
	position: absolute;
	bottom: 42px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #41ff8d;
}

.kalyan table tr td .innerdata span:last-child:after {
	display: none;
}

.kalyan table tr td .g-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
}

/**** Footer *****/
footer {
	padding: 15px 0 30px;
}

footer .sectionHead {
	background: transparent;
}

footer .sectionHead h6 {
	color: var(--varAquaColor);
}

footer p {
	font: 600 14px/20px 'Poppins', sans-serif;
	color: var(--varWhiteColor);
}

footer .copyright {
	color: var(--varGreenColor);
}

/**** Media Query *****/
@media screen and (min-width:0) and (max-width:768px) {

	.topHeader .webInfo,
	footer .socialIcon {
		align-items: center;
		justify-content: center;
		margin: 0;
	}

	.topHeader .webInfo li,
	footer .socialIcon {
		margin-top: 30px;
	}

	.menu {
		position: relative;
		z-index: 99;
	}

	.menu button {
		width: 40px;
		height: 54px;
		display: flex;
		position: relative;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		outline: none;
	}

	.col-sm-12.mobileMenu {
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1;
		position: relative;
	}

	.menu button b {
		color: #fff;
		float: right;
		width: 100%;
		text-align: right;
		font-size: 20px;
		font-weight: 400;
		z-index: -1;
	}

	.menu ul {
		opacity: 0;
		visibility: hidden;
		z-index: 10;
		position: absolute;
		width: 320px;
		right: 0;
		top: 100%;
		background-color: #f6f6f6;
		display: block;
	}

	.menu ul.open {
		opacity: 1;
		visibility: visible;
	}

	.menu ul li {
		padding: 13px 15px;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}

	.menu ul li:first-child {
		border-top: none;
	}

	.menu ul li a {
		font-size: 18px;
		color: #555;
	}

	.menu ul li a.toggle {
		background: #f6f6f6 url(../img/dd-arrow.html) no-repeat 100% center;
		color: #666;
		font-weight: 700;
		display: block;
	}

	.menu ul li ul {
		position: relative;
		box-shadow: none;
		width: 100%;
		background: #efefef;
		display: none;
	}

	.menu ul li:hover,
	.menu ul li ul li a {
		background: transparent;
	}

	.menu ul li:hover ul {
		margin-top: 20px;
	}



}

@media screen and (min-width:0) and (max-width:700px) {
	.mcenter {
		text-align: center;
	}


	.result h2 {
		font: 800 20px/40px 'Poppins', sans-serif;
	}

	.result h3 {
		font: 700 20px / 30px 'Poppins', sans-serif;
	}

	.result p {
		font: 700 24px / 30px 'Poppins', sans-serif;
	}

	.head h3 {
		font: 600 30px/40px 'Poppins', sans-serif;
	}

	.head p {
		font: 600 22px/30px 'Poppins', sans-serif;
	}

	.sectionHead h6 {
		font: 600 20px / 30px 'Poppins', sans-serif;
	}

	.fianlAnk .blackBox {
		min-height: 140px;
	}

	.mtext-center {
		text-align: center;
	}

	.gsiderData .carousel-caption h2 {
		font: 600 35px/45px 'Poppins', sans-serif;
	}

	.gsiderData .carousel-indicators {
		bottom: 30px;
		right: 0;
		width: 100px;
		left: inherit;
	}

	.faq .accordion .accordion-item h2 button {
		font: 600 20px / 30px 'Poppins', sans-serif;
	}

	.about ul li,
	.about ul li:nth-child(2) .box.half {
		width: 100% !important;
	}

	.about img.w-100 {
		margin-bottom: 30px;
	}

	i.years {
		position: relative;
		bottom: inherit;
		right: inherit;
		border-radius: 0;
		width: 100%;
		margin-bottom: 15px;
		height: auto;
		padding: 20px;
		border: none;
	}

	.row.cutShortData {
		padding: 0 15px;
	}

	.cutShortData .col-lg-3 {
		margin-bottom: 15px;
	}

	.gameResult ul li {
		/*flex-direction: column;*/
		row-gap: 20px;

	}

	.fianlAnk {
		padding: 30px 0 50px;
		overflow: hidden;
	}

	.fianlAnk .col-sm-12.col-lg-6.text-center {
		margin: 30px 0 40px;
	}

	.ChartZone ul li a,
	.ChartZone .whitebox p {
		font: 700 14px/20px 'Poppins', sans-serif;
	}

	.ChartZone .whiteButton {
		font-size: 18px;
	}

	.ChartZone .whitebox i {
		height: 60px;
	}

	.ChartZone .whitebox i img {
		width: 70%;
	}

	.kalyan table tr td .innerdata {
		font-size: 14px;
	}

	.result:after,
	.result:before {
		width: 100%;
	}
}


 .scrollable-section {
    max-height: 200px; /* Set the max height to limit the section size */
    overflow-y: scroll; /* Enable vertical scrolling */
    padding: 20px; /* Add padding for better readability */
    background-color: white; /* Set the background color */
    color: #333; /* Ensure the text color contrasts well with the background */
}

      *, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fianlAnk {
    padding: 20px 0;
   
}


.row {
    display: flex;
    justify-content: space-between;
}

.col-6 {
    width: 48%; /* Adjust as needed */
    display: flex;
    justify-content: center;
    position: relative; /* Needed for absolute positioning of .blackBox spans */
}

.blackBox {
    width: 130%; /* Adjust width as needed */
    height: 30vmin; /* Adjust height as needed to make it rectangular */
    display: grid;
    place-content: center;
    color: white;
    text-shadow: 0 1px 0 #000;
    border: solid 5px transparent;
    border-radius: 2em;
    overflow: hidden;
    position: relative;
    padding: 20px 100px; /* Adjust padding: 10px top/bottom, 30px left/right */
}

.blackBox > div {
    position: relative;
    z-index: 1;
    word-wrap: break-word; /* Handle long words */
}

.blackBox p {
    margin-bottom: 10px; /* Adjust spacing between paragraphs */
    font-weight: bold;
}

.blackBox span {
    position: absolute;
    border-radius: 100vmax;
}

.top {
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        transparent 50%,
        rgba(255, 49, 49, 0.5),
        rgb(255, 49, 49)
    );
    animation: animateTop 3s ease-in-out infinite;
}

.bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        rgb(57, 255, 20),
        rgba(57, 255, 20, 0.5),
        transparent 50%
    );
    animation: animateBottom 3s ease-in-out infinite;
}

.right {
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 255, 255, 0.5),
        rgb(0, 255, 255)
    );
    animation: animateRight 3s linear infinite;
}

.left {
    bottom: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(
        180deg,
        rgb(255, 255, 113),
        rgba(255, 255, 113, 0.5),
        transparent 70%
    );
    animation: animateLeft 3s ease-in-out infinite;
}

@keyframes animateTop {
    25% {
        width: 100%;
        opacity: 1;
    }
    30%, 100% {
        opacity: 0;
    }
}

@keyframes animateBottom {
    0%, 50% {
        opacity: 0;
        width: 0;
    }
    75% {
        opacity: 1;
        width: 100%;
    }
    76%, 100% {
        opacity: 0;
    }
}

@keyframes animateRight {
    0%, 25% {
        opacity: 0;
        height: 0;
    }
    50% {
        opacity: 1;
        height: 100%;
    }
    55%, 100% {
        height: 100%;
        opacity: 0;
    }
}

@keyframes animateLeft {
    0%, 75% {
        opacity: 0;
        height: 0;
    }
    100% {
        opacity: 1;
        height: 100%;
    }
}

.fianlAnk .col-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fianlAnk .blackBox {
    width: 100%;
    margin: 0 10px;
}

@media (max-width: 576px) {
    .fianlAnk .col-6 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .fianlAnk .blackBox {
        width: 100%;
        margin: 0 10px;
    }
}

/* styles.css */
.highlight {
    background-color: #32c0b9; /* Example background color */
   
    padding: 10px; /* Example padding */
    animation: highlightAnimation 1s ease-in-out infinite alternate; /* Example animation */
}

@keyframes highlightAnimation {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.bottom-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000; /* Ensure it is above other content */
}

.btn {
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    color: white;
    background-color: #1a9a37; /* Green background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.btn-refresh {
    background-color: #007bff; /* Blue background */
}

.btn:hover {
    opacity: 0.9;
}

 .faq-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .centered-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 42px
  }
  
  .greenButton, .redButton, .whiteButton {
    padding: 8px 15px !important;
}
  
  .greenButton {
    background: var(--varGreenColor);
    color: var(--varBlackfontColor);
    font: 800 19px / 50px 'Poppins', sans-serif;
    line-height: 30px;
}
  @media screen and (min-width: 0) and (max-width: 768px) {
    .menu button {
        top: -80px;
    }
}
@media screen and (min-width: 0) and (max-width: 768px) {
    .menu ul {
        top: -65%;
    }

    .greenButton, .redButton, .whiteButton {
    padding: 5px 15px !important;
    margin-bottom: 15px;
}
}

.result .code {
    font: 600 18px / 24px 'Poppins', sans-serif;
    color: gold !important;
    margin-bottom: 20px;
    display: block;
}
.result p {
    font: 700 26px / 40px 'Poppins', sans-serif;
    color: gold !important;
    margin-bottom: 5px;
}
span.number {
    font-size: 20px;
    color: #05ff69;
    font-weight: 800;
}

.bordr li{
    border-bottom: 1px solid #05ff69;
}
/*.bordrs:before {*/
/*content: "";*/
/*    position: absolute;*/
/*    bottom: 30px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    border-bottom: 1px solid #05ff69;*/
/*}*/
.no-padding {
    /* padding: 0 !important; */
    color: white;
    font-weight: 700;
    padding: 10px !important;
    font: 800 20px / 50px 'Poppins', sans-serif;
    line-height: 30px;
}


.hd p{
    font: 700 30px / 40px 'Poppins', sans-serif;
    color: gold !important;
    margin-bottom: 5px;
    text-align: center;
}

.hd span{
        font: 600 18px / 24px 'Poppins', sans-serif;
    color: var(--varWhiteColor);
    margin-bottom: 5px;
    display: flex
;
    justify-content: center;
}

.copyright{
        font: 600 14px / 20px 'Poppins', sans-serif;
    color: #41ff8d;
    text-align: center;
}

body {
    overflow-x: hidden;
}

@media only screen and (max-width: 600px) and (min-width: 320px)  {
    .result p {
    font: 700 21px / 40px 'Poppins', sans-serif !important;
}
   
.result {
    padding: 20px 0 15px;
}
.gameResult {
    padding: 10px 0;
}

.ChartZone {
    padding: 10px 0;
}


.hd p {
    font: 700 20px / 40px 'Poppins', sans-serif;
}
.fianlAnk .blackBox p {
    font: 800 10px / 50px 'Poppins', sans-serif;
}

.fianlAnk .blackBox p {
    margin-bottom: 0;
    margin-top: -13px;
}
    .fianlAnk .blackBox {
        min-height: 125px !important;
    }
    .fianlAnk {
    padding: 10px 0;
    padding-top: 0;
}

}

.play{
        position: fixed;
    bottom: 60px;
}

a.btn.btn-matka-play {
    width: 100px;
}


.gameResult {
    padding: 15px 0 !important;
}

.fm{
    color: black;
}

.fm:hover{
    color: black;
} 
.mpbtn{
	background: gold;color:black;font-weight: bold;
}
.mpbtn1{
	color: gold; font-weight: bold;
}