/* Colors */
:root {
    --scric-primary: #0d6efd;
    --scric-secondary: #6c757d;
    --scric-text-on-primary: #ffffff;
}

.scric-bg-primary {
    background-color: var(--scric-primary);

}

.scric-bg-secondary {
    background-color: var(--scric-secondary);
}

/* Navbar */
.scric-navbar-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

.scric-nav-link {
    color: var(--scric-text-on-primary);
}

.scric-nav-link:hover {
    color: var(--scric-text-on-primary);
    font-weight: bold;
}

.scric-nav-link-active {
    color: var(--scric-text-on-primary);
    font-weight: bold;
}

.scric-log-in-btn {
    margin-left: 10px;
}

/* Homepage */
.scric-home-content-wrapper {
    min-height: 100vh;
    margin-bottom: -70px;
    /*
    background-size: cover;
    background-image: url('/static/img/background.jpg');
    background-attachment: fixed;
    */
}
.scric-global-search-card {
    max-width: 450px;
    width: 100%;
    padding: 15px;
    border: 1px solid var(--scric-primary);
    border-radius: 3px;
    box-shadow: 3px 9px 20px 0px #eaeaea;
    background-color: #ffffff;
}
.scric-global-search-logo {
    width: 50px;
    height: auto;
}

/* Content */
.scric-site-header {
    margin-top: 10px;
    margin-bottom: 20px;
}

.scric-site-title {
    font-size: 2rem;
    font-weight: bold;
}

.scric-site-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}

.scric-main-content-wrapper {
    min-height: 90vh;
    padding-bottom: 70px;
}

/* Item */
.scric-item-header {
    margin-top: 20px;
    margin-bottom: 35px;
}

.scric-thumbnail {
    max-height: 150px;
    border-radius: 3px;
    border: 1px solid var(--scric-primary);
}

.scric-thumbnail-list {
    margin: 5px;
    cursor: pointer;
}

.scric-item-main-image {
    margin-bottom: 15px;
    min-width: 300px;
    max-height: 600px;
    border-radius: 3px;
    border: 1px solid var(--scric-primary);
}

.scric-item-sale-info {
    background-color: #ffffff;
    padding-top: 15px;
    padding-bottom: 10px;
    border-radius: 5px;
    box-shadow: 3px 9px 20px 0px #eaeaea;
}

.scric-item-title-link {
    text-decoration: none;
    color: inherit;
}

.scric-info-nice {
    padding: 10px;
    border: 1px solid #b5dcff;
    border-radius: 5px;
    background-color: aliceblue;    
}

.scric-code-wrapper {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 5px;
    border: 1px solid var(--scric-primary);
    border-radius: 2px;
    background-color: aliceblue;
}

.scric-code {
    font-family: monospace;
    font-weight: bold;
}

.scric-sales-rep-contacts-card {
    margin-top: 15px;
}

.scric-sales-rep-profile-image {
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--scric-primary);
    background-color: aliceblue;
}

.scric-sales-rep-details {
    margin-left: 10px;
    border-bottom: 1px solid var(--scric-primary);
}

.scric-contact-button-img {
    max-height: 30px;
    margin-left: 5px;
}

/* public order */
.scric-monospace {
    font-family: monospace;
}


/* Cookie consent */
.cookie-consent {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #d2d2d2;
    color: #000;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    display: none; /* Hidden by default */
  }

/* Footer */
.scric-footer {
    min-height: 10vh;
    padding-bottom: 20px;
    color: white;
}

.scric-footer a {
    color: white;
}

.scric-footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.scric-footer-partner-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}