@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: 'ITCFranklinGothic_BK';
    src: url('/MDB/font/Franklin-Gothic/ITC Franklin Gothic Book Regular.otf');
    font-weight: normal;
}
@font-face {
    font-family: 'ITCFranklinGothic_DM';
    src: url('/MDB/font/Franklin-Gothic/ITC Franklin Gothic Std Demi.otf');
    font-weight: normal;
}
.font-FG-Reg{
    font-family: 'ITCFranklinGothic_BK';
}
.font-FG-Demi{
    font-family: 'ITCFranklinGothic_DM';
}

/* CSS Document */
body, table th, table td {
    font-weight: 400;
}
.card-block {
  margin-left: 4%;
  margin-right: 4%;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
  margin-bottom: 20px;
}
* {
    font-family: 'Assistant', sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}
.navbar {
    font-weight: 400;
}
.navbar .dropdown-menu a {
    font-size: 1rem;
    font-weight: 400;
}
#navcnt-pill {
    position: absolute;
    top: 0;
    right: 2px;
    background-color: green !important;
    color: white;
}
.card.featured-items, .card.most-popular {
    border: none;
    box-shadow: none;
}
.product-card {
  overflow: hidden;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

.zoom-image {
  transition: transform 0.3s ease;
}

.buy-button:hover ~ .black-text .zoom-image,
.product-card:hover .zoom-image {
  transform: scale(1.1); /* Increase the scale (zoom) on hover */
}
.fa-1_25x {
    font-size: 1.25rem;
}
.fa-1_5x {
    font-size: 1.5rem;
}
.img-color-thumbnail {
    max-width: 50px;
}
.img-color-thumbnail .active {
    border-color: aqua;
}
.sublogos {
    max-height: 60px;
    margin-top: 10px;
}
#substore-section {
    margin-top: 25px;
    background-image: url('/images/substore-bkgd.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
#substore-section h3 {
    color: white;
    font-weight: bold;
}
.form-check-label {
  height: auto !important;
}
.opt_select {
  padding: 10px;
  border-radius: 1rem;
}
.opt_select option {
  color: green;
}
.radio-logo {
  width: 75% !important;
  height: auto;
  border: 1px solid black;
  border-radius: 20px;
  margin: auto;
}
.md-form.position-relative {
    position: relative;
}

.search-btn {
    position: absolute;
    right: 0;
    border: none;
    background: none;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Optional: Style the icon inside the button if needed */
.search-btn i {
    color: #000; /* Change the color as needed */
}
.navbar .mega-dropdown {
    position: static;
    z-index: auto;
}
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

#cookie-consent-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

#cookie-consent-banner .cookie-message {
    flex: 1;
    min-width: 300px;
}

#cookie-consent-banner .cookie-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

#cookie-consent-banner .cookie-message a {
    color: #3498db;
    text-decoration: underline;
}

#cookie-consent-banner .cookie-message a:hover {
    color: #5dade2;
}

#cookie-consent-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#cookie-consent-banner button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#cookie-consent-banner .btn-accept {
    background: #27ae60;
    color: white;
}

#cookie-consent-banner .btn-accept:hover {
    background: #229954;
}

#cookie-consent-banner .btn-manage {
    background: transparent;
    color: white;
    border: 2px solid white;
}

#cookie-consent-banner .btn-manage:hover {
    background: white;
    color: #2c3e50;
}

#cookie-consent-banner .btn-reject {
    background: #e74c3c;
    color: white;
}

#cookie-consent-banner .btn-reject:hover {
    background: #c0392b;
}


@media (max-width: 767.98px) {
  .navbar .mega-dropdown {
    position: relative !important;
    z-index: 1050 !important;
  }
  .navbar .mega-dropdown .dropdown-menu.mega-menu {
        max-height: 1000px;
        overflow-x: auto;
        overflow-y: auto;
    }
    #cookie-consent-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-consent-banner .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    #cookie-consent-banner button {
        flex: 1;
        min-width: 120px;
    }
}