*:focus {
    outline: none;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.outmost-wrap {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    height: 100%;
}

.highlight {
    color: #fff;
    background: #33d9b2;
    background:
}

.inverted {
    color: #33d9b2;
    background: #fff;
}

.navbar-wrap {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #33d9b2;
}

.nav-link {
    margin: 0 0.2rem;
    padding: 0.3rem 0.5rem;
    text-decoration: none;
    border: 1px solid #fff;
    font-weight: 500;
    transition: 0.2s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
}

.nav-name {
    color: #fff;
}

.thin-header {
    font-weight: 400;
}

.line {
    border: 1px solid #dfdfdf;
    background: none;
}

.inline-button {
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #33d9b2;
}

.profile-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}
/* ====================== INDEX.PHP ======================= */

.eyecatcher {
    width: 100%;
    height: 85vh;
    background: url('../img/landing-rocks.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.inner-eyecatcher {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.eyecatcher-content {
    width: 50%;
}

.eyecatcher-content-text {
    margin: 0;
    margin-left: 2rem;
    color: #fff;
    font-size: 2rem;
}

.quote-block {
    min-height: 30vh;
    margin: 10vh 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.quote {
    width: 80%;
    font-style: italic;;
}

.embolded-quote {
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
}

.explainbox {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: 1;
}

.explainer {
    max-width: 60%;
    display: flex;
    justify-content: center;
}

.joinbox-holder {
    min-width: 25%;
    display: flex;
    justify-content: center;
}

.explainer-text {
    margin: 0 2rem;
}

.joinbox {
    padding: 2rem;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
}

.joinbox-button-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.signup-button {
    width: 100%;
    padding: 0.5rem 0;
    text-decoration: none;
    border: 1px solid #33d9b2;
    font-weight: bold;
    transition: 0.2s;
}

.signup-button:hover {
    background: none;
    color: #33d9b2;
}

.inline-link {
    color: #33d9b2;
    text-decoration: none;
    border-bottom: 1px solid #33d9b2;
}

.lower-login-button {
    width: auto;
    padding: 0.2rem;
    margin: 1rem auto 0 auto;

}

.x-large {
    font-size: 3rem;
}

.store-wrap {
    /* width: 60%; */
    margin: auto;
    text-align: center;
}

.store-target {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.store-card {
    width: 45%;
    margin: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #efefef;
    box-shadow: 2px 4px 5px #afafaf;
    text-align: left;
}

.store-header {
    margin: 0;
}

.store-desc {
    margin: 0.5rem 0;
}
/* ======================================================== */
/* ====================== SIGNUP.PHP ====================== */

.signup-wrap {
    background: url('../img/sharp-rocks.jpg') no-repeat center center;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signupbox-wrap {
    padding: 1rem;
    background: #efefef;
}

.signup-header {
    text-align: center;
    font-weight: 400;
}

.signupform {
    margin: 1rem;
}

.signupfield {
    min-width: 18vw;
    margin: 0.4rem 0;
    padding: 0.5rem;
    border: 1px solid #afafaf;
    border-radius: none;
    transition: 0.2s;
}

.signupfield:focus {
    border: 1px solid #33d9b2;
}

.signupform .signup-button {
    margin: 0.4rem 0;
}

.form-error {
    width: 100%;
    text-align: center;
}
/* ======================================================== */
/* ====================== LOGIN.PHP ======================= */

.login-wrap {
    background: url('../img/rocks-and-greens.jpg');
    background-size: cover;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* ======================================================== */
/* ==================== CATALOGUE.PHP ===================== */

.catalogue-header {
    margin: 2rem 0;
    text-align: center;
}

.products-container {
    margin: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    width: 20vw;
    margin: 1rem;
}

.product-card-background {
    width: 100%;
    height: 25vh;
}

.product-card-header,
.product-price {
    margin: 0.2rem 0;
}

.browse-products-links {
    margin: 3rem auto;
    text-align: center;
}

/* ======================================================== */
/* ===================== PRODUCT.PHP ====================== */

.product-wrap {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notfound-container {
    width: 60%;
    padding: 1.5rem;
    border: 1px solid #afafaf;
    border-radius: 10px;
}

.product-pane {
    width: 50%;
    padding: 0 1rem;
}

.product-wrong {
    text-align: right;
}

.product-height-align {
    display: flex;
}

.product-header {
    margin-top: 0;
}

.product-image {
    border: 6px solid #fff;
    box-shadow: 2px 2px 5px #dfdfdf;
}

.product-image,
.product-info {
    width: 60%;
}

.comments-wrap {
    width: 60%;
    margin: 0 auto 4rem auto;
}

.comments-area {
    background: #efefef;
    padding: 1rem;
}

.give-comment {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
}

.comment-title {
    width: 100%;
    margin: 0.5rem auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: 1px solid #33d9b2;
    font-size: 1.05rem;
}

.comment-text {
    border: 1px solid #33d9b2;
    margin: 0.5rem 0 1rem 0;
    padding: 0.5rem;
    font-size: 1.05rem;
}

.file-bt {
    margin: 0.5rem 0 1rem 0;
}

.comment-image {
    max-height: 40vh;
}

/* ======================================================== */
/* ===================== SEARCH.PHP ======================= */

.search-wrap {
    width: 50%;
    margin: 0 auto;
}

.product-search {
    width: 100%;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.search-input {
    width: 97%;
    margin: 0.5rem 0;
    padding: 0.5rem auto;
}

.search-lower-row {
    width: 100%;
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
}

.search-select {
    background: #fff;
    border: 2px solid #33d0b2;
    border-radius: 0;
    padding: 0.2rem 0.5rem;
}

.search-submit {
    border: 1px solid #33d9b2;
    padding: 0.5rem 1rem;
    transition: 0.2s;
    cursor: pointer;
}

.search-submit:hover {
    color: #33d0b2;
    background: #fff;
}

/* ======================================================== */
/* ====================== CART.PHP ======================== */

.cart-header {
    margin: 1rem;
}

.dynamic-cart-view {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.itemlist-box {
    width: 70%;
    margin: 1rem;
}

.redeem-box {
    margin: 1rem;
}
