﻿:root {
    --clr-cwhr-blue: #003057;
    --clr-cwhr-green: #009b77;
    --clr-cwhr-orange: #f26723;
    --clr-cwhr-light-blue: #B1E4E3;
    --clr-cwhr-gray: #F4F4F4;
}

/* utility classes */

.cwhr-header-lg {
    font-family: "Fira Sans";
    font-weight: bolder;
    font-size: 25px;
    color: black;
    background-color: var(--clr-cwhr-gray);
    padding-block: 2rem;
    text-align: center;
}

.cwhr-header {
    font-family: "Fira Sans";
    font-weight: bold;
    font-size: 20pt;
    color: black;
}

.cwhr-text {
    font-family: "Fira Sans";
    font-weight: normal;
    font-size: 16px;
    color: black;
}

.cwhr-link {
    font-family: "Fira Sans";
    font-weight: normal;
    font-size: 17pt;
    text-decoration: underline;
    color: black;
}


.cwhr-text-lg {
    font-family: "Fira Sans";
    font-weight: lighter;
    font-size: 30pt;
    color: black;
}

.cwhr-border-top {
    border-top: 4px solid var(--clr-cwhr-light-blue);
}

.cwhr-border-left {
    border-left: 4px solid var(--clr-cwhr-light-blue);
}

.cwhr-drop-shadow {
    box-shadow: -5px 5px 20px 0px #dddddd;
}

.cwhr-flex-grow {
    flex-grow: 1;
}

.cwhr-flex-wrap {
    flex-wrap: wrap;
}

.cwhr-flex-row--mbl-col {
    display: flex;
    flex-direction: row;
}

.cwhr-flex-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.cwhr-flex-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cwhr-flex--justify-end {
    justify-content: end;
}

.cwhr-checkbox {
    accent-color: var(--clr-cwhr-green);
    width: 20px;
    height: 20px;
    vertical-align: sub;
}
.cwhr-radio {
    accent-color: var(--clr-cwhr-green);
    width: 20px;
    height: 20px;
    vertical-align: sub;
}

.cwhr-btn {
    padding: .5em 3em;
    background-color: var(--clr-cwhr-blue);
    text-decoration: none;
    color: #fff !important;
    font-variant: all-small-caps;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 3px;
    border: none;
    vertical-align: bottom;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}

    /*.cwhr-btn:hover {
        background-color: #0094ff;
        text-decoration: none;
    }*/




/* Landing Page */

.cwhr-landing-banner {
    background-color: var(--clr-cwhr-light-blue);
    padding-block: 1rem;
    text-align: center;
    color: black;
    font-family: "Fira Sans";
    font-weight: bold;
    font-size: 16px;
}

.cwhr-landing--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cwhr-landing--login {
    position: relative;
}

.cwhr-landing--products {
    gap: 1rem;
}

.cwhr-landing--products div {
    flex-grow: 1;
    width: 100%;
}


/* elements */
.cwhr-element-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .cwhr-element-form .cwhr-header {
        font-size: 14pt;
    }

    .cwhr-element-form .cwhr-text {
        font-size: 12pt;
    }

.cwhr-element-item {
    background-color: var(--clr-cwhr-gray);
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 2rem;
}

.cwhr-element-item--sustain {
    display: flex;
    flex-direction: column;
}

.cwhr-element-form input[type=radio] {
    accent-color: var(--clr-cwhr-green);
    width: 20px;
    height: 20px;
    vertical-align: sub;
}

.cwhr-element-form label {
    margin-inline: 1rem;
}


.cwhr-element-item-details {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.cwhr-element-radio-group {
    align-self: center;
    display: flex;
    justify-content: space-evenly;
    text-wrap: nowrap;
}

    .cwhr-element-radio-group * {
        cursor: pointer;
    }

    .cwhr-element-error-section {
        background-color: var(--clr-cwhr-gray);
        border: 2px solid var(--clr-cwhr-orange);
        padding: 2rem;
    }

/* Bundles */

.cwhr-bundle-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cwhr-bundle-row {
    background-color: var(--clr-cwhr-gray);
    display: flex;
    gap: 1rem;
    padding: 2rem;
}

.cwhr-bundle-row div {
    flex-basis: 50%;
}

/* Mobile view */
@media (max-width: 760px) {

    .cwhr-flex-row--mbl-col {
        flex-direction: column;
    }

    .cwhr-element-radio-group {
        width: 100%;
    }
}

/* forgot password */
.cwhr-forgot--panel {
    background-color: var(--clr-cwhr-gray);
    padding: 2rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}