/* @extend display-flex; */
display-flex,
.download-content,
.form-row,
.label-flex,
.form-radio-group {
  display: flex;
  display: -webkit-flex;
}

/* @extend list-type-ulli; */
list-type-ulli,
ul {
  list-style-type: none;
  margin         : 0;
  padding        : 0;
}



.tit_eng {
  width        : 100%;
  height       : 19px;
  border-top: 1px solid #dedede;
    margin: 10px;
}

a:focus,
a:active {
  text-decoration   : none;
  outline           : none;
  transition        : all 300ms ease 0s;
  -moz-transition   : all 300ms ease 0s;
  -webkit-transition: all 300ms ease 0s;
  -o-transition     : all 300ms ease 0s;
  -ms-transition    : all 300ms ease 0s;
}

input,

textarea {
  outline           : none;
  appearance        : unset !important;
  -moz-appearance   : unset !important;
  -webkit-appearance: unset !important;
  -o-appearance     : unset !important;
  -ms-appearance    : unset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance        : none !important;
  -moz-appearance   : none !important;
  -webkit-appearance: none !important;
  -o-appearance     : none !important;
  -ms-appearance    : none !important;
  margin            : 0;
}

input:focus,
select:focus,
textarea:focus {
  outline           : none;
  box-shadow        : none !important;
  -moz-box-shadow   : none !important;
  -webkit-box-shadow: none !important;
  -o-box-shadow     : none !important;
  -ms-box-shadow    : none !important;
}



input[type=radio] {
  appearance        : radio !important;
  -moz-appearance   : radio !important;
  -webkit-appearance: radio !important;
  -o-appearance     : radio !important;
  -ms-appearance    : radio !important;
}

input:-webkit-autofill {
  box-shadow        : 0 0 0 30px transparent inset;
  -moz-box-shadow   : 0 0 0 30px transparent inset;
  -webkit-box-shadow: 0 0 0 30px transparent inset;
  -o-box-shadow     : 0 0 0 30px transparent inset;
  -ms-box-shadow    : 0 0 0 30px transparent inset;
  background-color  : transparent !important;
}



figure {
  margin: 0;
}

.clear {
  clear: both;
}


.main {
  position: relative;
}

.download-form {
  width     : 100%;
  margin-top: -2px;
}

.signup-img-content {
  position         : absolute;
  top              : 50%;
  left             : 50%;
  transform        : translate(-50%, -50%);
  -moz-transform   : translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform     : translate(-50%, -50%);
  -ms-transform    : translate(-50%, -50%);
  text-align       : center;
  width            : 100%;
}

.download-info-forml {
    float: left; background: #fff;
  padding :3% 5%;
     width: 40%;    
  margin-top: 6%;
}

.download-info-form {
    float: left;
  padding : 80px 0;
     width: 100%;    
}

.form-row { width: 100%;
  margin: 0 -30px; 
}

.form-row .form-group {
  width  : 100%;
  padding: 0 30px;
}

.form-input,
.form-select,
.form-radio { float: left; width: 50%;
  margin-bottom: 23px;
}

.form-input label,
.form-input input,select {
  display: block;
  width  : 90%;
}

.form-input label {
  font-weight   : bold;
  text-transform: none;
  margin-bottom : 7px;
}

.form-input label.required {
  position: relative;
}

.form-input label.required:after {
  content    : '*';
  margin-left: 2px;
  color      : #b90000;
}

.form-input input,select {
  box-sizing           : border-box;
  border               : 1px solid #cccccc;
  padding              : 14px 20px;
  border-radius        : 5px;
  -moz-border-radius   : 5px;
  -webkit-border-radius: 5px;
  -o-border-radius     : 5px;
  -ms-border-radius    : 5px;
  font-size            : 14px;

  -webkit-transition   : all 0.4s;
  -o-transition        : all 0.4s;
  -moz-transition      : all 0.4s;
  transition           : all 0.4s;
}

.form-input input:focus {

  border            : 1px solid #66afe9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow        : inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}





.label-flex {
  justify-content        : space-between;
  -moz-justify-content   : space-between;
  -webkit-justify-content: space-between;
  -o-justify-content     : space-between;
  -ms-justify-content    : space-between;
}

.label-flex label {
  width: auto;
}

.form-link {
  font-size      : 12px;
  color          : #222;
  text-decoration: none;
  position       : relative;
}

.form-link:after {
  position  : absolute;
  content   : "";
  width     : 100%;
  height    : 2px;
  background: #d7d7d7;
  left      : 0;
  bottom    : 12px;
}

.form-checkbox {
  margin-top: 1px;
  position  : relative;
}

.form-checkbox input {
  position: absolute;
  opacity : 0;
}

.form-checkbox .checkmark {
  position: absolute;
  top     : 0;
  left    : 0;
  height  : 23px;
  width   : 23px;
  border  : 1px solid #cccccc;
  background: #ffffff;
  cursor  : pointer;
}

.form-checkbox input:checked~.checkmark::after {
  display: block;
}

.form-checkbox .checkmark::after {
  content          : "";
  position         : absolute;
  left             : 7px;
  top              : 3px;
  width            : 7px;
  height           : 13px;
  border           : 1px solid #3786bd;
  border-width     : 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
  display          : none;
}

.checkbox-label {
  padding-right: 72px;
}

.form-checkbox-group {float: left;
  padding-bottom: 10px;
  padding-top   : 12px;
  width         : 100%;
  margin        : 10px 0 5% 0;
}
.form-checkbox-groupa { float: left;
  padding-bottom: 10px;
  padding-top   : 12px;
  width         : 50%;
  margin        : 10px 0 0 0;
}

.form-checkbox-item {
  position: relative;
}

.form-checkbox-item label {
  font-weight   : 500;
  padding-left  : 35px;
  position      : relative;
  z-index       : 9;
  display       : block;
  cursor        : pointer;
  text-transform: none;
}

.form-textarea {
	
  box-sizing           : border-box;
  border               : 1px solid #cccccc;
  padding              : 14px 20px;
  border-radius        : 5px;
  -moz-border-radius   : 5px;
  -webkit-border-radius: 5px;
  -o-border-radius     : 5px;
  -ms-border-radius    : 5px;
  font-size            : 14px;
   color               : #333333;
  width                : 95%;
  margin               : 0px;
  min-height           : 100px;
  padding-top          : 19px;
  padding-bottom       : 13px;
  -webkit-transition   : all 0.4s;
  -o-transition        : all 0.4s;
  -moz-transition      : all 0.4s;
  transition           : all 0.4s;

}

.check {
  display              : inline-block;
  position             : absolute;
  border               : 1px solid #cccccc;
  border-radius        : 50%;
  -moz-border-radius   : 50%;
  -webkit-border-radius: 50%;
  -o-border-radius     : 50%;
  -ms-border-radius    : 50%;
  height               : 18px;
  width                : 18px;
  top                  : 2px;
  left                 : 0px;
  z-index              : 5;
  transition           : border .25s linear;
  -webkit-transition   : border .25s linear;
}

.check:before {
  position             : absolute;
  display              : block;
  content              : '';
  width                : 12px;
  height               : 12px;
  border-radius        : 50%;
  -moz-border-radius   : 50%;
  -webkit-border-radius: 50%;
  -o-border-radius     : 50%;
  -ms-border-radius    : 50%;
  top                  : 3px;
  left                 : 3px;
  margin               : auto;
  transition           : background 0.25s linear;
  -webkit-transition   : background 0.25s linear;
}

input[type=checkbox] {
  position  : absolute;
  
}

input[type=checkbox]:checked~.check {
  border: 1px solid #329e5e;
}

input[type=checkbox]:checked~.check::before {
  background: #329e5e;
}


#slider-margin {
  height               : 5px;
  border               : none;
  box-shadow           : none;
  -moz-box-shadow      : none;
  -webkit-box-shadow   : none;
  -o-box-shadow        : none;
  -ms-box-shadow       : none;
  background           : #f8f8f8;
  border-radius        : 2.5px;
  -moz-border-radius   : 2.5px;
  -webkit-border-radius: 2.5px;
  -o-border-radius     : 2.5px;
  -ms-border-radius    : 2.5px;
}

#slider-margin .noUi-connect {
  background: #329e5e;
}

#slider-margin .noUi-handle {
  width                : 100px;
  height               : 30px;
  top                  : -12px;
  background           : #329e5e;
  box-shadow           : 0px 3px 2.85px 0.15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow      : 0px 3px 2.85px 0.15px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow   : 0px 3px 2.85px 0.15px rgba(0, 0, 0, 0.1);
  -o-box-shadow        : 0px 3px 2.85px 0.15px rgba(0, 0, 0, 0.1);
  -ms-box-shadow       : 0px 3px 2.85px 0.15px rgba(0, 0, 0, 0.1);
  border-radius        : 5px;
  -moz-border-radius   : 5px;
  -webkit-border-radius: 5px;
  -o-border-radius     : 5px;
  -ms-border-radius    : 5px;
  outline              : none;
  border               : none;
  right                : -50px;
}

#slider-margin .noUi-handle:after,
#slider-margin .noUi-handle:before {
  background: transparent;
  height    : 0px;
  width     : 20px;
  top       : -2px;
  font-size : 18px;
  outline   : none;
}

#slider-margin .noUi-handle:before {
  font-family: 'Material-Design-Iconic-Font';
  color      : #fff;
  content    : '\f2fa';
  left       : 10px;
}

#slider-margin .noUi-handle:after {
  font-family: 'Material-Design-Iconic-Font';
  color      : #fff;
  content    : '\f2fb';
  left       : auto;
  right      : -5px;
}

#slider-margin .noUi-handle .noUi-tooltip {
  bottom     : 2px;
  border     : none;
  background : transparent;
  font-weight: bold;
  color      : #fff;
  padding    : 0px;
}

.message-text {
  margin-bottom: 30px;
  margin-top   : 30px;
}

.message-text label {
	float: left;
  font-weight   : bold;
  text-transform: none;
  margin-bottom : 10px;
  width: 100%;
}

.price_slider {
  position: relative;
}

.donate-value {
  position         : absolute;
  top              : -9px;
  left             : 50%;
  z-index          : 99;
  transform        : translateX(-50%);
  -moz-transform   : translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform     : translateX(-50%);
  -ms-transform    : translateX(-50%);
}

.form-submit {float: left; width: 100%;
  text-align: center; 
}

.submit {
  width                : 200px;
  height               : 50px;
  display              : inline-block;
  font-weight          : bold;
  font-size            : 1.2em;
  padding              : 10px;
  border               : none;
  cursor               : pointer;
  text-transform       : uppercase;
  border-radius        : 5px;
  -moz-border-radius   : 5px;
  -webkit-border-radius: 5px;
  -o-border-radius     : 5px;
  -ms-border-radius    : 5px;
}

#cancel {
  background: #ffffff;
  color     : #333333;
  border    : 2px solid #333333;
    margin-right : 2em;
}

#cancel:hover {
  border    : 2px solid #333333;
  background: #333333;
  color     : #fff;
}

#submit {
  color           : #ffffff;
  background-color:#333333;
  border-color    : #333333;

}

#submit:hover {
  color           : #ffffff;
  background-color: #333;
  border-color    : #333333;
}



label.error {
  display : block;
  position: absolute;
  top     : 0px;
  right   : 0;
}

label.error:after {
  font-family: 'Material-Design-Iconic-Font';
  position   : absolute;
  content    : '\f1f8';
  right      : 20px;
  top        : 47px;
  font-size  : 23px;
  color      : #c70000;
}

input.error {
  border: 1px solid #c70000;
}

.select-list {
  position     : relative;
  display      : inline-block;
  width        : 100%;
  margin-bottom: 47px;
}

.list-item {
  position: absolute;
  width   : 100%;
  z-index : 99;
}

/* popup */
.popup {
  display           : -webkit-box;
  display           : flex;
  -webkit-box-align : center;
  align-items       : center;
  -webkit-box-pack  : center;
  justify-content   : center;
  position          : fixed;
  width             : 100%;
  height            : 100vh;
  bottom            : 0;
  right             : 0;
  background-color  : rgba(0, 0, 0, 0.8);
  z-index           : 999;
  visibility        : hidden;
  opacity           : 0;
  overflow          : hidden;
  -webkit-transition: 1.5s ease-in-out;
  transition        : 1.5s ease-in-out;
}

.popup-inner {
  position          : relative;
  bottom            : -100vw;
  right             : -100vh;
  display           : -webkit-box;
  display           : flex;
  -webkit-box-align : center;
  align-items       : center;
  max-width         : 800px;
  max-height        : 600px;
  width             : 90%;
  height            : 80%;
  background-color  : #fff;
  -webkit-transform : scaleY(2);
  transform         : scaleY(2);
  -webkit-transition: 1.5s ease-in-out;
  transition        : 1.5s ease-in-out;
}



.popup-content {
  display              : -webkit-box;
  display              : flex;
  -webkit-box-orient   : vertical;
  -webkit-box-direction: normal;
  flex-direction       : column;
  -webkit-box-pack     : center;
  width                : 100%;
  height               : 90%;
  padding              : 5% 5%;
  overflow             : auto;
}

.popup-content h1 {
  font-size     : 1.4em;
  font-weight   : 600;
  margin-bottom : 2rem;
  text-transform: none;
  color         : #0A0A0A;
}

.popup-content p {
  font-size    : 1em;
  color        : #333333;
  line-height  : 1.6;
  margin-bottom: 1.5em;
}
.popup-content ul, .popup-content li {
  margin-top   : 0;
  margin-bottom: 10px;
  font-size : 1em;
color : #333333;
line-height : 1.6;

}

.popup-content ul li {
  margin-left: 15px;
  list-style: decimal;
}
.popup:target {
  visibility: visible;
  opacity   : 1;
}

.popup:target .popup-inner {
  bottom           : 0;
  right            : 0;
  -webkit-transform: rotate(0);
  transform        : rotate(0);
}

.popup__close {
  position        : absolute;
  right           : -2rem;
  top             : -2rem;
  width           : 4rem;
  height          : 4rem;
  font-size       : 2rem;
  font-weight     : 500;
  border-radius   : 100%;
  background-color: #000000;
  z-index         : 4;
  color           : #fff;
  line-height     : 4rem;
  text-align      : center;
  cursor          : pointer;
  text-decoration : none;
}


/*=====================*/


@media screen and (max-width: 1024px) {
  .container {
    width    : calc(100% - 30px);
    max-width: 100%;
    margin   : 0 auto;
  }

  .download-form {
    width: 100%;
  }

  .download-info-forml {
    padding: 30px 0;
      float: left;
     width: 100%; 
  }
   .download-info-form {
    padding: 30px 0;
       float: left;
     width: 100%;    
  }
}

@media screen and (max-width: 992px) {
  .download-content {
    width: 100%;
  }

  .form-check-item {
    margin-right: 15px;
  }

  .download-info-form {
    padding: 30px 0;
       float: left;
     width: 100%;    
  }

  .form-row .form-group {
    width  : 100%;
    padding: 0 0px;
  }
}

@media screen and (max-width: 768px) {
  .form-row {
    flex-direction        : column;
    -moz-flex-direction   : column;
    -webkit-flex-direction: column;
    -o-flex-direction     : column;
    -ms-flex-direction    : column;
    margin                : 0px;
  }
.form-input { float: left; width: 100%;
}
.form-input input,select { float: left; width: 100%;
}
.form-row{ float: left;}

@media screen and (max-width: 480px) {
  .submit {
    width: 40%;
  }

  #submit {
    margin-bottom: 20px;
    margin-right : 0px;
  }

  .form-radio-group {
    flex-direction        : column;
    -moz-flex-direction   : column;
    -webkit-flex-direction: column;
    -o-flex-direction     : column;
    -ms-flex-direction    : column;
  }
}