@font-face {
  font-family: myfont;
  src: url(../fonts/SFProText-Regular.ttf);
}

html {
  overflow: auto !important;
}

body {
  background: #fff !important;
  width: 100%;
  height: 100%;
  padding: 15px 15px 15px 15px;
}

.main_wrapper{
  max-width:480px;
  margin: auto;
  margin-top: 2%;
  padding: 0 10px 60px 10px;
}

.main-logo {
  padding: 0  0 30px;
  display: flex;
  justify-content: center;
}
.main-logo img{
  width: 150px;
}

.data_window,
.upper_window {
  width:100%;
  box-sizing: border-box;
  border-radius: 6px;
  text-align: left;
  justify-content: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #D9E0E9;
  margin-bottom: 15px;
}

.data_window,
.upper_window p{
  font-size: 14px;
  font-family: myfont;
  font-weight: 650;
  margin: 0px;
}

.errors_window {
  width:100%;
  box-sizing: border-box;
  border: 1px solid #FF6464;
  border-radius: 6px;
  text-align:center;
  justify-content: center;
  padding: 10px;
  background: #FF8383;
  margin-bottom: 15px;
  display: none;
}

.errors_window p{
  font-size: 14px;
  font-family: myfont;
  font-weight: normal;
  margin: 0px 0px 8px 0px;
  text-align: left;
  color: #fff;
}
.errors_window p:last-child{
  margin: 0
}

.success_window {
  width:100%;
  box-sizing: border-box;
  border: 1px solid #00BE65;
  border-radius: 6px;
  text-align:center;
  justify-content: center;
  padding: 10px;
  background: #33CB84;
  margin-bottom: 15px;
  display: none;
}

.success_window p{
  font-size: 14px;
  font-family: myfont;
  font-weight: normal;
  margin: 0px 0px 8px 0px;
  text-align: left;
  color: #fff;
}

.errors_window p:last-child{
  margin: 0
}

.buttons_group {
  width: 100%;
  box-sizing: border-box;
  margin-top: 15px;
}

.buttons_group2 {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.button {
  display: flex;
  height: 40px;
  box-sizing: border-box;
  border-radius: 5px;
  text-align:center;
  justify-content: center;
  vertical-align: center;
  cursor: pointer;
  font-family: myfont;
  font-weight: normal;
  font-size: 14px;
  padding: 16px 20px;
  color: #fff !important;
  background: #007AFF !important;
}

.button p{
  margin: 0;
  padding: 0;
}

.button_execute {
  width:100%;
  margin: auto;
  margin-top: 10px;
  border: 2px solid #545454;
  background: linear-gradient(180deg,#1fad47, #13692b);
}


.button_execute:active {
  background: linear-gradient(0deg,#1fad47, #13692b);
}

.label_input_line {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  margin-bottom: 10px;
  align-items: center;
}
.label_input_line:last-child {
  margin-bottom: 0;
}

.input_file {
  width: 100%;
  margin: 0;
  margin-bottom: 10px;
}

.input_file p{
  max-width: 400px;
  font-size: 14px;
  font-family: myfont;
  font-weight: normal;
  margin: 0px 0px 0px 0px;
  text-align: left;
}

.help_comment {
  display: flex;
  max-width: 370px;
  font-size: 14px;
  /*font-family: "Calibri Light";*/
  font-family: myfont;
  font-weight: 500;
  margin: 0;
  margin-bottom: 25px;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2em;
  text-align: justify;

}

.lable_title {
  font-size: 13px;
  vertical-align:-2px;
  font-family: myfont;
  font-weight: 650;
  margin: 0px 0px 0px 0px;
}


.input_class{
  border: none;
  width: 50%;
  font-family: myfont;
  font-size: 14px;
  border-radius: 5px;
  background-color:#F7F8FC;
  padding: 8px 12px;
  border: 1px solid transparent;
  margin-bottom:0px;
  color: #4A4A4A;
  outline: none;
  font-weight: normal;
}

.input_class:focus {
  background: #fff;
  border: 1px solid #D9E0E9;
}

.margin_bottom1{
  margin-bottom: 10px;
}


.margin_bottom0{
  margin-bottom: 0px;
}


#pass {
  background: #bfbfbf;
}


.input_file_label_wrapper {
  display: flex;
  justify-content: flex-end;
}

.file_input_class {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.label_for_input_file {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #D9E0E9;
  border-radius: 5px;
  background-color:#fff;    
  overflow: hidden;
}

.file_input_chooser {
  height: 30px;
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;       
  font-size: 14px;
  font-weight: normal;
  font-family: myfont;  
  cursor: pointer;
  padding-left:20px;
  background: #fff;;
}

.file_input_action {
  width: 30%;
  height: 30px;
  background: #007AFF;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  font-family: myfont;  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
    -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
   
}



.menu_punkt{
  display: flex;
  width: 100%;
  margin: 0px 20px 10px 0px;
  margin-bottom: 10px;
  cursor: pointer;
  align-items: center;
}

.menu_punkt p {
  font-size: 14px;
  vertical-align:-2px;
  /*font-family: "Calibri Light";*/
  font-family: myfont;
  font-weight: 550;
  margin: 0px 5px 0px 0px;    
}

.radio_button {
  display: flex;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin: 0px 16px 0 0 ;
  border: 1px solid #D9E0E9;
  border-radius: 10px;
  background-size: cover;
  margin-top:0px;

  -webkit-box-shadow: 0px 0px 5px 0px rgba(230,230,230,1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(230,230,230,1);
  box-shadow: 0px 0px 5px 0px rgba(230,230,230,1);
}

.little_circle {
  display: flex;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #007AFF;
  align-self: center;
}

.little_circle1 {
    display:block;
}

.little_circle2 {
    display:none;
}

.little_circle3 {
    display:none;
}


.CSR_form_for_person {
  display: block;
  margin-bottom: 20px;
}

.CSR_form_for_organization {
  display: none;
  margin-bottom: 20px;
}

.P12_form {
  display: none;
  margin-bottom: 20px;
}

.copyright {
  font-family: myfont;
  font-size: 14px;
  text-align: center;
  padding: 16px 0;
  background: #fff;
}

@media screen and (min-width: 768px){
  .copyright {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
  }
}
