/*-------- CSS -------------*/
/* ------------------Reset--------------------- */
a,abbr,acronym,address,applet,article,aside,audio,b,blockquote,big,body,center,canvas,caption,cite,code,command,datalist,dd,del,details,dfn,dl,div,dt,em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,keygen,label,legend,li,meter,nav,object,ol,output,p,pre,progress,q,s,samp,section,small,span,source,strike,strong,sub,sup,table,tbody,tfoot,thead,th,tr,tdvideo,tt,u,ul,var{background:transparent;border:0 none;font-size:100%;margin:0;padding:0;border:0;outline:0;vertical-align:top;}ol, ul {list-style:none;}blockquote, q {quotes:none;}table, table td {padding:0;border:none;border-collapse:collapse;}img {vertical-align:top;}embed {vertical-align:top;}
article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video {display:block;}
mark, rp, rt, ruby, summary, time {display:inline;}
input, textarea {border:0; padding:0; margin:0; outline: 0;}
iframe {border:0; margin:0; padding:0;}
input, textarea, select {margin:0; padding:0px;}

/*----------------- global ------------------------*/

body {
	width: 100%;
	height: auto;
	background: #a69081;

	
	
}


.head {
	width: 100%;
	box-sizing: border-box;
	background: #a69081;
	text-align: center;
	padding: 80px 0px 0px 0px;
}

.warpclock {
    width: 100%;
    height: 90px;
    box-sizing: border-box;
    padding: 18px 0px 0px 0px;
    background-color: #6f5f54;
}

.clock {
    width: 100%;
    color: white;
    height: 55px;
    background: #948072;
    border-top: #53483f 2px solid;
    border-bottom: #53483f 2px solid;
    box-sizing: border-box;
    padding: 0px 130px;
    
}

.clock ul {
    list-style: none;
    
}


.float-left {
    float: left;
    width: 10%;
    background: url(../img/clk-icon.png) left center no-repeat;
    background-size: 35px 35px;
    text-align: left;
    padding: 0px 0px 0px 50px;
    margin: 6px 0px 0px 0px;
   
}


.float-right {
    float: right;
    width: 10%;
    background: url(../img/clk-icon.png) right center no-repeat;
    background-size: 35px 35px;
    text-align: right;
    padding: 0px 50px 0px 0px;
    margin: 6px 0px 0px 0px;
}

.logo {
    position: absolute;
	width: 260px;
	height: 150px;
	background: url(../img/Logo-ParisLotteries.png)center no-repeat;
	background-size: 100% 100%;
    top: 67px;
    left: 44%;
    
}

.menu {
    width: 900px;
    margin: auto;
    box-sizing: border-box;
    padding-bottom: 25px;
}

.menu table {
	display: table-cell;
	width: 900px;
	margin: 20px auto;
	border-spacing: 5px;
	border-collapse: separate;
}

.buttons {
	width: 130px;
	height: 30px;
	text-align: center;
	vertical-align: middle;
	background: #6f5f54;
	font-family: impact;
	color: white;
	border-top: 1px white solid;
	border-right: 1px white solid;
	border-radius: 4px;
	box-sizing: border-box;
	cursor: -webkit-grab; 
	cursor: grab;
	transition: 0.5s ease;
}


.buttons:hover {
	background: #be1418;
	border-top: none;
	border-right: none;
	border-bottom: 3px gold solid;
	
}

.content {
	width: 1000px;
	padding: 15px;
	box-sizing: border-box;
	margin: auto;
	
	
	
}

.result {
	width: 100%;
	padding: 15px 0px;
	box-sizing: border-box;
	font-family: arial;
	background: #eaebed;
	border-radius: 25px;
}

.dayresult {
	width: 100%;
	padding: 15px 10px;
	box-sizing: border-box;
	font-family: arial;
	background: #eaebed;
	border-radius: 25px;
}

.dayresult h3 {
	color: #6f5f54;
	
}

.dayresult table {
	width: 80%;
	font-family: 'Courgette', cursive;
	margin: auto;
	margin-top: 10px;
}

.dayresult th {
	
	font-size: 18px;
	color: gold;
	
}

.date, .period {
	width: 20%;
	text-align: center;
}

.winnumbers {
	width: 60%;
	text-align: center;
}

.dayresult td {
	color: #6f5f54;
	font-size: 16px;
	padding: 10px 0px;
	border-bottom: 1px solid white;
}

.result table {
	width: 100%;
	
	
}

.language {
	text-align: right;
	color: white;
	font-weight: bold;
	box-sizing: border-box;
	padding: 10px 10px;
}

.language a {
	text-decoration: none;
	color: white;
}

.resshead {
	width: 100%;
	text-align: center;
	color: white;
	font-size: 26px;
	
	
}

.resshead span {
    background: #6f5f54;
    padding: 10px 10px;
    border-radius: 30px;
}

.resshead2 {
	width: 100%;
	padding: 20px 0px;
	
}

.winnum {
	width: 100%;
	text-align: center;
	color: black;
	font-size: 34px;
	padding: 10px 0px;
	font-family: 'Courgette', cursive;
}

.winnum span {
	display: inline-block;
	width: 65px;
	height: 65px;
	text-align: center;
	border-radius: 35px;
	background: #2d2a5f;
	animation-name: ball;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes ball {
    0% {
        background: #2d2a5f;
    }
    
    25% {
        background: red;
    }
    
    50% {
        background: yellow;
    }
    
    75% {
        background: green;
    }
    
    100% {
        background: #2d2a5f;
    }
    
}


.winnum p {
    width: 65%;
    margin: auto;
	margin-top: 12px;
	background: white;
	border-radius: 25px;
}

.winnum1 {
	width: 100%;
	text-align: center;
	color: #be1418;
	font-size: 42px;
	
font-family: 'Courgette', cursive;
	padding: 10px 0px;
}

.consol {
	display: table-cell;
	width: 30%;
	text-align: center;
	color: silver;
	padding: 8px 0px;
	font-family: 'Courgette', cursive;
	font-size: 24px;
	background: #adaeb0;
}

.consol span {
	display: inline-block;
	width: 45px;
	height: 45px;
	text-align: center;
	background: rgba(255,255,255,1);
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(47,43,94,1) 46%, rgba(47,43,94,1) 48%, rgba(255,255,255,1) 49%, rgba(255,255,255,1) 51%, rgba(47,43,94,1) 52%, rgba(47,43,94,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255,255,255,1)), color-stop(45%, rgba(255,255,255,1)), color-stop(46%, rgba(47,43,94,1)), color-stop(48%, rgba(47,43,94,1)), color-stop(49%, rgba(255,255,255,1)), color-stop(51%, rgba(255,255,255,1)), color-stop(52%, rgba(47,43,94,1)), color-stop(100%, rgba(47,43,94,1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(47,43,94,1) 46%, rgba(47,43,94,1) 48%, rgba(255,255,255,1) 49%, rgba(255,255,255,1) 51%, rgba(47,43,94,1) 52%, rgba(47,43,94,1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(47,43,94,1) 46%, rgba(47,43,94,1) 48%, rgba(255,255,255,1) 49%, rgba(255,255,255,1) 51%, rgba(47,43,94,1) 52%, rgba(47,43,94,1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(47,43,94,1) 46%, rgba(47,43,94,1) 48%, rgba(255,255,255,1) 49%, rgba(255,255,255,1) 51%, rgba(47,43,94,1) 52%, rgba(47,43,94,1) 100%);
background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(47,43,94,1) 46%, rgba(47,43,94,1) 48%, rgba(255,255,255,1) 49%, rgba(255,255,255,1) 51%, rgba(47,43,94,1) 52%, rgba(47,43,94,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#2f2b5e', GradientType=1 );
	border-radius: 35px;
	color: black;
}

.consol1 {
	width: 100%;
	text-align: center;
	color: #6f5f54;
	font-family: 'Courgette', cursive;
	padding: 15px 0px;
	font-size: 28px;
}

.consol p {
    padding-top: 8px;
}


footer {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background-color: #6f5f54;
	margin-top: 40px;
	padding: 25px 0px;
}

footer p {
	color: white;
	font-size: 20px;
	font-family: 'Courgette', cursive;
	margin-top: 10px;
}