.stuck-block-table {
  position: fixed;
  right: 0;
  top: 200px;
  z-index: 9;
  transition: 0.5s;
  visibility: hidden;
  background: #FFFFFF;
  box-shadow: 0px 0px 25px -12px rgba(248, 111, 0, 0.6);
  border-radius: 8px 0px 0px 8px;
}
.stuck-block-table .open {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: #FFFFFF;
  border-radius: 10px;
  padding-left: 10px;
}
.stuck-block-table .open img {
  transform: rotate(180deg);
}
.stuck-block-table .row {
  display: flex;
  position: relative;
  align-items: center;
  min-height: 80px;
}
.stuck-block-table .row .img-title {
  width: 215px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px;
}
.stuck-block-table .row .img-title img {
  display: block;
  width: 44px;
  height: auto;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin: 0;
}
.stuck-block-table .row .img-title .image {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.stuck-block-table .row .img-title .image::before {
  content: '';
  display: block;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.stuck-block-table .row .img-title .image::after {
  content: '';
  display: block;
  background: #A897EF;
  border-radius: 50%;
  position: absolute;
  width: 56px;
  height: 56px;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.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: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 140%;
  color: #484848;
  margin-left: 15px;
}
.stuck-block-table .row .bonus {
  width: 245px;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 140%;
  color: #484848;
  display: flex;
  align-items: flex-start;
  padding-left: 15px;
}
.stuck-block-table .row .bonus p {
  position: relative;
  padding-left: 40px;
  width: 175px;
  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: 42px;
  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: 200px;
  margin-right: 10px;
}
.stuck-block-table .row .button button {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 160%;
  color: #FFFFFF;
  padding: 10px 15px;
  background: #ED7C7C;
  border-radius: 10px;
}
.stuck-block-table .row .button button:hover {
  background: #E65F5F;
  text-decoration: none;
  cursor: pointer;
}
.stuck-block-table .row .button button.rules {
  display: none;
}
.stuck-block-table.closed {
  right: -460px;
  transition: 0.5s;
  padding: 10px 0;
}
.stuck-block-table.closed .open img {
  transform: rotate(0deg);
}
.stuck-block-table.closed .row::before {
  content: none;
}
.stuck-block-table.closed .row .img-title {
  display: block;
  text-align: center;
  min-width: 85px;
  width: 85px;
  padding: 0;
}
.stuck-block-table.closed .row .img-title img {
  margin: 0;
  width: 44px;
}
.stuck-block-table.closed .row .img-title .image {
  margin: 0 auto 10px;
}
.stuck-block-table.closed .row .img-title p {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 140%;
  color: #484848;
}
@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%;
    padding: 0;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(248, 111, 0, 0.15);
    border-radius: 6px 6px 0px 0px;
  }
  .stuck-block-table .open {
    width: 40px;
    height: 20px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    left: 0;
    cursor: pointer;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    border-radius: 6px 6px 0 0;
    box-shadow: none;
  }
  .stuck-block-table .open img {
    transform: rotate(270deg);
  }
  .stuck-block-table.closed .open img {
    transform: rotate(90deg);
  }
  .stuck-block-table .row {
    padding: 5px;
  }
  .stuck-block-table.closed .row {
    padding: 0;
    padding-top: 10px;
  }
  .stuck-block-table .row .bonus {
    min-width: auto;
    align-items: flex-start;
    width: auto;
    padding-top: 25px;
    padding-left: 0;
  }
  .stuck-block-table .row .bonus p {
    font-size: 10px;
    width: auto;
    padding-right: 0;
    margin-bottom: 0;
    margin-right: 10px;
  }
  .stuck-block-table .row .bonus p.games {
    display: none;
    margin-bottom: 0px;
    font-size: 12px;
    width: auto;
  }
  .stuck-block-table .row .img-title img {
    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 .row .img-title {
    min-width: auto;
    display: flex;
    align-items: center;
    position: relative;
    width: 60px;
    flex: none;
    padding: 0;
    margin-right: 5px;
  }
  .stuck-block-table .row .button {
    width: auto;
    margin-left: auto;
  }
  .stuck-block-table .row .button button {
    width: 35px;
    height: 50px;
    font-size: 0;
    padding: 0;
  }
  .stuck-block-table .row .button button::after {
    content: url('../img/arrow.svg');
  }
  .stuck-block-table .row .button button:after {
    margin: 0;
    top: 0;
  }
  .stuck-block-table .row .img-title p {
    margin-left: 37px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #484848;
    position: absolute;
    white-space: nowrap;
    left: 100%;
    top: 2px;
  }
  .stuck-block-table.closed .row .img-title p {
    position: static;
    white-space: normal;
  }
  .stuck-block-table .row {
    flex-wrap: wrap;
  }
  .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);
    left: -5px;
    top: 0;
  }
  .stuck-block-table .row .bonus .games::before {
    content: url(../img/sspiele.svg);
  }
  .stuck-block-table .row .bonus p {
    padding-left: 31px;
  }
  .stuck-block-table .row .bonus .games {
    padding-left: 20px;
  }
  .stuck-block-table.closed .row .img-title {
    padding-left: 2px;
    padding-right: 2px;
  }
  .stuck-block-table.closed .row .img-title p {
    margin-left: 0;
  }
}
/*# sourceMappingURL=sc-side-table.css.map */