* {
    margin: 0;
    padding: 0;
  }
  body {
    margin: 30px;
    font: 13px/1.4 Arial, sans-serif;
  }
  a {
    color: #0094D6;
  }
  a:hover {
    text-decoration: none;
  }
  p {
    padding: 7px 0;
  }
  h1 {
    font-size: 21px;
    font-weight: normal;
    margin: 0 0 30px;
  }
  h2 {
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 25px;
  }
  body {
    background: #F6F6F6;
  }
  .text {
    max-width: 700px;
    margin: 0 0 30px;
    background: #FFF;
    border: 2px solid #7DCA86;
    border-radius: 5px;
    padding: 7px 15px;
    box-sizing: border-box;
  }
  
  .tabs {
    max-width: 700px;
    margin: 0 0 30px;
  }
  .tabs__caption {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    position: relative;
    margin: -1px 0 0 -1px;
  }
  .tabs__caption li:last-child:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: -2px;
    z-index: -1;
    height: 5px;
    background: #7DCA86;
  }
  .tabs__caption:after {
    content: '';
    display: table;
    clear: both;
  }
  .tabs__caption li {
    padding: 9px 15px;
    margin: 1px 0 0 1px;
    background: #61AF6A;
    color: #FFF;
    position: relative;
    border: solid #61AF6A;
    border-width: 2px 2px 0;
    border-radius: 5px 5px 0 0;
    text-align: center;
  }
  .tabs__caption li:not(.active) {
    cursor: pointer;
  }
  .tabs__caption li:not(.active):hover {
    background: #7DCA86;
    border-color: #7DCA86;
  }
  .tabs__caption .active {
    background: #FFF;
    color: #000;
    border-color: #7DCA86;
  }
  .tabs__caption .active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: #FFF;
  }
  .tabs__content {
    display: none;
    background: #FFF;
    border: 2px solid #7DCA86;
    border-radius: 0 5px 5px 5px;
    padding: 7px 15px;
  }
  .tabs__content.active {
    display: block;
  }

   .dynamic_fields, .dynamic_fields * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.example_student {
    display: none;
}

.form-control {
    display: block;
    width: 100%;
    height: 25px;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

.form {
    display: block;
    width: 20%;
    height: 25px;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

.pull-right {
    float: right;
}

.table {
    border: 1;
    display: table;
    width: 100%;
    text-align: center;
}
.student:last-child .table {
    padding-bottom: 0;
}

.table .cell {
    display: table-cell;
    vertical-align: top;
}

.table .cell:last-child {
    width: 1px;
    padding-left: 10px;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: monospace;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
    margin-top: 10px;
}


.leftstr, .rightstr {
    float: left; /* Обтекание справа */ 
    width: 50%; /* Ширина текстового блока */ 
   }
   .rightstr {
    text-align: right; /* Выравнивание по правому краю */ 
   }