﻿body {
    background-image: linear-gradient(136deg,#0A1632 37%,#00F4C3 100%);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.top-bar {
    position: static;
    width: 100%;
}

    .top-bar img {
        margin: 45px;
    }

    .top-bar .right-img {
        float: right;
        display: flex;
        flex-direction: column;
    }

        .top-bar .right-img span {
            color: white;
            font-size: 24px;
            background: #003b5c;
            padding: 25px;
            margin-right: 45px;
        }

        .top-bar .right-img img {
            float: none;
        }

    .top-bar .btn {
        float: right;
        margin: 45px;
    }

.content {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    clear: both;
}

.choose-specialty .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.choose-specialty .row {
    margin-top: 30px;
}


.choose-heading {
    color: white;
    text-align: center;
}

.choose-resources .card-body {
    padding: 30px 30px;
    background: white;
    flex: 1;
}

.choose-resources .resource-card {
    display: flex;
    width: 365px;
    height: 100%;
}

.choose-resources .card-content {
    padding: 0;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.choose-resources h1 {
    color: white;
}

.choose-resources p.subhead {
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
}

.choose-resources img {
    width: 100%;
}

.card-content img {
    height: 181px;
}

.check {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #FFFFFFB8;
    right: 15px;
    top: 15px;
    /*    border: 1px solid #707070;*/
    position: absolute;
}

    .check.true:before {
        /*        content: '\2713';*/
        content: '\f058';
        color: var(--ng-color-blue08);
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        font-size: 28px;
        font-family: 'Font Awesome 5 Pro';
        font-weight: 400;
    }

.card-body h3 {
    margin-top: 0;
}

.card-body .card-description {
    margin-top: 30px;
}

.card-body .card-body-subtitle span {
    background-color: var(--ng-color-light-blue03);
    padding: 5px 10px;
    width: fit-content;
    border-radius: var(--ng-size-4px);
}

.home-button {
    width: 66px;
    height: 66px;
    margin: 0 auto;
    cursor: pointer;
    margin-bottom: 20px;
}

    .home-button img {
        border-radius: 50%;
    }

.inputs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.kiosk-form {
    display: flex;
    flex-direction: column;
}


    .kiosk-form .inputs input, .kiosk-form select {
        background-color: rgba(255, 255, 255, 0.12);
        border: solid 1px white;
        color: white;
        height: 60px;
        margin-top: 2%;
        font: var(--f-regular-5);
        font-size: 22px;
        width: 48%;
        margin: 0 1% 2% 0;
        padding: 1%;
    }

        .kiosk-form select option {
            color: rgba(0, 0, 0, 0.7);
        }


input::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.50);
}

.form-row {
    display: flex;
    flex-direction: row;
}

.qr-code {
    width: 100%;
    border-radius: 12px;
}

.mobile-form {
    margin-bottom: 50px;
}

    .mobile-form .choose-heading h1 {
        font-size: 4rem;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .mobile-form .kiosk-form input[name="first name"],
    .mobile-form .kiosk-form input[name="last name"] {
        margin-left: 0;
        margin-right: 0;
        width: inherit;
    }

    .mobile-form .kiosk-form input[name="submit"] {
        float: none;
        text-align: center;
    }

.top-bar .c-logo {
    display: none;
}

.thank-you-message,
.error-message {
    position: fixed;
    background-color: white;
    z-index: 5;
    top: 0;
    padding: 10px;
    opacity: 0;
    transition: opacity 1s,top 0.5s;
    border-radius: 12px;
}

a:hover {
    text-decoration: none;
}


/*overrides*/
.slick-initialized .slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list {
    display: flex;
    /*     justify-content: center; */
}

.slick-slide > div {
    padding: 0 15px;
}

.slick-arrow {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-dots {
    text-align: center;
    margin-top: 15px;
    padding: 0;
}


    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 25px;
        height: 25px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            padding: 5px;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: none;
            border-radius: 15px;
            background-color: white;
            width: 25px;
            height: 25px;
            opacity: 0.2;
        }

            .slick-dots li button:hover {
                opacity: 1;
                background-color: var(--ng-color-blue08);
            }

        .slick-dots li.slick-active button {
            opacity: 1;
            background-color: white;
        }

.modal-content {
    margin: 15% auto;
    padding: 17px;
}

.modal-header {
    border-bottom: 0;
    display: flex;
    position: relative;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-close-button {
    cursor: pointer;
    border: none;
    background-color: initial;
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 0 10px;
}

.modal-svg {
    max-height: 50px;
    max-width: 25px;
}

.hidden {
    display: none;
}

.choose-specialty .row {
    gap: 16px;
}

.specialty-btn {
    padding: 0;
}

    .specialty-btn img {
        width: 100%;
        height: auto;
    }

.specialty-btn {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.specialty-name {
    background-color: white;
    text-align: center;
    flex: 1;
    align-content: center;
    padding: 15px 0;
}

    .specialty-name p {
        margin: 0;
        font-weight: 700;
    }

.specialty-btn:hover {
    cursor: pointer;
}

    .specialty-btn:hover .hover-overlay {
        background-color: rgb(0 0 0 / .3);
    }

.hover-overlay {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    transition: all .5s ease;
}

.img-container {
    position: relative;
}

.video {
    margin-top: 16px;
}

.resource-slide-btn {
    color: white;
    font-size: 28px;
}

.wrapper {
    height: 100%;
}

.specialty-cards {
    position: relative;
}

.ng-previous,
.ng-next {
    position: absolute;
    top: 50%;
    width: 28px;
}

.ng-previous {
    left: 0;
}

.ng-next {
    right: 0;
}

    .ng-previous:hover i,
    .ng-next:hover i {
        cursor: pointer;
    }

    .ng-next i {
        text-align: right;
        width: 100%;
    }

.submit-wrapper {
    width: 48%;
}

@media screen and (max-width:1700px) {
    .slick-prev {
        z-index: 1;
        left: -10%;
    }

    .slick-next {
        right: -2%;
    }
}


@media screen and (max-width:1400px) {
    .slick-prev {
        left: -5%;
        top: 40%;
    }

    .slick-next {
        right: 0%;
        top: 40%;
    }

    .slick-prev:before {
        width: 60px;
    }

    .slick-next:before {
        width: 60px;
    }

    .choose-resources .resource-card {
        width: 300px;
    }

    .card-content img {
        height: auto;
    }
}

@media screen and (max-width:1300px) {
    .card-body h3 {
        font-size: 24px;
    }
}

@media screen and (max-width:1199px) {
    .ng-previous,
    .ng-next {
        display: none;
    }

    .specialty-container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        row-gap: 30px;
    }

    .card-content {
        width: 100%;
    }

    .row .form-row div {
        margin-bottom: 30px;
    }

    .kiosk-form input,
    .kiosk-form select {
        margin-right: 0 !important;
        margin-left: 0 !important;
        width: 100% !important;
    }

        .kiosk-form input[name="submit"] {
            float: none;
            max-width: 100%;
            height: 60px;
        }

    .wrapper {
        height: auto;
        padding: 0 10px;
    }

    .send-resources {
        margin-top: 16px;
    }
}

@media screen and (max-width:1100px) {
    .top-bar {
        display: flex;
        justify-content: center;
        position: inherit;
    }

        .top-bar .w-logo {
            display: none;
        }

        .top-bar .btn {
            margin: 22px;
        }

        .top-bar .c-logo {
            display: block;
            margin: 22px;
        }

    .content {
        align-items: baseline
    }

    body {
        height: initial;
        margin-bottom: 100px;
    }

    .thank-you-message {
        width: 100%;
        text-align: center;
        position: fixed;
        bottom: 78px;
        top: unset;
    }

        .thank-you-message h1 {
            font-size: 26px;
        }

    .content {
        padding-top: 30px;
    }
}

@media screen and (max-width:992px) {
    .card-body h3 {
        font-size: 20px;
    }

    .card-content {
        display: flex;
    }

    .choose-resources .card-body {
        margin: 0;
        padding: 12px;
    }

    .check {
        top: 0px;
    }


    .form-row {
        flex-direction: column-reverse;
    }

    .qr-code {
        margin-top: 20px;
    }

    .ng-serif-regular.ng-5xl {
        font-size: var(--ng-size-32px);
    }
}

@media (max-width: 768px) {
    .container {
        width: 580px;
    }

    .card-content img {
        height: 100%;
    }

    .card-body h3 {
        font-size: 20px;
    }

    .choose-heading h1 {
        font-size: 3.3rem;
    }

    .choose-heading p {
        font-size: 1.55rem;
    }
}

@media screen and (max-width:700px) {
    .card-content img {
        display: none;
    }
}

@media (max-width: 610px) {
    .container {
        width: 480px;
    }
}
