@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:400");
html, body {
  height: 100%;
}

body {
  min-height: 100%;
}

.topgambling-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

footer {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
}

.topgambling-layout {
  width: 100%;
  flex: 1 0 auto;
}

/*------------------------------------------------------------------------------------------- */
.topgambling-limit {
  position: relative;
  margin: 0 auto;
}

footer {
  margin: 0 auto;
  position: relative;
}

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- FONTS ------------------------------------------- */
/*------------------------------------------------------------------------------------------- */
/*------------------------------------------------------------------------------------------- */
/*------------------------------------ START SETTINGS --------------------------------------- */
/*------------------------------------------------------------------------------------------- */
html, body {
  font-size: 14px;
}

:root {
  --main-font: Arial, Helvetica, sans-serif;
  --primary-dark-text-color: #2b3648;
  --primary-light-text-color: #ffffff;
  --accent-text-color: #df465b;
  --accent-text-hover-color: #a42234;
  --dark-item-background: #2b3648;
  --light-item-background: #ffffff;
  --accent-item-background: #df465b;
  --main-background: #e7e7e7;
  --primary-btn-background: #df465b;
  --primary-btn-shadow-color: #c33044;
  --primary-btn-hover-background: #a42234;
  --primary-btn-text-color: #ffffff;
  --other-btn-background: #2b3648;
  --other-btn-shadow-color: #334157;
  --other-btn-hover-background: #334157;
  --other-btn-text-color: #ffffff;
  --footer-bottom-panel-color: #334157;
  --add-your-site-section-background: #45d5e5;
  --text-base-size: 1em;
  --text-scale-ratio: 1.2;
  --text-xs: calc((1em / var(--text-scale-ratio)) / var(--text-scale-ratio));
  --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
  --text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
  /*----------------------Управление шкалой расстояний------------------------------*/
  --space-unit: 1em;
  --space-xxxxs: calc(0.125 * var(--space-unit));
  --space-xxxs: calc(0.25 * var(--space-unit));
  --space-xxs: calc(0.375 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  --space-xxxl: calc(8.5 * var(--space-unit));
  --space-xxxxl: calc(13.75 * var(--space-unit));
}

.topgambling-limit {
  max-width: 1280px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

body {
  font-family: var(--main-font);
  color: var(--primary-dark-text-color);
}

.topgambling-wrapper {
  background: var(--main-background);
}

.topgambling-not-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topgambling-button {
  color: var(--primary-btn-text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: var(--text-md);
  font-weight: 700;
  display: inline-block;
  padding: var(--space-unit) var(--space-lg);
  text-align: center;
  cursor: pointer;
  line-height: 1;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  background: var(--primary-btn-background);
  box-shadow: 0 2px 4px var(--primary-btn-shadow-color);
}
.topgambling-button:hover, .topgambling-button:focus, .topgambling-button:active {
  color: var(--primary-btn-text-color);
  background: var(--primary-btn-hover-background);
  box-shadow: 0 2px 14px var(--primary-btn-shadow-color);
  line-height: 1;
}

.topgambling-button--other {
  color: var(--other-btn-text-color);
  background: var(--other-btn-background);
  box-shadow: 0 2px 4px var(--other-btn-shadow-color);
}
.topgambling-button--other:hover, .topgambling-button--other:focus, .topgambling-button--other:active {
  color: var(--other-btn-text-color);
  background: var(--other-btn-hover-background);
  box-shadow: 0 2px 14px var(--other-btn-shadow-color);
}

.topgambling-btn-center-wrapper {
  display: block;
  margin: 30px 0;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-size: var(--text-base-size);
  color: var(--primary-dark-text-color);
  font-family: var(--main-font);
  margin-bottom: var(--space-unit);
}

.text-xxxl {
  font-size: var(--text-xxxl);
}

.text-xxl {
  font-size: var(--text-xxl);
  text-transform: uppercase;
}

h1, .text-xl {
  font-size: var(--text-xl);
}

h2, .text-lg {
  font-size: var(--text-lg);
}

h3, .text-md {
  font-size: var(--text-md);
}

h3, h5, h6 {
  font-size: var(--text-base-size);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-xs {
  font-size: var(--text-xs);
}

p, li {
  font-size: var(--text-base-size);
  color: var(--primary-dark-text-color);
  font-family: var(--main-font);
}

/*------------------------star---------------------------*/
.rating-holder {
  display: inline-block;
  padding: 0.625em 1.875em;
  margin: 0 10px;
  background-color: #fff;
  border-radius: 1.5625em;
  box-sizing: border-box;
}

.c-rating {
  /*    @if $interaction-type == clickable {
          &:hover {
              button {
                  background: get-icon(full, $rating-color-hover) !important;
              }
          }
      }*/
}
.c-rating button {
  display: inline-block;
  float: left;
  width: 1.25em;
  height: 1.25em;
  border: 0;
  text-indent: -9999px;
  outline: none;
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
  /*      @if $interaction-type == clickable {
            cursor: pointer;
            transition: background 0.25s ease;

            // Override background images on hover state
            &:hover,
            &:hover ~ button {
                background: get-icon(full, $rating-color-empty) !important;
            }
        }*/
}
.c-rating[data-rating-value="0"] button:nth-child(-n+0) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.25"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.25"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.5"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.5"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.75"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.75"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.25"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.25"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.5"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.5"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.75"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.75"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.25"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.25"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.5"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.5"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.75"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.75"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.25"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.25"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.5"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.5"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.75"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.75"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.25"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.25"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.5"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.5"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.75"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.75"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="5"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22gold%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating--small {
  font-size: 50%;
}
.c-rating--big {
  font-size: 150%;
}

.c-rating button {
  cursor: initial;
}

ol, ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

a {
  color: var(--accent-text-color);
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
a:hover, a:active, a:focus {
  color: var(--accent-text-hover-color);
}

.topgambling-main-content-section * {
  scrollbar-width: thin;
  scrollbar-color: var(--dark-item-background) var(--accent-text-color);
}
.topgambling-main-content-section *::-webkit-scrollbar {
  width: 12px;
}
.topgambling-main-content-section *::-webkit-scrollbar-track {
  background: var(--dark-item-background);
}
.topgambling-main-content-section *::-webkit-scrollbar-thumb {
  background-color: var(--accent-text-color);
  border-radius: 20px;
  border: 3px solid var(--dark-item-background);
}

/*--------------------------------------------breadcrumbs----------------------------------------------- */
.breadcrumbs {
  font-family: var(--main-font);
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--primary-dark-text-color);
  line-height: 16px;
  display: block;
}

.topgambling-breadcrumbs-wrapper {
  padding-bottom: 20px;
}

.breadcrumbs .breadcrumbs_item {
  display: inline-block;
  margin: 0px;
  font-family: var(--main-font);
  letter-spacing: 0.4px;
  color: var(--primary-dark-text-color);
  line-height: 16px;
  margin-right: 26px;
  position: relative;
  font-weight: 700;
}

.breadcrumbs .breadcrumbs_item:after {
  position: relative;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: var(--primary-dark-text-color);
  top: 2px;
  right: -13px;
}

.breadcrumbs .breadcrumbs_item:last-child:after {
  display: none;
}

.breadcrumbs .breadcrumbs_item:last-child {
  margin-right: 0px;
}

.breadcrumbs .breadcrumbs_item > a {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  font-weight: 700;
}

.breadcrumbs .breadcrumbs_item > a:hover {
  color: var(--accent-text-color);
}

/*------------------------star-end--------------------------*/
/*-----------------------USE---------------------------
footer {
   @include text-shadow(1px, #000);
   @include gradient($color1, $color2);
   @include hr_gradient($color1, $color2);
   @include transition(all,0.5s);
   @include transform(skew(20deg));
   @include transform(translate(-50% , -50%));
   @include custom_border(border-color,border-weight,dash-size,gap-size);
}
-----------------------------------------------------*/
/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- HEADER ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.topgambling-header {
  padding: 12px 0;
  background: var(--dark-item-background);
  color: var(--primary-light-text-color);
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
}
.topgambling-header .topgambling-limit {
  display: flex;
  align-items: center;
}

.topgambling-header-text-wrapper {
  flex: 1;
  display: inline-block;
  margin-right: 30px;
}
.topgambling-header-text-wrapper p {
  margin-bottom: 0;
  color: var(--primary-light-text-color);
}

.topgambling-heading {
  color: var(--primary-light-text-color);
  font-family: var(--main-font);
  font-size: var(--text-xl);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.topgambling-burger-btn {
  display: inline-flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 30px;
  cursor: pointer;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.topgambling-burger-btn path {
  fill: var(--primary-light-text-color);
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.topgambling-burger-btn:hover {
  background: white;
}
.topgambling-burger-btn:hover path {
  fill: var(--primary-dark-text-color);
}

.topgambling-scroll-hidden {
  overflow: hidden;
}

.topgambling-scroll-hidden .topgambling-wrapper {
  position: relative;
}

.topgambling-scroll-hidden .topgambling-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: block;
  z-index: 999;
}

.topgambling-mobile-navigation-wrapper {
  display: none;
  padding: 20px 20px 36px;
  overflow-y: auto;
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 400px;
  width: 100%;
  background: var(--dark-item-background);
  background-size: 100% auto;
}
.topgambling-mobile-navigation-wrapper .topgambling-header-navigation {
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.topgambling-mobile-navigation-wrapper .topgambling-search-form {
  width: 100%;
  margin-bottom: 20px;
}

.topgambling-header-navigation {
  flex-wrap: wrap;
}
.topgambling-header-navigation a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--text-md);
  text-align: center;
  color: var(--primary-light-text-color);
  display: block;
  margin-bottom: var(--space-sm);
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.topgambling-header-navigation a:hover {
  color: var(--accent-text-color);
}

.topgambling-close-mobile-navigation-btn {
  width: 18px;
  height: 18px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: 16px;
  left: 22px;
}

.topgambling-mobile-navigation-inner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.topgambling-mobile-navigation-inner-wrapper .topgambling-mobile-header-navigation {
  flex-direction: column;
  align-items: center;
  display: flex;
  width: 100%;
}

.topgambling-mobile-navigation-inner-wrapper .topgambling-mobile-header-navigation a {
  display: block;
  margin-bottom: 14px;
}

.topgambling-mobile-logo-wrapper {
  margin-bottom: 40px;
  max-width: 174px;
}

.topgambling-mobile-logo-wrapper img {
  width: 100%;
}

.topgambling-logo {
  max-width: 380px;
}

/*-----------------------USE---------------------------
footer {
   @include text-shadow(1px, #000);
   @include gradient($color1, $color2);
   @include hr_gradient($color1, $color2);
   @include transition(all,0.5s);
   @include transform(skew(20deg));
   @include transform(translate(-50% , -50%));
   @include custom_border(border-color,border-weight,dash-size,gap-size);
}
-----------------------------------------------------*/
/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- FOOTER ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.topgambling-footer-navigation-block {
  background: var(--dark-item-background);
  padding: 38px 0;
}

.topgambling-footer-bottom-panel {
  background: var(--footer-bottom-panel-color);
  padding: 26px 0;
}

.topgambling-categories-heading {
  color: var(--primary-light-text-color);
  font-family: var(--main-font);
  font-size: var(--text-md);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.topgambling-footer-navigation {
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
}
.topgambling-footer-navigation li {
  margin-bottom: 10px;
}
.topgambling-footer-navigation li, .topgambling-footer-navigation a {
  color: var(--primary-light-text-color);
  font-family: var(--main-font);
  font-size: var(--text-base-size);
  font-weight: 700;
}
.topgambling-footer-navigation a {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.topgambling-footer-navigation a:hover {
  color: var(--accent-text-color);
}

.topgambling-copyright {
  color: var(--primary-light-text-color);
  font-family: var(--main-font);
  font-size: var(--text-base-size);
}
.topgambling-copyright a {
  color: var(--primary-light-text-color);
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.topgambling-copyright a:hover {
  color: var(--accent-text-color);
}
.topgambling-copyright span {
  color: var(--accent-text-color);
}

.topgambling-footer-bottom-panel .topgambling-limit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-link {
  display: inline-flex;
  margin-left: 10px;
  background-color: var(--dark-item-background);
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: #fff;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.social-link:hover {
  color: var(--accent-text-color);
}
/*------------------------------------------------------------------------------------------- */
/*---------------------------------------- CONTENT ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.topgambling-casino-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
  margin-bottom: 30px;
}

.topgambling-casino-card {
  display: inline-block;
  width: calc(25% - 14px);
  margin: 0 7px 14px;
}
.topgambling-casino-card .topgambling-button {
  width: 100%;
  display: block;
}

.topgambling-casino-card__heading {
  display: block;
  padding: 15px 12px;
  background: var(--dark-item-background);
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--text-md);
  text-align: center;
  color: var(--primary-light-text-color);
}

.topgambling-casino-card__text-wrapper {
  display: block;
  padding: 15px 12px;
  background: var(--light-item-background);
}
.topgambling-casino-card__text-wrapper p {
  text-align: center;
}

.topgambling-casino-card__list {
  display: block;
  counter-reset: item;
}
.topgambling-casino-card__list li {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}
.topgambling-casino-card__list a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary-dark-text-color);
}
.topgambling-casino-card__list li:before {
  content: counter(item) " ";
  counter-increment: item;
  min-width: 26px;
  position: absolute;
  left: 0;
}

.topgambling-casino-card__item-ico {
  width: 24px;
  height: 24px;
  opacity: 0.3;
  border-radius: 100%;
  overflow: hidden;
  display: inline-block;
  margin-right: 8px;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.topgambling-casino-card__item-ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topgambling-slots-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
  margin-bottom: 34px;
}

.topgambling-slots-card {
  display: inline-flex;
  flex-direction: column;
  width: calc(25% - 14px);
  margin: 0 7px 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.topgambling-slots-card:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.topgambling-slots-card__top-block {
  background: var(--light-item-background);
  padding: 11px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
}

.topgambling-slots-card__img-wrapper {
  width: 100%;
  height: 100%;
  min-height: 216px;
}
.topgambling-slots-card__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.topgambling-slots-card__site-item {
  display: inline-flex;
  align-items: center;
}

.topgambling-slots-card__item-ico {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 8px;
}
.topgambling-slots-card__item-ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topgambling-slots-card__site-item {
  font-weight: 700;
  color: var(--primary-dark-text-color);
}

.topgambling-slots-card__details-ico {
  width: 27px;
  height: 27px;
  background-color: var(--dark-item-background);
  opacity: 0.5;
  color: var(--primary-light-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.topgambling-slot-wrapper {
  background: var(--light-item-background);
  padding: 20px;
  box-shadow: 0 2px 6px rgba(4, 5, 6, 0.4);
  margin-bottom: 20px;
  display: flex;
}
.topgambling-slot-wrapper .topgambling-button {
  width: 100%;
  display: block;
}
.topgambling-slot-wrapper .topgambling-button--other {
  margin-top: 14px;
}

.topgambling-slot-wrapper__left-block {
  width: 40%;
  max-width: 400px;
  margin-right: 32px;
}

.topgambling-slot-wrapper__right-block {
  flex: 1;
}

.topgambling-slot-img-wrapper {
  width: 100%;
  margin-bottom: 20px;
  height: 300px;
}
.topgambling-slot-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topgambling-slot-name {
  font-size: var(--text-xxxl);
  color: var(--accent-text-color);
  font-weight: 700;
}

.topgambling-rating-wrapper {
  margin-bottom: 20px;
}

.topgambling-content-block {
  background: var(--light-item-background);
  padding: var(--space-xl);
  margin-bottom: 16px;
}

details summary::-webkit-details-marker {
  display: none;
}

details > summary {
  list-style: none;
}

.topgambling-faq-block details summary:before {
  content: "+";
  font-size: 20px;
  margin-right: 10px;
}

.topgambling-faq-block {
  margin-bottom: 30px;
}

.topgambling-faq-block details[open] summary:before {
  content: "-";
}

.topgambling-faq-block details summary {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  color: var(--primary-light-text-color);
  background: var(--dark-item-background);
}

.topgambling-faq-block details {
  border-radius: 6px;
  margin-bottom: 10px;
}

.topgambling-faq-block h3 {
  margin-bottom: 18px;
}

.topgambling-faq-block .topgambling-answer-block {
  padding: 20px 20px 20px 40px;
  margin-bottom: 0;
}

.topgambling-contact-form {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 320px;
}
.topgambling-contact-form input[type=text], .topgambling-contact-form input[type=password], .topgambling-contact-form input[type=email], .topgambling-contact-form textarea, .topgambling-contact-form select {
  width: 100%;
  height: 44px;
  border: 1px solid #d9d9d9;
  padding-left: 14px;
  font-family: var(--main-font);
  font-size: var(--text-base-size);
  color: var(--primary-dark-text-color);
}
.topgambling-contact-form textarea {
  height: 114px;
  resize: vertical;
  padding: 10px 14px;
}
.topgambling-contact-form .topgambling-button {
  width: 100%;
  margin-top: 30px;
}

.topgambling-contact-form-item-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 16px;
}

.topgambling-casino-card__list li {
  display: flex;
  justify-content: space-between;
}
.topgambling-casino-card__list li:hover .topgambling-review-link {
  opacity: 1;
}
.topgambling-casino-card__list li:hover .topgambling-casino-card__item-ico {
  opacity: 1;
}
.topgambling-casino-card__list .topgambling-review-link {
  opacity: 0;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  font-size: var(--text-md);
  color: var(--accent-text-color);
}
.topgambling-casino-card__list .topgambling-review-link:hover {
  color: var(--accent-text-hover-color);
}

.topgambling-rating-item-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.topgambling-rating-item-wrapper:last-of-type {
  margin-bottom: 20px;
}

.topgambling-rating-description--total {
  font-size: var(--text-md);
}

.topgambling-slot-link {
  margin-bottom: 12px;
  display: inline-block;
  font-weight: 700;
  font-size: var(--text-md);
}

.topgambling-slot-wrapper__right-block {
  overflow-x: auto;
  height: 450px;
  padding-right: 20px;
}

.topgambling-slots-card__description {
  color: var(--primary-light-text-color);
  text-align: center;
}

.topgambling-slots-card__img-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.topgambling-slots-card__buttons-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
  padding: 16px;
  opacity: 0;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -ms-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.topgambling-slots-card__buttons-wrapper .topgambling-button {
  width: calc(100% - 10px);
  max-width: 160px;
  margin-top: 10px;
}

.topgambling-slots-card__description {
  margin-bottom: 0;
}

.topgambling-slots-card:hover .topgambling-slots-card__buttons-wrapper {
  opacity: 1;
}
.topgambling-slots-card:hover .topgambling-slots-card__img-wrapper img {
  transform: scale(1.2);
}

.topgambling-slots-card {
  border: 2px solid var(--light-item-background);
}

.topgambling-slots-cards-wrapper {
  counter-reset: item;
}
.topgambling-slots-cards-wrapper .topgambling-slots-card__details-ico:before {
  content: counter(item) " ";
  counter-increment: item;
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(1) {
  border: 2px solid gold;
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(1) .topgambling-slots-card__top-block {
  background: rgba(255, 215, 0, 0.3);
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(1) .topgambling-slots-card__details-ico {
  width: 36px;
  height: 36px;
  opacity: 1;
  border: 2px solid #ffffff;
  background: gold;
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(2) {
  border: 2px solid silver;
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(2) .topgambling-slots-card__top-block {
  background: rgba(192, 192, 192, 0.3);
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(2) .topgambling-slots-card__details-ico {
  width: 34px;
  height: 34px;
  opacity: 1;
  border: 2px solid #ffffff;
  background: silver;
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(3) {
  border: 2px solid #b1560f;
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(3) .topgambling-slots-card__top-block {
  background: rgba(177, 86, 15, 0.3);
}
.topgambling-slots-cards-wrapper .topgambling-slots-card:nth-child(3) .topgambling-slots-card__details-ico {
  width: 32px;
  height: 32px;
  opacity: 1;
  border: 2px solid #ffffff;
  background: #B1560F;
}

.topgambling-search-form {
  display: block;
  position: relative;
  max-width: 400px;
}
.topgambling-search-form input[type=text] {
  background-color: #090a20;
  display: block;
  width: 100%;
  height: 40px;
  color: var(--primary-light-text-color);
  font-size: 14px;
  line-height: 1;
  border-radius: 6px;
  padding-left: 11px;
  padding-right: 50px;
  border: none;
  outline: none;
}
.topgambling-search-form input[type=text]:focus, .topgambling-search-form input[type=text]:active {
  box-shadow: 0 0 10px var(--accent-item-background);
}
.topgambling-search-form .topgambling-search-button {
  position: absolute;
  display: flex;
  width: 50px;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: var(--text-base-size, 16px);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
  color: var(--primary-light-text-color);
  right: 0;
  top: 0;
  background: transparent;
  outline: none;
}

.topgambling-sitemap-list {
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
}
.topgambling-sitemap-list li, .topgambling-sitemap-list a {
  color: var(--primary-dark-text-color);
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
}
.topgambling-sitemap-list li {
  display: block;
  margin-bottom: 10px;
}
.topgambling-sitemap-list a:hover {
  color: var(--accent-text-color);
}

.topgambling-email-contacts-item-wrapper {
  display: inline-flex;
  flex: 1;
  max-width: 600px;
}
.topgambling-email-contacts-item-wrapper input[type=text], .topgambling-email-contacts-item-wrapper input[type=password], .topgambling-email-contacts-item-wrapper input[type=email] {
  display: inline-block;
  border-radius: 5px 0 0 5px;
  border: 1px solid #80797a;
  border-right: none;
  width: 100%;
  height: 42px;
  background: #ffffff;
  box-shadow: inset 0 0 5px #333333;
  padding-left: 10px;
}

.topgambling-email-contact-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topgambling-email-contact-form .topgambling-button {
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 10px 20px;
  font-size: 16px;
}

.topgambling-email-contacts-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--dark-item-background);
  margin: 30px 0;
}

.topgambling-email-contact-form label {
  margin: 0;
  color: var(--primary-light-text-color);
  font-weight: 700;
  font-size: var(--text-xl);
  margin-right: 25px;
}

.topgambling-add-your-site-section {
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
  background: var(--add-your-site-section-background);
}
.topgambling-add-your-site-section .topgambling-button {
  --animate-duration: 1.5s;
}

.topgambling-comment-section {
  margin: 30px 0;
}

.topgambling-comment-block {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--light-item-background);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
.topgambling-comment-block .c-rating-wrapper {
  display: block;
  margin-bottom: 6px;
}

.topgambling-inner-post-author-description {
  display: flex;
  align-items: flex-start;
}

.topgambling-comment-author-photo, .topgambling-inner-post-author-photo {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-right: 40px;
  overflow: hidden;
}
.topgambling-comment-author-photo img, .topgambling-inner-post-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topgambling-comment-text {
  flex: 1;
  font-weight: 700;
}

.topgambling-comment-author-name {
  display: block;
  margin-bottom: 3px;
  font-size: var(--text-md);
}

.topgambling-comment-top-panel {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}

.topgambling-post-author-block {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
  align-items: center;
}
.topgambling-post-author-block .topgambling-post-author-name {
  font-weight: 700;
  font-size: var(--text-md);
}

.topgambling-post-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  margin-right: 10px;
}
.topgambling-post-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topgambling-inner-post-author-top-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.topgambling-inner-post-author-left-block {
  display: inline-flex;
  align-items: center;
}

.topgambling-inner-post-author-name {
  font-size: var(--text-lg);
  margin-right: 14px;
  font-weight: 700;
}

.topgambling-inner-post-author-contact-link {
  font-weight: 700;
  font-size: var(--text-md);
}

.topgambling-inner-post-author-contact-block {
  display: inline-flex;
  align-items: center;
}
.topgambling-inner-post-author-contact-block i {
  display: inline-block;
  margin-right: 4px;
  font-size: 16px;
}

.topgambling-inner-post-author-description-text {
  flex: 1;
}

.topgambling-post-author-section {
  margin-bottom: 30px;
}
.site-category-label-wrap{
  padding: 15px 0;
}
.site-category-label-wrap a {
  padding: 5px 10px;
  background: #e6e6e6;
  margin: 0 0 0 5px;
  display: inline-block;
  border-radius: 5px;
  color: #2a2d33;
}

/*# sourceMappingURL=style.css.map */
