:root {
	--color1: #ffffff;
	--color-active: #ff2919;
	--bg1: #d52b1e;
	--bg2: #0039a6;
	--bg2-transparent: #0039a6bd;
	--b-radius-s: 5px;
	--b-radius-m: 8px;
	--fonts: "Inter", sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
	color: var(--color1);
}

body {
	background-color: var(--bg2);
}

/* HOME */

.header {
	background-color: var(--bg1);
	padding: 15px;
}

.logo img {
	width: 218px;
}

.header-right {
	display: flex;
	justify-content: right;
	align-items: center;
	height: 100%;
}

.lang-btn {
	display: block;
	height: 30px;
	width: 30px;
	background-color: var(--bg2);
	border-radius: 50%;
	background-size: 100%;
	-webkit-box-shadow: 0px 0px 4px -1px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 4px -1px rgba(0,0,0,0.45);
}

#engBtn {
	margin-right: 10px;
	background-image: url(../img/eng-lng.jpg);
}
#rusBtn {
	background-image: url(../img/rus-lng.jpg);
}

#webLang {
	color: var(--color1);
	background-color: var(--bg2);
	padding: 5px 16px;
	outline: none;
	border: none;
	border-radius: var(--b-radius-s);
}

.timer-wrapper {
	height: 435px;
	background-image: url(../img/timer-bg.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.nav ul {
	display: flex;
	justify-content: space-around;
	background-color: var(--bg2-transparent);
	padding: 15px 10px;
	border-radius: var(--b-radius-s);
	margin-top: 20px;
}

.nav ul li a {
	font-weight: 700;
}

.nav ul li a.active {
	color: var(--color-active);
	text-decoration: underline;
}

.timer-title {
	text-align: center;
	color: var(--bg2);
	font-size: 20px;
	margin-top: 4rem;
}

.running-txt {
	background-color: var(--bg2-transparent);
	padding: 10px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	border-top-left-radius: var(--b-radius-m);
	border-top-right-radius: var(--b-radius-m);
}

.marquee {
	white-space: nowrap;
	animation: marquee 15s linear infinite;
	font-size: 13px;
	letter-spacing: 2px;
}

@keyframes marquee {
	0% {
		margin-left: 100%;
		transform: translateX(0%);
	}
	100% {
		margin-left: 0;
		transform: translateX(-100%);
	}
}

.marquee:hover {
	animation-play-state: paused;
}

.last-result-wrapper {
	background-color: var(--bg1);
	background-image: url(../img/world-bg.png);
	background-repeat: no-repeat;
	background-position: right 85px top;
	background-size: contain;
	padding-top: 25px;
	padding-bottom: 25px;
}

.result-container {
	max-width: 850px!important;
}

.last-result-wrapper .col-6:first-child {
	background-color: var(--bg2);
	border-radius: var(--b-radius-m);
	padding: 12px;
}

.last-result-all .col-4 {
	padding: 10px;
}

.main-prz {
	background-color: var(--bg1);
	border-radius: var(--b-radius-m);
	padding: 8px;
	background: rgb(213,43,30);
	background: radial-gradient(circle, rgb(213, 43, 30) 35%, rgba(50,50,50,0.8368707150829082) 300%);
	min-height: 73.8px;
}

.main-prz-label {
	font-weight: 700;
	width: 27px;
	height: 27px;
	display: flex;
	background-color: var(--bg2);
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	font-size: 12px;
}

.main-prz-num {
	text-align: center;
	display: block;
	font-size: 17px;
	font-weight: 700;
	margin-top: 10px;
}

.str-cons-title {
	padding: 10px;
	text-align: center;
	width: 100%;
	font-weight: 600;
	font-size: 14px;
	border-bottom: 1px solid var(--bg1);
	margin: 5px;
}

.str-cons {
	font-size: 14px;
	padding: 10px;
}

.row.str-cons .col-4 {
	text-align: center;
	padding: 8px 5px;
	font-weight: 600;
	min-height: 32.8px;
}

.result-1st {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.result-1st h3:first-child {
	margin-bottom: 20px;
}

.first-num-title {
	display: ruby;
}

.first-num-title h3 {
	margin-top: 20px;
}

.ball-result-wrapper {
	display: flex;
}

.ball-result {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgb(109,147,219);
	background: linear-gradient(210deg, rgba(109,147,219,1) 0%, rgba(0,57,166,1) 56%);
	box-shadow: 1px -1px 25px -5px rgba(0,0,0,0.49);
	box-shadow: 1px -1px 25px -10px rgba(0,0,0,0.45);
	-webkit-box-shadow: 1px -1px 25px -10px rgba(0,0,0,0.45);
	-moz-box-shadow: 1px -1px 25px -10px rgba(0,0,0,0.45);
	margin: 6px;
	cursor: pointer;
}

.ball-result > div {
	width: 43px;
	height: 43px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: var(--color1);
	color: var(--bg2);
	font-size: 2rem;
	font-weight: 700;
}

.result-1st h3:nth-child(3) {
	margin-top: 20px;
}

.result-1st h3:nth-child(3) span {
	font-weight: 400;
}

.result-1st a:last-child {
	margin-top: 35px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: var(--bg2);
	padding: 10px 25px;
	border-radius: var(--b-radius-m);
}

.table-result-wrapper {
	margin-top: 40px;
}

.table-result {
	background-color: var(--bg1);
	padding: 30px;
	border-radius: var(--b-radius-m);
	font-size: 14px;
}

.table-result-header {
	display: flex;
	justify-content: space-evenly;
	font-weight: 700;
	text-transform: uppercase;
	padding: 5px;
}

.table-result-header > div {
	text-align: center;
	padding: 5px;
}

.table-content > div {
	text-align: center;
	padding: 12px;
}

.table-content-wrapper .table-content:first-child {
	margin-top: 15px;
}

.table-content {
	display: flex;
	justify-content: space-evenly;
	background-color: var(--bg2);
	border-radius: var(--b-radius-s);
}

.table-content:nth-child(2n) {
	background-color: var(--bg1);
}

.about {
	margin-top: 30px;
}

.about .col-6 {
	padding: 10px;
}

.about-txt {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
}

.about-txt p {
	font-size: 14px;
	line-height: 22px;
}

.about-txt img {
	width: 70%;
	margin-top: 15px;
}

.banner {
	height: 250px;
	border-radius: var(--b-radius-m);
}

.banner img {
	width: 100%;
	border-radius: var(--b-radius-m);
}

.footer {
	margin-top: 7rem;
	text-align: center;
	font-size: 11px;
	letter-spacing: 2px;
	line-height: 18px;
	padding: 20px;
	background-color: var(--bg1);
}

.m-menu-btn {
	display: none;
}

.m-menu {
	position: absolute;
	top: -100px;
}

/* HOME */


/* RESULTS */

.pages-banner {
	height: 230px;
	background-image: url(../img/timer-bg.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.row.results-filter .logo img {
	width: 100%;
}

.filter {
	height: 100%;
	border-radius: var(--b-radius-m);
	overflow: auto;
	background-color: var(--bg1);
	padding: 10px 5px;
}

.filter ul {
	display: flex;
	height: 100%;
	padding: 20px;
	align-items: center;
	justify-content: space-around;
	background-color: var(--bg1);
	border-radius: var(--b-radius-m);
}

.results-filter {
	margin-bottom: 2rem;
}

.form-wrapper {
	display: flex;
	justify-content: space-around;
}

.form-wrapper-inner input[type=date], select {
	background-color: var(--bg1);
	border: 0;
	padding: 15px 25px;
	border-radius: var(--b-radius-s);
	outline: none;
	font-weight: 700;
	text-transform: uppercase;
	min-width: 200px;
}

.form-wrapper-inner option {
	font-weight: 500;
}

.btn-submit {
	margin-left: 10px;
}

.filter-info {
	text-align: center;
	font-size: 14px;
	margin-bottom: 30px;
}

.filter-info p {
	display: inline;
	font-size: 1rem;
	font-weight: 600;
	margin-right: 10px;
	text-transform: capitalize;
}


/* RESULTS */


/* PAGINATION */

.pager {
	margin-top: 2rem;
}

.pagging nav ul {
	display: flex;
	justify-content: center;
}

.pagging .page-link a {
	padding: 10px 15px;
	background-color: var(--bg2);
	margin-right: 2px;
	border-radius: var(--b-radius-s);
	display: block;
}

.page-item.active span {
	padding: 10px 15px;
	display: block;
}

/* PAGINATION */


/* MODAL */

.modal {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: var(--bg2-transparent);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -20;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s ease-in;
}

.modal.show {
	z-index: 100;
	visibility: visible;
	opacity: 1;
}

.modal-wrapper {
	min-width: 1000px;
}

.modal-content {
	position: relative;
}

.modal-close {
	position: absolute;
	top: -35px;
	right: 0;
}

.modal-close i {
	font-size: 23px;
	cursor: pointer;
}

.modal-content-inner {
	padding: 30px;
	min-height: 533.6px;
	background-color: var(--bg1);
}

#content1 {
	border-radius: var(--b-radius-m);
}

#content2 {
	border-radius: var(--b-radius-m);
}

.modal-content-inner p {
	margin-bottom: 15px;
	font-size: 14px;
}

.modal-content-inner h3 {
	margin-top: 25px;
	margin-bottom: 10px;
}

.contact-img {
	background-image: url(../img/contact-img.png);
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 533.6px;
	border-radius: var(--b-radius-m);
}

.contact-info {
	height: 100%;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	padding-left: 3rem;
}

.contact-info h1 {
	margin-bottom: 1rem;
}

.contact-info p {
	margin-bottom: 5ypx;
	font-size: 16px;
	font-weight: 300;
}

/* MODAL */


#onDrawing {
	position: fixed;
	width: 100vw;
	height: 100vh;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: var(--bg2);
	z-index: 100;
}

#onDrawing img {
	width: 258px;
}


/* Clock */

.flip-clock-label {
	display: none;
}

.flip-clock-wrapper {
	margin: 1rem 0 0 0 !important;
}

.clock-num {
	background-color: #FFFFFF;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
	font-size: 40px;
	font-family: var(--fonts);
	font-weight: bold;
	margin: 2px;
	padding: 2px 9px 2px 9px;
}

.flip-clock-wrapper ul li a div div.inn {
	color: #353535 !important;
	text-shadow: 0 1px 2px #cdcdcd !important;
	background-color: #E6E6E6 !important;
	font-family: var(--fonts)!important;
}

.flip-clock-dot {
	background: #E6E6E6!important;
	width: 6px!important;
	height: 6px!important;
}

.clock {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Clock */

