﻿/* 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;
  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 */
}

.prod-img{
    width:100px;
    height:auto;
}

.sticky-container {
    position: relative;
    top: 0;
    transition: top 0.3s ease-in-out;
}

.sticky {
    position: fixed;
    top: 79px;
    left:0;
    width: 100%;
    background-color: #f1f1f1; /* Optional: Set a background color for better visibility */
    padding: 10px;
    z-index:1;
}

.text-grey{
    color:#808080
}

.text-xxs {
    font-size: 10px;
}

.text-xs{
    font-size:14px;
}
.text-xl {
    font-size: 20px;
}

.pt-20{
    padding-top:100px;
}

.text-price{
    font-size:18px;
}

.input-container {
    display: flex;
    align-items: center;
}

    .input-container button {
        margin: 0;
    }

span.plus.button {
    border: 1px solid #ced4da;
    padding: 5px 10px;
    height: calc(1.5em + .75rem + 2px);
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    font-weight:700;
}

span.minus.button {
    border: 1px solid #ced4da;
    padding: 5px 10px;
    height: calc(1.5em + .75rem + 2px);
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    font-weight: 700;
}

.input-container input {
    border-top: 1px solid #ced4da;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    text-align:center;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 75%;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1)
    }

    to {
        -webkit-transform: scale(2)
    }
}

@keyframes zoom {
    from {
        transform: scale(0.4)
    }

    to {
        transform: scale(1)
    }
}

@-webkit-keyframes zoom-out {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(0)
    }
}

@keyframes zoom-out {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(0)
    }
}

.out {
    animation-name: zoom-out;
    animation-duration: 0.6s;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}