:root {
    --body-bg-color: #4d6777;
    --nav-bg-color: #29344f;
    --nav-bg-color-light: #29345c;
    --main-bg-color: #F4F4FF;

    --nav-font: "Inter", sans-serif;
    --heading-font: "Playfair Display", serif;
    --nav-font-color: rgba(255, 255, 255, 0.6);
    --nav-font-color-hover: rgba(255, 255, 255, 1);
    --nav-font-size: 20px;
    --nav-gradient: linear-gradient(to right, var(--nav-bg-color-light), var(--nav-bg-color));
    --nav-gradient-reverse: linear-gradient(to left, var(--nav-bg-color-light), var(--nav-bg-color));
    --nav-padding: 15px;

    --border-bottom: 1px solid rgba(0,0,0,0.5);
    --border-top: 1px solid rgba(255,255,255,0.1);

    --body-font:"Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--body-bg-color);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

#overlay.active {
    visibility: visible;
    opacity: 1;
}

#messages {
    background-color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease;
    font-family: "Inter", sans-serif;
    border-radius: 10px;

    &.active {
        visibility: visible;
        opacity: 1;
    }

    h3 {
        background-color: var(--nav-bg-color-light);
        color: #FFFFFF;
        margin: 0 0 20px 0;
        padding: 10px 15px;
        font-weight: 500;
    }

    p {
        color: #444444;
        margin: 40px 20px;
    }

    .buttons {
        display: flex;
        border-top: 1px solid #EEEEEE;

        a, button {
            font-family: var(--body-font);
            background-color: #FFFFFF;
            text-decoration: none;
            font-size: 1.2rem;
            color: #999999;
            display: block;
            text-align: center;
            flex-grow: 1;
            padding: 15px 0;
            border: none;
            border-left: 1px solid #EEEEEE;
            transition: background-color 0.25s ease;

            &:hover {
                background-color: #F4F4F4;
                color: #888888;
            }
        }

        a:first-child {
            border-left: none;
        }
    }

    form {
        min-width: 400px;

        .buttons {
            margin-top: 20px;
        }

        label {
            font-weight: bold;
            text-transform: uppercase;
            color: #999999;
            font-size: 0.9rem;
            margin: 25px 15px 5px 15px;
            display: block;
        }

        input, textarea, select {
            font-family: var(--body-font);
            color: #333;
            font-size: 1.2rem;
            margin: 0 15px;
            display: block;
            padding: 4px;
            width: calc(100% - 30px);
            border: none;
            border-bottom: 2px solid #DDF;
            background-color: var(--main-bg-color);

            &:focus {
                outline: none;
                border-bottom: 2px solid rebeccapurple;
            }
        }

        textarea {
            min-height: 200px;
        }
    }
}

body.login {
    padding: 0;
}

#login {
    background: url("/img/backgrounds/purple.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    .formHolder {
        background-color: #EEEEEE;
        padding: 20px;
        border-radius: 10px;

        h2 {
            text-align: center;
            font-family: "Playfair Display", serif;
            color: #444;
            margin-top: 0;
        }

        form {
            font-family: "Inter", sans-serif;

            input {
                display: block;
                width: 400px;
                font-size: 1.1rem;
                margin: 15px 0;
                padding: 5px;
            }
        }
    }
}

#admin {
    min-height: 100vh;
}

nav {
    background-image: var(--nav-gradient);
    font-family: var(--nav-font);
    width: 80px;
    min-height: 100vh;
    position: absolute;
    z-index: 10;
    left: -80px;
    transition: left 0.2s ease;

    &.show {
        left: 0;
    }

    .user {
        padding: 5px;
        border-bottom: var(--border-bottom);
        display: flex;
        flex-direction: column;
        align-items: center;

        img {
            width: 90%;
            height: auto;
            margin: 5%;
        }

        p {
            display: none;
            color: var(--nav-font-color);
        }
    }

    ul {
        border-top: var(--border-top);
        font-size: calc(var(--nav-font-size) * 0.7);
        font-weight: 300;
        list-style-type: none;
        margin: 0;
        padding: 10px 5px;

        a {
            color: var(--nav-font-color);
            text-decoration: none;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: rgba(255, 255, 255, 0);
            transition: all 0.25s ease;

            img {
                width: 35px;
                height: auto;
                display: block;
                margin-bottom: 2px;
            }

            span {

            }

            &.current {
                color: var(--nav-font-color-hover);
                background-color: rgba(255, 255, 255, 0.1);
            }
            &:hover {
                color: var(--nav-font-color-hover);
                background-color: rgba(255, 255, 255, 0.05);
            }
        }

        li {
            position: relative;
        }

        ul {
            position: absolute;
            left: 75px;
            top: 0;
            background-image: var(--nav-gradient-reverse);
            font-size: calc(var(--nav-font-size) * 0.7);

            a {
                white-space: nowrap;
                align-items: start;
                padding: 3px 10px 3px 5px;
                text-transform: uppercase;
                font-weight: 500;
            }
        }
    }
}

main {
    background-color: var(--main-bg-color);
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
}

@media (min-width: 800px) {
    nav {
        position: static;
        min-height: unset;
    }

    #admin {
        display: grid;
        grid-template-columns: 80px auto;
        min-height: 100vh;
    }

    main {
        min-height: unset;
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 1200px) {

    body {
        padding: 20px;
    }

    #admin {
        min-height: calc(100vh - 40px);
        grid-template-columns: 200px auto;
    }

    nav {

        width: unset;

        .user {

            img {
                width: 70%;
                margin: 15% 15% 5% 15%;
            }

            p {
                display: block;
                margin: 0 0 20px 0;
            }
        }

        ul {
            padding: var(--nav-padding);
            font-size: var(--nav-font-size);

            a {
                flex-direction: row;
                padding: 7px 0 7px 5px;

                img {
                    width: 25px;
                    margin-right: 12px;
                }

            }

            ul {
                position: static;
                background: none;
                border-top: none;
                padding: 5px 0 10px 0;
                margin-left: 37px;
            }
        }
    }
    main {
        min-height: unset;
    }

}

#top-bar {
    display: flex;
    width: 100%;
    background-color: #FFFFFF;

    > div {
        border-bottom: 1px solid #CCCCCC;
        border-left: 1px solid #CCCCCC;

        &:first-child {
            border-left: none;
        }
    }

    #super-search {
        flex-grow: 1;
        display: flex;
        align-items:center;
        padding: 0 30px;
        column-gap: 20px;
        position: relative;
        overflow: visible;
        z-index: 10;
        font-family: "Inter", sans-serif;
        font-optical-sizing: auto;
        font-weight:300;
        font-style: normal;
        font-variation-settings:
                "wdth" 100;

        svg {
            width: 30px;
            height: auto;
        }

        form {
            flex-grow: 1;
        }

        input {
            font-size: 1.1rem;
            line-height: 2.2rem;
            width: 100%;
            border: none;
        }

        #search-results {
            position: absolute;
            top: 60px;
            width: 100%;
            border: 1px solid #999;
            border-top: none;
            left:0;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease;
            padding: 20px;
            box-shadow: 0 10px 25px #999;
            z-index:5;
            background-color:#FFFFFF;

            &.show {
                opacity:1;
                visibility: visible;
                top:80px;
            }

            h3 {
                font-size: 1.6rem;
                font-weight: 500;
                font-family: var(--heading-font);

            }
            .drop-grid {
                display: grid;
                grid-template-columns: repeat(4,1fr);
                grid-gap: 10px;
                border-bottom: 1px solid #CCCCCC;

                div {

                    img {
                        width: 100%;
                        height: auto;
                        display: block;
                    }

                    p {

                        a {
                            display: block;
                            text-align: center;
                            color: #666666;
                            text-decoration: none;

                            &:hover {
                                color: #333333;
                                text-decoration: underline;
                            }
                        }
                    }
                }

                &.small {
                    grid-template-columns: repeat(6, 1fr);
                }
            }

            .supplier-results {
                border-bottom: 1px solid #CCCCCC;

                a {
                    color:#2B364A;
                    text-decoration: none;
                }

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

            .range-results {

                .ranges {
                    display: flex;
                }

                .range {
                    width: 33%;
                    margin: 10px;
                    padding: 10px;
                    border: 1px solid #CCCCCC;
                    background-color: #fff;

                    &:hover {
                        background-color: #eee;
                    }

                    img {
                        width: 100%;
                        height: auto;
                    }

                    p {
                        text-align: center;
                        font-size: 1.2rem;
                    }

                    a {
                        color:#2B364A;
                        text-decoration: none;
                    }

                }
            }
        }

    }
    .icon-box {
        width:80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;

        &:hover {
            background-color: #DDD;
        }

        svg {
            width:30px;
            height:auto;
            fill:#2B364A;
        }

        &#logout {
            svg {
                width: 40px;
            }
        }
    }

}

#content {
    font-family: var(--body-font);
    flex-grow:1;
    display: flex;
    flex-direction: column;

    .content-header {
        padding: 15px 30px;
        display: flex;
        justify-content: space-between;
        align-items: start;

        h1 {
            font-weight: normal;
            color: #333333;
            margin: 15px 0 5px 0;
        }
        h2 {
            font-weight: normal;
            color: #29345c;
            font-size: 1.1rem;
            margin-top: 0;

            &.message {
                color: #FFFFFF;
                background-color: #2B364A;
                padding: 5px 10px;
                border-radius: 15px;
            }
        }

        .buttons {

            margin-top: 15px;
            display: flex;
            align-items: center;

            a, button {
                font-family: var(--body-font);
                text-decoration: none;
                margin: 0 0 0 5px;
                padding: 10px 15px 10px 10px;
                color: #666666;
                border: 2px solid #999999;
                border-radius: 22px;
                font-weight: bold;
                transition: all 0.25s ease;
                text-transform: uppercase;
                font-size: 0.9rem;
                display: flex;
                align-items: center;
                background-color: transparent;

                img {
                    height: 20px;
                    width: auto;
                    margin-right: 10px;
                    transition: all 0.25s ease;
                    color: #333333;
                    fill: currentColor;
                }

                &:hover {
                    background-color: #FFFFFF;

                    img {
                        transform: rotate(10deg) scale(1.2);
                    }
                }

            }

        }
    }

    .breadcrumbs {
        border-top: 1px solid #CCCCCC;
        border-bottom: 1px solid #CCCCCC;

        ul {
            display: flex;
            list-style-type: none;
            padding-left: 15px;
        }

        li {
            border-left: 2px solid #BBBBBB;

            &:first-child {
                border-left: none;
            }
        }

        a {
            padding: 10px 15px;
            font-weight: bold;
            color: #444444;
            text-decoration: none;

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

    .top-info {
        width: 100%;
        padding: 15px 30px;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-gap: 20px;

        img.missing {
            max-width: 200px;
            width: 80%;
            align-self: center;
        }

        h3.supplier {
            font-family: var(--heading-font);
            color: #444444;
            font-size: 2rem;
            font-weight: normal;
            margin-bottom: 0;
        }

        .info-box {
            display: flex;
            flex-direction: column;
            border-radius: 3px;
            background-color: #FFFFFF;
            padding: 0;
            box-shadow: 0 1px 1px rgba(0,0,0,0.1),
            0 2px 2px rgba(0,0,0,0.09),
            0 4px 4px rgba(0,0,0,0.08),
            0 8px 8px rgba(0,0,0,0.07),
            0 16px 16px rgba(0,0,0,0.06);

            h2 {
                font-weight: normal;
                color: #29345c;
                border-bottom: 1px solid var(--nav-bg-color-light);
                padding: 20px 0 15px 0;
                margin: 0 15px;
                font-family: "Playfair Display", serif;
                display:flex;
                align-items: center;
                justify-content:space-between;
                max-height: 65px;

                a {
                    color: #29345c;
                    text-decoration: none;

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

                img.preview {
                    max-width: 100px;
                    max-height: 40px;
                    aspect-ratio: auto;
                }
            }

            .fields {
                flex-grow: 1;
                overflow: hidden;
                padding-bottom: 25px;

                img {
                    width: auto;
                    max-width: 100%;
                    max-height: 400px;
                    display: block;
                    margin: 25px auto 0 auto;
                }

                img.preview {
                    width: auto;
                    display: block;
                    min-width: 300px;
                    max-height: 400px;

                }

                img.thumb {
                    max-height: 200px;
                }
            }

            a.folder {
                display: block;
                padding: 15%;

                img {
                    width: 100%;
                    height: auto;
                    opacity: 0.5;
                    transition: opacity 0.25s ease;
                }

                &:hover {
                    img {
                        opacity: 1;
                    }
                }
            }

            form.fields {
                padding-bottom: 0;
            }

            p {
                color: #333;
                font-size: 1.2rem;
                margin: 0 15px;
            }

            p.fade {

                height: 120px;
                overflow: hidden;
                position:relative;

                &::after {
                    content: ' ';
                    display: block;
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                    height: 40px;
                    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
                }

            }

            p.title, label {
                font-weight: bold;
                text-transform: uppercase;
                color: #999999;
                font-size: 0.9rem;
                margin: 25px 15px 5px 15px;
                display: block;
            }

            p.error {
                background-color: #FF3333;
                color: #FFFFFF;
                font-size: 1rem;
                font-weight: 500;
                padding: 5px 10px;
                margin: 5px 15px 0 15px;
                border-radius: 16px;
            }

            input, textarea, select {
                font-family: var(--body-font);
                color: #333;
                font-size: 1.2rem;
                margin: 0 15px;
                display: block;
                padding: 4px;
                width: calc(100% - 30px);
                border: none;
                border-bottom: 2px solid #DDF;
                background-color: var(--main-bg-color);

                &:focus {
                    outline: none;
                    border-bottom: 2px solid rebeccapurple;
                }
            }

            textarea {
                min-height: 200px;
            }

            .buttons {
                display: flex;
                border-top: 1px solid #EEEEEE;

                a, button {
                    font-family: var(--body-font);
                    background-color: #FFFFFF;
                    text-decoration: none;
                    font-size: 1.2rem;
                    color: #999999;
                    display: block;
                    text-align: center;
                    flex-grow: 1;
                    padding: 15px 0;
                    border: none;
                    border-left: 1px solid #EEEEEE;
                    transition: background-color 0.25s ease;
                    cursor: pointer;

                    &:hover {
                        background-color: #F4F4F4;
                        color: #888888;
                    }

                    &.unsaved {
                        background-color: #FFDDDD;
                        color: #444444;

                        &:hover {
                            background-color: #FFCCCC;
                            color: #333333;
                        }
                    }
                }

                a:first-child {
                    border-left: none;
                }
            }

            form {
                display: flex;
                flex-direction: column;

                fieldset {
                    border: none;
                    padding: 0;
                    margin: 0;
                }
            }
        }

        .full {
            grid-column: auto / span 12;
        }
        .half {
            grid-column: auto / span 6;
        }
        .third {
            grid-column: auto / span 4;
        }
        .quarter {
            grid-column: auto / span 3;
        }
        .fifth {
            grid-column: auto / span 2;
        }

        .featured {
            width: 80%;
            height: auto;
            margin: 0 10%;
        }
    }
}

.tabbed-info {
    font-family: var(--body-font);
    margin-top: 30px;
    flex-grow:1;

    display: flex;
    flex-direction: column;

    .tabs {
        display: flex;
        padding-left: 30px;

        .tab {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 0;
            margin: 0 20px;
            text-transform: uppercase;
            font-weight: bold;
            color: #444444;
            border-bottom: 3px solid var(--main-bg-color);
            cursor: pointer;

            &:hover {
                border-color: #EEEEEE;
            }

            &.current {
                border-color: #29345c;
            }

            &:first-child {
                margin-left: 0;
            }
        }
    }

    .info {
        background-color: #FFFFFF;
        flex-grow:1;
        border-top: 1px solid #DDD;
        padding-bottom: 30px;

        img.preview {
            width: auto;
            display: block;
            min-width: 200px;
            max-width: 400px;
            max-height: 400px;

        }

        .info-window {
            padding: 30px;

            &.hide{
                display: none;
            }

            h3 {
                font-size: 2.4rem;
                font-weight:300;
                color: #444444;
                margin-top: 0;
            }
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-gap: 20px;

            div.window {
                background-color: var(--main-bg-color);
                border-radius: 5px;
                overflow: hidden;
                padding-bottom: 15px;
                box-shadow: 0 1px 1px rgba(0,0,0,0.1),
                0 2px 2px rgba(0,0,0,0.09),
                0 4px 4px rgba(0,0,0,0.08),
                0 8px 8px rgba(0,0,0,0.07),
                0 16px 16px rgba(0,0,0,0.06);

                h4 {
                    background-color: var(--nav-bg-color-light);
                    color: #FFFFFF;
                    margin: 0 0 20px 0;
                    padding: 10px 15px;
                    font-weight: 500;
                }

                p {
                    display: flex;
                    justify-content: space-between;
                    padding: 10px 0;
                    margin: 0 15px;
                }


                .title {
                    font-weight: bold;
                    font-size: 1.2rem;
                    color: #444444;
                    padding: 0;
                    margin: 15px 10px 5px 10px;
                }

                .description {
                    font-size: 0.9rem;
                    font-style: italic;
                    color: #666666;
                    padding: 0;
                    margin: 5px 10px 15px 10px;
                }
            }

            .list {

                p {
                    border-bottom: 1px solid #DDD;

                }

                p:last-child {
                    border-bottom: none;
                }
            }

            /*
            div.form-headers {
                display: grid;
                grid-template-columns: 12.5% 37.5% 12.5% 12.5% 12.5% 12.5%;
            }

            form.update {

                fieldset {
                    display: grid;
                    grid-template-columns: 12.5% 37.5% 12.5% 12.5% 12.5% 12.5%;
                }

            }
             */

            div.row {
                display: flex;
                align-items: center;
                margin: 0 15px;
                background-color: #FFFFFF;

                p {
                    flex-grow: 1;
                    color: #444444;
                }

                form {
                    flex-grow: 1;
                    display: flex;
                    align-items: center;

                    label {
                        flex-grow: 1;
                        padding-left: 15px;
                    }

                    input {
                        -webkit-appearance: textfield;
                        appearance: textfield;
                        font-family: var(--body-font);
                        color: #444444;
                        font-size: 1rem;
                        flex-grow: 0;
                        line-height: 30px;
                        max-width: 150px;
                        margin-right: 15px;
                        padding-right: 10px;
                        border: none;
                        border-bottom: 2px solid #DDF;
                        text-align: right;

                        &:focus {
                            outline: none;
                            border-bottom: 2px solid rebeccapurple;
                        }
                    }

                    button {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 50px;
                        height: 50px;
                        background-color: #7889a8;
                        border: none;
                        cursor: pointer;

                        img {
                            width: 25px;
                            height: auto;
                        }

                        &:hover {
                            background-color: #5a6f97;
                        }
                    }
                }

                .buttons {

                    display: flex;
                    align-items: center;

                    a, button {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 50px;
                        height: 50px;
                        background-color: #7889a8;
                        border: none;
                        cursor: pointer;

                        &.pause {
                            background-color: orange;
                        }

                        &.enable {
                            background-color: lightgreen;
                        }

                        &.delete {
                            background-color: red;
                        }

                        img {
                            width: 25px;
                            height: auto;
                        }

                        &:hover {
                            filter: brightness(85%);
                        }
                    }
                }
            }

            ul {
                margin-top: 10px;
                border-bottom: 1px solid #DDD;
                font-size: 0.9rem;
                color: #444444;
                padding-bottom: 15px;
            }

            .quarter {
                grid-column: auto / span 3;
            }
            .third {
                grid-column: auto / span 4;
            }
            .half {
                grid-column: auto / span 6;
            }
            .twothird {
                grid-column: auto / span 8;
            }
            .full {
                grid-column: auto / span 12;
            }
        }

        .list-item {
            border-bottom: 1px solid #DDD;
            display: flex;
            margin: 0 20px;
            padding: 5px;

            .image {
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #FFFFFF;
                border: 2px solid #DDD;
                margin-right: 10px;
                width: 100px;

                img {
                    max-height: 100px;
                    max-width: 100%;
                    display: block;

                }
            }
            .text {
                flex-grow: 1;

                a {
                    text-decoration: none;
                    color: #444444;

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

            .buttons {
                display: flex;
                align-items: center;

                a, button {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 50px;
                    height: 50px;
                    background-color: #7889a8;
                    border: none;
                    cursor: pointer;

                    img {
                        width: 25px;
                        height: auto;
                    }

                    &:hover {
                        background-color: #5a6f97;
                    }
                }
            }

        }
    }
}

.image-selector {
    padding: 30px;
    background-color: var(--main-bg-color);
    min-width: 500px;
    width: 70%;
    min-height: 400px;
    height: 80vh;
    overflow: scroll;

    h3 {
        font-weight: normal;
        color: #29345c;
        border-bottom: 1px solid var(--nav-bg-color-light);
        padding: 20px 0 15px 0;
        margin: 0 15px;
        font-family: "Playfair Display", serif;
    }


    .image-grid {
        display: grid;
        grid-gap: 10px;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        margin: 10px 0;

        .image, button {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #FFFFFF;
            padding: 10px;
            cursor: pointer;
            box-shadow: 0 1px 1px rgba(0,0,0,0.1),
            0 2px 2px rgba(0,0,0,0.09),
            0 4px 4px rgba(0,0,0,0.08),
            0 8px 8px rgba(0,0,0,0.07),
            0 16px 16px rgba(0,0,0,0.06);
            width: 200px;
            border: none;


            img {
                display: block;
                min-width: 100px;
                max-width: min(200px, 100%);
                max-height: 200px;
            }

            p {
                font-size: 1rem;
            }
        }

        p {
            font-family: "Inter", sans-serif;
            color: #444444;
            margin: 10px 0;
        }
    }

    .sub-folders {

        img {
            opacity: 0.7;
            transition: opacity 0.5s ease;

            &:hover {
                opacity: 1;
            }
        }

    }

    .breadcrumbs {
        border-bottom: 1px solid #CCCCCC;
        padding: 15px 0;
        margin: 0 15px 15px 15px;

        button {
            border: none;
            border-left: 1px solid #999999;
            background-color: transparent;
            padding: 5px 10px;
            color: #444444;

            &:first-child {
                border-left: none;
            }

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

        }

    }
}

.quick-add-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    .button a {
        background-color: var(--nav-bg-color-light);
        color: #FFFFFF;
        margin: 20px 0;
        padding: 10px 15px;
        font-weight: 500;
        display: block;
        text-decoration: none;

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

    form {
        width: 100%;
    }

    label {
        font-weight: bold;
        text-transform: uppercase;
        color: #999999;
        font-size: 0.9rem;
        margin: 25px 15px 5px 15px;
        display: block;
    }

    input, textarea, select {
        font-family: var(--body-font);
        color: #333;
        font-size: 1.2rem;
        margin: 0 15px;
        display: block;
        padding: 4px;
        width: calc(100% - 30px);
        border: none;
        border-bottom: 2px solid #DDF;
        background-color: #FFFFFF;

        &:focus {
            outline: none;
            border-bottom: 2px solid rebeccapurple;
        }
    }

    .buttons {
        display: flex;
        border-top: 1px solid #EEEEEE;
        margin: 20px 15px;

        a, button {
            font-family: var(--body-font);
            background-color: #FFFFFF;
            text-decoration: none;
            font-size: 1.2rem;
            color: #999999;
            display: block;
            text-align: center;
            flex-grow: 1;
            padding: 15px 0;
            border: none;
            border-left: 1px solid #EEEEEE;
            transition: background-color 0.25s ease;

            &:hover {
                background-color: #F4F4F4;
                color: #888888;
            }
        }

        a:first-child {
            border-left: none;
        }
    }

}