* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.blue-bordered-card {
    border: none;
    min-height: 250px;
}


.blue-bordered-card:hover, .blue-bordered-card:checked {
    border: 3px solid #6bcaba;
}

h3, h5 {
    color: #4f2a84;
}
.input-group .sky-border {
    border: none;
    background: transparent;
    border-bottom: 2px solid #4f2a84;
    border-radius: 0;
    padding-right: 3px;
}

.input-group .input-group-text{
    font-size: 25px;
    background: none;
    border: none;
    align-items: end;
    margin: 0px;
    padding: 0px;
    color: #4f2a84;
}
.input-group-text {
    padding-left: 2em;
  }
.button-submit-bmi {
    background: #4f2a84;
    color: white;
}
.button-submit-bmi:hover {
    color: white;
}

.activity > input{ /* HIDE RADIO */
    visibility: hidden; /* Makes input not-clickable */
    position: absolute; /* Remove input from document flow */
}
.activity > input:checked + div{ /* (RADIO CHECKED) DIV STYLES */
    border: 3px solid #4f2a84 !important;
}



/* class for modal */

.food-center-bmi {
    background-color: rgba(0, 0, 0, 0.568) !important;
    height: 100vh;
    width: 100vw;
}
.food-center-bmi h1{
    font-size: 60px;
}
.food-center-bmi p{
    font-size: 20px;
}
.protein-result {
    top: 10%;
}

.container-fluid {
    position: relative;
}
.centered {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}
@media screen and (max-width: 480px) {
    .centered {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -35%);
}
}