/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 3103; /* Sit on top */
  padding-top: 20px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  border-radius:10px;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
}

@media screen and (max-width: 600px) {
    /* Modal Content */
    .modal-content {
      background-color: #fefefe;
      margin: auto;
      padding: 20px;
      border: 1px solid #888;
      width: 80%;
    }
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

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

/*.inputStyle{
  width:90%;
  /*border-radius: 5px;
  border:1px solid grey;
} */

input.inputStyle[type="text"], input.inputStyle[type="email"]{
    width:90%;
    line-height: 28px; 
}

.textareaStyle{
   width:90%;
   line-height: 28px; 
}

table {
  border-collapse: collapse;
  width:90%;
}

table, th, td {
  border: 1px solid #A9A9A9;
}
.modal2 {

  display: none; /* Hidden by default */

  position: fixed; /* Stay in place */

  z-index: 4000; /* Sit on top */

  padding-top: 20px; /* Location of the box */

  left: 0;

  top: 0;

  width: 100%; /* Full width */

  height: 100%; /* Full height */

  overflow: auto; /* Enable scroll if needed */

  background-color: rgb(0,0,0); /* Fallback color */

  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

}



/* Modal Content */

.modal-content2 {

  border-radius:10px;

  background-color: #fefefe;

  margin: auto;

  padding: 20px;

  border: 1px solid #888;

  width: 100%;

}



@media screen and (max-width: 600px) {

    /* Modal Content */

    .modal-content2 {

      background-color: #fefefe;

      margin: auto;

      padding: 20px;

      border: 1px solid #888;

      width: 80%;

    }

}



/* The Close Button */

.close2 {

  color: #aaaaaa;

  float: right;

  font-size: 28px;

  font-weight: bold;

}



.close2:hover,

.close2:focus {

  color: #000;

  text-decoration: none;

  cursor: pointer;

}
/*Project row. Same row divide*/
.p_row{
  display: flex;
}
/*Project column. Seperately*/
.p_col{
  width:25%;
  padding: 0 10px 0 10px;
  text-align: center;
  
}

/*Image size in column*/
.p_col img{
  width: 100%;
}

/*Display after column content*/
.vertical-line{
  border-left: 2px solid blue ;
  height: auto;
}
/*Text inside column*/
.p_col a{
  font-size :20px;
  color:black;
}
/*Url link inside column*/
.p_col .urls{
text-decoration: underline;
color:red;

}

@media only screen and (max-width: 768px) {
.p_row{
  display: block;
}

.p_col{
  width:100%;
  padding: 0 10px 0 10px;
  text-align: center;
}

.p_col a{
  font-size :17px;
  color:black;
}
}

