.stuck-block-table {
  position: fixed;
  right: 0;
  top: 200px;
  z-index: 9;
  transition: 0.5s;
  visibility: hidden;
  box-shadow: 0px 0px 20px rgba(65, 168, 226, 0.5);
  border-radius: 5px 0px 0px 5px;
  background: #fff;
}
.stuck-block-table .open {
  position: absolute;
  width: 100%;
  height: 35px;
  border-radius: 6px 0 0 0;
  display: flex;
  align-items: center;
  left: 0;
  top: -35px;
  cursor: pointer;
  background: #078080;
  padding-left: 25px;
}
.stuck-block-table .open img {
  transform: rotate(180deg);
	width: 20px;
}
.stuck-block-table .row {
  padding: 10px;
  display: flex;
  position: relative;
  align-items: center;
}
.stuck-block-table .row:hover {
  background: #ECF7FD;
}
.stuck-block-table .row .img-title {
  width: 195px;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 10px;
}
.stuck-block-table .row .img-title img {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
  margin-right: 10px;
  cursor: pointer;
}
.stuck-block-table .row .img-title button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
}
.stuck-block-table .row .img-title p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  line-height: 140%;
  color: #222525;
  margin-bottom: 0;
}
.stuck-block-table .row .bonus {
  width: 330px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 140%;
  color: #222525;
  display: flex;
  align-items: flex-start;
  padding-left: 15px;
  flex-direction: column;
}
.stuck-block-table .row .bonus p {
  position: relative;
  padding-left: 43px;
  width: 227px;
  margin-right: 30px;
  flex: none;
}
.stuck-block-table .row .bonus p::before {
  content: url('../img/bonus.svg');
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.stuck-block-table .row .bonus .games {
  position: relative;
  width: 104px;
  padding-left: 43px;
  margin-right: 0;
}
.stuck-block-table .row .bonus .games::before {
  content: url('../img/spiele.svg');
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.stuck-block-table .row .button {
  flex: none;
  text-align: right;
  width: 184px;
}
.stuck-block-table .row .button button {
  width: 160px;
  height: 40px;
  background: #F45D48;
  border-radius: 6px;
  cursor: pointer;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFE;
}
.stuck-block-table .row .button button:hover {
  background: #E05744;
}
.stuck-block-table.closed {
  right: -515px;
  transition: 0.5s;
}
.stuck-block-table.closed .open img {
  transform: rotate(0deg);
}
.stuck-block-table.closed .row {
  padding: 10px 0;
}
.stuck-block-table.closed .row::before {
  content: none;
}
.stuck-block-table.closed .row .img-title {
  display: block;
  text-align: center;
  min-width: 94px;
  width: 94px;
  padding-left: 10px;
  padding-right: 10px;
}
.stuck-block-table.closed .row .img-title img {
  margin: 0 auto 4px;
}
.stuck-block-table.closed .row .img-title p {
  font-size: 12px;
  line-height: 15px;
}
@media screen and (max-width: 600px) {
  .stuck-block-table {
    position: fixed;
    right: 0;
    left: 0;
    top: auto;
    z-index: 9;
    transition: 0.5s;
    visibility: hidden;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 8px 8px 0 0;
    padding: 0;
  }
  .stuck-block-table .open {
    width: 100%;
    height: 30px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -30px;
    left: 0;
    cursor: pointer;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    border-radius: 6px 6px 0 0;
  }
  .stuck-block-table .open img {
    transform: rotate(270deg);
  }
  .stuck-block-table.closed .open img {
    transform: rotate(90deg);
  }
  .stuck-block-table .row .bonus {
    min-width: auto;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    padding-top: 23px;
    padding-left: 0;
  }
  .stuck-block-table .row .bonus p {
    font-size: 10px;
    width: auto;
    padding-right: 0;
    margin-bottom: 0;
    order: 2;
    margin-right: 10px;
  }
  .stuck-block-table .row .bonus p.games {
    margin-bottom: 0px;
    font-size: 12px;
    width: auto;
    order: 1;
  }
  .stuck-block-table .row .img-title img {
    width: 50px;
    height: 50px;
    margin-right: 0;
  }
  .stuck-block-table.closed {
    right: 0;
    display: flex;
    justify-content: space-between;
  }
  .stuck-block-table.closed .row {
    flex: 1;
  }
  .stuck-block-table.closed .row:last-child {
    border-right: 0;
  }
  .stuck-block-table.closed .row .bonus,
  .stuck-block-table.closed .row .button {
    display: none;
  }
  .stuck-block-table.closed .row .img-title {
    display: block;
    text-align: center;
    width: 100%;
    padding-right: 10px;
    min-width: auto;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .stuck-block-table.closed .row .img-title img {
    width: 40px;
    height: 40px;
  }
  .stuck-block-table .row .img-title {
    min-width: auto;
    display: flex;
    align-items: center;
    position: relative;
    width: 60px;
    flex: none;
    margin-right: 5px;
    padding-right: 0;
  }
  .stuck-block-table .row .button {
    width: auto;
    margin-left: auto;
  }
  .stuck-block-table .row .button button {
    width: 78px;
    height: 35px;
  }
  .stuck-block-table .row .img-title p {
    margin-left: 5px;
    font-family: Lato;
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 140%;
    color: #262626;
    position: absolute;
    white-space: nowrap;
    left: 100%;
    top: -5px;
  }
  .stuck-block-table.closed .row .img-title p {
    position: static;
    white-space: normal;
  }
  .stuck-block-table .row {
    padding: 17px 10px;
  }
  .stuck-block-table .row::before {
    content: none;
  }
  .stuck-block-table.closed .row .img-title p {
    font-size: 8px;
  }
  .stuck-block-table .row .bonus p::before {
    content: url(../img/sbonus.svg);
  }
  .stuck-block-table .row .bonus .games::before {
    content: url(../img/sspiele.svg);
  }
  .stuck-block-table .row .bonus p {
    padding-left: 17px;
  }
  .stuck-block-table .row .bonus .games {
    padding-left: 20px;
  }
  .stuck-block-table.closed .row .img-title {
    padding-left: 5px;
    padding-right: 5px;
  }
  .stuck-block-table.closed .row .img-title p {
    margin-left: 0;
  }
}
