@charset "utf-8";

.l-content .mc-name {
 margin-bottom: 5px;
 display: inline-block;
}

.l-content .brand {
 font-size: 22px;
 font-weight: bold;
}

.l-content .search_area {
 border: 1px solid #a7a7a7;
 display: block;
 width: 90%;
}

.l-content .search_area_group {
 display: flex;
 margin: 0 0 10px 0;
}

.l-content .block_submit {
 width: 15%;
}

.l-content .search_area input[type=text] {
 display: block;
 float: left;
 width: 100%;
 height: 20px;
 font-size: 16px;
 padding: 7px 5px;
 border: none;
 vertical-align: middle;
}

.l-content .search_area input[type=text]:focus {
 border: none;
 outline: 0;
}

.l-content .block_submit input[type=button] {
 height: 36px;
 font-size: 16px;
 padding: 0 10px;
 border: none;
}

.l-content .block_submit input[type=button]#search_submit {
 background: #004098;
 color: #fff;
 cursor: pointer;
}

.l-content .block_submit input[type=button]#search_clear {
 background: #666;
 color: #fff;
 cursor: pointer;
}

.l-content .block_submit input[type=button]#search_submit:hover,
.l-content .block_submit input[type=button]#search_clear:hover {
 background: #025fae;
 color: #fff;
}

.l-content .search_result {
 display: none;
}

.l-content .align_brand {
margin-left: 0;
margin-bottom: 20px;
 display: flex;
 align-items: center;
}

/* Container - Removed fixed width and height to allow responsiveness */
.l-content .selection-container {
    width: 100%;
    max-width: 950px; /* Limits size on desktop */
    margin: 0 auto;
    border: 1px solid #004098;
    background: #fff; /* Changed from #999 to match the screenshot */
    box-sizing: border-box;
}

/* Title Bar - Removed fixed width */
.l-content .title-bar {
    width: 100%;
    background: #004098;
}

.l-content .title-bar h2 {
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    margin: 0;
}


.l-content .logo-container {
    width: 100%;
    display: grid;
     
    grid-template-columns: repeat(6, 1fr); 
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-content .logo-container li {
    border: 0.5px solid #dedede; 
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 133 / 80;  
    transition: all 0.2s ease;
}

.l-content .logo-container li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.l-content .logo-container li a img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;  
}

/* Hover Effect */
.l-content .logo-container li:hover {
    border: 1px solid #004098;
    z-index: 1;  
    box-shadow: inset 0 0 0 1px #004098;
}

@media (max-width: 1400px) {
 .l-content .search_area {
  width: 88%;
 }

 .l-content .block_submit {
  width: 15%;
 }
}

@media (max-width: 1200px) {
 .l-content .search_area {
  width: 85%;
 }

 .l-content .block_submit {
  width: 15%;
 }
}

 @media (max-width: 991px) {
  .l-content .search_area {
   width: 80%;
  }

  .l-content .block_submit {
   width: 20%;
  }

  .l-content .single_product .m-media__img--l {
   float: none;
   margin-right: 0;
   margin-bottom: 20px;
  }
  
  .l-content .brand {
   font-size: 18px;
  }
 }

 @media (max-width: 767px) {
  .l-content .search_area_group {
   display: block;
  }

  .l-content .search_area {
   width: 100%;
  }

  .l-content .block_submit {
   margin: 10px 0 0 0;
   width: 100%;
   text-align: center;
  }

  .l-content .block_submit input[type=button]#search_submit {
   margin: 0 10px 0 0;
  }

  .responsive .l-main {
   padding: 0px 20px;
  }

  .l-content .m-media .mc-name {
   font-size: 14px;
  }
 }

 @media (max-width: 600px) {
    .l-content .title-bar h2 {
        font-size: 12px;
        line-height: 40px;
    }
    .l-content .logo-container li a {
        padding: 5px;
    }
}