.gwd-odds-box {
    width: 25%;
    min-width: 150px;
    max-width: 300px;
    background: #0a1220d1;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,.12);
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    transition: all .5s;
    right: 0;
    z-index: 9999;
}
.gwd_player-wrapper{
    overflow: hidden;
}
.gwd-odds-box:not(.gwd-open-boxodd) .gwd-action-toggle {
    transform: rotateZ(182deg);
    left: -30px;
    z-index: 99999;
    background: #0e851873;
    width: 30px;
    border-radius: 0px 6px 6px 0;
}
.gwd-odds-box.gwd-open-boxodd{
    transition: all .5s;
    transform: translate(0%, -50%);
    .gwd-action-toggle{
        left:unset;
        transform:unset;
    }
}
.gwd-action-toggle{
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    width: 40px;
    justify-content: center;
    cursor: pointer;
}
.gwd-odds-top ins img{
    max-width: 80px;
}
.gwd-odds-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #0b1220;
  margin-bottom: 10px;
}

.gwd-odds-logo {
  height: 28px;
  max-width: 120px;
  object-fit: contain;
}

.gwd-odds-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.gwd-stat-icon{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    max-width: 20px;
}
.gwd-odds-toggle--left {
  left: 10px;
}

.gwd-odds-toggle--right {
  right: 10px;
}

.gwd-odds-middle {
  display: grid;
  grid-template-columns: 40px repeat(3, 1fr);
  font-size: 10px;
  gap:4px;
}
.gwd-odds-bottom{
    width: 75%;
    margin: auto;
}
.gwd-odds-cell {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  
  
}
.gwd-odds-cell:not(.gwd-odds-label){
    border-radius: 4px;
    background: #0b1220;
    padding:5px;
}
.gwd-odds-cell:nth-child(4n) {
  border-right: 0;
}

.gwd-odds-label {
  font-weight: 700;
  color: #facc15;
}

.gwd-odd-up {
  color: #22c55e;
}

.gwd-odd-down {
  color: #ef4444;
}

.gwd-odd-icon {
  font-size: 8px;
}

.gwd-odds-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.gwd-stat-item {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  align-items: center;
  padding: 10px 6px;
  text-align: center;
  position: relative;
  font-size: 10px;
}
.gwd-stat-item:nth-child(2):after {
    content: '';
    width: 1px;
    height: 15px;
    background: #374151;
    position: absolute;
    right: 0;
}
.gwd-stat-item:nth-child(2)::before {
    content: '';
    width: 1px;
    height: 15px;
    background: #374151;
    position: absolute;
    left: 0;
}
.gwd-stat-item:last-child {
  border-right: 0;
}

.gwd-stat-icon {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
    .gwd-odds-middle{
        font-size: 8px;
    }
    .gwd-action-toggle{
        width: 30px;
    }
    .gwd-odds-top{
        padding:4px;
    }
    .gwd-odds-cell:not(.gwd-odds-label){
        border-radius: 4px;
    }
    .gwd-stat-item{
        font-size: 8px;
        padding: 6px 3px;
    }
    .gwd-odds-cell{
        min-height: unset;
    }
    .gwd-odds-top{
        margin-bottom: 5px;
    }
}