#login-content #app {
    width: 50vh;
    height: 98%;
    background: white;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    left: 50px;
    position:relative;
}

#login-content #app > .app-view > footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 1vh;
    position: absolute;
}

#login-content #app > .app-view > footer > a, 
#login-content #app > .app-view > footer > label {
    color: #3366cc;
    cursor: pointer;
    transition: all 1s;
}

#login-content #app > .app-view > footer > a:hover, 
#login-content #app > .app-view > footer > label:hover {
    text-decoration: underline;
    font-weight: bold;
}

#login-content #app > .app-view > footer > label.contact-us{
    display: none;
}

#login-content:has(#app > .app-view > footer > #contact-us:checked) #contact-us-popup {
    display: flex;
}

#login-content .app-view div:has(input[for=password]){
    display:flex;
    top: 7.5vh;
    height: 7.5vh;
    width: calc(100% - 13vh);
    position: absolute;
    left: 6.5vh;
    box-shadow: inset 0 -0.5vh rgba(0, 0, 0, 0.1);
}
  
#login-content .app-view, #login-content .app-view-signup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    position: absolute;
    opacity: 1;
}

#login-content .app-view-signup div:has(input[type=file]){
    height: 20vh;
    width:20vh;
    border:1px solid lightgrey;
    border-radius: 50%;
    font-size: 2vh;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #00000060;
    cursor: pointer;
    z-index: 1;
    padding: 0.2em;
    left: 15vh;
    
    &:not(:has(> img[src])):before {
        content: 'Add account picture\a(Double click to add)';
        text-align: center;
    }

    & > img {
        border-radius: 50%;
    }

    & > layer {
        position:absolute;
        height:100%;
        width:100%;
        top:0;
        left:0;
        z-index:10;
        border-radius:0.2em;
        background: rgba(0,0,0,0.15);
        box-shadow: 0 3px 5px 0 rgba(31,38,135,0.37);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.18);
        background-image: url(/delete-white.svg);
        background-size: 2em;
        background-position: center;
        background-repeat: no-repeat;
        cursor:pointer;
        max-height: 0;
        max-width: 0;
        transition: all 0.2s ease-out;

        & > button {
          float: right;
          background: transparent;
          outline: none;
          border: none;
          cursor: pointer;
          padding: 0;
          max-height: 0;
          max-width: 0;
  
          &:hover > svg > path{
            stroke-width: 5;
          }
        }
    }
}



#login-content .app-view-signup {
    opacity: 0;
    top: -100%;
}

#login-content .app-view-signup div:has(> input:not([type=file])){
    height: 7.5vh;
    top: 10%;

    & > input:focus {
        animation: box-shadow-anim 1s forwards;
    }

    &:before {
        content: '';
        height: 3vh;
        width: 3vh;
        display: block;
        top: 30%;
        left: 3%;
    }
}

#login-content .app-view-signup > form > div.custom-select-country::before,
#login-content .app-view-signup > form > div.custom-select-states::before {
    top: -10%;
    left: -7%;
}

@keyframes box-shadow-anim {
    from {
        box-shadow: inset 0 -0.5vh rgba(0, 0, 0, 0.1);
    } to {
        box-shadow: inset 0 -0.5vh #0F9EDE;
    }
}

@keyframes box-shadow-anim-reverse {
    from {
        box-shadow: inset 0 -0.5vh #0F9EDE;
    } to {
        box-shadow: inset 0 -0.5vh rgba(0, 0, 0, 0.1);
    }
}

#login-content .app-view-signup div:has(> input[type=email]){
    &:before {
        background: url(/email.svg) no-repeat center center / cover;
    }
}

#login-content .app-view-signup div:has(> input[for=password]),
#login-content .app-view-signup div:has(> input[for=confirm_password]) {
    &:before {
        background: url(/password.svg) no-repeat center center / cover;
    }
}

#login-content .app-view-signup div:has(> input[for=name]) {
    &:before {
        background: url(/name.svg) no-repeat center center / cover;
    }
}

#login-content .app-view-signup div:has(> input[type=tel]) {
    &:before {
        background: url(/phone.svg) no-repeat center center / cover;
    }
}

#login-content .app-view-signup > header > .back-button {
    background-image:url(/back-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    height: 3vh;
    width: 3vh;
    background-color: transparent;
    cursor: pointer;
    float: left;

    &:hover{
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }
}

#login-content .app-view-signup > header > h2{
    flex-grow: 1;
    text-align: center;
    margin-block-start: 0;
    margin-block-end: 0;
    color: #3366cc;
}

#login-content .app-view-signup > header {
    padding: 3vh;
    display: flex;
    align-items: center;
}

#login-content .app-view-signup form > button {
    border: none;
    width: 90%;
    height: 5vh;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #99ccff;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all 0.5s;
    position: absolute;
    overflow: hidden;
    bottom: 5%;
    left: 5%;

    &:before, &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(52, 152, 253, 0.25);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
        transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    }

    &:hover:before, &:hover:after {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    & > span {
        position: relative;
        z-index: 2;
    }
}
  
#login-content .app-header {
    padding: 6vh;
}

#login-content .app-header, #login-content .app-header > * {
    font-family: system-ui;
    font-size: 1.5em;
    margin: 0;
    font-weight: 300;
}

#login-content .app-header > h1 {
    font-size: 4.8vh;
    font-weight: 400;
    margin-bottom: 4.8vh;
}

#login-content .app-header > h2 {
    font-size: 3vh;
}
  
#login-content .app-subheading {
    color: rgba(0, 0, 0, 0.45);
}
  
#login-content .app-register {
    position: relative;
    bottom: 1em;
    color: rgba(0, 0, 0, 0.45);
    display:flex;
    align-items: center;
    justify-content: center;
}

#login-content .app-register > a {
    font-weight: 400;
}

#login-content input:not([for=password]) {
    width: calc(100% - 13vh);
    height: 7.5vh;
    left: 6.5vh;
    box-shadow: inset 0 -0.5vh rgba(0, 0, 0, 0.1);
}

#login-content input[for=password]::-ms-reveal,
#login-content input[for=password]::-ms-clear,
#login-content input[for=confirm_password]::-ms-reveal,
#login-content input[for=confirm_password]::-ms-clear{
    display: none;
}
  
#login-content input {
    font-size: 2.5vh;
    margin-bottom: 2vh;
    background: transparent;
    position: absolute;
    top: 0;
    z-index: 2;
    border: none;
    outline: none;

    &::placeholder {
        color: #808080a5;
    }
}

#login-content .app-view-signup input {
    margin-bottom: 0;
}

#login-content input:not([type=password]):focus {
    outline: none;
    box-shadow: inset 0 -0.5vh transparent;
}

/* #login-content .app-view input[type=email] {
    top: 40%;
} */

/* #login-content .app-view input[type=password] {
    top: calc(40% + 7.5vh);
} */
  
#login-content .app-view form:has(input[type=email]:valid) ~ * .st1,
#login-content form:has(div > input[type=email]:valid) ~ * .st1 {
    transition-timing-function: ease-in-out;
    stroke-dasharray: 50, 153;
    stroke-dashoffset: 25;
}

#login-content form:has(> input[type=email]:focus) ~ * .st0 {
    stroke-dasharray: 210, 900;
    stroke-dashoffset: 0;
}
  
#login-content .app-view form:has(div > input[type=password]:focus) ~ * .st0,
#login-content .app-view form:has(div > input[type=password]:valid) ~ * .st0,
#login-content .app-button:focus ~ * .st0 {
    stroke-dasharray: 210, 900;
    stroke-dashoffset: -305;
}
  
#login-content form:has(> input:not(:valid)) ~ * .app-button,
#login-content form:has(div > input:placeholder-shown) ~ * .app-button {
    pointer-events: none;
    opacity: 0.6;
}
  
#login-content .app-button {
    text-decoration: none;
    color: #3366cc;
    font-size: 4.8vh;
    padding: 0 6vh;
    position: absolute;
    font-weight: 400;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

#login-content .app-button:focus {
    outline: none;
}
  
@-webkit-keyframes button-press {
    from, 20% {
      opacity: 1;
    }
    10% {
      opacity: 0.4;
    }
    40%, to {
      opacity: 0;
    }
}
  
@keyframes button-press {
    from, 20% {
      opacity: 1;
    }
    10% {
      opacity: 0.4;
    }
    40%, to {
      opacity: 0;
    }
}

#login-content #welcome ~ * .app-button {
    -webkit-animation: button-press 2s cubic-bezier(0.77, 0, 0.175, 1) both;
            animation: button-press 2s cubic-bezier(0.77, 0, 0.175, 1) both;
}

#login-content #welcome ~ * .st0 {
    stroke-dashoffset: -760;
    stroke-dasharray: 140, 900;
    transition-duration: 1.2s;
    /*-webkit-animation: disappear 0s 1.3s both;
            animation: disappear 0s 1.3s both;*/
}

#login-content #welcome ~ * .st1 {
    transition-duration: 0.3s;
    opacity: 0;
}

#login-content #welcome ~ * .app-graphic {
    transform: translate(0, 0);
    opacity: 1;
}

#login-content #welcome ~ * #svg-lines {
    -webkit-animation: pulse 0.5833333333s 1.2s ease-in-out both;
            animation: pulse 0.5833333333s 1.2s ease-in-out both;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

#login-content #welcome ~ * .svg-loader {
    -webkit-animation: appear 0s 1.2s both;
            animation: appear 0s 1.2s both;
}

#login-content #welcome ~ * .svg-loader-segment {
    transition-delay: 3.75s;
    opacity: 0;
}

#login-content #welcome ~ * .svg-loader-segment.-cal {
    transform: translateX(4vh) translateY(-4vh);
    stroke: #08B5CF;
}

#login-content #welcome ~ * .svg-loader-segment.-heart {
    transform: translateX(3.5vh) translateY(6.7vh);
    stroke: #9965AA;
}

#login-content #welcome ~ * .svg-loader-segment.-steps {
    transform: translateX(-6.9vh) translateY(5.2vh);
    stroke: #0F9EDE;
}

#login-content #welcome ~ * .svg-loader-segment.-temp {
    transform: translateX(-14vh) translateY(-4vh);
    stroke: #F4814B;
}

#login-content #welcome ~ * .svg-data {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 0.6s 4.95s, opacity 0.6s 4.95s, stroke-dasharray 0.6s 4.95s, stroke-dashoffset 0.6s 4.95s;
}

#login-content #welcome ~ * .svg-data.-temp {
    stroke-dasharray: 118;
}

#login-content #welcome ~ * .svg-data.-cal {
    stroke-dasharray: 113;
}

#login-content #welcome ~ * .svg-data.-steps-bg, #welcome ~ * .svg-data.-steps {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
}

#login-content #welcome ~ * .svg-data.-heart {
    stroke-dasharray: 200;
    stroke-dashoffset: 0;
}

#login-content #welcome ~ * .svg-activity-fill,
#login-content #welcome ~ * .svg-activity-line {
    transform: translateY(0);
    opacity: 1;
    transition-duration: 1.2s;
    transition-delay: 4.95s;
}

#login-content #welcome ~ * .app-view:nth-child(1) > :not(svg),
#login-content #welcome ~ * *[class^=app-view]:nth-child(2) > :not(svg) {
    opacity: 0;
    pointer-events: none;
}

#login-content #welcome ~ * .app-view:nth-child(2) {
    opacity: 1;
    pointer-events: auto;
}

#login-content #welcome ~ * .app-view:nth-child(2) > .app-header > *,
#login-content #welcome ~ * .app-view:nth-child(2) > .app-content,
#login-content #welcome ~ * .app-view:nth-child(2) > .app-activity,
#login-content #welcome ~ * .app-view:nth-child(2) .app-item,
#login-content #welcome ~ * .app-view:nth-child(2) .app-item > *:not(.app-graphic) {
    transform: translateY(0);
    transition-delay: 4.95s;
    opacity: 1;
}

#login-content #welcome ~ * .app-view:nth-child(2) > .app-activity {
    opacity: 1;
}

#login-content #welcome ~ * .app-view:nth-child(2) .app-item, #welcome ~ * .app-view:nth-child(2) > .app-content {
    border-color: #E3E3E3;
}
  
#login-content #welcome:not(:target) ~ * .app-graphic {
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
  
@-webkit-keyframes pulse {
    from, to {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
}
  
@keyframes pulse {
    from, to {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
}

@-webkit-keyframes disappear {
    to {
      opacity: 0;
    }
}

@keyframes disappear {
    to {
      opacity: 0;
    }
}

@-webkit-keyframes appear {
    to {
      opacity: 1;
    }
}

@keyframes appear {
    to {
      opacity: 1;
    }
}

#login-content .app-view:nth-child(2) {
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

#login-content .app-view:nth-child(2) > .app-header {
    font-size: 1rem;
    flex-basis: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4vh;
    padding-bottom: 1rem;
}

#login-content .app-view:nth-child(2) > .app-header > h2 {
    transform: translateY(1rem);
}

#login-content .app-view:nth-child(2) > .app-header > h2 > em {
    color: #0F9EDE;
    font-style: normal;
}

#login-content .app-view:nth-child(2) > .app-header > h2,
#login-content .app-view:nth-child(2) .app-item > *:not(.app-graphic) {
    transition-duration: 0.9s;
    opacity: 0;
}

#login-content .app-view:nth-child(2) > .app-content {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    flex-wrap: wrap;
    flex-basis: 40%;
    border: 1px solid transparent;
    border-left: none;
    border-right: none;
}

#login-content .app-view:nth-child(2) > .app-activity {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    opacity: 0;
}

#login-content .app-view:nth-child(2) > .app-activity > .app-header {
    padding: 4vh;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#login-content .app-view:nth-child(2) > .app-activity > .app-header > h2 {
    flex-grow: 1;
}

#login-content .app-view:nth-child(2) > .app-activity > .app-graph {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
  
#login-content .app-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    opacity: 0;
}
  
#login-content .app-item {
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
    border: 1px solid transparent;
    padding: 2vh 4vh;
    padding-bottom: 0;
}

#login-content .app-item > *:not(.app-graphic) {
    transform: translateY(1rem);
}

#login-content .app-item:nth-child(1) .app-graphic {
    transform: translateX(17vh) translateY(5vh);
}

#login-content .app-item:nth-child(2) .app-graphic {
    transform: translateX(-4vh) translateY(4vh);
}

#login-content .app-item:nth-child(3) .app-graphic {
    transform: translateX(6vh) translateY(-7vh);
}

.app-item:nth-child(4) .app-graphic {
    transform: translateY(-8vh) translateX(-4vh);
}
  
#login-content .app-graphic {
    transition: transform 1.2s 3.75s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s 4.35s cubic-bezier(0.77, 0, 0.175, 1);
    margin-top: 1rem;
    opacity: 0;
}
  
#login-content .app-data {
    font-size: 2rem;
}
  
#login-content .app-unit {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.45);
}
  
#login-content .app-label {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.45);
}
  
#login-content .app-menu-icon {
    width: 1.5rem;
    height: 2px;
    background: #D0DFF0;
    margin-top: 0.5rem;
}

#login-content .app-menu-icon:before, .app-menu-icon:after {
    content: "";
    display: block;
    position: absolute;
    width: 1rem;
    height: 100%;
    background: #D0DFF0;
}

#login-content .app-menu-icon:before {
    top: -0.5rem;
    right: 0.1rem;
}

#login-content .app-menu-icon:after {
    top: 0.5rem;
    left: 0.1rem;
}
  
#login-content .app-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1.25rem;
}
  
#login-content .app-tag {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.45);
}

#login-content .app-tag + .app-tag {
    margin-left: 1rem;
}

#login-content .app-tag:before {
    content: "";
    display: inline-block;
    margin-right: 0.5rem;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 50%;
    background: #D0DFF0;
}

#login-content .app-tag.-active:before {
    background: #0F9EDE;
}
  
#login-content {
    font-family: Montserrat, sans-serif;;
    font-weight: 300;
    display: flex;
    flex-direction: row;
    /*justify-content: space-around;*/
    align-items: center;
    background: #f8f8f8;
    font-size: 2.5vh;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    user-select: none;
}
  
#login-content .st0, .st1, #login-content .svg-loader-segment {
    fill: none;
    stroke: #0F9EDE;
    stroke-width: 0.5vh;
    stroke-alignment: inside;
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
  
#login-content .svg-loader {
    opacity: 0;
}
  
#login-content .st0 {
    stroke-dasharray: 0, 900;
    stroke-dashoffset: 0;
}
  
#login-content .st1 {
    transition-delay: 0.3s;
    stroke-dasharray: 50, 153;
    stroke-dashoffset: -153;
}
  
#login-content .svg-loader-segment {
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.85s cubic-bezier(0.77, 0, 0.175, 1), stroke 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
  
#login-content .app-view #svg-lines, #login-content .app-view-signup #svg-lines {
    left: 0;
    width: 100%;
    z-index: 0;
    overflow: visible;
    transform-origin: center 4vh;
}

#login-content .app-view-signup #svg-lines {
    position: absolute;
    top: 18.5%;
}

#login-content .app-view #svg-lines {
    position: relative;
    top: -61.5vh;
}
  
#login-content .svg-data {
    fill: none;
    stroke-width: 0.5vh;
}

#login-content .svg-data.-temp {
    stroke: #F4814B;
    stroke-dasharray: 20, 118;
}

#login-content .svg-data.-cal {
    stroke: #08B5CF;
    stroke-dasharray: 20, 113;
}

#login-content .svg-data.-steps-bg {
    stroke: #E0E1E0;
    stroke-dasharray: 40, 100;
    stroke-dashoffset: -60;
}
  
#login-content .svg-data.-steps {
    stroke: #0F9EDE;
    stroke-dasharray: 20, 73;
    stroke-dashoffset: -53;
}

.svg-data.-heart {
    stroke: #9965AA;
    stroke-dasharray: 50, 200;
    stroke-dashoffset: -150;
}
  
.svg-activity-fill {
    fill: #C4E4F8;
}
  
#login-content .svg-activity-line {
    fill: none;
    stroke: #65BCEA;
    stroke-miterlimit: 10;
    stroke-width: 0.25vh;
}
  
#login-content .svg-activity-avg, #login-content .svg-activity-indicator {
    fill: none;
    stroke: #D0DFF0;
    stroke-width: 0.25vh;
    mix-blend-mode: multiply;
}
  
#login-content .svg-activity-fill, #login-content .svg-activity-line {
    transform: translateY(10vh);
    opacity: 0;
}
  
#login-content > .meta-container {
    left: 10%;
}
  
#login-content .meta {
    flex-basis: calc(80% - 50vh);
    display: inline-block;
    animation: inner-left-visible 1s 0.5s ease both;
}
  
#login-content .meta > * {
    transition: none !important;
}

#login-content .meta h1 {
    font-weight: 300;
    font-size: 4em;
    color: #333;
    animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

#login-content .meta p {
    line-height: 1.3;
    font-size: 1.5vw;
    color: #3366cc;
    animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

#login-content .meta a {
    color:rgba(192, 8, 125, 0.29);
}

#login-content .meta a:hover {
    color:rgb(192, 8, 125);
}

#login-content .welcome_span{
    display: none;
}
  
#login-content .route {
    display: none;
}
  
#login-content *, #login-content *:before, #login-content *:after {
    box-sizing: border-box;
    position: relative;
}
  
@keyframes inner-left-visible {
    from {
      transform: translateX(50%);
      opacity: 0;
      display: none;
    }
    to {
      transform: none;
      opacity: 1;
      display: inline-block;
    }
}
  
@keyframes text-clip {
    from {
      clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    }
    to {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.google_icon {
    background-image: url(/google-icon.svg);
}

.facebook_icon {
    background-image: url(/facebook.svg);
}

.instagram_icon {
    background-image: url(/instagram.svg);
}

.icon-button {
    background-position: center;
    background-repeat: no-repeat;
    height: 5vh;
    width: 5vh;
    background-color: white;
    border: none;
    outline: none;
    cursor:pointer;

    &:hover {
        border-radius: 0.2em;
        border: 1px solid lightgrey;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    }
}

#login-content .signup {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #3366cc;
    font-weight: bold;

    &:hover {
        text-decoration: underline;
    }
}

@keyframes element-invisible {
    from {
        top: 0;
        opacity: 1;
    }
   to {
        top: -100%;
        opacity: 0;
    }
}

@keyframes element-visible {
    from {
        top: -100%;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.invisible {
    animation: element-invisible 0.3s ease both;
}

.visible {
    animation: element-visible 0.3s 0.3s ease both;
}

@media screen and (max-width: 750px){
    #login-content .meta-container {
        display: none;
    }
    
    #login-content #app {
        left: 0;
        position: relative;
        width: 100%;
    }
      
    #login-content .app-view #svg-lines {
          top: -60.5vh;
    }
  
    #login-content .app-view-signup #svg-lines {
          top: 18.5%;
    }
  
    #login-content #app .welcome_span{
          display: block;
    }

    #login-content #app > .app-view > footer > label.contact-us {
        display: block;
    }

    #login-content .app-register {
        bottom: 0.5em;
    }
}

#login-content .app-view-signup .custom-select-country,
#login-content .app-view-signup .custom-select-states {
    position: relative;
    top: 10%;
    height: 7.5vh;
    align-items: center;
    display: flex;
    justify-content: center;

    &:before {
        content: '';
        height: 3vh;
        width: 3vh;
        display: block;
        left: -6.5%;
        top: -10%;
    }
}

#login-content .app-view-signup .custom-select-country:before {
    background: url(/flag.svg) no-repeat center center / cover;
}

#login-content .app-view-signup .custom-select-states:before {
    background: url(/states.svg) no-repeat center center / cover;
}
  
#login-content .app-view-signup .custom-select-country select,
#login-content .app-view-signup .custom-select-states select {
    display: none; /*hide original SELECT element:*/
}
  
#login-content .app-view-signup .select-selected-country,
#login-content .app-view-signup .select-selected-states {
    background-color: transparent;
    padding: 0;
    width: calc(100% - 13vh);
    border: none;
    align-items: center;
    display: flex;
    outline: none;
    padding-bottom: 0.5em;
    left: -2.5%;
    color: #00000060;

    &:focus {
        border-bottom: 0.5px solid lightgrey;
    }
}

#login-content .app-view-signup .select-selected-country:empty:not(:focus):before,
#login-content .app-view-signup .select-selected-states:empty:not(:focus):before {
    content: attr(data-text);
}
  
  /*style the arrow inside the select element:*/
#login-content .app-view-signup .select-selected-country:after,
#login-content .app-view-signup .select-selected-states:after {
    position: absolute;
    content: "";
    right: 1vh;
    width: 0.7em;
    height: 0.7em;
    background: url(/right-triangle.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition-duration: 1s;
    transition-property: transform;
}
  
  /*point the arrow upwards when the select box is open (active):*/
#login-content .app-view-signup .select-selected-country.select-arrow-active:after,
#login-content .app-view-signup .select-selected-states.select-arrow-active:after {
    transform: rotate(90deg);
}
  
  /*style the items (options), including the selected item:*/
#login-content .app-view-signup .select-items-country div, 
#login-content .app-view-signup .select-items-states div {
    color: #ffffff;
    padding: 1vh;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    color: black;
    font-size: 0.8em;
    background-color: #46464614;

    &:hover {
        color:white;
        font-weight: bold;
        background-color: #464646;
        animation: mousein-list-item 1s;
    }
}

@keyframes mousein-list-item {
    from {
        background-color: #46464614;
        color: black;
        font-weight: normal;
    }
    to {
        color:white;
        background-color: #464646;
        font-weight: bold;
    }
}
  
  /*style items (options):*/
#login-content .app-view-signup .select-items-country,
#login-content .app-view-signup .select-items-states {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow-y: auto;
    transition: max-height 1s cubic-bezier(0, 1, 0, 1);
    max-height: 18vh;
    justify-self: center;
    width: 70%;
    box-shadow: 1px 1px 1px 1px #808080;
    border-radius: 0.2em;
}
  
  /*hide the items when the select box is closed:*/
#login-content .app-view-signup .select-hide {
    max-height: 0;
    box-shadow: none;
}
  
.select-items-country div:hover, .select-items-states div:hover, .same-as-selected-country, .same-as-selected-states {
    background-color: rgba(213, 220, 220, 0.2);
}

#login-content .meta .whatsapp, 
#login-content .meta .call, 
#login-content .meta .email {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    width: 5em;
    display: block;
    height: 5em;
    bottom: -3em;
}

#login-content .contact-us-popup-content .whatsapp, 
#login-content .contact-us-popup-content .call, 
#login-content .contact-us-popup-content .email {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    width: 3em;
    display: block;
    height: 3em;
}

#login-content .contact-us-popup-content .email {
    background-image: url(/email-contact.svg);
    margin-left: 2em;
}

#login-content .contact-us-popup-content .whatsapp {
    background-image: url(/whatsapp.svg);
}

#login-content .contact-us-popup-content .call {
    background-image: url(/call.svg);
    margin-left: 2em;
}

#login-content .meta .email {
    background-image: url(/email-contact.svg);
    justify-self: center;
    position: relative;
}

#login-content .meta .whatsapp {
    background-image: url(/whatsapp.svg);
    right: 2em;
}

#login-content .meta .call {
    background-image: url(/call.svg);
    left: 2em;
    width: 4em;
    height: 4em;
}

#login-content .popup {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
}

#login-content .popup:target {
    opacity: 1;
    visibility: visible;
}

#login-content .popup .contact-us-popup-content {
    background-color: white;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: white;
    width: max-content;
    padding: 0 1em;
    height: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
}
