html {
    height: 100%;
}
/* The picture is from Mike Foster auf www.Pixabay.com */
body {
    background: url('/media/dog_bag.jpg') no-repeat center center fixed;
    background-size: cover;
    height: calc(100vh - 160px);
    color: #000;
    font-family: 'Montserrat'!important;
    padding-bottom:25px;
}

.dancing-font {
    font-family: 'Dancing Script', cursive!important;
}

.text-rosa { 
    color: #C5A6A6!important;
}

.text-rosa-dark {
    color: #743B3B!important;
}

.text-rosa-light {
    color: #FCEAE7!important;
}
.text-gold {
    color: #E3B51D!important;
}

.text-black {
    color: #000 !important;
}

.bg-rosa {
    background-color: #C5A6A6!important;
}
.bg-black{
    background-color: #000;
}

/* from Bulma */
.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

.logo-font {
    text-transform: uppercase;
}

.main-logo-link {
    width: fit-content;
}

.dropdown-item:hover {
    color: #743B3B!important;
}

.btn-black {
    background: black;
    color: white;
}

.btn-rosa-dark {
    background: #743B3B;
    color: #C5A6A6 !important;
}

.shop-now-button {
    background: black;
    color: white;
    min-width: 260px;
}

.shop-now-button:hover,
.shop-now-button:active,
.shop-now-button:focus,
.btn-black:hover,
.btn-black:active,
.btn-black:focus {
    background: #222;
    color: white;
}

.btn-outline-rosa-dark {
    background-color: #fff;
    color: #743B3B!important;
    border: 1px solid #743B3B;
}

.btn-outline-rosa-dark:hover,
.btn-outline-rosa-dark:active,
.btn-outline-rosa:focus {
    background: #743B3B;
    color: #C5A6A6 !important;
}

.border-black {
    border: 1px solid black !important;
}

.border-rosa-dark {
    border: 1px solid #743B3B !important;
}

.border-rosa {
    border: 1px solid  #C5A6A6 !important;
}
/* Code from Stackoverflow */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(116,59,59, 0.6)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* Code from Stackoverflow */
.custom-toggler.navbar-toggler {
  border-color: #743B3B!important;
  box-shadow: 0 4px 8px 0 rgba(116, 59, 59, 0.2), 0 6px 20px 0 rgba(116, 59, 59, 0.19);
} 

input::-webkit-input-placeholder {
    color: rgba(116, 59, 59, 0.5)!important;
}

input:-moz-placeholder {
    color: rgba(116, 59, 59, 0.5)!important;
}

.footer{
    margin: 0;
    padding: 0;
    height: 25px;
    width: 100%;
    bottom: 0%;
}

.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: #fff;
    z-index: -1;
}

a.category-badge > span.badge:hover {
    background: #212529 !important;
    color: #fff !important;
}

.btt-button {
    height: 42px;
    width: 42px;
    position: fixed;
    bottom: 35px;
    right: 10px;
}

.btt-link,
.update-link,
.remove-item {
    cursor: pointer;
}

a:hover,
a:focus,
a:active,
.btn:hover,
.btn:focus,
.btn:active,
input:hover,
input:focus,
input:active,
.form-control:focus{
    outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}

/* bootstrap toasts */

.message-container {
    position: fixed;
    top: 72px;
    right: 15px;
    z-index: 99999999999;
}

.custom-toast {
    overflow: visible;
}

.toast-capper {
    height: 2px;
}
/* from CSS-tricks.com: https://css-tricks.com/snippets/css/css-triangle/ */
.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent; 
    border-bottom: 10px solid black;
    position: absolute;
    top: -10px;
    right: 36px;
}

/* Convenience classes - colors copied from Bootstrap */
.arrow-primary {
    border-bottom-color: #007bff !important;
}

.arrow-secondary {
    border-bottom-color: #6c757d !important;
}

.arrow-success {
    border-bottom-color: #28a745 !important;
}

.arrow-danger {
    border-bottom-color: #dc3545 !important;
}

.arrow-warning {
    border-bottom-color: #ffc107 !important;
}

.arrow-info {
    border-bottom-color: #17a2b8 !important;
}

.arrow-light {
    border-bottom-color: #f8f9fa !important;
}

.arrow-dark {
    border-bottom-color: #343a40 !important;
}

.chart-notification-wrapper {
    height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Allauth form formatting */

.allauth-form-inner-content p {
    margin-top: 1.5rem; /* mt-4 */
    color:  #743B3B!important; /* text-secondary */
}

.allauth-form-inner-content input {
    border-color:  #743B3B;
    
}

.allauth-form-inner-content label:not([for='id_remember']) {
    display: none;
}

.allauth-form-inner-content input::placeholder {
    color: #FCEAE7;
}

.allauth-form-inner-content button,
.allauth-form-inner-content input[type='submit'] {
	/* btn */
	display: inline-block;
    font-weight: 400;
    color: #C5A6A6;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #743B3B;
    border: 1px solid #743B3B;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 5px;

    /* standard bootstrap btn transitions */
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.allauth-form-inner-content button:hover,
.allauth-form-inner-content input[type='submit']:hover {	
	color: #743B3B;
    background-color: #C5A6A6;
    border-color: #743B3B;
}
.allauth-form-inner-content input:focus,
.allauth-form-inner-content input:active{
    color: #743B3B!important;
    background-color:#FCEAE7;
    outline: #000;
}

/* Product Form */

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 2px;
    border-color:#743B3B;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #743B3B;
    border-color: #743B3B;
    border-radius: 0;
}

/* Media Queries */

/* Slightly larger container on xl screens */
@media (min-width: 1200px) {
  .container {
    max-width: 80%;
  }
}

/* fixed top navbar only on medium and up */
@media (min-width: 992px) {
    .fixed-top-desktop-only {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    .header-container {
        padding-top: 160px;
    }
    #home-link {
        display: none;
    }
}

/* pad the top a bit when navbar is collapsed on mobile */
@media (max-width: 991px) {
    .header-container {
        padding-top: 116px;
    }

    body {
        height: calc(100vh - 116px);
    }

    .display-4.logo-font.text-black {
        font-size: 2rem;
    }

    .nav-link {
        padding: 0.15rem;
    }

    .nav-link i.fa-lg {
        font-size: 1rem;
    }

    .navbar-toggler {
        padding: .6rem .6rem;
        font-size: 1rem;
    }

    #delivery-banner h5 {
        font-size: .9rem;
    }

    .btn.btn-outline-rosa-dark,
    .btn.btn-rosa-dark{
        padding: .375rem .375rem;
    }

    .btn.btn-outline-rosa-dark.btn-lg,
    .btn.btn-rosa-dark.btn-lg {
        padding: .375rem .375rem;
        font-size: .75rem;
    }

    .increment-qty, .decrement-qty {
        padding: .25rem .5rem !important;
    }
}