﻿.mktp-container {
    padding:20px;
}

#subHeader {
    text-align: center;
    margin: 30px;
}

.input-group {
    width: 80%; 
    margin: 0 auto;
}

base-pagination {
    margin: 15px;
}

.searchbar-input {
    width: 800px !important;
    height: 50px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-button {
    height: 50px;
    width: 50px;
}

.search-results {
    width: 1150px;
    margin-left: auto !important;
    margin-right: auto;
    display: block;
    margin-top: 40px;
    margin-left: -75px;
}

#product-card-site-title {
    cursor: pointer;
}

.product-option {
    background-color: white;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #373737;
    cursor: pointer;
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.product-option:hover {
    border: 1px solid var(--primary);
    box-shadow: 0 0 0px 3px #cfe2f4;
}

.product-option__price--discounted {
    margin-left: 10px;
    color: #f42a3f;
    
}

.product-option__price--original {
    color: var(--gray);
    text-decoration: line-through;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.loading {
    animation-duration: 2.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    background: #ddd;
    background: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%);
    background-size: 1200px 100%;
    border: none;

    * {
      visibility: hidden;
    }
  }

  @-webkit-keyframes shimmer {
    0% {
      background-position: -100% 0;
    }
    100% {
      background-position: 100% 0;
    }
  }

  @keyframes shimmer {
    0% {
      background-position: -1200px 0;
    }
    100% {
      background-position: 1200px 0;
    }
  }