
.center_aligned{
    text-align: center;
}

/*personal styles*/
.personal_header{
    color: teal;
}
.college_degree{
    font-weight : bold;
}
.highschool_diploma{
    font-style :italic;
}
.certificate{
    text-decoration: underline;
}
.peronal_hyperlinks:hover {
    font-size: 150%
}
/*class schedule styles*/
tr{
    text-align: center;
}
.table_hide{
    background-color: white;
}

tr:nth-child(odd){
    background-color: #a3f55b;
}
th{
    background-color: #af8c4c;
    text-align: center;
}
ol{
    list-style-type: decimal;
}
ol > ol > li{
    list-style-type:upper-alpha;
}
/*create account styles*/
.radiobutton{
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

.radiobutton input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.radio_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
.radiobutton input:checked ~.radio_checkmark{
    background-color: green;
}
.radiobutton input:not(:checked) ~.radio_checkmark{
    background-color: grey;
}
.checkbox{
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
.checkbox input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
.checkbox input:checked ~ .checkmark {
    background-color: blue;
}
.checkbox input:not(:checked) ~ .checkmark{
    background-color: grey;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
.checkbox input:checked ~ .checkmark:after {
    display: block;
  }
.checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
/*Payment Processing page */
.payment_Header{
    color:blue;
}
.tooltip {
    position:relative;
    display: inline-block;
    
}
.tooltip:hover{
    border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    font-family: Arial, Helvetica, sans-serif
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }
  .button {
    background: none;
    border:none;
    cursor:pointer;
    padding: 20px;
  }
  #grid-container {
    width:50%;
    display:grid;
    grid-template-columns: auto auto;
  }
  #grid-container > div {
    text-align: left;
    padding: 5px
  }
  .creditCard{
    width: 100px;
  }
  .container {
    width: 200px;
    display:grid;
    grid-template-columns: auto;
  }