@font-face {
  font-family: "Ubuntu";
  src: url(Ubuntu.ttf) format("truetype");
}

* {
  font-family: Arial;
}

body {
  margin: 0px;
  background-color: #f6f6f6;
}

.results {
  overflow: hidden;
}

.results2 {
  overflow: hidden;
  background-color: #000;
}

#header {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  background-color: #fff;
}

#header img, #thanks img {
  height: 60px;
}

#containerMain {
  display: flex;
  justify-content: center;
}

#container {
  max-width: 500px;
  margin: 0px 10px;
}

#containerResults {
  margin: 0px 10px;
  text-align: center;
}

#mainHeader {
  font-size: 20px;
  font-weight: bold;
  color: #7fb32a;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

#secondHeader {
  font-size: 17px;
  font-weight: bold;
  color: #3ea5e7;
  margin-bottom: 20px;
  text-align: center;
}

#firstText, #secondText {
  font-size: 15px;
  margin-bottom: 20px;
  text-align: center;
}

#formBox {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 15px;
}

.inputName {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #3ea5e7;
  margin-bottom: 7px;
}

input[type=text], input[type=password], input[type=email], input[type=number], input[type=search] {
  transition: all 0.40s ease-in-out;
	outline: none;
	padding: 10px;
  font-size: 15px;
	border: 1px solid #dadada;
  color: #8d8d8d;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #f6f6f6;
  -webkit-appearance: none;
  margin-bottom: 25px;
}

input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus, input[type=search]:focus {
	box-shadow: 0 0 7px #9fcef1;
	border: 1px solid #9fcef1;
}

#inputsBox {
  display: flex;
}

#castka {
  flex: 1;
}

#inputCheckbox {
  flex: initial;
  min-width: 210px;
  text-align: right;
}

.dar {
  text-align: center;
}

input[type=checkbox] {
    display: none;
}

input[type="checkbox"]+label {
  display: inline-block;
	padding-left: 30px;
	padding-top: 2px;
  margin-left: 15px;
  margin-top: 10px;
  color: #3ea5e7;
  font-weight: bold;
  background: url('checkbox_off.png') no-repeat;
}

input[type="checkbox"]:checked +label {
    background: url('checkbox_on.png') no-repeat;
}

input[type="checkbox"]:disabled +label {
    background: url('checkbox_dis.png') no-repeat;
}

#darovatBox {
  text-align: center;
}

#button {
  display: inline-block;
  padding: 15px 50px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #8bb43a;
  border: 2px solid #6b931d;
  border-radius: 10px;
  text-transform: uppercase;
}

#marqueeContainer {
  position: fixed;
  bottom: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

#totalDonatesBox {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: bold;
}

#fadeOut {
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(246,246,246,1) 20%,rgba(246,246,246,0) 100%);
}

table {
  margin: auto;
	background-color: #fff;
	margin-top: 0px;
	border-collapse: collapse;
	border: 1px solid #000;
	margin-bottom: 0px;
	color: #000;
}

table th {
	border-bottom: 1px solid #999999;
	border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	padding: 10px;
	height: 0px;
}

table thead {
	visibility: hidden;
}

table td {
	border: 1px solid #b2b2b2;
	padding: 10px;
}

table tr:nth-child(odd) {
	background-color:#ffffff;
}

table tr:nth-child(even) {
	background-color:#f2f2f2;
}

#top10header {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.top10name {
  min-width: 150px;
  text-align: left;
}

.donateAmount {
  text-align: right;
}

#linesBox {
  display: flex;
  height: 5px;
  position: fixed;
  bottom: 0px;
  width: 100%;
}

#linesBoxResults {
  display: flex;
  height: 5px;
  position: fixed;
  bottom: 70px;
  width: 100%;
}

#linesGreen {
  flex: 2;
  background-color: #89b440;
}

#linesRed {
  flex: 1;
  background-color: #db3a49;
}

#linesBlue {
  flex: 1;
  background-color: #6bafd6;
}

#linesOrange {
  flex: 2;
  background-color: #f89752;
}

#thanks {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  font-size: 20px;
  font-weight: bold;
  color: #3ea5e7;
  background-color: #fff;
  text-align: center;
}

#totalDonate {
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  background-image: linear-gradient(to right, rgba(0,0,0,1) 85%,rgba(0,0,0,0) 100%);
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  padding: 20px 50px 20px 20px;

}
