@import url(/global/global-banner-light.css?v=2);
.phonewrapper{
    display: flex;
    justify-content: center;
    height: 25svh;
    align-items: center;
}
.phoneformat{
    font-size: 3rem;
}
#grp1{
    border: 3px solid var(--yellowInactive);
    border-radius: 5px;
    display: inline-flex;
    width: 20%;
    height: 10%;
    text-align: center;
    font-size: 1rem;
}
#grp1:active,
#grp1:focus,
#grp1:hover{
    border: 3px solid var(--yellow);
    transition: border-color 0.5s;
    outline: none !important;
}
#grp2{
    border: 3px solid var(--yellowInactive);
    border-radius: 5px;
    display: inline-flex;
    outline: none !important;
    width: 20%;
    height: 10%;
    text-align: center;
    font-size: 1rem;
}
#grp2:active,
#grp2:focus,
#grp2:hover{
    border: 3px solid var(--yellow);
    transition: border-color 0.5s;
}
#grp3{
    border: 3px solid var(--yellowInactive);
    border-radius: 5px;
    display: inline-flex;
    outline: none !important;
    width: 30%;
    height: 10%;
    text-align: center;
    font-size: 1rem;
}
#grp3:active,
#grp3:focus,
#grp3:hover{
    border: 3px solid var(--yellow);
    transition: border-color 0.5s;
}
.button{
    display: flex;
    height: 5vh;
    width: 80%;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    background-color: var(--yellow);
    border: solid 3px var(--yellow);
    border-radius: 5px;
    color: var(--red);
    margin: auto;
    font-size: 1rem;
    font-weight: 600;
    outline: none !important;
    cursor: pointer;
}
.button:hover,
.button:focus,
.button:active{
    background-color: var(--red);
    border: solid 3px var(--red);
    color: var(--yellow);
}
.instruction{
    display: flex;
    height: 20svh;
    font-size: 2rem;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.formRow{
    height: 10vh;
    height: 10svh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 16px;
    border-bottom: 3px solid var(--yellow);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    outline: none;
    margin: 16px;
}
#name{
    outline: none;
    width: 70%;
    border: 2px solid var(--yellowInactive);
    border-radius: 5px;
    height: 40%;
}
#name:hover,
#name:focus,
#name:active{
    border: 2px solid var(--yellow);
    transition: border-color 0.5s;
}
#nsnDropdown{
    outline: none;
    width: 70%;
    border: 2px solid var(--yellowInactive);
    border-radius: 5px;
    height: 50%;
}
#nsnDropdown:hover,
#nsnDropdown:focus,
#nsnDropdown:active{
    border: 2px solid var(--yellow);
    transition: border-color 0.5s;
}
.formlbl{
    margin-right: 32px;
}
.loadanimation{
    background-image: url(/global/assets/images/mcflurry_animation.gif);
    height: 60vh;
    width: 100%;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
  }
  #notification{
    display: flex;
    height: 50vh;
    height: 50svh;
    width: 90vw;
    width: 90svw;
    border: 2px solid var(--yellowInactive);
    border-radius: 5px;
    appearance: none;
    outline: none;
    margin: 16px auto 16px auto;
  }
  #notification:hover,
  #notification:focus,
  #notification:active{
    border: 2px solid var(--yellow);
    transition: border-color 0.5s;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
  }