hgroup {
    text-align: center;
    margin-top: 0 ! important;
}

#someID {
	display: none;
}

.checkbox-1 {
	cursor: pointer;
	
	position: relative;
	padding-left: 40px;
	padding-top: 5px;
}

.checkbox-1:before {
	position: absolute;
	content: '';
	width: 30px;
	height: 30px;
	border-radius: 4px;
	background: #923a4c;
	text-align: center;
	left: 0;
	top: 2px;
	
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.checkbox-1:after {
	position: absolute;
	content: '\2714 \fe0e';
	font-family: 'Dosis', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	color: #fff;
	left: 7px;
	top: 7px;
	
	transform: scale(0);
	
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

#someID:checked + .checkbox-1:after {
	transform: scale(1);
}

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
  background-color: #f6f6f6;
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #923a4b transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
    color: #000000;
    padding: 8px 16px;
    border: 1px solid #000000cc;
    border-color: #000000a6 #000000c7 rgba(0, 0, 0, 0.73) #0000005e;
    border-radius: 2px;
    cursor: pointer;
    user-select: none;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #f6f6f6;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

* { box-sizing:border-box; }

body {
	font-family: Helvetica;
	-webkit-font-smoothing: antialiased;
	min-width: 300px;
}

hgroup { 
	text-align:center;
	margin-top: 5em;
}

h1, h3 { font-weight: 300; }

h1 { color: #636363; }

h3 { color: #923a4b;
	    margin: auto;
    max-width: 430px; }

form {
	max-width: 380px;
	margin: 2em auto;
	padding: 3em 2em 2em 2em;
	background: #fafafa;
	border: 1px solid #ebebeb;
	box-shadow: rgba(0,0,0,0.14902) 0px 1px 1px 0px,rgba(0,0,0,0.09804) 0px 1px 2px 0px;
}

.group { 
	position: relative; 
	margin-bottom: 45px; 
}

.group input {
	font-size: 18px;
	padding: 10px 10px 10px 5px;
	-webkit-appearance: none;
	display: block;
	background: #fafafa;
	color: #636363;
	width: 100%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #757575;
}

input:focus { outline: none; }


/* Label */

.group label {
	color: #999; 
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	transition: all 0.2s ease;
}


/* active */

input:focus ~ label, input.used ~ label {
	top: -20px;
  transform: scale(.75); left: -2px;
	/* font-size: 14px; */
	color: #923a4b;
}

input.date:focus ~ label, input.used.date ~ label {
	top: -20px;
	left: -10px !important;
  transform: scale(.75); left: -2px;
	/* font-size: 14px; */
	color: #923a4b;
}


/* Underline */

.bar {
	position: relative;
	display: block;
	width: 100%;
}

.bar:before, .bar:after {
	content: '';
	height: 2px; 
	width: 0;
	bottom: 1px; 
	position: absolute;
	background: #923a4b; 
	transition: all 0.2s ease;
}

.bar:before { left: 50%; }

.bar:after { right: 50%; }


/* active */

input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }


/* Highlight */

.highlight {
	position: absolute;
	height: 60%; 
	width: 100px; 
	top: 25%; 
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}


/* active */

input:focus ~ .highlight {
	animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}


/* Button */

.button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #843443;
  cursor: pointer;
  transition: all 0.15s ease;
}
.button:focus { outline: 0; }


/* Button modifiers */

.buttonBlue {
  background: #923a4b;
  text-shadow: 1px 1px 0 rgba(95, 30, 30, 0.5);
}

.buttonBlue:hover { background: #843443; }


/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}


/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
  animation: ripples .4s ease-in;
}


/* Ripples animation */

@keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

footer { text-align: center; }

footer p {
	color: #888;
	font-size: 13px;
	letter-spacing: .4px;
}

footer a {
	color: #4a89dc;
	text-decoration: none;
	transition: all .2s ease;
}

footer a:hover {
	color: #666;
	text-decoration: underline;
}

footer img {
	width: 150px;
	/*transition: all .2s ease;*/
}

/*footer img:hover { opacity: .83; }

footer img:focus , footer a:focus { outline: none; }*/


@import url(https://fonts.googleapis.com/css?family=Gudea);


.radioholder  {
	display: table;
	width: 100%;
	background: #fff;
	margin-bottom: 1em;
	font-size: 1.3em;
	height: 2.5em;
	color: #666;
	-o-transition: .1s ease-out;
	-ms-transition: .1s ease-out;
	-moz-transition: .1s ease-out;
	-webkit-transition: .1s ease-out;
	transition: .1s ease-out;
	cursor: pointer;
}

.checkboxholder  {
	display: table;
	width: 100%;
	background: #fff;
	margin-bottom: 1em;
	font-size: 1.3em;
	height: 2.5em;
	color: #666;
	-o-transition: .1s ease-out;
	-ms-transition: .1s ease-out;
	-moz-transition: .1s ease-out;
	-webkit-transition: .1s ease-out;
	transition: .1s ease-out;
	cursor: pointer;
}


.activeradioholder {
	background: #a55a69;
	color: #fff;
}

.radioholder .desc {
	display: table-cell;
	vertical-align: middle;
	padding-left: .6em;
	line-height: 2.4em;
	/*max-width: 80%;*/
	line-height: 24px;
    padding-top: 6px;
    padding-bottom: 7px;
    padding-right: 3px;
}

.radioholder .tick {
	display: table-cell;
	vertical-align: middle;
	width: 2.4em;
	height: 100%;
	background-color: #eee;
	background-image: none;
	-o-transition: .1s ease-out;
	-ms-transition: .1s ease-out;
	-moz-transition: .1s ease-out;
	-webkit-transition: .1s ease-out;
	transition: .1s ease-out;
}

.checkboxholder .desc {
	display: table-cell;
	vertical-align: middle;
	padding-left: .6em;
	line-height: 24px;
	padding-top: 6px;
    padding-bottom: 7px;
    padding-right: 3px;
}

.checkboxholder .tick {
	display: inline-block;
	vertical-align: middle;
	width: 2.4em;
	height: 100%;
	background-color: #eee;
	background-image: none;
	-o-transition: .1s ease-out;
	-ms-transition: .1s ease-out;
	-moz-transition: .1s ease-out;
	-webkit-transition: .1s ease-out;
	transition: .1s ease-out;
}

.activeradioholder .tick {
	background-color: #923a4b;
	background-image: url('tick.png');
	background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


.radioholder:hover {
	background-color: #eee;
}

.radioholder:hover .tick {
	background-color: #ddd;
}

.activeradioholder:hover {
	background-color: #a55a69;
}

.activeradioholder:hover .tick {
	background-color: #923a4b;
}

.selectholder {
  clear: both;
	width: 100%;
	background: #ffffff;
	margin-bottom: 1em;
	font-size: 1.3em;
	height: 2.4em;
	color: #666;
	-o-transition: .1s ease-out;
	-ms-transition: .1s ease-out;
	-moz-transition: .1s ease-out;
	-webkit-transition: .1s ease-out;
	transition: .1s ease-out;
	cursor: pointer;
}

.selectholder .desc {
	display: inline-block;
	vertical-align: middle;
	padding-left: .8em;
	line-height: 2.4em;
}

.selectholder .pulldown {
	float: right;
	vertical-align: middle;
	width: 2.4em;
	height: 100%;
	background-color: #ddd;
	background-image: url('pulldown.png');
	background-size: cover;
	-o-transition: .1s ease-out;
	-ms-transition: .1s ease-out;
	-moz-transition: .1s ease-out;
	-webkit-transition: .1s ease-out;
	transition: .1s ease-out;
}

.selectholder:hover,
.activeselectholder {
	background-color: #ddd;
}

.selectholder:hover .pulldown,
.activeselectholder .pulldown {
	background-color: #a45a69;
	background-image: url('pulldown.png');
}

.selectholder .selectdropdown {
	position: relative;
	top: 0;
	left: 0;
	background: #a35a69;
	color: #fff;
	display: none;
	clear: both;
	z-index: 999;
}

.selectholder .selectdropdown span {
	display: block;
	border-bottom: solid 1px #913a4d;
	padding-left: .8em;
	line-height: 2.4em;
	width: 100%;
	-o-transition: background-color .1s ease-out;
	-ms-transition: background-color .1s ease-out;
	-moz-transition: background-color .1s ease-out;
	-webkit-transition: background-color .1s ease-out;
	transition: background-color .1s ease-out;
}

.selectholder .selectdropdown span:last-child {
	border-bottom: none;
}

.selectholder .selectdropdown span.active {
	background-color: #923a4b;
	background-image: url('tick.png');
	background-repeat: no-repeat;
	background-size: 1.6em 1.6em;
	background-position: 98% 50%;
}

.selectholder .selectdropdown span:hover {
	background-color: #923a4b;
}



#chart_wrap {
	border: none !important;
    border:1px solid gray;
    position: relative;
    padding-bottom: 80%;
    height: 0;
    overflow:hidden;
}
#chart {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
}


@media screen and (max-width: 360px) {
	body {
		zoom: 0.8;
	}
}

.zagolovok {
	color: #666; 
	font-size: 18px;
	font-weight: normal;
}

.check_btn {
  outline: none;
  height: 40px;
  text-align: center;
  width: 100%;
  /*border-radius: 40px;*/
  background: #fff;
  border: 2px solid #913a4d;
  color: #913a4d;
  /*letter-spacing: 1px;*/
  text-shadow: 0;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
}
.check_btn2 {
  outline: none;
  height: 40px;
  text-align: center;
  width: 100%;
  /*border-radius: 40px;*/
  background: #913a4d;
  border: 2px solid #913a4d;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 1;
  font-size: 16px;
  /*font-weight: bold;*/
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Dosis', sans-serif;
  border-bottom: 2px solid #843443;
}
.unpressed2:hover {
	background: #722130;
}
.unpressed:hover {
  color: white;
  background: #913a4d;
}
.check_btn:active {
  letter-spacing: 2px;
}
.unpressed:after {
  content: "Проверить введенные данные";
}

.onclic {
  width: 40px;
  border-color: #bbbbbb;
  border-width: 3px;
  font-size: 0;
  border-left-color: #913a4d;
  border-radius: 40px;
  background: none;
  -webkit-animation: rotating 2s 0.25s linear infinite;
          animation: rotating 2s 0.25s linear infinite;
}
.onclic:after {
  content: "";
}
.onclic:hover {
  /*color: #1ECD97;
  background: white;*/
}

.validate {
  font-size: 13px;
  color: white;
  background: #913a4d;
  background-image: url('access.png');
	background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.deny {
  font-size: 13px;
  color: white;
  background: #913a4d;
  background-image: url('error.png');
	background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.validate:after {
  font-family: 'FontAwesome';
  content: "";
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

sup {
	color: #923a4b;
}
