﻿/* 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;
}

.bg-primary2 {
    background-color: #ab131b;
}

    .bg-primary2 .nav-link {
        color: #f8fffa;
    }

    .bg-secondary2 {
        background-color: #f8fffa;
    }

.bg-standard2 {
    background-color: #541726;
}

.text-standard2 {
    color: #541726;
}

.text-primary2 {
    color: #ab131b;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.ml--100 {
    margin-left: -100px;
}

.mr--100 {
    margin-right: -100px;
}
.nav-pills .nav-link, .nav-pills > .nav-link {
    color: #ab131b;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        /*background-color: #1b6ec2;
  border-color: #1861ac;*/
        background-color: #ab131b;
        border-color: #541726;
    }

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
  min-width:300px;
}
@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;
    min-width: 300px;
}

header {
    min-width: 300px;
    /*height: auto;*/
    height: 65px;
}

.main{
    /*margin-top: 65px;*/
}

.footer {
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
  height:60px;
}

@media (max-width: 576px) {
    .footer-sm {
        position: fixed;
        bottom: 0;
        width: 100%;
        white-space: nowrap;
        line-height: inherit;
        height: auto;
        left: 15px;
        padding-right: 15px;
        z-index: 1000;
        background-color: #f8f9fa;
    }
}

.cartIcon {
    background: url('../images/shopping-cart-32.png') no-repeat;
    width: 32px;
    height: 32px;
    display: inline-block;
}

/* The container */
.check-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 80px;
    width: 80px;
    text-align: center;
    
}

    /* Hide the browser's default radio button */
    .check-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 70px;
    width: 70px;
    background-color: #eee;
    border-radius: 50%;
    line-height: 70px;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.check-container input:checked ~ .checkmark {
    background-color: #2196F3;
    color: #fff;
    font-weight: bold;
    top: 0px;
    left: 0px;
    height: 80px;
    width: 80px;
    line-height: 80px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.check-container input:checked ~ .checkmark:after {
    display: block;
}

.title {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin: 0px;
}

.summary {
    font-weight: 400;
    font-size: 11px;
    line-height: 12px;
    margin: 0px;
    color: #999;
}

/*.list-group-item {
    font-size: 1.7rem;
}

@include media-breakpoint-up(sm) {
    .list-group-item {
        font-size: 1.2rem;
    }
}

@include media-breakpoint-up(md) {
    .list-group-item {
        font-size: 1.4rem;
    }
}

@include media-breakpoint-up(lg) {
    .list-group-item {
        font-size: 1.6rem;
    }
}*/