html {
    height: 100%;
    overflow-x: hidden;
}

:-moz-any-link:focus {
    outline: none;
  }

.body-dark {
    background-color: rgb(50, 50, 50);
}

.body-light {
    background-color:  rgb(255, 255, 255);
}

.fade-in {
    margin-top: -1%;
    margin-left: -1%;
    margin-right: -1%;
    animation: fadeIn 8s;
    cursor: default;
    overflow: hidden;
    z-index: 2;
 }

.color-change {
    margin-top: -1%;
    margin-left: -1%;
    margin-right: -1%;
    cursor: default;
    overflow: hidden;
    animation: colorchange 360s infinite;
    -webkit-animation: colorchange 360s infinite;
    z-index: -1;
 }

 @keyframes colorchange {
      0%   {background: rgb(109, 189, 224);}
      12.5%  {background: plum;}
      25%  {background: rgb(139, 209, 139);}
      37.5%  {background: rgb(209, 139, 139);}
      50% {background: rgb(209, 199, 139);}
      62.5% {background: rgb(139, 209, 194);}
      75% {background: rgb(209, 171, 139);}
      87.5% {background: rgb(120, 120, 120);}
      100% {background: rgb(109, 189, 224);}
 }

@-webkit-keyframes colorchange {
        0%   {background: rgb(109, 189, 224);}
        12.5%  {background: plum;}
        25%  {background: rgb(139, 209, 139);}
        37.5%  {background: rgb(209, 139, 139);}
        50% {background: rgb(209, 199, 139);}
        62.5% {background: rgb(139, 209, 194);}
        75% {background: rgb(209, 171, 139);}
        87.5% {background: rgb(120, 120, 120);}
        100% {background: rgb(109, 189, 224);}
    }

@keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
}
    
.white-overlay {
        margin-top: -1%;
        margin-left: -1%;
        margin-right: -1%;
        cursor: default;
        overflow: hidden;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0.0), rgb(255, 255, 255));
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 1;
}

.dark-overlay {
        margin-top: -1%;
        margin-left: -1%;
        margin-right: -1%;
        cursor: default;
        overflow: hidden;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0.0), rgb(50, 50, 50));
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 1;
}

.header1 {
    margin-top: -5%;
    padding-top: 10%;
    text-align: center;
}

.DARK-MODE {
    width: 3%;
    float: right;
    font-size: 0.6vw;
    font-weight: bold;
    margin-top: 7%;
    margin-right: 26%;
    border: solid 1px rgb(0, 0, 0, 0.0);;
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
}

.DARK-MODE:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0, 0.1);
    transform: scale(1.2, 1.2);
}

.DARK-MODE:active {
    border: solid 1px rgb(0, 0, 0, 0.1);;
    background-color: rgb(0, 0, 0, 0.1);
    transform: scale(0.9, 0.9);
}

.logo {
    width: 25%;
    height: 25%;
}

.main1 {
    text-align: center;
    padding-top: 5%;
    padding-right: 25%;
    padding-left: 25%;
    font-family: Arial, Helvetica, sans-serif;
}

.slogan {
    font-size: 1vw;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.p1border {
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.10);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.p1 {
    font-size: 1vw;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.4);
    background: linear-gradient(rgba(95, 95, 95, 0.705), rgba(81, 130, 151, 0.904), rgba(0, 0, 0, 0.15));
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    padding-left: 15%;
    padding-right: 15%;
}

.p1-alt {
    font-size: 1vw;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.418);
    background: linear-gradient(rgba(178, 213, 236, 0.548), rgb(81, 130, 151), rgba(255, 255, 255, 0.479));
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    padding-left: 15%;
    padding-right: 15%;
}

.p2 {
    position:relative;
    padding-right: 20%;
    padding-left: 20%;
    font-size: 1vw;
    font-weight: bold;
    color: rgb(109, 189, 224);
    margin-top: 10%;
    padding-bottom: 5%;
    border-bottom: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.30), rgb(109, 189, 224), rgba(0, 0, 0, 0.30));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    cursor: default;
}

@keyframes animate {
    0% {
      background-position: -300%;
    }
    100% {
      background-position: 300%;
    }
}

#Input {
    margin-top: -2%;
    padding-top: 7%;
}

html {
    scroll-behavior: smooth;
}

.Premium {
    width: 15vw;
    height: 3vw;
    float: left;
    text-align: center;
    font-size: 1.1vw;
    font-weight: bold;
    padding-top: 0.6vw;
    padding-bottom: 0.6vw;
    margin-top: 6%;
    margin-left: 10vw;
    margin-bottom: 5.2vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgba(109, 140, 224, 0.555), rgb(109, 189, 224));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.Premium:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.Premium:active {
    border: solid 3px rgb(109, 189, 224);
    background: linear-gradient(90deg, rgba(109, 189, 224, 0.541), rgba(109, 140, 224, 0.719), rgba(109, 189, 224, 0.493));
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    transform: scale(0.9, 0.9);
}

.Premium2 {
    width: 15vw;
    height: 3vw;
    float: right;
    text-align: center;
    font-size: 1.1vw;
    font-weight: bold;
    padding-top: 0.6vw;
    padding-bottom: 0.6vw;
    margin-top: 6%;
    margin-right: 10vw;
    margin-bottom: 5.2vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgba(109, 140, 224, 0.555), rgb(109, 189, 224));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.Premium2:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.Premium2:active {
    border: solid 3px rgb(109, 189, 224);
    background: linear-gradient(90deg, rgba(109, 189, 224, 0.541), rgba(109, 140, 224, 0.719), rgba(109, 189, 224, 0.493));
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    transform: scale(0.9, 0.9);
}

.navbar {
    overflow: hidden;
    background-color: white;
    width: 50%;
    border-radius: 30px;
    text-align: center;
    float: none;
    margin-right: 0.5%;
    -webkit-transition: position 10s;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: position 10s;
    opacity: 0;
    z-index: 9;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1), 0 6px 20px 0 rgba(0,0,0,0.11);
}

.navbar2 {
    overflow: hidden;
    background-color: rgb(50, 50, 50);
    width: 50%;
    border-radius: 30px;
    text-align: center;
    float: none;
    margin-right: 0.5%;
    -webkit-transition: position 10s;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: position 10s;
    opacity: 0;
    z-index: 9;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1), 0 6px 20px 0 rgba(0,0,0,0.11);
}

.navbar_Input_page {
    border: solid 3px plum;
}

.navbar_BMI_page {
    border: solid 3px rgb(139, 209, 139);
}

.navbar_Macros_page {
    border: solid 3px rgb(209, 139, 139);
}

.navbar a {
    float: none;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    margin-top: 1%;
    margin-bottom: 1%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    text-align: center;
    font-weight: bold;
    padding: 0.4vh;
    padding-left: 0.4vh;
    padding-right: 0.4vh;
    margin-left: 1vh;
    margin-right: 1vh;
    text-decoration: none;
    z-index: 5;
}

.navbar2 a {
    float: none;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    margin-top: 1%;
    margin-bottom: 1%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    text-align: center;
    font-weight: bold;
    padding: 0.4vh;
    padding-left: 0.4vh;
    padding-right: 0.4vh;
    margin-left: 1vh;
    margin-right: 1vh;
    text-decoration: none;
    z-index: 5;
}

.Intro-Nav {
    border: solid 2px rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transition: 0.2s ease-in-out;
}

.Intro-Nav:hover {
    color: white;
    background-color: rgb(109, 189, 224);
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Intro-Nav:active {
    transform: scale(0.8, 0.8);
}

.Input-Nav {
    border: solid 2px plum;
    color: plum;
    transition: 0.2s ease-in-out;
}

.Input-Nav:hover {
    color: white;
    background-color: plum;
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Input-Nav:active {
    transform: scale(0.8, 0.8);
}

.BMI-Nav {
    border: solid 2px rgb(139, 209, 139);
    color: rgb(139, 209, 139);
    transition: 0.2s ease-in-out;
}

.BMI-Nav:hover {
    color: white;
    background-color: rgb(139, 209, 139);
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.BMI-Nav:active {
    transform: scale(0.8, 0.8);
}

.Macros-Nav {
    border: solid 2px rgb(209, 139, 139);
    color: rgb(209, 139, 139);
    transition: 0.2s ease-in-out;
}

.Macros-Nav:hover {
    color: white;
    background-color: rgb(209, 139, 139);
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Macros-Nav:active {
    transform: scale(0.8, 0.8);
}

.Lipids-Nav {
    border: solid 2px rgb(209, 199, 139);
    color: rgb(209, 199, 139);
    transition: 0.2s ease-in-out;
}

.Lipids-Nav:hover {
    color: white;
    background-color: rgb(209, 199, 139);
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Lipids-Nav:active {
    transform: scale(0.8, 0.8);
}

.Vites-Nav {
    border: solid 2px rgb(139, 209, 194);
    color: rgb(139, 209, 194);
    transition: 0.2s ease-in-out;
}

.Vites-Nav:hover {
    color: white;
    background-color: rgb(139, 209, 194);
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Vites-Nav:active {
    transform: scale(0.8, 0.8);
}

.Minerals-Nav {
    border: solid 2px rgb(209, 171, 139);
    color: rgb(209, 171, 139);
    transition: 0.2s ease-in-out;
}

.Minerals-Nav:hover {
    color: white;
    background-color: rgb(209, 171, 139);
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Minerals-Nav:active {
    transform: scale(0.8, 0.8);
}

.Dietitian-Nav {
    border: solid 2px rgb(120, 120, 120);
    color: rgb(120, 120, 120);
    transition: 0.2s ease-in-out;
}

.Dietitian-Nav:hover {
    color: white;
    background-color: rgb(120, 120, 120);
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Dietitian-Nav:active {
    transform: scale(0.8, 0.8);
}

.Edu-Nav {
    border: solid 2px rgb(160, 139, 209);
    color: rgb(160, 139, 209);
    transition: 0.2s ease-in-out;
}

.Edu-Nav:hover {
    color: white;
    background-color: rgb(160, 139, 209);
    transform: scale(0.9, 0.9);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Edu-Nav:active {
    transform: scale(0.8, 0.8);
}

.Color-Nav {
    margin-left: -0.2vw;
    margin-bottom: -0.65vw;
    width: 1.7vw;
    height: 1.7vw;
    transition: 0.2s ease-in-out;
}

.Color-Nav:hover {
    transform: scale(0.9, 0.9);
    cursor: pointer;
}

.Mute-Nav {
    margin-left: -0.2vw;
    margin-bottom: -0.65vw;
    width: 1.7vw;
    height: 1.7vw;
    transition: 0.2s ease-in-out;
}

.Mute-Nav:hover {
    transform: scale(0.9, 0.9);
    cursor: pointer;
}

.Mute-Nav2 {
    border-radius: 50%;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    z-index: 3;
    margin-bottom: -8vw;
    margin-left: 28vw;
    width: 1.7vw;
    height: 1.7vw;
    transition: 0.2s ease-in-out;
}

.Mute-Nav2:hover {
    transform: scale(1.1, 1.1);
}

.Mute-Nav2a {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    z-index: 3;
    margin-bottom: -8vw;
    margin-left: 28vw;
    width: 1.7vw;
    height: 1.7vw;
    transition: 0.2s ease-in-out;
}

.Mute-Nav2a:hover {
    transform: scale(1.1, 1.1);
}

.navbar-content {
    padding: 16px;
}

.sticky {
    position: fixed;
    top: 0;
    animation: smoothScroll 2s forwards;
    right: 25%;
    opacity: 1;
    z-index: 9;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-5vh);
	}
	100% {
		transform: translateY(-10%);
	}
}

.sticky + .content {
    padding-top: 60px;
}

.sticky2 {
    position: fixed;
    top: 0;
    animation: smoothScroll 2s forwards;
    opacity: 1;
    z-index: 9;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-5vh);
	}
	100% {
		transform: translateY(-10%);
	}
}

.calculatorapp {
    position: fixed;
    bottom: 0;
    text-align: center;
    background-color: white;
    border-radius: 50%;
    border: 3px solid rgb(50, 50, 50);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    z-index: 3;
    margin-left: 0.5%;
    margin-bottom: 0.8%;
    width: 3.5vw;
    height: 3.5vw;
    transition: 0.2s ease-in-out;
    opacity: 0;
    z-index: 5;
    cursor: pointer;
}

.calculatorapp:hover {
    transform: scale(1.2, 1.2);
    border: 3px solid rgb(109, 189, 224);
}

.calculatorapp:active {
    transform: scale(0.9, 0.9);
    border: 3px solid rgb(109, 189, 224);
}

.calculatorapp2 {
    position: fixed;
    bottom: 0;
    text-align: center;
    background-color: rgb(50, 50, 50);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    z-index: 3;
    margin-left: 0.5%;
    margin-bottom: 0.8%;
    width: 3.5vw;
    height: 3.5vw;
    transition: 0.2s ease-in-out;
    opacity: 0;
    z-index: 5;
    cursor: pointer;
}

.calculatorapp2:hover {
    transform: scale(1.2, 1.2);
    border: 3px solid rgb(109, 189, 224);
}

.calculatorapp2:active {
    transform: scale(0.9, 0.9);
    border: 3px solid rgb(109, 189, 224);
}

.calculator {
    position: fixed;
    top: 0;
    margin-left: 0.8%;
    margin-top: 15%;
    width:15%;
    height:35%;
    border-radius: 15px;
    padding-left:5px;
    padding-bottom:5px;
    transition: 0.3s;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    background-color:  rgb(200, 200, 200);
    border:2px solid rgb(120, 120, 120);
    display: none;
}

.calculator:hover {
    transform: scale(1.1, 1.1);
    border:2px solid rgb(109, 189, 224);
}

.calculator2 {
    position: fixed;
    top: 0;
    margin-left: 0.8%;
    margin-top: 15%;
    width:15%;
    height:35%;
    border-radius: 15px;
    padding-left:5px;
    padding-bottom:5px;
    transition: 0.3s;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    background-color: rgb(40, 40, 40);
    border:2px solid white;
    display: none;
}

.calculator2:hover {
    transform: scale(1.1, 1.1);
    border:2px solid rgb(109, 189, 224);
}

.calculator td
{
        height:16.66%;
}

.calculator td input
{
    background-color: white;
    border:2px solid white;
    color: rgb(50, 50, 50);
}

.calculator2 td
{
        height:16.66%;
}

.calculator2 td input
{
    background-color: rgb(50, 50, 50);
    border:2px solid rgb(50, 50, 50); 
    color: white;
}

.calc_td_result
{
        text-align:center;
}

.calc_result
{
        background-color: transparent;
        width:90%;
        height: 70%;
        text-align:right;
        padding-right: 5%;
        font-size: 20px;
        border: 2px solid rgb(50, 50, 50);
        border-radius: 10px;
        transition: 0.3s;
        color: black;
}

.calc_result:hover {
    border: 2px solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
}

.calc_result2
{
        background-color: transparent;
        width:90%;
        height: 70%;
        text-align:right;
        padding-right: 5%;
        font-size: 20px;
        border: 2px solid white;
        border-radius: 10px;
        transition: 0.3s;
        color: white;
}

.calc_result2:hover {
    border: 2px solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
}

.calc_td_calculs
{
        text-align:center;
}
.calc_calculs
{
        width:90%;
        text-align:left;
}
.calc_td_btn
{
        width:25%;
        height:100%;
}
.calc_btn
{
        background-color: transparent;
        width:90%;
        height:90%;
        font-size:20px;
        border: 2px solid rgb(50, 50, 50);
        border-radius: 10px;
        transition: 0.3s;
        color: black;
}

.calc_btn:hover {
    border: 2px solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
}

.calculatorappimg {
    margin-right: 3%;
    margin-left: 4%;
    margin-top: 5%;
    margin-bottom: 1%;
}

.input-data1 {
    width: 50%;
    margin-top: 15%;
    margin-right: 25%;
    margin-left: 25%;
    cursor: default;
    position: static;
    z-index: 1;
}

.Reset-Btn {
    margin-right: 40%;
    margin-left: 45%;
    margin-bottom: 5%;
    font-size: 1vw;
    border-style: solid;
    border-color: plum;
    border-width: 2px;
    border-radius: 20px;
    width: 5vw;
    color: plum;
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.Reset-Btn:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.div1 {
    width: 50%;
    float: left;
}

.div2 {
    margin-left: 50%;
}

.input-data2 {
    font-size: 3.5vw;
    color: plum;
    margin-top: 10%;
    margin-bottom: 20%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
}

.input-data2:hover {
    text-shadow: 8px 5px rgba(0,0,0,0.12), 12px 8px rgba(0,0,0,0.03);
    z-index: 0.8;
    transition: text-shadow 0.15s ease-in-out;
}

.input-data3 {
    margin-top: 26%;
    font-size: 1.75vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.input-data4 {
    margin-top: 44%;
    font-size: 1.75vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.input-data4b {
    margin-left: 5%;
}

.PreggersBtn {
    font-size: 1vw;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border: 6px plum;
    border-radius: 50%;
    background-color: plum;
}

.PreggersBtn:hover {
    font-size: 1vw;
    font-family: Arial, Helvetica, sans-serif;
    color: plum;
    border: 6px plum;
    border-radius: 50%;
    background-color: rgb(109, 189, 224);
}

.Male {
    font-size: 1.75vw;
    border-style: solid;
    border-color: plum;
    border-width: 2px;
    width: 9vw;
    color: plum;
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.Female {
    font-size: 1.75vw;
    border-style: solid;
    border-color: plum;
    border-width: 2px;
    width: 9vw;
    color: plum;
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.Male:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Female:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Male2 {
    font-size: 1.75vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 9vw;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.Female2 {
    font-size: 1.75vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 9vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.MetersBtn {
    font-size: 1vw;
    height: 1.3vw;
    width: 2vw;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border: 6px plum;
    border-radius: 50%;
    background-color: plum;
    margin-top: -5%;
    cursor: pointer;
}

.MetersBtn:hover {
    font-size: 1vw;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border: 6px plum;
    border-radius: 50%;
    background-color: rgb(109, 189, 224);
}

.InchInput2 {
    margin-left: -1.2vw;
}

.KgBtn {
    font-size: 1vw;
    height: 1.3vw;
    width: 2vw;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border: 6px plum;
    border-radius: 50%;
    background-color: plum;
    cursor: pointer;
}

.KgBtn:hover {
    font-size: 1vw;
    font-family: Arial, Helvetica, sans-serif;
    color: plum;
    border: 6px plum;
    border-radius: 50%;
    background-color: rgb(109, 189, 224);
}

.input-name {
    font-size: 1.75vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.input-name:hover {
    border-color: rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transition: .215s ease-in-out;
}

.input-name:focus {
    border-color: rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transition: .15s ease-in-out;
}

.input-sub1 {
    margin-top: -6%;
    margin-bottom: 2%;
    margin-left: 5%;
}

.input-name2 {
    margin-top: -8%;
    font-size: 1.75vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.input-name input{
    font-size: 3.5vw;
    color:  plum;
    text-align: center;
    width: 35%;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid  plum;
    border-width: 2px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}

.input-name3 {
    font-size: 1.75vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.input-name4 {
    font-size: 1.5vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    padding-inline-start: 1.2vw;
    word-spacing: 2.5vw;

}

.input-name5 {
    font-size: 1.5vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.input-name6 {
    margin-top: 25%;
    font-size: 1.75vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin-left: 4.5vw;
    margin-right: 4.5vw;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.input-name7 {
    margin-top: 25.5%;
    font-size: 1.75vw;
    color: plum;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.inputLBname1 {
    float: left;
    margin-left: 4.8vw;
}

.InputLBName2 {
    float: right;
    margin-right: 4.8vw;
}

.Yes-Button {
    font-size: 1.75vw;
    border-style: solid;
    border-color: plum;
    border-width: 2px;
    width: 9vw;
    color: plum;
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    margin-top: 8%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.No-Button {
    font-size: 1.75vw;
    border-style: solid;
    border-color: plum;
    border-width: 2px;
    width: 9vw;
    color: plum;
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 8%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.Yes-Button:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.No-Button:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Yes-Button2 {
    font-size: 1.75vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 9vw;
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    margin-top: 8%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.No-Button2 {
    font-size: 1.75vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 9vw;
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    margin-top: 8%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.Activity-Level-Button {
    font-size: 1.75vw;
    border-style: solid;
    border-color: plum;
    border-width: 2px;
    width: 20vw;
    color: plum;
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    float: center;
    cursor: pointer;
    margin-top: 15%;
    margin-right: 10%;
    margin-left: 10%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.Activity-Container {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    margin-left: 1.5%;
    font-size: 1vw;
    width: 20vw;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 18vw;
    margin-right: 10%;
    margin-left: 10%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content p {
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(0, 0, 0, 0.60);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    font-weight: bold;
}

.dropdown-content p:hover {
    background-color: plum;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.dropdown-content2 {
    margin-left: 1.5%;
    font-size: 1vw;
    width: 20vw;
    display: none;
    position: absolute;
    background-color: rgb(50, 50, 50);
    min-width: 18vw;
    margin-right: 10%;
    margin-left: 10%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content2 p {
    font-family: Arial, Helvetica, sans-serif;
    color: plum;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    font-weight: bold;
}

.dropdown-content2 p:hover {
    background-color: plum;
    color: rgb(50, 50, 50);
    font-weight: bold;
    cursor: pointer;
}

.Activity-Level-Button:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Activity-Text {
    text-align: center;
}

.Activity-Container:hover .dropdown-content {
    display: block;
    animation: fadeIn 1.5s;
}

.Activity-Container:hover .dropdown-content2 {
    display: block;
    animation: fadeIn 1.5s;
}

.Activity-Level:hover .dropbtn {
    background-color: white;
}

.Calculate-Button {
    font-size: 2.75vw;
    border-style: solid;
    border-color: plum;
    border-width: 2px;
    border-radius: 5px;
    width: 40%;
    height: 8vw;
    color: plum;
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-top: 20%;
    margin-left: 30%;
    margin-right: 30%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    display: inline-block;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Calculate-Button::after {
    font-size: 2.75vw;
    border-style: solid;
    border-color: plum;
    border-width: 2px;
    border-radius: 5px;
    width: 40%;
    height: 8vw;
    color: rgb(255, 255, 255, 0.0);
    background-color: plum;
    opacity: 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-top: 20%;
    margin-left: 30%;
    margin-right: 30%;
    transition: 0.6s;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    display: inline-block;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Calculate-Button:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

  .Calculate-Button:hover::after {
    opacity: 1;
  }

  .Calculate-Button:active {
    transform: scale(0.9, 0.9);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Calculate-Button2 {
    font-size: 2.75vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    border-radius: 5px;
    width: 40%;
    height: 8vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-top: 20%;
    margin-left: 30%;
    margin-right: 30%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    transition: all 0.3s ease-in-out;
}


/* END INPUT DATA SECTION */



.BMI-Title {
    margin-left: 8%;
    margin-top: 25%;
    margin-right: 8%;
    padding-top: 20%;
    padding-bottom: 10%;
    border-top: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    font-size: 3.5vw;
    color: rgb(139, 209, 139);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
}

.BMI-DIV {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(139, 209, 139);
    height: 20%;
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10%;
    padding-bottom: 5%;
    color: rgb(139, 209, 139);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.BMI-Note {
    margin-left: 14%;
    margin-right: 14%;
    font-size: 0.6vw;
}

.BMI-DIV2 {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(139, 209, 139);
    height: 20%;
    margin-top: 20%;
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10%;
    padding-bottom: 5%;
    color: rgb(139, 209, 139);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.BMI-Top {
    float: none;
    font-size: 1.8vw;
    margin-left: 7vw;
}

.BMI-Title1 {
    text-align: left;
    font-size: 1.75vw;
}

.BMI-P2 {
    text-align: right;
    font-size: 1.75vw;
    float: right
}

.BMI-Title2 {
    text-align: left;
    font-size: 1.75vw;
}

.BMI-P3 {
    text-align: right;
    font-size: 1.75vw;
    float: right
}

.BMI-Weight {
    font-size: 1vw;
    text-align: left
}

.BMI-Weight2 {
    font-size: 1vw;
    float: right
}

.BMI-CDC {
    color: rgb(139, 209, 139);
    margin-left: 5%;
    font-size: 0.8vw;
}

.BMI-Descrip1 {
    font-size: 0.8vw;
    text-align: left;
    margin-left: 10%;
}

.BMI-Descrip2 {
    font-size: 1.5vw;
    margin-left: 43%;
}

.BMI-Descrip3 {
    font-size: 0.8vw;
    text-align: left;
    margin-left: 10%;
}

.BMI-Descrip4 {
    font-size: 1.5vw;
    margin-left: 43%;
}

.BMI-Descrip5 {
    font-size: 0.8vw;
    text-align: left;
    margin-left: 10%;
}

.BMI-Descrip6 {
    margin-left: 3vw;
}

.BMI-Descrip7 {
    font-size: 1.5vw;
    margin-left: 43%;
}

.BMI-Descrip8 {
    font-size: 0.8vw;
    text-align: left;
    margin-left: 10%;
}

.BMI-Descrip9 {
    font-size: 0.8vw;
    text-align: left;
    margin-left: 10%;
}


/* END BMI SECTION */


.Macros-Title {
    margin-left: 5%;
    margin-top: 25%;
    margin-right: 5%;
    padding-top: 20%;
    padding-bottom: 10%;
    border-top: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    font-size: 3.5vw;
    color: rgb(209, 139, 139);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
}

.Macros-Title:hover {
    text-shadow: 8px 5px rgba(0,0,0,0.12), 12px 8px rgba(0,0,0,0.03);
    z-index: 0.8;
    transition: text-shadow 0.15s ease-in-out;
}

.Macros-DIV {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(209, 139, 139);
    height: 20%;
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
    color: rgb(209, 139, 139);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Macros-Top {
    float: none;
    font-size: 1.8vw;
    margin-left: 28%;
    margin-bottom: -3%;
}

.Macros-Top2 {
    font-size: 1.1vw;
    word-spacing: 2.4vw;
    margin-left: 2.6vw;
}

.Macros-Guide {
    padding-left: 5vw;
    margin-right: 5vw;
}

.Macros-Guide1 {
    font-size: 0.9vw;
    text-align: left;
    text-decoration: underline;
}

.Macros-Guide2 {
    font-size: 0.6vw;
    float: right;
}

.Macros-Guide3 {
    font-size: 0.9vw;
    float: right;
    text-decoration: underline;
}

.Macros-Guide4 {
    font-size: 0.9vw;
    text-align: left;
    text-decoration: underline;
    width: 10vw;
}

.Macros-Guide5 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Guide6 {
    font-size: 0.9vw;
    float: right;
    text-decoration: underline;
}

.Macros-Guide7 {
    font-size: 0.9vw;
    text-align: left;
    text-decoration: none;
}

.Macros-Guide8 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Guide9 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Guide10 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Guide11 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Guide12 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Description {
    font-size: 1.1vw;
    margin-left: 10vw;
}

.Macros-Input {
    font-size: 1.4vw;
    color:  rgb(209, 139, 139);
    text-align: center;
    width: 3.3vw;
    margin-left: 2.3vw;
    padding: 0.5vw;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid  rgb(209, 139, 139);
    border-width: 2px;
}

.Macros-Input:hover {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .215s ease-in-out;
}

.Macros-Input:focus {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .15s ease-in-out;
}

.MacroValid {
    margin-top: 5.5%;
    margin-right: 4.5%;
    text-align: center;
}

.MacroValid {
    margin-top: 5.5%;
    margin-right: 4.5%;
    text-align: center;
}

.Add-Hover:hover {
    color: rgb(109, 189, 224);
    transition: .3s ease-in;
}

.Macros-Percent {
    font-size: 1vw;
    color:  rgb(209, 139, 139);
    text-align: center;
    margin-top: 1vw;
    border: none;
    outline: none;
    background: none;
}

.Macro-Button {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(209, 139, 139);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-top: 10%;
    margin-left: 15%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    display: inline-block;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Macro-Button::after {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(209, 139, 139);
    background-color: rgb(255, 255, 255, 0.0);
    opacity: 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-top: 10%;
    margin-left: 15%;
    transition: 0.6s;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    display: inline-block;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Macro-Button:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

  .Macro-Button:hover::after {
    opacity: 1;
  }

  .Macro-Button:active {
    transform: scale(0.8, 0.8);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(209, 139, 139);
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Macro-Top3 {
    font-size: 1.1vw;
}


.Sup {
    font-size: 0.6vw;
}

.Adj-Button {
    float: left;
    font-size: 0.7vw;
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-width: 2px;
    border-radius: 5px;
    width: 6vw;
    height: 4.5vw;
    color: rgb(209, 139, 139);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 5%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Adj-Button2 {
    float: left;
    font-size: 0.7vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    border-radius: 5px;
    width: 6vw;
    height: 4.5vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 5%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Adj-Button:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

.Adj-Button2:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

  .UBW-Button {
    float: left;
    font-size: 0.7vw;
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-width: 2px;
    border-radius: 5px;
    width: 6vw;
    height: 4.5vw;
    color: rgb(209, 139, 139);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: -18%;
    margin-top: 20%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.UBW-Button2 {
    float: left;
    font-size: 0.7vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    border-radius: 5px;
    width: 6vw;
    height: 4.5vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: -18%;
    margin-top: 20%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.UBW-Button:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

.UBW-Button2:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

.Phys-Button {
    float: right;
    font-size: 0.7vw;
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-width: 2px;
    border-radius: 5px;
    width: 6vw;
    height: 4.5vw;
    color: rgb(209, 139, 139);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 5%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Phys-Button2 {
    float: right;
    font-size: 0.7vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    border-radius: 5px;
    width: 6vw;
    height: 4.5vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 5%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Phys-Button:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Phys-Button2:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.DBW-Button {
    float: right;
    font-size: 0.7vw;
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-width: 2px;
    border-radius: 5px;
    width: 6vw;
    height: 4.5vw;
    color: rgb(209, 139, 139);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: -18%;
    margin-top: 20%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.DBW-Button2 {
    float: right;
    font-size: 0.7vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    border-radius: 5px;
    width: 6vw;
    height: 4.5vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: -18%;
    margin-top: 20%;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.DBW-Button:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.DBW-Button2:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.MacroValid {
    float: bottom;
    font-weight: 0.8vw;
    margin-left: 40%;
}

.Macro-Button2 {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-left: 38%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.Macros-Maximum {
    font-size: 0.9vw;
    float: right;
}

.Macros-Median {
    font-size: 0.9vw;
    float: right;
}

.Macros-Minimum {
    font-size: 0.9vw;
    float: right;
}

.Macros-Left {
    font-size: 0.9vw;
    font-weight: bold;
    text-align: left;
}

.Cal-Align {
    margin-right: 10%;
}

.Cal-Align4 {
    margin-right: 9%;
}

.Pro-Align {
    margin-right: 16%;
}

.Carb-Align {
    margin-right: 14.5%;
}

.Lip-Align {
    margin-right: 16%;
}

.Fib-Align {
    margin-right: 14.5%;
}

.Flu-Align {
    margin-right: 16.5%;
}

.Macro-Note {
    margin-left: 14%;
    margin-right: 14%;
    font-size: 0.6vw;
}

.Macro-Note2 {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 0.6vw;
    color: rgb(209, 139, 139);
}

.Macros-DIV4 {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(209, 139, 139);
    height: 20%;
    margin-top: 20%;
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
    color: rgb(209, 139, 139);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Macros-DIV2 {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(209, 139, 139);
    height: 20%;
    margin-top: 20%;
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
    color: rgb(209, 139, 139);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.InTextAlignment {
    margin-left: 10%;
}

.Macros-Top3 {
    float: none;
    font-size: 1.8vw;
    margin-left: 24%;
    margin-bottom: -3%;
}

.Protein-Descrip {
    font-size: 0.8vw;
    margin-left: 7%;
    margin-right: 7%;
}

.MeanReqs {
    font-size: 1vw;
    margin-left: 1vw;
}

.Macros-Pro-Adjust1 {
    font-size: 1.4vw;
    text-align: left;
    margin-left: 7%;
}

.Macros-Pro-Adjust2 {
    font-size: 0.9vw;
    text-align: left;
}

.Macros-Pro-Adjust3 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Top4a {
    font-size: 0.8vw;
    margin-left: 4%;
    margin-bottom: -3%;
}

.Macros-Top4b {
    font-size: 0.8vw;
    margin-left: 14%;
    margin-bottom: -3%;
}

.Macros-Top4c {
    font-size: 0.8vw;
    margin-left: 7%;
    margin-bottom: -3%;
}

.Macros-Top4d {
    font-size: 0.8vw;
    margin-left: 7%;
    margin-bottom: -3%;
}

.Macros-Top4 {
    font-size: 1.1vw;
    margin-bottom: -3%;
}

.Macros-Description3 {
    font-size: 1.1vw;
    margin-left: 10vw;
}

.Macros-Input3 {
    font-size: 1.4vw;
    color:  rgb(209, 139, 139);
    text-align: center;
    width: 3.3vw;
    padding: 0.5vw;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid  rgb(209, 139, 139);
    border-width: 2px;
}

.Macros-Input3:hover {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .215s ease-in-out;
}

.Macros-Input3:focus {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .15s ease-in-out;
}

.Macros-Percent3 {
    font-size: 1vw;
    color:  rgb(209, 139, 139);
    text-align: center;
    margin-top: 1vw;
    border: none;
    outline: none;
    background: none;
}

.Macro-Button3 {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(209, 139, 139);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-left: 38%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    display: inline-block;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Macro-Button3::after {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(209, 139, 139);
    background-color: rgb(255, 255, 255, 0.0);
    opacity: 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-left: 38%;
    transition: 0.6s;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    display: inline-block;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Macro-Button3:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

  .Macro-Button3:hover::after {
    opacity: 1;
  }

  .Macro-Button3:active {
    transform: scale(0.8, 0.8);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(209, 139, 139);
    border-style: solid;
    border-color: rgb(209, 139, 139);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Macro-Button32 {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-left: 38%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.ProClpsBtn {
    padding: 0.1vw;
    font-size: 0.5vw;
    border-radius: 50%;
    background-color: rgb(255, 255, 255, 0.0);
    color: rgb(209, 139, 139);
}















/* END MACROS SECTION */


.Lipids-Title {
    margin-left: 20%;
    margin-top: 25%;
    margin-right: 20%;
    padding-top: 20%;
    padding-bottom: 10%;
    border-top: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    font-size: 3.5vw;
    color: rgb(209, 199, 139);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
}

.Lipids-Title:hover {
    text-shadow: 8px 5px rgba(0,0,0,0.12), 12px 8px rgba(0,0,0,0.03);
    z-index: 0.8;
    transition: text-shadow 0.15s ease-in-out;
}

.Lipids-DIV {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(209, 199, 139);
    height: 20%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10%;
    padding-bottom: 5%;
    color: rgb(167, 158, 113);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1vw;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Lipid-Note {
    margin-left: 6%;
    margin-right: 5%;
    font-size: 0.6vw;
    color: rgb(167, 158, 113);
}

.LipText {
    font-size: 1vw;
    float: right
}

.LipLeft {
    font-size: 1vw;
    text-align: left
}

.LipRight {
    font-size: 1vw;
    float: right
}

/* END LIPIDS SECTION */



.Vites-Title {
    margin-top: 23%;
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 20%;
    padding-bottom: 10%;
    border-top: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    font-size: 3.5vw;
    color: rgb(139, 209, 194);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
}

.Add-Hover2:hover {
    color: rgb(109, 140, 224);
    transition: .3s ease-in;
}

.Vites-Title:hover {
    text-shadow: 8px 5px rgba(0,0,0,0.12), 12px 8px rgba(0,0,0,0.03);
    z-index: 0.8;
    transition: text-shadow 0.15s ease-in-out;
}

.Vites-DIV {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(139, 209, 194);
    height: 20%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10%;
    padding-bottom: 5%;
    color: rgb(139, 209, 194);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Vit-Note {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 0.6vw;
    color: rgb(139, 209, 194);
}

.ViteAlign1 {
    margin-left: 25%;
    font-size: 0.6vw;
}

.ViteAlign2 {
    margin-left: 15%;
    font-size: 0.6vw;
}

/* END VITES SECTION */



.Minerals-Title {
    margin-left: 5%;
    margin-top: 25%;
    margin-right: 5%;
    padding-top: 20%;
    padding-bottom: 10%;
    border-top: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    font-size: 3.5vw;
    color: rgb(209, 171, 139);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
}

.Minerals-Title:hover {
    text-shadow: 8px 5px rgba(0,0,0,0.12), 12px 8px rgba(0,0,0,0.03);
    z-index: 0.8;
    transition: text-shadow 0.15s ease-in-out;
}

.Minerals-DIV {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(209, 171, 139);
    height: 20%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10%;
    padding-bottom: 5%;
    color: rgb(209, 171, 139);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Min-Note {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 0.6vw;
    color: rgb(209, 171, 139);
}



/* END MINERALS SECTION */



.Dietitian-Title {
    margin-left: 15%;
    margin-top: 25%;
    margin-right: 15%;
    padding-top: 20%;
    padding-bottom: 10%;
    border-top: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    font-size: 3.5vw;
    color: rgb(120, 120, 120);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
}

.Dietitian-Title2 {
    margin-left: 15%;
    margin-top: 25%;
    margin-right: 15%;
    padding-top: 20%;
    padding-bottom: 10%;
    border-top: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    font-size: 3.5vw;
    color: rgb(180, 180, 180);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
}

.Dietitian-Title:hover {
    text-shadow: 8px 5px rgba(0,0,0,0.12), 12px 8px rgba(0,0,0,0.03);
    z-index: 0.8;
    transition: text-shadow 0.15s ease-in-out;
}

.Dietitian-DIV {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(120, 120, 120);
    height: 20%;
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
    color: rgb(120, 120, 120);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Dietitian-DIV2 {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: rgb(120, 120, 120);
    height: 20%;
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
    color: rgb(180, 180, 180);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Diet-TopA {
    float: none;
    font-size: 1.1vw;
    margin-left: 10%;
    margin-bottom: -3%;
}

.Diet-TopA1 {
    float: none;
    font-size: 1.8vw;
    margin-left: 30%;
    margin-bottom: -3%;
}

.Diet-TopA2 {
    float: none;
    font-size: 1.1vw;
    margin-left: 20%;
    margin-bottom: -3%;
}

.Diet-TopB {
    float: none;
    font-size: 1.1vw;
    margin-left: 10%;
    margin-bottom: -3%;
}

.Diet-TopC {
    float: none;
    font-size: 1.1vw;
    margin-left: 10%;
    margin-bottom: -3%;
}

.Diet-TopD {
    float: none;
    font-size: 1.1vw;
    margin-left: 10%;
    margin-bottom: -3%;
}

.DietText1 {
    font-size: 0.8vw;
    text-align: left;
    margin-left: 10%;
    margin-right: 10%;
}

.DietOutput1 {
    font-size: 1.5vw;
    margin-left: 40%;
}

.DietOutput2 {
    font-size: 1.5vw;
    margin-left: 44%;
}

.DietOutput3 {
    font-size: 1.5vw;
    margin-left: 39%;
}

.UBW-Inputs {
    font-size: 1.4vw;
    color:  rgb(120, 120, 120);
    text-align: center;
    width: 3.68vw;
    margin-left: 6.5vw;
    padding: 0.5vw;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid  rgb(120, 120, 120);
    border-width: 2px;
}

.UBW-Inputs:hover {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .215s ease-in-out;
}

.UBW-Inputs:focus {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .15s ease-in-out;
}

.UBW-Measurements {
    font-size: 1vw;
    text-align: center;
    margin-top: 1vw;
    margin-left: 0.6vw;
    border: none;
    outline: none;
    background: none;
}

.UBW-Measurements2 {
    font-size: 1.1vw;
    text-align: center;
    margin-top: 1vw;
    margin-left: 40%;
    border: none;
    outline: none;
    background: none;
}

.UBW-Top {
    float: none;
    font-size: 1.1vw;
    margin-left: 15%;
    margin-bottom: -3%;
}

.UBW-Top2 {
    float: none;
    font-size: 1.1vw;
    margin-left: 12%;
    margin-bottom: -3%;
}

.DietMale {
    font-size: 1.75vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    width: 9vw;
    margin-left: 20%;
    margin-right: 5%;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.DietFemale {
    font-size: 1.75vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    width: 9vw;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.DietMale:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.DietFemale:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.DietMale2 {
    font-size: 1.75vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 9vw;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.DietFemale2 {
    font-size: 1.75vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 9vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.ObesityBtn {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    width: 7vw;
    margin-left: 18%;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.TraumaBtn {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    width: 7vw;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.BurnsBtn {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    width: 7vw;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.ObesityBtn:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.TraumaBtn:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.BurnsBtn:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.ObesityBtn2 {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 7vw;
    margin-left: 18%;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.TraumaBtn2 {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 7vw;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.BurnsBtn2 {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    width: 7vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.IJECalc {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    margin-left: 39%;
    width: 7vw;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.IJECalc:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.IJECalc:active {
    transform: scale(0.9, 0.9);
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    margin-left: 39%;
    width: 7vw;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.IJECalc2 {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    margin-left: 39%;
    width: 7vw;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.UBW-Measurements3 {
    font-size: 1vw;
    text-align: center;
    margin-top: 1vw;
    margin-left: 31%;
    border: none;
    outline: none;
    background: none;
}

.UBW-Measurements4 {
    font-size: 1vw;
    text-align: center;
    margin-top: 1vw;
    margin-left: 32%;
    border: none;
    outline: none;
    background: none;
}

.UBW-Measurements5 {
    font-size: 1vw;
    text-align: center;
    margin-top: 1vw;
    margin-left: 25%;
    border: none;
    outline: none;
    background: none;
}

.FWD-Inputs {
    font-size: 1.4vw;
    color:  rgb(120, 120, 120);
    text-align: center;
    width: 3.68vw;
    margin-left: 14vw;
    padding: 0.5vw;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid  rgb(120, 120, 120);
    border-width: 2px;
}

.FWD-Inputs:hover {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .215s ease-in-out;
}

.FWD-Inputs:focus {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .15s ease-in-out;
}

.FWD-Measurements {
    font-size: 1vw;
    text-align: center;
    margin-top: 1vw;
    margin-left: 0.6vw;
    border: none;
    outline: none;
    background: none;
}

.FWDCalc {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    margin-left: 38%;
    width: 7vw;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.FWDCalc:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.FWDCalc:active {
    transform: scale(0.9, 0.9);
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    margin-left: 38%;
    width: 7vw;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.FWDCalc2 {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    margin-left: 38%;
    width: 7vw;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.Macros-Top22 {
    font-size: 1.1vw;
    word-spacing: 2.4vw;
    margin-left: 2.6vw;
}

.Macros-Description2 {
    font-size: 1.1vw;
    margin-left: 10vw;
}

.Macros-Input2 {
    font-size: 1.4vw;
    color:  rgb(120, 120, 120);
    text-align: center;
    width: 3.3vw;
    margin-left: 2.3vw;
    padding: 0.5vw;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid  rgb(120, 120, 120);
    border-width: 2px;
}

.Macros-Input2:hover {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .215s ease-in-out;
}

.Macros-Input2:focus {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .15s ease-in-out;
}

.Macros-Percent2 {
    font-size: 1vw;
    color:  rgb(120, 120, 120);
    text-align: center;
    margin-top: 1vw;
    border: none;
    outline: none;
    background: none;
}

.Macro-Button22 {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-left: 38%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    display: inline-block;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Macro-Button22::after {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    opacity: 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-left: 38%;
    transition: 0.6s;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    display: inline-block;
    outline: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.Macro-Button22:hover {
    transform: scale(1.05, 1.05);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }

  .Macro-Button22:hover::after {
    opacity: 1;
  }

  .Macro-Button22:active {
    transform: scale(0.8, 0.8);
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(120, 120, 120);
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-radius: 5px;
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Macro-Button23 {
    font-size: 1.3vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    border-radius: 5px;
    width: 9vw;
    height: 5vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    margin-left: 38%;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.Macros-Maximum2 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Median2 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Minimum2 {
    font-size: 0.9vw;
    float: right;
}

.Macros-Left2 {
    font-size: 0.9vw;
    font-weight: bold;
    text-align: left;
}

.Cal-Align2 {
    margin-right: 10%;
}

.Pro-Align2 {
    margin-right: 16%;
}

.Carb-Align2 {
    margin-right: 14.5%;
}

.Lip-Align2 {
    margin-right: 16%;
}

.Fib-Align2 {
    margin-right: 14.5%;
}

.Flu-Align2 {
    margin-right: 16.5%;
}

.TCC-Input1 {
    font-size: 1.4vw;
    color:  rgb(120, 120, 120);
    text-align: center;
    width: 3.68vw;
    margin-left: 5.5vw;
    padding: 0.5vw;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid  rgb(120, 120, 120);
    border-width: 2px;
}
.TCC-Input2 {
    font-size: 1.4vw;
    color:  rgb(120, 120, 120);
    text-align: center;
    width: 3.68vw;
    margin-left: 3vw;
    padding: 0.5vw;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid  rgb(120, 120, 120);
    border-width: 2px;
}

.TCC-Input1:hover {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .215s ease-in-out;
}

.TCC-Input1:focus {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .15s ease-in-out;
}

.TCC-Input2:hover {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .215s ease-in-out;
}

.TCC-Input2:focus {
    border-bottom: solid rgb(109, 189, 224);
    color: rgb(109, 189, 224);
    transform: scale(1.2, 1.2);
    transition: .15s ease-in-out;
}

.TCC-Measurements {
    font-size: 1vw;
    text-align: center;
    margin-top: 1vw;
    margin-left: 0.6vw;
    border: none;
    outline: none;
    background: none;
}

.TCC-Measurements2 {
    font-size: 1vw;
    text-align: center;
    margin-top: 1vw;
    margin-left: 18%;
    border: none;
    outline: none;
    background: none;
}

.TCCCalc {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(120, 120, 120);
    border-width: 2px;
    margin-left: 38%;
    width: 7vw;
    color: rgb(120, 120, 120);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.TCCCalc:hover {
    background-color: rgb(255, 255, 255, 0.0);
    color:  rgb(109, 189, 224);
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.TCCCalc:active {
    transform: scale(0.9, 0.9);
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    margin-left: 38%;
    width: 7vw;
    color: rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}

.TCCCalc2 {
    font-size: 1vw;
    border-style: solid;
    border-color: rgb(109, 189, 224);
    border-width: 2px;
    margin-left: 38%;
    width: 7vw;
    color:rgb(109, 189, 224);
    background-color: rgb(255, 255, 255, 0.0);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    outline: none;
}





/* END DIETITIAN SECTION */




.Edu-Title {
    margin-left: 15%;
    margin-top: 10%;
    margin-right: 15%;
    padding-top: 10%;
    padding-bottom: 10%;
    border-top: solid;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.10);
    font-size: 3.5vw;
    color: rgb(160, 139, 209);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: text-shadow 0.7s ease-in-out;
    cursor: default;
}

.Edu-Description {
    text-align: center;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-left: 10%;
    margin-right: 10%;
    color: rgb(160, 139, 209);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    overflow: hidden;
    cursor: default;
}

.Edu-Title:hover {
    text-shadow: 8px 5px rgba(0,0,0,0.12), 12px 8px rgba(0,0,0,0.03);
    z-index: 0.8;
    transition: text-shadow 0.15s ease-in-out;
}

.Edu-DIV {
    border-top: 4px solid rgb(160, 139, 209);
    height: 20%;
    margin-left: -4%;
    margin-right: -4%;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 2%;
    padding-bottom: 5%;
    color: rgb(160, 139, 209);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.Blog-DIV {
    height: 30vw;
    width: 40vw;
    border-style: solid;
    border-width: 4px;
    border-radius: 5px;
    border-color: rgb(160, 139, 209);
    margin-top: 3%;
    margin-left: 8%;
    padding-right: 2%;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.3s ease-in-out;
    background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,0), 
    rgb(160, 139, 209), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 550%;
    animation: animate2 60s linear infinite;
}

.Blog-DIV:hover {
    transform: scale(1.1,1.1);
    background: linear-gradient(90deg, 
    rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
    background-repeat: repeat;
    background-size: 550%;
    animation: animate2 60s linear infinite;
}

@keyframes animate2 {
    0% {
      background-position: -600%;
    }
    100% {
      background-position: 600%;
    }
}

.Blog-DIV:active {
    transform: scale(0.9,0.9);
    border: solid 3px rgb(109, 189, 224);
}

.Blog-P {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
    background-size: 86%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: right;
    margin-right: 9%;
    margin-top: 3vw;
    margin-bottom: -20vw;
    animation: animate 10s linear infinite;
    cursor: default;
}

.NFactsBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    text-align: center;
    font-size: 2vw;
    font-weight: bold;
    padding: 1.2vw;
    margin-top: 0vw;
    margin-right: 10%;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 209, 139), rgb(109, 189, 224));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.NFactsBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.ACLMBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    text-align: center;
    font-size: 1.3vw;
    font-weight: bold;
    padding: 1.2vw;
    margin-top: 6vw;
    margin-right: -30%;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(209, 139, 188), rgb(109, 189, 224));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.ACLMBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.PCRMBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    text-align: center;
    font-size: 1.4vw;
    font-weight: bold;
    padding: 1.2vw;
    margin-top: 12vw;
    margin-right: -30%;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(109, 140, 224), rgb(109, 189, 224), rgb(109, 140, 224));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.PCRMBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.PlantBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    text-align: center;
    font-size: 1.8vw;
    font-weight: bold;
    padding: 1.2vw;
    margin-top: 16vw;
    margin-left: 30vw;
    margin-right: 10vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(160, 139, 209), rgb(139, 209, 139), rgb(160, 139, 209));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.PlantBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.IJDRPBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    text-align: center;
    font-size: 1.5vw;
    font-weight: bold;
    padding: 1.2vw;
    margin-top: 2vw;
    margin-left: 30vw;
    margin-right: 10vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(139, 209, 139), rgb(77, 185, 140), rgb(139, 209, 139));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.IJDRPBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.PMRIBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    text-align: center;
    font-size: 1.5vw;
    font-weight: bold;
    padding: 1.2vw;
    margin-top: 2vw;
    margin-left: 30vw;
    margin-right: 10vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(77, 181, 185), rgb(139, 144, 209), rgb(77, 181, 185));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.PMRIBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.GuidelinesBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    text-align: center;
    font-size: 1.6vw;
    font-weight: bold;
    padding: 1.2vw;
    margin-top: 2vw;
    margin-left: 30vw;
    margin-right: 10vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(224, 117, 109), rgb(160, 139, 209), rgb(224, 117, 109));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.GuidelinesBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.ANDBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    text-align: center;
    font-size: 1.45vw;
    font-weight: bold;
    padding: 1.2vw;
    margin-top: 2vw;
    margin-left: 30vw;
    margin-right: 10vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(139, 209, 139), rgb(224, 117, 109), rgb(139, 209, 139));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.ANDBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.NutritionGuideBtn {
    width: 30vw;
    height: 5vw;
    float: right;
    margin-top: 2vw;
    margin-left: 30vw;
    margin-right: 10vw;
    text-align: center;
    font-size: 1.7vw;
    font-weight: bold;
    padding: 1.2vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
    background: linear-gradient(90deg, rgb(139, 195, 209), rgb(109, 145, 224), rgb(139, 195, 209));
    background-repeat: repeat;
    background-size: 86%;
    animation: animate 6s linear infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.NutritionGuideBtn:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.Edu-P {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
    background-size: 86%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -100%;
    animation: animate 10s linear infinite;
    cursor: default;
}

.Edu-P2 {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -95%;
    cursor: pointer;
}

.Edu-P3 {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -90%;
    cursor: pointer;
}

.Edu-P4 {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -85%;
    cursor: pointer;
}

.Edu-P5 {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -80%;
    cursor: pointer;
}

.Edu-P6 {
    font-weight: bold;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -75%;
    cursor: pointer;
}

.Edu-Pb {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
    background-size: 86%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -60%;
    animation: animate 10s linear infinite;
    cursor: default;
}

.Edu-P2b {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -55%;
    cursor: pointer;
}

.Edu-P3b {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -50%;
    cursor: pointer;
}

.Edu-P4b {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -45%;
    cursor: pointer;
}

.Edu-P5b {
    float: left;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-right: 50%;
    margin-top: -40%;
    cursor: pointer;
}

.Edu-P6b {
    font-weight: bold;
    float: left;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-right: 50%;
    margin-top: -35%;
    cursor: pointer;
}

.Edu-Pc {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
    background-size: 86%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-top: -20%;
    animation: animate 10s linear infinite;
    cursor: default;
}

.Edu-P2c {
    float: left;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-right: 50%;
    margin-top: -15%;
    cursor: pointer;
}

.Edu-P3c {
    font-weight: bold;
    float: left;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: left;
    margin-left: 10%;
    margin-right: 50%;
    margin-top: -10%;
    cursor: pointer;
}

.ACLMEvidence {
    width: 30vw;
    height: 30vw;
    float: right;
    background-image: url(images/LifeMed.png);
    background-size: 104%;
    background-repeat: no-repeat;
    margin-top: 4vw;
    margin-bottom: 6vw;
    margin-left: 30vw;
    margin-right: 10vw;
    text-align: center;
    font-size: 1.7vw;
    font-weight: bold;
    padding: 1.2vw;
    border: solid 1px rgb(0, 0, 0, 0.0);
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    outline: none;
    background-color: rgb(0, 0, 0, 0.0);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition: 0.2s ease-in-out;
    z-index: 3;
}

.ACLMEvidence:hover {
    transform: scale(1.1, 1.1);
    border: solid 3px rgb(109, 189, 224);
}

.space {
    margin-top: -3%;
}

.vidintro {
    margin-left: 0%;
    text-align: center;
    color: rgb(139, 209, 139);
    background: linear-gradient(180deg, rgb(139, 209, 139), rgb(109, 189, 224));
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    cursor: default;
    z-index: 10;
}

.vid-section {
  background: #ccc;
  padding: 0px;
  cursor: none;
  z-index: 10;
}
.vid-wrap {
  width: 100%;
  height: 890px;
  background: white;
  opacity: 1;
  position: relative;
  overflow: hidden;
  cursor: none;
  z-index: 10;
}
.responsive-vid {
  padding-top: 56.25%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  cursor: none;
}
.responsive-vid iframe {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  cursor: none;
}
#player {
  opacity: 0;
  transition: all .5s ease-in-out;
}
.video__overlay {
  background: black;
  opacity: 0.35;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.EduBottomDIV {
    background-color: rgb(50,50,50);
}

.Dedication {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
    background-size: 86%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    float: none;
    margin-top: 80%;
    margin-bottom: -3%;
    animation: animate 10s linear infinite;
    cursor: default;
}




/* END EDU SECTION */











footer {
    margin-bottom: -3vw;
    margin-left: -3vw;
    margin-right: -3vw;
    background-color: rgba(0, 0, 0, 0.33);
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 0.7vw;
}

.footer1 {
    float: left;
    margin-left: 20vw;
    margin-right: -26vw;
}



@media only screen and (max-width: 2500px) {
    .navbar {
        width: 60%;
        margin-right: -5%;
    }
    .navbar2 {
        width: 60%;
        margin-right: -5%;
    }
}

@media only screen and (max-width: 1800px) {
    .navbar {
        width: 70%;
        margin-right: -10%;
    }
    .navbar2 {
        width: 70%;
        margin-right: -10%;
    }
}

@media only screen and (max-width: 1700px) {
    .NFactsBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        text-align: center;
        font-size: 2vw;
        font-weight: bold;
        padding: 1.2vw;
        margin-top: 0vw;
        margin-right: 10%;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 209, 139), rgb(109, 189, 224));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .NFactsBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .ACLMBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        text-align: center;
        font-size: 1.3vw;
        font-weight: bold;
        padding: 1.2vw;
        margin-top: 6vw;
        margin-right: -30%;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(209, 139, 188), rgb(109, 189, 224));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .ACLMBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .PCRMBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        text-align: center;
        font-size: 1.4vw;
        font-weight: bold;
        padding: 1.2vw;
        margin-top: 12vw;
        margin-right: -30%;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(109, 140, 224), rgb(109, 189, 224), rgb(109, 140, 224));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .PCRMBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .PlantBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        text-align: center;
        font-size: 1.8vw;
        font-weight: bold;
        padding: 1.2vw;
        margin-top: 2vw;
        margin-left: 30vw;
        margin-right: 10vw;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(160, 139, 209), rgb(139, 209, 139), rgb(160, 139, 209));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .PlantBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .IJDRPBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        text-align: center;
        font-size: 1.5vw;
        font-weight: bold;
        padding: 1.2vw;
        margin-top: 2vw;
        margin-left: 30vw;
        margin-right: 10vw;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(139, 209, 139), rgb(77, 185, 140), rgb(139, 209, 139));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .IJDRPBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .PMRIBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        text-align: center;
        font-size: 1.5vw;
        font-weight: bold;
        padding: 1.2vw;
        margin-top: 2vw;
        margin-left: 30vw;
        margin-right: 10vw;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(77, 181, 185), rgb(139, 144, 209), rgb(77, 181, 185));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .PMRIBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .GuidelinesBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        text-align: center;
        font-size: 1.6vw;
        font-weight: bold;
        padding: 1.2vw;
        margin-top: 2vw;
        margin-left: 30vw;
        margin-right: 10vw;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(224, 117, 109), rgb(160, 139, 209), rgb(224, 117, 109));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .GuidelinesBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .ANDBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        text-align: center;
        font-size: 1.45vw;
        font-weight: bold;
        padding: 1.2vw;
        margin-top: 2vw;
        margin-left: 30vw;
        margin-right: 10vw;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(139, 209, 139), rgb(224, 117, 109), rgb(139, 209, 139));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .ANDBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .NutritionGuideBtn {
        width: 30vw;
        height: 5vw;
        float: right;
        margin-top: 2vw;
        margin-left: 30vw;
        margin-right: 10vw;
        text-align: center;
        font-size: 1.7vw;
        font-weight: bold;
        padding: 1.2vw;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
        background: linear-gradient(90deg, rgb(139, 195, 209), rgb(109, 145, 224), rgb(139, 195, 209));
        background-repeat: repeat;
        background-size: 86%;
        animation: animate 6s linear infinite;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
    
    .NutritionGuideBtn:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .Edu-P {
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 2.5vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
        background-size: 86%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -100%;
        animation: animate 10s linear infinite;
        cursor: default;
    }
    
    .Edu-P2 {
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -95%;
        cursor: pointer;
    }
    
    .Edu-P3 {
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -90%;
        cursor: pointer;
    }
    
    .Edu-P4 {
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -85%;
        cursor: pointer;
    }
    
    .Edu-P5 {
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -80%;
        cursor: pointer;
    }
    
    .Edu-P6 {
        font-weight: bold;
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -75%;
        cursor: pointer;
    }
    
    .Edu-Pb {
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 2.5vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
        background-size: 86%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -60%;
        animation: animate 10s linear infinite;
        cursor: default;
    }
    
    .Edu-P2b {
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -55%;
        cursor: pointer;
    }
    
    .Edu-P3b {
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -50%;
        cursor: pointer;
    }
    
    .Edu-P4b {
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -45%;
        cursor: pointer;
    }
    
    .Edu-P5b {
        float: left;
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-right: 50%;
        margin-top: -40%;
        cursor: pointer;
    }
    
    .Edu-P6b {
        font-weight: bold;
        float: left;
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-right: 50%;
        margin-top: -35%;
        cursor: pointer;
    }
    
    .Edu-Pc {
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 2.5vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
        background-size: 86%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-top: -20%;
        animation: animate 10s linear infinite;
        cursor: default;
    }
    
    .Edu-P2c {
        float: left;
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-right: 50%;
        margin-top: -15%;
        cursor: pointer;
    }
    
    .Edu-P3c {
        font-weight: bold;
        float: left;
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(139, 193, 209), rgb(109, 189, 224));
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: left;
        margin-left: 10%;
        margin-right: 50%;
        margin-top: -10%;
        cursor: pointer;
    }
    
    .ACLMEvidence {
        width: 30vw;
        height: 30vw;
        float: right;
        background-image: url(images/LifeMed.png);
        background-size: 104%;
        background-repeat: no-repeat;
        margin-top: 4vw;
        margin-bottom: 6vw;
        margin-left: 30vw;
        margin-right: 10vw;
        text-align: center;
        font-size: 1.7vw;
        font-weight: bold;
        padding: 1.2vw;
        border: solid 1px rgb(0, 0, 0, 0.0);
        border-radius: 30px;
        color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        outline: none;
        background-color: rgb(0, 0, 0, 0.0);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
        transition: 0.2s ease-in-out;
        z-index: 3;
    }
    
    .ACLMEvidence:hover {
        transform: scale(1.1, 1.1);
        border: solid 3px rgb(109, 189, 224);
    }
    
    .space {
        margin-top: -3%;
    }
    
    .vidintro {
        margin-left: 0%;
        text-align: center;
        color: rgb(139, 209, 139);
        background: linear-gradient(180deg, rgb(139, 209, 139), rgb(109, 189, 224));
        background-repeat: no-repeat;
        background-size: 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        cursor: default;
        z-index: 10;
    }
    
    .vid-section {
      background: #ccc;
      padding: 0px;
      cursor: none;
      z-index: 10;
    }
    .vid-wrap {
      width: 100%;
      height: 890px;
      background: white;
      opacity: 1;
      position: relative;
      overflow: hidden;
      cursor: none;
      z-index: 10;
    }
    .responsive-vid {
      padding-top: 56.25%;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 100%;
      cursor: none;
    }
    .responsive-vid iframe {
      position: absolute;
      top: 0%;
      left: 0%;
      width: 100%;
      height: 100%;
      cursor: none;
    }
    #player {
      opacity: 0;
      transition: all .5s ease-in-out;
    }
    .video__overlay {
      background: black;
      opacity: 0.35;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    .EduBottomDIV {
        background-color: rgb(50,50,50);
    }
    
    .Dedication {
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1vw;
        background: linear-gradient(90deg, rgb(109, 189, 224), rgb(160, 139, 209), rgb(109, 189, 224));
        background-size: 86%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
        float: none;
        margin-top: 80%;
        margin-bottom: -3%;
        animation: animate 10s linear infinite;
        cursor: default;
    }
}

@media only screen and (max-width: 1300px) {
    .navbar {
        width: 75%;
        margin-right: -12%;
    }
    .navbar2 {
        width: 75%;
        margin-right: -12%;
    }
}

@media only screen and (max-width: 1200px) {
.navbar {
    width: 90%;
    text-align: center;
    margin-top: 1%;
    margin-left: 20%;
    margin-right: -20%;
}
.navbar2 {
    width: 90%;
    text-align: center;
    margin-top: 1%;
    margin-left: 20%;
    margin-right: -20%;
}
.navbar a {
    height: 6%;
    font-size: 3vw;
}
.navbar2 a {
    height: 6%;
    font-size: 3vw;
}
.Mute-Nav {
    display: none;
}
.Color-Nav {
    display: none;
}
.calculatorapp {
    display: none;
}
.calculatorapp2 {
    display: none;
}
.calculator {
    display: none;
}
.calculator2 {
    display: none;
}
.logo {
    width: 70%;
}
.slogan {
    font-size: 3vw;
}
.DARK-MODE {
    width: 15vw;
    font-size: 3vw;
    margin-top: 10%;
    margin-bottom: 15%;
    margin-left: 0%;
    margin-right: 10%;
    float: right;
    overflow: auto;
}
.Mute-Nav2 {
    width: 8vw;
    height: 8vw;
    font-size: 3vw;
    margin-top: 10%;
    margin-bottom: 15%;
    margin-left: 10%;
    margin-right: 0%;
    float: left;
    overflow: auto;
}
.Mute-Nav2a {
    width: 8vw;
    height: 8vw;
    font-size: 3vw;
    margin-top: 10%;
    margin-bottom: 15%;
    margin-left: 10%;
    margin-right: 0%;
    float: left;
    overflow: auto;
}
.main1 {
    padding-left: 5%;
    padding-right: 5%;
}
.p1 {
    font-size: 3vw;
    padding-top: -10%;
}
.p1-alt {
    font-size: 3vw;
    padding-top: -10%;
}
.p2 {
    font-size: 3vw;
    margin-top: 15%;
}
.div1 {
    width: 50%;
    margin-left: -25%;
    float: left;
}
.div2 {
    width: 50%;
    margin-top: 10%;
    margin-left: 20%;
    margin-right: -20%;
    float: right;
}
.div1 input {
    font-size: 6vw;
}
.div2 input {
    font-size: 6vw;
}
.input-data2 {
    font-size: 6vw;
}
.input-name2 {
    font-size: 5vw;
}
.input-name {
    font-size: 5vw;
    width: 130%;
}
.input-sub1 {
    margin-top: -20%;
}
.input-name5 {
    font-size: 4vw;
}
.input-data3 {
    font-size: 5vw;
    margin-top: 120%;
    margin-left: -10%;
}
.Male {
    font-size: 4vw;
    width: 100%;
    margin-bottom: 5%;
}
.Female {
    font-size: 4vw;
    width: 100%;
}
.input-data4 {
    font-size: 5vw;
    margin-top: 120%;
}
.PreggersBtn {
    width: 25%;
    height: 2%;
    font-size: 4vw;
}
.Yes-Button {
    font-size: 4vw;
    width: 100%;
}
.No-Button {
    font-size: 4vw;
    width: 100%;
}
.input-name3 {
    font-size: 5vw;
}
.MetersBtn {
    width: 30%;
    height: 2%;
    font-size: 4vw;
    text-align: left;
    float: none;
}
.input-name4 {
    font-size: 4vw;
    word-spacing: 12%;
}
.FtInput2 {
    margin-right: 10%;
}
.input-name6 {
    font-size: 5vw;
    word-spacing: 10%;
    margin-top: 60%;
    margin-left: -10%;
    margin-right: -10%;
}
.KgBtn {
    width: 20%;
    height: 2%;
    font-size: 4vw;
    margin-top: 30%;
}
.input-name5 {
    margin-left: -40%;
    margin-right: -40%;
    word-spacing: 10%;
}
.input-name7 {
    font-size: 5vw;
    margin-top: 38%;
}
.Activity-Level-Button {
    font-size: 4vw;
    width: 100%;
}
.Activity-Text {
    font-size: 3vw;
    width: 72%;
}
.dropdown-content {
    width: 100%;
}
.Calculate-Button {
    font-size: 5vw;
    width: 80%;
    height: 30%;
    margin-left: 10%;
    margin-top: 40%;
}
.BMI-Title {
    font-size: 6vw;
}
.BMI-DIV {
    margin-left: -40%;
    margin-right: auto;
    width: 160%;
}
.BMI-DIV2 {
    margin-left: -40%;
    margin-right: auto;
    width: 160%;
}
.BMI-Title1 {
    font-size: 5vw;
}
.BMI-Title2 {
    font-size: 5vw;
}
.BMI-P2 {
    font-size: 5vw;
}
.BMI-P3 {
    font-size: 5vw;
}
.BMI-Weight {
    font-size: 4vw;
}
.BMI-Weight2 {
    font-size: 4vw;
}
.Diet-TopA2 {
    font-size: 5vw;
}
.BMI-CDC {
    font-size: 5vw;
    float: right;
    margin-top: 10%;
    margin-bottom: 10%;
}
.BMI-Note {
    font-size: 4vw;
}
.BMI-Top {
    font-size: 5vw;
    text-align: center;
    margin-left: 0;
}
.Diet-TopA {
    font-size: 5vw;
}
.Diet-TopC {
    font-size: 5vw;
}
.BMI-Descrip1 {
    font-size: 4vw;
    float: right;
    margin-bottom: 10%;
}
.BMI-Descrip2 {
    font-size: 5vw;
}
.BMI-Descrip3 {
    font-size: 4vw;
    float: right;
    margin-bottom: 10%;
}
.BMI-Descrip4 {
    font-size: 5vw;
}
.BMI-Descrip5 {
    font-size: 4vw;
    float: right;
    margin-bottom: 20%;
}
.BMI-Descrip6 {
    font-size: 4vw;
    margin-left: 0;
}
.BMI-Descrip7 {
    font-size: 5vw;
}
.BMI-Descrip8 {
    font-size: 4vw;
    float: right;
    margin-bottom: 20%;
}
.BMI-Descrip9 {
    font-size: 4vw;
    float: right;
    margin-bottom: 10%;
}
.Macros-DIV {
    margin-left: -40%;
    margin-right: auto;
    width: 170%;
}
.Macros-DIV2 {
    margin-left: -40%;
    margin-right: auto;
    width: 160%;
}
.Macros-Title {
    font-size: 6vw;
    margin-left: 0%;
    margin-right: 0%;
}
.Macros-Top {
    font-size: 5vw;
}
.Macros-Guide {
   font-size: 4vw; 
}
.Macros-Guide1 {
   font-size: 4vw; 
}
.Macros-Guide2 {
   font-size: 2vw; 
}
.Macros-Guide3 {
   font-size: 4vw; 
}
.Macros-Guide4 {
   font-size: 4vw; 
}
.Macros-Guide5 {
   font-size: 4vw; 
}
.Macros-Guide6 {
   font-size: 4vw; 
}
.Macros-Guide7 {
   font-size: 3vw; 
}
.Macros-Guide8 {
   font-size: 3vw; 
}
.Macros-Guide9 {
   font-size: 3vw; 
}
.Macros-Guide10 {
   font-size: 3vw; 
}
.Macros-Guide11 {
   font-size: 3vw; 
}
.Macros-Guide12 {
   font-size: 3vw; 
}
.Macros-Description {
    font-size: 4vw;
    margin-left: 22%;
    margin-bottom: 10%;
}
.Macros-Top2 {
    font-size: 4vw;
}
.Macros-Input {
    font-size: 4vw;
    padding: 4%;
    width: 7%;
}
.Macros-Percent {
    font-size: 4vw;
}
.Adj-Button {
    font-size: 4vw;
    width: 30%;
    height: 30%;
}
.Adj-Button2 {
    font-size: 4vw;
    width: 30%;
    height: 30%;
}
.UBW-Button {
    font-size: 4vw;
    width: 30%;
    height: 30%;
    margin-top: 40%;
    margin-left: -30%;
}
.UBW-Button2 {
    font-size: 4vw;
    width: 30%;
    height: 30%;
    margin-top: 40%;
    margin-left: -30%;
}
.Macro-Button {
    font-size: 4vw;
    width: 40%;
    height: 30%;
    margin-top: 80%;
    margin-left: -5%;
    margin-right: -10%;
}
.Macro-Button2 {
    font-size: 4vw;
    width: 40%;
    height: 30%;
    margin-top: 80%;
    margin-left: -5%;
    margin-right: -10%;
}
.Phys-Button {
    font-size: 4vw;
    width: 30%;
    height: 30%;
}
.Phys-Button2 {
    font-size: 4vw;
    width: 30%;
    height: 30%;
}
.DBW-Button {
    font-size: 4vw;
    width: 30%;
    height: 30%;
    margin-top: -52%;
    margin-right: 5%;
}
.DBW-Button2 {
    font-size: 4vw;
    width: 30%;
    height: 30%;
    margin-top: -52%;
    margin-right: 5%;
}
.MacroValid {
    font-size: 4vw;
    margin-left: 28%;
}
.Macro-Top3 {
    font-size: 3.5vw;
}
.Macros-Left {
    font-size: 2.5vw;
}
.Macros-Maximum {
    font-size: 2.5vw;
    margin-top: 3%;
}
.Macros-Median {
    font-size: 2.5vw;
    margin-top: 3%;
}
.Macros-Minimum {
    font-size: 2.5vw;
    margin-top: 3%;
}
.Macro-Note {
    font-size: 3vw;
}
.Macro-Note2 {
    font-size: 3vw;
}
.Sup {
    font-size: 3vw;
}
.Macros-Top3b {
    font-size: 5vw;
    margin-left: -5%;
}
.Protein-Descrip {
    font-size: 4vw;
}
.MeanReqs {
    font-size: 4vw;
}
.Macros-Top4a {
    font-size: 3vw;
    margin-left: 0%;
}
.Macros-Top4b {
    font-size: 3vw;
    margin-left: 1%;
}
.Macros-Top4c {
    font-size: 3vw;
    margin-left: 1%;
}
.Macros-Top4d {
    font-size: 3vw;
    margin-left: 1%;
}
.Macros-Input3 {
    font-size: 4vw;
    width: 10%;
    margin-left: -2%;
    margin-right: 0%;
}
.Macros-Percent3 {
    font-size: 3vw;
}
.Macro-Button3 {
    font-size: 4vw;
    width: 50%;
    height: 30%;
    margin-left: 25%;
}
.Macros-Pro-Adjust1 {
    font-size: 4vw;
    margin-left: 5%;
}
.Macros-Pro-Adjust2 {
    font-size: 2.5vw;
}
.Macros-Pro-Adjust3 {
    font-size: 2.5vw;
}
.InTextAlignment {
    margin-left: 0%;
}
.Lipids-DIV {
    margin-left: -40%;
    margin-right: auto;
    width: 160%;
}
.Lipids-Title {
    font-size: 6vw;
    margin-left: 0%;
    margin-right: 0%;
}
.LipText {
    font-size: 4vw;
    margin-bottom: 0%;
    margin-left: 10%;
}
.LipLeft {
    font-size: 3.5vw;
    line-height: 200%;
}
.LipRight {
    font-size: 4vw;
}
.Lipid-Note {
    font-size: 3vw;
}
.LipAlign1 {
    font-size: 3vw;
}
.LipAlign2 {
    font-size: 3vw;
}
.Vites-DIV {
    margin-left: -40%;
    margin-right: auto;
    width: 160%;
}
.Vites-Title {
    font-size: 6vw;
    margin-left: 0%;
    margin-right: 0%;
}
.Vit-Note {
    font-size: 3vw;
}
.VitAlign1 {
    font-size: 4vw;
}
.VitAlign2 {
    font-size: 4vw;
}
.Minerals-DIV {
    margin-left: -40%;
    margin-right: auto;
    width: 160%;
}
.Minerals-Title {
    font-size: 6vw;
    margin-left: 0%;
    margin-right: 0%;
}
.HrefAdjust {
    font-size: 3vw;
}
.Dietitian-DIV {
    margin-left: -40%;
    margin-right: auto;
    width: 160%;
}
.Dietitian-Title {
    font-size: 6vw;
    margin-left: 0%;
    margin-right: 0%;
}
.Dietitian-DIV2 {
    margin-left: -40%;
    margin-right: auto;
    width: 160%;
}
.Dietitian-Title2 {
    font-size: 6vw;
    margin-left: 0%;
    margin-right: 0%;
}
.Diet-TopA {
    font-size: 5vw;
}
.Diet-TopA2 {
    margin-left: 7%;
}
.Diet-TopB {
    font-size: 5vw;
}
.Diet-TopC {
    font-size: 5vw;
}
.Diet-TopD {
    font-size: 5vw;
}
.UBW-Measurements3 {
    font-size: 4vw;
    margin-left: 10%;
}
.UBW-Measurements5 {
    font-size: 3.5vw;
    margin-left: 8%;
}
.FWD-Measurements {
    font-size: 3vw;
}
.DietText1 {
    font-size: 3vw;
}
.TCC-Measurements {
    font-size: 3.5vw;
}
.TCC-Measurements2 {
    font-size: 3vw;
    margin-left: 4%;
}
.DietOutput1 {
    font-size: 5vw;
}
.DietOutput2 {
    font-size: 5vw;
}
.DietOutput3 {
    font-size: 5vw;
}
.ObesityBtn {
    width: 22vw;
    font-size: 4vw;
    margin-left: 2%;
}
.TraumaBtn {
    width: 22vw;
    font-size: 4vw;
}
.BurnsBtn {
    width: 22vw;
    font-size: 4vw;
}
.ObesityBtn2 {
    width: 22vw;
    font-size: 4vw;
    margin-left: 2%;
}
.TraumaBtn2 {
    width: 22vw;
    font-size: 4vw;
}
.BurnsBtn2 {
    width: 22vw;
    font-size: 4vw;
}
.IJECalc {
    width: 28vw;
    font-size: 4vw;
    margin-left: 30%;
}
.FWD-Inputs {
    font-size: 5vw;
    width: 20%;
    margin-left: 25%;
}
.FWD-Measurements {
    font-size: 4vw;
}
.FWDCalc {
    width: 28vw;
    font-size: 4vw;
    margin-left: 30%;
}
.TCC-Input1 {
    font-size: 5vw;
    width: 15%;
    margin-left: 3%;
}
.TCC-Input2 {
    font-size: 5vw;
    width: 15%;
}
.TCCCalc {
    width: 28vw;
    font-size: 4vw;
    margin-left: 30%;
}
.FWD-Measurements {
    font-size: 4vw;
}
.DietOutput1 {
    margin-left: 30%;
}
.DietOutput2 {
    margin-left: 40%;
}
.DietOutput3 {
    margin-left: 35%;
}
.Edu-Title {
    font-size: 6vw;
    margin-left: 0%;
    margin-right: 0%;
}
.Edu-DIV {
    padding-top: 5%;
}
.Edu-P {
    font-size: 5vw;
    margin-top: 15%;
}
.Edu-P2 {
    font-size: 3vw;
    margin-top: 5%;
}
.Edu-P3 {
    font-size: 3vw;
    margin-top: 5%;
}
.Edu-P4 {
    font-size: 3vw;
    margin-top: 5%;
}
.Edu-P5 {
    font-size: 3vw;
    margin-top: 5%;
}
.Edu-P6 {
    font-size: 3vw;
    margin-top: 5%;
}
.Edu-Pb {
    font-size: 5vw;
    margin-top: 5%;
}
.Edu-P2b {
    font-size: 3vw;
    margin-top: 5%;
}
.Edu-P3b {
    font-size: 3vw;
    margin-top: 5%;
}
.Edu-P4b {
    font-size: 3vw;
    margin-top: 5%;
}
.Edu-P5b {
    font-size: 3vw;
    margin-top: 5%;
    margin-right: 0%;
}
.Edu-P6b {
    font-size: 3vw;
    margin-top: 5%;
    margin-right: 0%;
}
.Edu-Pc {
    font-size: 5vw;
    margin-top: 5%;
}
.Edu-P2c {
    font-size: 3vw;
    margin-top: 5%;
    margin-right: 0%;
}
.Edu-P3c {
    font-size: 3vw;
    margin-top: 5%;
    margin-right: 0%;
}
.Dedication {
    font-size: 3vw;
    margin-top: 20%;
    margin-bottom: 10%;
    float: left;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
}
.NFactsBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-bottom: 2%;
}
.ACLMBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-bottom: 2%;
    margin-left: 10%;
    float: none;
}
.PCRMBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-top: 5%;
    margin-bottom: 2%;
    float: none;
    margin-left: 10%;
}
.PlantBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-bottom: 2%;
}
.IJDRPBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 25%;
    font-size: 5vw;
    margin-bottom: 2%;
}
.PMRIBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-bottom: 2%;
}
.GuidelinesBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-bottom: 2%;
}
.ANDBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-bottom: 2%;
}
.NutritionGuideBtn {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-bottom: 2%;
}
.ACLMEvidence {
    width: 80%;
    padding-top: 10%;
    padding-bottom: 15%;
    font-size: 5vw;
    margin-bottom: 2%;
}
.white-overlay {
    margin-left: 0%;
    margin-right: 0%;
}
.dark-overlay {
    margin-left: 0%;
    margin-right: 0%;
}
.color-change {
    margin-left: 0%;
    margin-right: 0%;
}
.fade-in {
    margin-left: 0%;
    margin-right: 0%;
}



.footer1 {
    font-size: 3vw;
    margin-top: 60%;
    margin-left: 40%;
    padding-bottom: 20%;
}

.footer {
    font-size: 3vw;
    padding-left: 0%;
    padding-right: 25%;
    padding-bottom: 50%;
}
}

@media only screen and (max-width: 650px) {
    .Macros-Top2 {
        font-size: 3.2vw;
    }
    .Macros-Input {
        font-size: 3vw;
        padding: 4%;
        width: 4.2%;
    }
    .Macros-Percent {
        font-size: 3.5vw;
    }
}