.modal {
      position: fixed;
      /* фиксированное положение */
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.5);
      /* цвет фона */
      z-index: 1050;
      opacity: 0;
      /* по умолчанию модальное окно прозрачно */
      -webkit-transition: opacity 400ms ease-in;
      -moz-transition: opacity 400ms ease-in;
      transition: opacity 400ms ease-in;
      /* анимация перехода */
      pointer-events: none;
      /* элемент невидим для событий мыши */
    }

    /* при отображении модального окно */
    .modal:target {
      opacity: 1;
      pointer-events: auto;
      overflow-y: auto;
    }

    /* ширина модального окна и его отступы от экрана */
    .modal-dialog {
      position: relative;
      width: auto;
      margin: 10px;
    }

    @media (min-width: 576px) {
      .modal-dialog {
        max-width: 500px;
        margin: 30px auto;
      }
    }

    /* свойства для блока, содержащего контент модального окна */
    .modal-content {
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      background-color: #000;
      -webkit-background-clip: padding-box;
      background-clip: padding-box;
      border: 1px solid rgba(0, 0, 0, .2);
      border-radius: .3rem;
      outline: 0;
    }

    @media (min-width: 768px) {
      .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
      }
    }

    /* свойства для заголовка модального окна */
    .modal-header {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 15px;
    }

    .modal-title {
      margin-top: 0;
      margin-bottom: 0;
      line-height: 1.5;
      font-size: 1.25rem;
      font-weight: 500;
    }

    /* свойства для кнопки "Закрыть" */
    .close {
      float: right;
      font-family: sans-serif;
      font-size: 24px;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: .5;
      text-decoration: none;
    }

    /* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */
    .close:focus,
    .close:hover {
      color: #000;
      text-decoration: none;
      cursor: pointer;
      opacity: .75;
    }

    /* свойства для блока, содержащего основное содержимое окна */
    .modal-body {
      position: relative;
      text-align: center;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      padding: 55px;
      padding-top: 0;
    }
.modal-body form{
    width: 100%;
    margin: 0 auto;
}
.modal-body input{
  background: white;
  color: black;
  border: none;
  border-radius: 48px;
  padding: 20px 25px;
}
.modal-body .textin{
  margin-top: 22px;
  width: 383px;
}
.modal-body .age{
  margin-top: 42px;
  margin-bottom: 50px;
}
.modal-body .age span.your{
  margin-right: 41px;
}
.modal-body .age span{
  margin-right: 10px;
}
.modal-body button{
  margin-left: 24px;
  padding: 34px 66px;
  background: none;
  border: 1px solid #ADC62C;
  color: white;
  border-radius: 42px;
  margin-top: -10px;
}

form .file{
  position: absolute;
  margin: 0;
  padding: 0;
  width: 40%;
  height: 22%;
  outline: none;
  opacity: 0;
}
form .download{
  width: 195px;
  background: #2E2E2E;
  color: white;
  padding: 26px 93px 26px 28px;
  border: none;
  border-radius: 42px;
}
form .download img{
  position: absolute;
  margin: -10px 20px;
}
input[type=radio]{
  color: #ADC62C;
}
.db label{
  margin: -10px;
}
.age_ch  input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: none;
  border: 1px solid white;
  border-radius: 50%;
}
.age_ch {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* On mouse-over, add a grey background color */
.age_ch :hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.age_ch input:checked ~ .checkmark {
  background-color: none;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after, .year:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.age_ch  input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.age_ch  .checkmark:after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CCEE1E;
}
.year:after {
  color: #CCEE1E;
}
