@import url(hccard.css);
@import url(vars.css);
@import url(banner.css);
/* @import url(banner.css); */
html,body{ overflow-x: hidden; }
* {
    margin: 0;
    padding: 0;
    border: 0;
    /* font-family: Montserrat !important; */
}

body {
    display: flex;
    flex-direction: column;
    /* background: rgb(38,99,130); */
    /* background: linear-gradient(90deg, rgba(38,99,130,1) 0%, #2f98cd 50%, rgba(38,99,130,1) 100%); */
    /* backgrounrgb(255, 255, 255)08);
    background: radial-gradient(circle, #2f98cd 0%,  rgba(38,99,130,1) 100%); */
    height: 100vh;
}

#main {
    flex: 1;
    min-height: 100vh;
    background: rgba(var(--parchment-rgb), 1)
}

.main-content {
    /* background-color: var(--secondary);   */
    height: fit-content;
    width: 100%;
    position: absolute;
    padding-bottom: 1rem;
    padding-right: 0;
    background: rgba(var(--parchment-rgb), 1)
        /* opacity:.95; */
}



textarea {
    height: 5rem;
}

@keyframes rollout {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

/* .signout-nav {
    margin-top:100%;
} */

/* #logout-spacer{
    height: 85%;
} */

#counter {
    width: 80px;
}

#notification-area {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

#notification-area>div {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}


.exp-wrapper {
    position: relative;
    border: 1px solid #aaa;
    display: flex;
    justify-content: space-around;
    height: 36px;
    line-height: 36px;
    font-size: 24px;
}

.exp-wrapper:after {
    content: '/';
    position: absolute;
    left: 50%;
    margin-left: -4px;
    margin-top: -.2rem;
    color: #aaa;
}

input.exp {
    float: left;
    font-family: monospace;
    border: 0;
    width: 20px;
    outline: none;
    appearance: none;
    font-size: 14px;
}

.subtitle {
    color: white;
}

.contact {
    margin-top: 5rem;
    max-width: 90%;
    padding: 2rem;
    background-color: var(--primary-accent) !important;
    /* background: radial-gradient(circle, #ffffff 0%,  rgb(199, 199, 199) 100%); */
    border-color: black;
    border-width: .05rem !important;
    border-style: solid;
    border-radius: .4%;
}

.contact h1 {
    text-align: center !important;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: -1px 1px 2px rgb(0, 0, 0),
        .5px -.5px 1.5px rgba(var(--primary-accent-rgb), .8) !important;
}

.input {
    border-radius: 0;
}

.input[type="text"] {
    box-shadow: inset 0 0 .2rem black;
    background-color: var(--parchment);
}

.input[type="email"] {
    box-shadow: inset 0 0 .2rem black;
    background-color: var(--parchment);
}

.input[type="tel"] {
    box-shadow: inset 0 0 .2rem black;
    background-color: var(--parchment);
}

.input[placeholder] {
    font-weight: bold;
}

#content {
    min-height: 85vh;
}

.content {
    margin-top: 1rem;
}

h2.title {
    text-shadow: -1.5px 1.5px 4px rgba(0, 0, 0, 0.5),
        .5px -.5px 1.5px rgb(148, 143, 127) !important;
}

.button {
    background-color: var(--button-color) !important;
    /*rgb(58, 80, 125)*/
    color: rgb(255, 255, 255) !important;
    width: 100%;
    font-weight: 600 !important;
    border-radius: 0;
    /* -background: linear-gradient(90deg, rgba(172, 172, 172, 0.491) 0%, rgb(243, 243, 243) 50%, rgba(143, 143, 143, 0.371) 100%) !important; */
    box-shadow: .1rem .1rem .3rem black;
}

.side-bar section {
    margin: 0;
    padding: 0;
}

/* .selected::before{
  content: ">";
  margin-right: .25em;
} */

.menu {
    margin: 0;
    padding: 0;
}

.menu-list a:hover {
    color: black !important;
}

/* .menu-item {
  width: 75%;
} */

.pop {
    box-shadow: .2rem .2rem .5rem black;
}

/* .dull{
  border-radius: 1%;
} */

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

    /* 0% {
    opacity: 75%;
  }
  100% {
    opacity: 100%;
  } */
}

#fade {
    animation: fade 2000ms;
    /* opacity: 1; */
    /* animation-delay: 2s;
  animation-duration: 5s; */
    animation-iteration-count: 1;
}

@keyframes flip {

    0% {
        transform: rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }

    90% {
        transform: rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }

    95% {
        transform: rotate3d(1, 0, 0, 45deg);
        opacity: .5;
    }

    100% {
        transform: rotate3d(0);
        opacity: 1;
    }
}

#flip {
    animation: flip 2250ms;
    /* animation-delay: 5s; */
    animation-iteration-count: 1;
}

@keyframes blink {

    0%,
    49% {
        transform: rotate3d(0, 0, 0, 0);
        opacity: 1;
    }

    50% {
        transform: rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }

    51%,
    100% {
        transform: rotate3d(0, 0, 0, 0);
        opacity: 1;
    }
}

.blink {
    animation-name: blink;
    animation-duration: 15000ms;
    animation-iteration-count: infinite;
}



@media screen and (max-device-width : 480px) {
    .contact {
        width: 80%;
        margin-right: 10%;
        margin-left: 10%;
    }

}

@media screen and (max-device-width : 480px) {
    .contact {
        width: 80%;
        margin-right: 10%;
        margin-left: 10%;
    }

    .banner-title {
        font-size: 2em;
    }
}

