/** {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
}*/

html, body, button {
    /*display: flex;
    flex-direction: column;
    justify-content: center;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.suppressor {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.top-bar {
    position: fixed;
    /*background-color: #440035;*/
    color: #e86666;
    font-size: 16px;
    width: 100%;
    margin: 0;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 5px;
    /*border-bottom: 2px solid #f1f1f1;*/
}

.brand {
    width: 30%;
    margin-left: 20px;
}

.right-nav {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-right: 20px;
}

.shopping-cart {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 12px;
    padding-right: 6px;
    padding-top: 3px;
    border: 1px solid transparent;
    border-radius: 3px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.shopping-cart:hover {
    border: 1px solid #f1f1f1;
}

.cart-count {
    background-color: #e86666;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: -3px;
    margin-top: -3px;
    width: 13px;
    height: 13px;
    font-size: 9px;
    border-radius: 50%;
    text-align: center;
}

.user-account-link {
    margin-left: 35px;
}

a {
    color: inherit;
    text-decoration: none;
}

.search-bar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

input {
    width: 600px;
    height: 35px;
    margin: 0;
    border: 0;
    padding: 0;
    padding-left: 8px;
    font-weight: 400;
    font-size: inherit;
    font-family: inherit;
    border-left: 1px solid #f1f1f1;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.icons {
    font-size: 25px;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    margin: 0;
    border: 0;
    /*padding: 0;*/
    /*height: 35px;*/
    width: 45px;
    color: #e86666;
    background-color: #fff;
    border-bottom: 1px solid #f1f1f1;
    border-top: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
}

.lineup {
    /*position: absolute;*/
    margin-top: 85px;
    left: 0;
    width: 100%;
    color: #737373;
    /*display: flex;
    flex-direction: row;*/
}

.lineup-header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
}

.filter-text {
    position: absolute;
    right: 15px;
    top: 65px;
    width: 100%;
    /*padding-right: 8px;*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.dropdown {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    width: 120px;
    height: 20px;
    align-items: center;
    padding-left: 10px;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
}

.dropdown-text {
    font-size: 12px;
    width: 75%;
}

.dropdown-icon {
    width: 25%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    color: #fff;
    width: 20px;
    background-color: #e86666;
    border: 1px solid #e86666;
    border-radius: 2px;
}

.dropdown-items {
    background-color: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    font-size: 12px;
    position: absolute;
    right: 0px;
    top: 36px;
    width: 130px;
}

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

li {
    border-top: 1px solid #f1f1f1;
    padding: 8px;
}

li:first-of-type {
    border-top: none;
}

.lineup-stats {
    width: 50%;
    margin-bottom: 5px;
}

.filter {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 50%;
}

.lineup-stats-text {
    padding-left: 8px;
}

.catalog-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: auto;
    overflow-y: scroll;
    /*max-height: 500px;*/
    max-height: 85vh;
}

.catalog {
    margin-top: 20px;
    margin-left: 30px;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-left: 8px;
    margin-top: 8px;
    width: 250px;
    height: 360px;
    border-radius: 2px;
    border: 1px solid #f1f1f1;
    padding-bottom: 15px;
    /*box-shadow: 0 0 15px #ececec;*/
}

.catalog-item-picture {
    margin-top: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.catalog-item-desc {
    width: 100%;
    /*border: 1px solid grey;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 20px;
}

.catalog-item-title {
    display: flex;
    flex-direction: column;
    /*text-transform: uppercase;*/
    width: 70%;
    font-weight: 400;
    font-size: 16px;
    color: #4d4d4f;
    padding-left: 15px;
}

.catalog-item-weight {
    margin-top: 5px;
    font-size: 12px;
}

.catalog-item-price {
    font-weight: 700;
    color: #e86666;
    margin-right: 12px;
    font-size: 19px;
}

.add-to-cart {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding-top: 15px;
}

.add-to-cart-btn {
    flex-direction: row;
    border: none;
    font-size: 14px;
    /*padding-left: 20%;
    padding-right: 20%;*/
    background-color: #e86666;
    border-radius: 4px;
    color: #fff;
    width: 80px;
    height: 35px;
    box-shadow: 0 0 15px #d0d0d0;
    outline: 0;
    user-select: none;
    transition-duration: 0.2s;
}

.add-to-cart-btn:hover {
    background-color: #9c2929;
    cursor: pointer;
}

.add-to-cart-btn:active {
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    border: solid 1px #203E5F;
    background-color: #e86666;
}

.qty-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.qty-input {
    text-align: center;
    color: #4d4d4f;
    padding: 0;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid #f1f1f1;
    outline: 0;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border-radius: 12.5px;
    outline: 0;
    border: 1px solid #f1f1f1;
    margin-right: 5px;
    margin-left: 5px;
    transition-duration: 0.2s;
}

.qty-btn:hover {
    background-color: #9c2929;
    cursor: pointer;
    color: #fff;
}

.qty-btn:active {
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    border: solid 1px #203E5F;
    background-color: #e86666;
    color: #fff;
}

.cart {
    position: absolute;
    background-color: #fff;
    width: 300px;
    margin-right: 10px;
    /*height: 500px;*/
    top: 55px;
    right: 10px;
    border-radius: 2px;
    /*border: 2px solid #f1f1f1;*/
    height: auto;
    box-shadow: 0 0 10px #828282;
}

.cart-items {
    display: flex;
    flex-direction: row;
    border: 1px solid #f1f1f1;
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px;
    font-size: 13px;
    color: #4d4d4f;
}

.cart-items:first-of-type {
    margin-top: 10px;
}

.cart-items:last-of-type {
    margin-bottom: 10px;
}

.cart-items-picture {
    height: 70px;
    width: 70px;
    border-right: 1px solid #f1f1f1;
    padding: 5px;
    /*margin-left: 10px;*/
    margin-right: 10px;
}

.cart-items-title {
    /*font-size: 13px;*/
    font-weight: 400;
    color: #4d4d4f;
}

.checkout-btn-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.checkout-btn {
    justify-content: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: row;
    border: none;
    font-size: 14px;
    background-color: #e86666;
    border-radius: 4px;
    color: #fff;
    width: 180px;
    height: 35px;
    box-shadow: 0 0 15px #d0d0d0;
    outline: 0;
    user-select: none;
    transition-duration: 0.3s;
}

.checkout-btn:hover {
    background-color: #9c2929;
    cursor: pointer;
}

.checkout-btn:active {
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    border: solid 1px #203E5F;
    background-color: #e86666;
}

.center-text-div {
    margin: 5px;
    padding: 10px;
    border: 1px solid #f1f1f1;
    color: #4d4d4f;
    font-size: 14px;
    text-align: center;
}

.checkout-page {
    margin: 0;
    padding: 0;
    margin-top: 65px;
    /*width: 100%;*/
    border-top: 1px solid #f1f1f1;
    color: #4d4d4f;
}

.red-icon {
    font-size: 32px;
    color: #e86666;
    margin-right: 8px;
}

.checkout-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
}

.order-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.checkout-order-details {
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    margin-left: 25px;
    margin-right: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.checkout-payment-details {
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    margin-bottom: auto;
}

.container {
    padding: 25px;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
    justify-content: center;
    align-items: center;
}

.row-left-aligned {
    justify-content: flex-start;
}

.row:last-of-type {
    margin-bottom: 0;
}

.col-50 {
    width: 50%;
}

.col-100 {
    display: block;
    width: 100%;
}

.col-left-aligned {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.col-right-aligned {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.place-order-btn {
    height: 45px;
    width: 250px;
    font-size: 17px;
    justify-content: center;
    margin-top: 10px;
}

.total {
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
    font-size: 18px;
    color: #e86666;
}

.invoice-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed #f1f1f1;
}

.invoice-img {
    height: 60px;
    width: 60px;
    margin-left: 20px;
    margin-right: 20px;
}

.invoice-title {
    width: 320px;
}

.invoice-qty {
    border: 1px solid #f1f1f1;
    width: 35px;
    text-align: center;
    margin-right: 100px;
    padding-left: 0;
}

.invoice-price {
    color: #e86666;
    font-weight: 700;
}

.invoice-heading {
    font-size: 18px;
    border-bottom: 1px dashed #f1f1f1;
    margin: 15px;
    padding: 15px;
}

.shipping-options {
    border: 1px solid #f1f1f1;
    font-size: 11px;
    padding: 15px;
    padding-right: 0;
    width: 200px;
}

.remove-icon {
    font-size: 20px;
    cursor: pointer;
}


}

}
