﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */

a { color: #0366d6; }

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */

html { font-size: 14px; }

@media (min-width: 768px) {
    html { font-size: 16px; }
}

.border-top { border-top: 1px solid #e5e5e5; }

.border-bottom { border-bottom: 1px solid #e5e5e5; }

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/* Custom css
-------------------------------------------------- */

@media (min-width: 1200px) {
    .container {
        min-width: 1140px;
        max-width: 80%;
    }
}

@media (min-width: 400px) {
    .d-xxs-inline-block { display: inline-block !important; }
}

body {
    background: rgb(145, 162, 235);
    background: linear-gradient(170deg, rgba(145, 162, 235, 0) 0%, rgba(130, 144, 209, 0.01) 100%);
}

header { margin-bottom: 30px; }

h1 { margin-bottom: 2rem; }

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 15px;
}

ul span { font-weight: bold; }

a:hover { text-decoration: none; }

input.wishListBtn {
    font-size: initial;
    line-height: initial;
    border: none;
    border-style: none;
}

input.wishListBtn:active { border-style: none; }

a.wishListBtn, div.wishListBtn, input.wishListBtn {
    color: white;
    padding: 10px;
    font-weight: bold;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin: 0 5px;
}

a.wishListBtn, input.wishListBtn { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }

div.wishListBtn { padding: 3px 10px; }

.wishListBtn-minimal { border: 2px solid white; }

.wishListBtn-primary { background-color: #91A2EB; }

.wishListBtn-secondary { background-color: #6c757d; }

.wishListBtn-danger { background-color: #ff4444; }

.wishListBtn-warning { background-color: #ffbb33; }

.wishListBtn-success, .wishListBtn-primary { background-color: #00C851; }

.wishListBtn-info { background-color: #33b5e5; }

.wishListContainerHeader {
    display: grid;
    grid-template-columns: 1fr max-content max-content;
    -ms-align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 15px;
}

.wishListContainerHeader-sort > form {
    display: flex;
    -ms-align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 5px;
    gap: 5px;
}

.wishListContainerHeader-sort > form > select {
    width: initial;
}

.wishListContainerHeader-canedit { border-left: 1px solid black; }

@media (max-width: 991px) {
    .wishListContainerHeader-sort {
        grid-row: 2;
        grid-column: 1/3;
        width: max-content;
        justify-self: end;
        margin-top: 5px;
    }

    .wishListContainerHeader-canedit { border-left: none; }
}

.wishListContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    margin: 30px;
}

.wishListContainer.maxTwoColumn { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1200px) {
    .wishListContainer { grid-template-columns: repeat(2, 1fr); }

    .wishListContainer.maxTwoColumn { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 767px) {
    .wishListContainer { grid-template-columns: repeat(1, 1fr); }
}

.wishListContainer > a { display: flex; }

.wishListItem {
    width: 100%;
    color: #444;
    padding: 30px;
    background-color: skyblue;
    -ms-border-radius: 12px;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    word-break: break-word;
}

.wishListItem h3 { color: white; }

.wishListItemFooter {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

#backButton {
    box-shadow: none;
    color: #444;
    border-color: #444;
}

.wishListHeader {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}

.wishListHeaderButtons {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 400px) {
    .wishListHeaderButtons {
        align-items: initial;
        flex-direction: column;
        text-align: center;
    }

    .wishListHeaderButtons > a { margin: 5px; }
}

.loginContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
}

.loginContainer > div {
    width: 90%;
    max-width: 500px;
}

.loginContainer h1 { text-align: center; }