﻿
body {
    background-color: #1d1d1d;
    background: repeating-linear-gradient( 
        -55deg, 
        #171717,
        #1c1c1c 10px, 
        #222222 300px );
    color: #ccc;
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 2.4rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #bbb;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.3rem;
    font-weight: bold;
}

a {
    color: #b87f3c;
    font-weight: bold;
    text-decoration: none;
}


a:hover {
   color: #fff;
}

#cookieConsent a:hover {
    color: #8c581b;
}

header {
    background-color: #000;
}

footer {
    margin-top: 25px;
    padding-bottom: 40px;
    padding-top: 20px;
    background-color: #000;
    /* background: repeating-linear-gradient( -55deg, #171717, #403c3c 10px, #373030 300px ); */
}

.nav-link {
    color: #b87f3c;
    font-weight: bold;
}

.nav-link:hover {
    color: #fff;
}

.nav-item {
    margin-right: 15px;
}

.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(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler {
    border-color: rgb(255,255,255);
} 

.navbar-toggler {
    color: #fff;
    border: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.table-dark {
    --bs-table-bg: rgba(204, 172, 143, 0.2);
    border-color: #535353;
}

.claim {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ddd;
}

.introline {
    margin-bottom: 14px;
    height: 4px;
    width: 40px;
    background-color: #b87f3c
}

.introlinegrey {
    margin-bottom: 14px;
    height: 3px;
    width: 25px;
    background-color: #9b9b9b
}

.summaryvaluebg {
    background-color: #514843;
    padding: 10px;
}

.form-bg {
    background-color: rgba(204, 172, 143, 0.2);
}

.card {
    color: #222;
}

.card-specs {
    padding: .5rem 1rem;
    background-color: rgba(172, 102, 12, 0.1);
    border-top: 1px solid rgba(0,0,0,.125);
}

.center {
    padding: 60px 0;
    text-align: center;
}

.modal {
    color: #444;
}

.card-title:hover {
    color: #555;
}

.MPrice {
    font-weight: bold;
    font-size: 1.4em;
}

.speciality {
    position: absolute;
    top: 0;
    background-color: #e3572c;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8em;
    color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.blackfriday {
    position: absolute;
    top: 0;
    background-color: #e3572c; /* #f0cc09 */
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8em;
    color: #000;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.saleprice {
    color: #e3572c;
}

#cartoverlay {
    position: fixed;
    top: 80px;
    right: 0;
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: #b87f3c;
    padding: 5px;
    text-align:center;
    animation-name: moveincart;
    animation-duration: 1s;
    z-index: 1002;
}

#cartoverlay a { 
    color: #fff;
    font-size: 1.5em;
}

#cartoverlay a:hover {
    color: #774040;
}

#logo {
    position: relative;
    animation-name: moveinlogo;
    animation-duration: 1s;
    width: 95%;
    margin: 0 auto
}

#BTTbtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #b87f3c;
    color: white;
    cursor: pointer;
    padding-top: 3px;
    font-size: 18px;
    transition: all .2s;
}

#BTTbtn:hover, #BTTbtn:visited, #BTTbtn:focus {
    background-color: #b87f3c;
}

#WAbtn {
    position: fixed;
    bottom: 100px;
    left: 10px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding-top: 3px;
    font-size: 18px;
    background: none;
    transition: all .9s;
}

@keyframes moveinlogo {
    from {
        top: 10px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

@keyframes moveincart {
    from {
        right: -30px;
        opacity: 0;
    }

    to {
        right: 0px;
        opacity: 1;
    }
}

@media (max-width: 769px) {
    .logo { width: 80% }
}