.responsive {
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: 300px;
  margin-left: 15px;
  margin-right: 15px;
}

* {
  box-sizing: border-box;
}

#gender {
  cursor: pointer;
}

.col-28 {
  float: left;
  width: 28%;
  margin-top: 6px;
  background-color: #D4EFDF;
  border: 2px;
  border-color: black;
  text-align: center;
}

.col-30 {
  float: left;
  width: 33%;
  margin-top: 6px;
  /*background-color: #D6EAF8;*/
  border: 2px;
  border-color: black;
}


.bg-success {
  background-color: red !important;
}


.bg-info {
  background-color: #008080 !important;
}

.bg-warning {
  background-color: #347C2C !important;
}

.bg-secondary {
  background-color: #7F525D !important;
}

.bg-dark {
  background-color: #6F4E37 !important;
}


.bg-success1 {
  background-color: #C0392B !important;
}

.bg-info1 {
  background-color: #008080 !important;
}

.bg-warning1 {
  background-color: #347C2C !important;
}

.bg-secondary1 {
  background-color: #7F525D !important;
}

.bg-dark1 {
  background-color: #6F4E37 !important;
}

input[type=name],
[type=tel],
[type=age],
[type=file],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=button],
[type=submit] {
  background-color: #B22222;
  color: white;
  padding: 12px 20px;

  border-radius: 4px;
  cursor: pointer;
  float: center;
}

input[type=button],
[type=submit]:hover {
  background-color: #7B241C;

}

input[type=checkbox],
input[type=radio] {
  margin: 4px 0 0;
  margin-top: 1px\9;
  line-height: normal;
  -webkit-appearance: radio;
}

.container_form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-38 {
  float: left;
  width: 37.5%;
  margin-top: 6px;
}




.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

  .col-25,
  .col-75,
  .col-28,
  .col-30,
  input[type=submit] {
    width: 100%;
    margin-top: 0;
  }

  .col-38 {
    width: 50%;
    margin-top: 0;
  }
}

@media screen and (min-width: 601px) {

  .col-28,
  .col-30,
    {
    width: 100%;
    margin-top: 0;
  }

}