/* TOTOSLOTJP — provider catalog menu */
.slot-provider-menu{
  display:none;
  position:relative;
  z-index:80;
  width:100%;
  background:#050505;
  border-bottom:1px solid #2c2c2c;
  box-shadow:0 10px 24px rgba(0,0,0,.55);
}
.slot-provider-menu.open{display:block}
.slot-provider-menu-inner{
  width:min(1180px,100%);
  margin:0 auto;
  padding:13px 18px 15px;
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:8px;
}
.slot-provider-menu-item{
  appearance:none;
  min-width:0;
  height:82px;
  border:1px solid #252525;
  border-radius:5px;
  background:#0d0d0d;
  color:#fff;
  padding:7px 5px 6px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  font:inherit;
}
.slot-provider-menu-item:hover,
.slot-provider-menu-item:focus-visible{
  border-color:#e5b82c;
  background:linear-gradient(180deg,#1a1a1a,#0b0b0b);
  outline:none;
}
.slot-provider-menu-logo{
  width:100%;
  height:46px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.slot-provider-menu-logo img{
  max-width:100%;
  max-height:44px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.slot-provider-menu-fallback{
  display:none;
  width:42px;
  height:34px;
  place-items:center;
  border:1px solid #6d5419;
  border-radius:4px;
  background:#17120a;
  color:#e9bd43;
  font-size:11px;
  font-weight:900;
}
.slot-provider-menu-label{
  display:block;
  width:100%;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  color:#ddd;
  font-size:9px;
  line-height:1.1;
  font-weight:800;
  text-align:center;
}
@media(max-width:900px){
  .slot-provider-menu-inner{grid-template-columns:repeat(5,minmax(0,1fr));padding:10px}
}
@media(max-width:600px){
  .slot-provider-menu-inner{grid-template-columns:repeat(3,minmax(0,1fr));gap:6px;padding:8px}
  .slot-provider-menu-item{height:72px}
  .slot-provider-menu-logo{height:39px}
  .slot-provider-menu-logo img{max-height:38px}
  .slot-provider-menu-label{font-size:8px}
}
