.product-miniature .thumbnail-container {
    overflow: visible;
}
.eyc_attributes_block {
  display: flex;
  justify-content: space-between;
}
.eyc_attribute_dropdown {
    --max-scroll: 3;
    position: relative;
    z-index: 10;
    user-select: none;
  }
  
  .eyc_attribute_dropdown select {
    display: none;
  }
  .eyc_attribute_dropdown > span {
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    color: #000;
    border: 1px solid #000;
    background: transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    padding-right: 10px;
    font-size: 12px;
  }
  .eyc_attribute_dropdown > span  b{
    color:#feb800
  }

  .eyc_attribute_add_to_cart:hover svg{fill:#000}
  .eyc_attribute_add_to_cart:hover{background-color: #feb800;}

  
  .eyc_attribute_dropdown > span > span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px;
    text-transform: uppercase;
    flex-grow: 1;
  }
  .eyc_attribute_dropdown > span img {
    width: 30px;
    margin-right: 10px;
  }
  /*
  .eyc_attribute_dropdown > span:before, .eyc_attribute_dropdown > span:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 2px;
    top: 50%;
    right: 12px;
    background: #000;
    transition: all 0.3s ease;
  }
  .eyc_attribute_dropdown > span:before {
    margin-right: 4px;
    transform: scale(0.96, 0.8) rotate(50deg);
  }
  .eyc_attribute_dropdown > span:after {
    transform: scale(0.96, 0.8) rotate(-50deg);
  }*/
  .eyc_attribute_dropdown ul {
    list-style: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    max-height: calc(var(--max-scroll) * 46px);
    top: 29px;
    left: 0;
    z-index: 1;
    right: 0;
    min-height: 43px;
    background: #fff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    overflow-x: hidden;
    overflow-y: auto;
    transform-origin: 0 0;
    transition: opacity 0.2s ease, visibility 0.2s ease,
      transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transform: translate(0, 5px);
    font-size: 13px;
  }
  .eyc_attribute_dropdown ul , .eyc_attribute_dropdown ul li {
    padding: 0;
    margin: 0;
  }
  .eyc_attribute_dropdown ul li a {
    cursor: pointer;
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    outline: none;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    max-width: 100%;
  }
  .eyc_attribute_dropdown ul li a span {
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-grow: 1;
    text-transform: uppercase;
    font-size: 12px;

  }
  .eyc_attribute_dropdown ul li.active a {
      background: #feb800;
  }
  .eyc_attribute_dropdown ul li a:hover {
    background: #feb800;
  }
  .eyc_attribute_dropdown.disabled {
    opacity: 0.7;
  }
  .eyc_attribute_dropdown.disabled > span {
    cursor: not-allowed;
  }
  .eyc_attribute_dropdown.filled > span {
    color: #000;
  }
  .eyc_attribute_dropdown.open {
    z-index: 15;
  }
  .eyc_attribute_dropdown.open > span {
    border-color: #aaa;
  }
  .eyc_attribute_dropdown.open > span:before,
  .eyc_attribute_dropdown.open > span:after {
    background: #000;
  }
  .eyc_attribute_dropdown.open > span:before {
    transform: scale(0.96, 0.8) rotate(-50deg);
  }
  .eyc_attribute_dropdown.open > span:after {
    transform: scale(0.96, 0.8) rotate(50deg);
  }
  .eyc_attribute_dropdown.open ul {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 10px);
    transition: opacity 0.3s ease, visibility 0.3s ease,
      transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  }
  
  /* Added (select option on key down) */
  .eyc_attribute_dropdown > span:focus {
    outline: -webkit-focus-ring-color auto 0px;
  }
  
  /* --------------------------- */
  
  .eyc_attribute_group {
    max-width: calc(100% - 50px);
    height: 42px;
    margin: 0;
    text-align: left;
    width: calc(100% - 50px);
  }
  .eyc_attribute_group select {
    width: 100%;
    height: 100%;
  }
  
  .eyc_attribute_control {
    line-height: normal;
    color: #000;
    display: inline-block;
    background-color: #fff;
    border: #ccc 1px solid;
    padding: 8px 12px;
    outline: none;
    max-width: 250px;
  }
  
  .eyc_attribute_group label {
    width: 100%;
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .eyc_attribute_group kbd {
      display: inline-block;
      border: 1px solid #ccc;
      padding: 0.1em 0.5em;
      margin: 0 0.2em;
      box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
      background-color: #f7f7f7;
  }
  
  .eyc_attribute_group ul.keys  {
   list-style-type: none;
    margin: 0;
    padding: 0;  
  }
  
  .eyc_attribute_group ul.keys p {
    font-size: 0.75rem;
  }
  
  .eyc_attribute_group ul.keys li {
    margin-bottom: 5px;
  }

  .eyc_attribute_add_to_cart {
    padding: 0;
    line-height: 42px;
    width: 42px;
    height: 42px;
    border: none;
    background-color: #000;
    text-align: center;
  }

  .eyc_attribute_add_to_cart svg {
    width: 25px;
    color: #fff;
    fill: #fff;
  }
  
  .eyc_attributes_block button.disabled {
    opacity: .5;
    cursor: not-allowed;
  }

  @media (max-width: 768px){
  .eyc_attribute_dropdown > span {
  font-size: 8px;
  }
  .eyc_attribute_add_to_cart{
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .eyc_attribute_add_to_cart svg{
    width: 20px;
  }
  .eyc_attribute_group{
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
  }

  .eyc_attribute_dropdown ul li.active a,.eyc_attribute_dropdown ul li a{font-size: 8px;}
}
.eyc_attribute_group small{
  text-decoration: line-through; 
  text-decoration-color: red;
  margin-right: 5px;
}