.load-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 10000;
}

.no-cssanimations .load-container .loader {
  text-indent: 0;
  text-align: center;
  color: #fff;
  font-size: 17px;
  background: none;
  border: 0 none;
  width: auto;
  height: auto;
  margin: 1em auto;
  overflow: visible;
  box-shadow: none;
  -webkit-animation: none;
  animation: none;
}

.no-cssanimations .load-container .loader:before,
.no-cssanimations .load-container .loader:after {
  display: none;
}

.load .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -4.3em;
  margin-top: -4.3em;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.6em solid rgba(255, 255, 255, 0.2);
  border-right: 0.6em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.6em solid rgba(255, 255, 255, 0.2);
  border-left: 0.6em solid #fff;
  -webkit-animation: load 1.1s infinite linear;
  animation: load 1.1s infinite linear;
}

.load .loader, .load .loader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



/* Форма */
.datenschutz .modal-header {
	background-color: #366c2d;
	color: #fff;
}
.modal-content .modal-footer, .modal-footer-1 {
	border-top: 1px solid #ccc;
	margin: 20px 20px;
	padding: 10px 0;
}
.modal-content .modal-body {
	height: 310px;
	overflow: auto;
}
.modal-content .modal-body div {
	margin: 20px 10px;
}
.modal-content hr {border:1px solid #333; width: 100%; float: none;}
.modal-footer, .modal-footer-1 {
  box-sizing: border-box;
  padding: 25px;
  text-align: center;
}
.modal-footer-1 h2 {
  margin-bottom: 20px;
}
.modal-footer-1 p {
  margin-top: 20px;
}


/* Кнопка */
/* Checkmark style starts */
@-moz-keyframes dothabottomcheck {
  0% { height: 0; }
  100% { height: 50px; }
}
@-webkit-keyframes dothabottomcheck {
  0% { height: 0; }
  100% { height: 50px; }
}
@keyframes dothabottomcheck {
  0% { height: 0; }
  100% { height: 50px; }
}
@keyframes dothatopcheck {
  0% { height: 0; }
  50% { height: 0; }
  100% { height: 120px; }
}
@-webkit-keyframes dothatopcheck {
  0% { height: 0; }
  50% { height: 0; }
  100% { height: 120px; }
}
@-moz-keyframes dothatopcheck {
  0% { height: 0; }
  50% {  height: 0; }
  100% { height: 120px; }
}
input[type=checkbox] { display: none; }

.modal-footer-1 .check-box {
  height: 100px;
  width: 100px;
  background-color: transparent;
  border: 10px solid #000;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}
.modal-footer-1 .check-box::before, .modal-footer-1 .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 20px;
  background-color: #34b93d;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: ' ';
  -webkit-transition: opacity ease .5;
  -moz-transition: opacity ease .5;
  transition: opacity ease .5;
}
.modal-footer-1 .check-box::before {
  top: 72px;
  left: 41px;
  box-shadow: 0 0 0 5px #fff;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.modal-footer-1 .check-box::after {
  top: 37px;
  left: 5px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal-footer-1 input[type=checkbox]:checked + .check-box,
.modal-footer-1 .check-box.checked {
  border-color: #34b93d;
}
.modal-footer-1 input[type=checkbox]:checked + .check-box::after,
.modal-footer-1 .check-box.checked::after {
  height: 50px;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}
.modal-footer-1 input[type=checkbox]:checked + .check-box::before,
.modal-footer-1 .check-box.checked::before {
  height: 120px;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}

.modal-footer-1 button {
	color: #fff;
}
.modal-footer-1 .btn-disable{
  user-select:none!important;
  background-color:#fff!important;
  cursor:default!important;
  outline:none!important;
  pointer-events:none!important;
  color: #ccc;
  border-color: #ccc;
}