.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    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;
}
.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
.red-btn {
    border-radius: 50px;
    padding: 15px;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    border: none;
     transition: transform 300ms ease;
     display: flex;
}
.btn-primary {
    color: #ffffff;
    background-color: #c8102e;
    border-color: #960c22;
}

@media (min-width: 768px) {
    .red-btn {
        display: inline-block;
        min-width: 350px;
    }}
.btn > span:after {
  content: "";
  background: url(https://www.uh.edu/_images/_homepage/arrow-right-solid.svg) center center no-repeat;
  background-size: contain;
  display: inline-block;
  height: 16px;
  width: 30px;
  margin-left: 10px;
  margin-right: 5px;
  margin-bottom: -1px;
  transition: transform 300ms ease; /* Transition for transform property */
}

a:hover>span:after {
  transform: translateX(10px); /* Move the arrow 10px to the right on hover */
}
/*This is for table alignment*/
td.time{
    vertical-align: top;
}
/*this is for coloring the h3 only*/
td > h3{
    color:  #C8102E;
}
