html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, main, section, summary,
time, mark, audio, video, input, button, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1rem;
  font-weight: normal;
  font: inherit;
  color: inherit;
  text-decoration: none;
  vertical-align: top;
  box-sizing: border-box; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: #eee; }

.icon,
.big-icon,
.icon-small {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block; }

.icon {
  width: 1rem;
  height: 1rem; }

.big-icon {
  width: 80%;
  padding-bottom: 80%;
  margin-bottom: .5rem; }

.icon-small {
  background-size: contain;
  background-position: left center;
  padding-left: 1.3rem;
  margin: .2rem 0 .2rem .2rem; }

.icon-dice {
  background-image: url("/img/icons/dice.svg"); }

.icon-gears {
  background-image: url("/img/icons/gears.svg"); }

.icon-gamepad {
  background-image: url("/img/icons/gamepad.svg"); }

.icon-camera {
  background-image: url("/img/icons/camera.svg"); }

.icon-film {
  background-image: url("/img/icons/film.svg"); }

.icon-cat-ears {
  background-image: url("/img/icons/cat-ears.svg"); }

.icon-book {
  background-image: url("/img/icons/book.svg"); }

.icon-audio {
  background-image: url("/img/icons/audio.svg"); }

.icon-your-dude {
  background-image: url("/img/icons/your-dude.svg"); }

.icon-reload {
  background-image: url("/img/icons/reload.svg"); }

.icon-gear {
  background-image: url("/img/icons/gear.svg"); }

.icon-arrow-left {
  background-image: url("/img/icons/arrow-left.svg"); }

.icon-arrow-double-left {
  background-image: url("/img/icons/arrow-double-left.svg"); }

.icon-arrow-right {
  background-image: url("/img/icons/arrow-right.svg"); }

.icon-arrow-double-right {
  background-image: url("/img/icons/arrow-double-right.svg"); }

.icon-info {
  background-image: url("/img/icons/info.svg"); }

@media (max-width: 769px) {
  .big-icon {
    width: 12rem;
    height: 12rem;
    padding-bottom: unset; }

  .all-generators-box .big-icon {
    width: 80%;
    height: unset;
    padding-bottom: 80%; } }
@media (min-width: 769px) {
  #menu-activator {
    display: none; }

  .nav {
    position: fixed;
    right: 0;
    left: 0;
    background: linear-gradient(to bottom, #000, transparent);
    height: 3rem;
    font-size: 1.5rem;
    z-index: 999; }

  .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .75rem 5rem .75rem 1rem;
    max-width: 40rem;
    margin-left: auto;
    box-sizing: border-box; }

  .nav-submenu {
    position: relative;
    cursor: default; }

  .nav-submenu-box {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 3rem;
    left: calc(50% - 6.75rem);
    width: 13.5rem;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    transition: .5s; }

  .nav-submenu-box::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: calc(50% - 1rem);
    border: 1rem solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.8);
    border-top-width: 0; }

  .nav-submenu:hover .nav-submenu-box {
    visibility: visible;
    opacity: 1;
    top: 2.4rem;
    transition: .5s; }

  .nav-submenu-link {
    display: block;
    padding: 0 1rem;
    margin: .75rem 0; }

  .nav-submenu-link span {
    position: relative;
    display: inline-block; }

  .nav-submenu-link span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.3rem;
    width: 0;
    height: .1rem;
    background-color: #eee;
    transition: .5s ease-out; }

  .nav-submenu-link:hover span::after,
  .nav a.active span::after {
    width: calc(100%); }

  .nav-icon {
    background: none !important; } }
@media (max-width: 769px) {
  #menu-activator {
    position: fixed;
    right: .8rem;
    top: .7rem;
    font-size: .8rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 0.1rem solid #eee;
    border-radius: .4rem;
    padding: .4rem .5rem .45rem;
    line-height: 1;
    transform: rotate(90deg);
    transition: .4s;
    z-index: 9997; }

  #menu-activator::before,
  #menu-activator::after {
    content: '|';
    position: absolute;
    transition: .4s; }

  #menu-activator::before {
    left: .25rem; }

  #menu-activator.active::before {
    left: .15rem; }

  #menu-activator::after {
    right: .25rem; }

  #menu-activator.active::after {
    right: .15rem; }

  .nav {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    width: 13rem;
    height: 100vh;
    padding: 1rem;
    box-sizing: border-box;
    z-index: 999;
    transition: .3s ease-out;
    visibility: hidden;
    left: -13rem; }

  .nav.active {
    visibility: visible;
    left: 0; }

  .nav-mobile-logo {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-left: 1.8rem; }

  .nav a {
    display: block;
    padding-left: 1.5rem;
    margin-bottom: .75rem;
    font-size: 1.2rem;
    transition: .3s; }

  .nav a:hover {
    opacity: .7; }

  .nav-icon {
    background-position: left center;
    background-size: 1rem;
    background-repeat: no-repeat; }

  .nav-submenu {
    position: relative;
    padding-top: .75rem;
    margin-top: .75rem; }

  .nav-submenu::before {
    content: '';
    position: absolute;
    top: 0;
    width: 80%;
    height: .1rem;
    background-color: #eee;
    opacity: .7; }

  .nav-submenu-link span {
    position: relative; }

  .nav-submenu-link span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.1rem;
    width: 0;
    height: .05rem;
    background-color: #eee;
    transition: .5s ease-out; }

  .nav-submenu-link:hover span::after,
  .nav a.active span::after {
    width: calc(100%); } }
@media (min-width: 769px) {
  ::-webkit-scrollbar {
    width: 17px; }

  ::-webkit-scrollbar-track-piece {
    background: linear-gradient(to bottom right, #000, #333); }

  ::-webkit-scrollbar-thumb:vertical {
    background: linear-gradient(to top right, #333, #999); }

  ::-webkit-scrollbar-thumb:vertical:hover {
    background: #333; }

  ::-webkit-scrollbar-thumb:horizontal {
    width: 50px;
    background: linear-gradient(to top right, #333, #999); }

  ::-webkit-scrollbar-thumb:horizontal:hover {
    background: #333; } }
.yd-main {
  background: url("/img/bg-games.jpg") repeat top center;
  min-height: calc(100vh - 5.7rem); }

.yd-wrapper {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  max-width: 640px;
  padding: 4rem .5rem;
  margin: 0 auto;
  box-shadow: 0 0 8rem 8rem rgba(0, 0, 0, 0.8); }

.yd-player,
.yd-add-player {
  display: inline-block;
  position: relative;
  color: #eee;
  font-family: Courier New, monospace;
  width: 15rem;
  min-height: 1.6rem;
  border: 0.1rem solid #eee;
  border-radius: 0.5rem; }

.yd-player > li,
.yd-add-player-name {
  display: inline-block;
  font-size: 1rem;
  padding: 0.3rem 0.3rem 0.2rem; }

.yd-active {
  user-select: none;
  cursor: pointer;
  transition: .15s ease-out; }

.yd-active:hover {
  box-shadow: inset 0 0 0.5rem #eee; }

.yd-player {
  font-size: 0;
  margin-top: .5rem; }
  .yd-player .yd-player-name {
    max-width: 7.5rem;
    max-height: 1.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  .yd-player .yd-player-score {
    padding-left: 1.9rem;
    border-right: 0.1rem solid #eee; }
  .yd-player .yd-player-kick {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    color: red;
    padding: .4rem .3rem .2rem;
    border-right: 0.1rem solid #eee;
    border-radius: 0.5rem 0 0 0.5rem; }
  .yd-player .yd-player-right-part {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    padding: 0; }
  .yd-player .yd-player-move-up,
  .yd-player .yd-player-move-down {
    display: inline-flex;
    align-items: center; }
  .yd-player .yd-player-move-up,
  .yd-player .yd-player-move-down {
    border-left: 0.1rem solid #eee;
    padding-left: .5rem;
    padding-right: .5rem; }
  .yd-player .yd-player-move-down {
    border-radius: 0 0.5rem 0.5rem 0; }

.yd-voting-box {
  max-width: 16rem;
  max-height: 50vh;
  text-align: center;
  overflow-y: scroll;
  margin: 0 auto; }

.yd-vote-checkbox {
  display: inline-block;
  text-align: left; }
  .yd-vote-checkbox .yd-player-name {
    max-width: 10.5rem;
    padding-left: .5rem; }
  .yd-vote-checkbox .yd-player-vote {
    position: absolute;
    top: 0;
    right: 0;
    border-left: 0.1rem solid #eee; }

.yd-winner {
  background: #030; }

.yd-loser {
  background: #300; }

.yd-add-player .yd-add-player-name {
  width: 100%;
  font-size: 1rem;
  background: transparent; }
.yd-add-player .yd-add-player-name::placeholder {
  font-size: 1rem;
  padding-left: .25rem; }
.yd-add-player .yd-add-player-confirm {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: bold;
  color: green;
  padding: .45rem .45rem .2rem;
  border-left: 0.1rem solid #eee; }

.yd-motives-hide-scroll {
  max-width: 100%;
  overflow-x: hidden; }

.yd-motives {
  width: calc(100% + .9rem);
  max-height: 30vh;
  overflow-y: scroll; }
  .yd-motives .item {
    display: inline-block;
    padding: 0.3rem 0.3rem 0.2rem;
    border: 0.1rem solid #eee;
    border-color: darkred;
    border-radius: 0.5rem;
    margin: 0 .25rem .45rem;
    transition: .15s ease-out;
    cursor: pointer;
    box-shadow: inset 0 0 .5rem darkred; }
  .yd-motives .item.active {
    box-shadow: inset 0 0 .5rem darkgreen;
    border-color: darkgreen; }

@media (max-width: 769px) {
  .yd-motives {
    width: 100%; }

  .include-options .default-checkbox {
    display: block; } }
.yd-game-wrapper,
.yd-active-word,
.yd-next-player,
.yd-active-word-overlay,
.yd-active-motive {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }

.yd-game-wrapper,
.yd-active-word-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  user-select: none; }

.yd-active-word-box {
  position: relative;
  width: 15rem;
  min-height: 8rem;
  border: 0.1rem solid #eee;
  border-radius: 0.5rem;
  margin: 0 auto;
  user-select: none; }
  .yd-active-word-box .yd-active-word {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    max-width: calc(100% - 2.5rem);
    width: 100%;
    padding: .25rem;
    user-select: none; }
  .yd-active-word-box .yd-next-player {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-weight: bold;
    width: 2.5rem;
    background: linear-gradient(to right bottom, #000, #555);
    border-left: 0.1rem solid #eee;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
    user-select: none; }

.yd-active-word-overlay {
  display: none; }

.yd-active-word-overlay.active {
  display: flex;
  background: linear-gradient(to right bottom, #000, #555);
  animation: pulse 2s infinite both ease;
  border-radius: 0.5rem; }

.yd-show-motive {
  min-height: 4rem; }
  .yd-show-motive .yd-active-motive {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: .25rem;
    user-select: none; }

@keyframes pulse {
  0% {
    box-shadow: inset 0 0 0.1rem #eee; }
  50% {
    box-shadow: inset 0 0 0.5rem #eee; }
  100% {
    box-shadow: inset 0 0 0.1rem #eee; } }
.yd-stop-round {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.8);
  padding: .5rem .5rem .45rem .45rem;
  border-right: 0.1rem solid #eee;
  border-bottom: 0.1rem solid #eee;
  border-radius: 0 0 0.5rem 0;
  transition: none; }

.disqus-comments-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #000;
  min-height: 5.7rem; }
  .disqus-comments-container .generator-default-box {
    text-align: center;
    width: 100%; }

.promo-show-banner {
  border: 0.1rem solid #eee; }

.generator-container.for-promo {
  position: relative;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  max-width: 45rem;
  min-height: 10rem;
  padding: 0;
  box-sizing: border-box;
  margin: 0 auto 3rem auto;
  border-radius: 1rem;
  align-self: center;
  justify-self: center;
  overflow: hidden; }

.under-promo-horizontal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 0; }

.under-promo-horizontal-name {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: .25rem .5rem;
  border-bottom: 0.1rem solid #eee;
  border-left: 0.1rem solid #eee;
  border-radius: 0 0 0 1rem; }

.under-promo-horizontal .under-promo-text {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: .5rem .5rem;
  border-top: 0.1rem solid #eee;
  border-radius: 1rem;
  box-sizing: border-box;
  opacity: 1; }

.under-promo-horizontal {
  animation: ad-delay 2s .1s 1 both; }

@keyframes ad-delay {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.promo-horizontal, .promo-show-banner {
  transition: .5s; }

.promo-horizontal {
  width: 100%;
  height: 280px;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: .99;
  z-index: 1; }

.active .promo-horizontal, .active .promo-show-banner {
  opacity: 0; }

.promo-show-banner-container {
  position: relative;
  width: 100%;
  max-width: 45rem;
  height: 2rem;
  margin: 0 auto; }

.promo-show-banner {
  position: absolute;
  right: 1rem;
  top: 0;
  background: rgba(0, 0, 0, 0.7) url("/img/icons/eye.svg") no-repeat center center/1.5rem;
  width: 2rem;
  height: 1.5rem;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  opacity: .5; }

.promo-show-banner:hover {
  opacity: 1; }

.under-promo-vertical {
  display: none; }

@media (min-width: 1790px) {
  .under-promo-vertical {
    display: inline-block;
    position: fixed;
    right: 3%;
    top: calc(50% - 15rem);
    width: 12rem;
    height: 30rem; } }
.under-promo-books {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Times new roman, sans;
  color: #000; }

.under-promo-books > p {
  width: 100%;
  max-width: 38rem;
  padding: .5rem 1rem;
  box-sizing: border-box; }

@media (min-width: 769px) {
  .under-promo-books > p {
    font-size: 1.25rem; } }
.size0 {
  font-size: .8rem !important; }

.size1 {
  font-size: 1rem !important; }

.size2 {
  font-size: 1.25rem !important; }

.size3 {
  font-size: 1.5rem !important; }

.size4 {
  font-size: 1.75rem !important; }

.size5 {
  font-size: 2rem !important; }

.bold, .b {
  font-weight: bold; }

.italic, .i {
  font-style: italic; }

.underline, .u {
  text-decoration: underline; }

.small-text {
  font-size: .75em;
  vertical-align: baseline; }

.big-text {
  font-size: 1.25em;
  vertical-align: baseline; }

.sup,
.sub {
  font-size: .6em;
  line-height: .5; }

.sup {
  vertical-align: top; }

.sub {
  vertical-align: bottom; }

.link {
  position: relative;
  color: #ceb56d; }

/*
.link::after {
	content: '';
	display: inline-block;
	width: .7em;
	height: .7em;
	background: url('/img/icons/link.svg') top left / contain;
	margin-left: .25em;
}
*/
.overlay {
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: .3s;
  opacity: 0;
  z-index: 998; }

.overlay.active {
  visibility: visible;
  opacity: 1; }

.hover-opacity {
  transition: .3s; }

.hover-opacity:hover {
  opacity: .7; }

.mt0 {
  margin-top: 0 !important; }

.mt1 {
  margin-top: .25rem !important; }

.mt2 {
  margin-top: .5rem !important; }

.mt3 {
  margin-top: .75rem !important; }

.mt4 {
  margin-top: 1rem !important; }

.mt5 {
  margin-top: 1.5rem !important; }

.mr0 {
  margin-right: 0 !important; }

.mr1 {
  margin-right: .25rem !important; }

.mr2 {
  margin-right: .5rem !important; }

.mr3 {
  margin-right: .75rem !important; }

.mr4 {
  margin-right: 1rem !important; }

.mr5 {
  margin-right: 1.5rem !important; }

.mb0 {
  margin-bottom: 0 !important; }

.mb1 {
  margin-bottom: .25rem !important; }

.mb2 {
  margin-bottom: .5rem !important; }

.mb3 {
  margin-bottom: .75rem !important; }

.mb4 {
  margin-bottom: 1rem !important; }

.mb5 {
  margin-bottom: 1.5rem !important; }

.ml0 {
  margin-left: 0 !important; }

.ml1 {
  margin-left: .25rem !important; }

.ml2 {
  margin-left: .5rem !important; }

.ml3 {
  margin-left: .75rem !important; }

.ml4 {
  margin-left: 1rem !important; }

.ml5 {
  margin-left: 1.5rem !important; }

.p0 {
  padding: 0 !important; }

.p1 {
  padding: .25rem !important; }

.p2 {
  padding: .5rem !important; }

.p3 {
  padding: .75rem !important; }

.p4 {
  padding: 1rem !important; }

.p5 {
  padding: 1.5rem !important; }

.pt0 {
  padding-top: 0 !important; }

.pt1 {
  padding-top: .25rem !important; }

.pt2 {
  padding-top: .5rem !important; }

.pt3 {
  padding-top: .75rem !important; }

.pt4 {
  padding-top: 1rem !important; }

.pt5 {
  padding-top: 1.5rem !important; }

.pr0 {
  padding-right: 0 !important; }

.pr1 {
  padding-right: .25rem !important; }

.pr2 {
  padding-right: .5rem !important; }

.pr3 {
  padding-right: .75rem !important; }

.pr4 {
  padding-right: 1rem !important; }

.pr5 {
  padding-right: 1.5rem !important; }

.pb0 {
  padding-bottom: 0 !important; }

.pb1 {
  padding-bottom: .25rem !important; }

.pb2 {
  padding-bottom: .5rem !important; }

.pb3 {
  padding-bottom: .75rem !important; }

.pb4 {
  padding-bottom: 1rem !important; }

.pb5 {
  padding-bottom: 1.5rem !important; }

.pl0 {
  padding-left: 0 !important; }

.pl1 {
  padding-left: .25rem !important; }

.pl2 {
  padding-left: .5rem !important; }

.pl3 {
  padding-left: .75rem !important; }

.pl4 {
  padding-left: 1rem !important; }

.pl5 {
  padding-left: 1.5rem !important; }

.separator {
  height: 30px; }

@media (min-width: 770px) {
  .mobile-visible {
    display: none !important; } }
@media (max-width: 769px) {
  .mobile-hidden {
    display: none !important; } }
.text-align-left {
  text-align: left !important; }

.text-align-right {
  text-align: right !important; }

.text-align-center {
  text-align: center !important; }

.text-align-justify {
  text-align: justify !important; }

.block-align-right {
  margin-left: auto; }

.block-align-center {
  margin-left: auto;
  margin-right: auto; }

.block-align-left {
  margin-right: auto; }

.main-text {
  color: #ceb56d; }

.main-bg {
  background-color: #ceb56d; }

.relative {
  position: relative; }

.hide {
  display: none !important; }

.overflow-hidden {
  overflow: hidden; }

.overflow-x-hidden {
  overflow-x: hidden; }

.flex {
  display: flex; }

.inline-flex {
  display: inline-flex; }

.flex-wrap {
  flex-wrap: wrap; }

.flex-between {
  justify-content: space-between; }

.flex-around {
  justify-content: space-around; }

.flex-center {
  justify-content: center; }

.flex-middle {
  align-items: center; }

.flex-bottom {
  align-items: flex-end; }

.grid {
  display: grid; }

.inlineGrid {
  display: inline-grid; }

.grid-1-1 {
  grid-template-columns: 1fr 1fr; }

.grid-2-3 {
  grid-template-columns: 2fr 3fr; }

.grid-x3 {
  grid-template-columns: 1fr 1fr 1fr; }

.grid-stretch {
  align-items: stretch; }

.grid-center {
  align-items: center; }

@media (max-width: 769px) {
  .grid-mobile-fold {
    grid-template-columns: 1fr; } }
.justifySelfRight {
  justify-self: right; }

.justifySelfLeft {
  justify-self: left; }

.clearfix {
  clear: both; }

.no-after::after {
  display: none !important; }

.no-before::before {
  display: none !important; }

.hover-transparent {
  transition: .3s ease; }

.hover-transparent:hover {
  opacity: .7; }

.cursor-pointer {
  cursor: pointer; }

.cursor-default {
  cursor: default; }

.yd-title,
.yd-subtitle {
  text-align: center;
  font-size: 1.5rem; }

.yd-subtitle {
  font-size: 1.215rem; }

.yd-title-with-info {
  text-align: center; }
  .yd-title-with-info .icon {
    width: 2rem;
    height: 2rem;
    margin-left: .5rem; }
  .yd-title-with-info .yd-title,
  .yd-title-with-info .icon {
    display: inline-block;
    vertical-align: middle; }
  .yd-title-with-info .descr {
    top: 1rem;
    right: 1rem;
    left: unset;
    display: none;
    width: 100%;
    max-width: 14.75rem;
    transition: unset; }
  .yd-title-with-info .poster:hover .descr {
    display: inline-block; }

@media (max-width: 339px) {
  .yd-title-with-info .yd-title,
  .yd-title-with-info .yd-subtitle {
    text-align: center;
    font-size: 1.25rem; }
  .yd-title-with-info .yd-subtitle {
    font-size: 1.01rem; }
  .yd-title-with-info .descr {
    right: 0; }

  .descr {
    left: calc(50% - 7rem);
    max-width: 12rem; } }
.button, .default-button .item {
  display: inline-block;
  background: linear-gradient(to right bottom, #000, #555);
  padding: .5rem 1.675rem;
  border: 0.1rem solid #eee;
  border-radius: 0.5rem;
  cursor: pointer; }

.default-checkbox {
  display: inline-block;
  padding: .15rem .5rem; }

.default-checkbox input {
  display: none; }

.default-checkbox input + label {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.default-checkbox input + label::after {
  content: '';
  position: absolute;
  bottom: -.15rem;
  left: 0;
  display: inline-block;
  opacity: 0;
  transition: .3s ease-out; }

.default-checkbox input:checked + label::after {
  width: 100%;
  height: .1rem;
  background-color: #eee;
  opacity: 1; }

.error-text {
  color: red; }

.success-text {
  color: green; }

.not-important-text, .nit {
  opacity: .8; }

.yd-overlay {
  background: linear-gradient(to right bottom, #000, #222);
  opacity: 1;
  transition: unset; }

.noscroll {
  overflow: hidden; }

.yd-text-icon {
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem; }

.yd-pulse {
  animation: pulse 2s infinite both ease; }

.descr {
  position: absolute;
  top: 0;
  left: calc(50% - 7rem);
  visibility: hidden;
  text-align: left;
  background: #000;
  color: #eee;
  font-size: .9rem;
  width: 14.2rem;
  min-height: 2rem;
  padding: .5rem;
  box-sizing: border-box;
  margin: 0;
  opacity: 0;
  z-index: 9999; }

.poster:hover .descr {
  visibility: visible;
  width: 14rem;
  border: 0.1rem solid #ceb56d;
  border-radius: .75rem;
  opacity: 1; }

.descr-left {
  left: 0; }

.poster {
  display: inline-block;
  position: relative; }

.descr {
  border: 0.1rem solid #eee;
  border-radius: 0.5rem; }

.poster:hover .descr {
  border: 0.1rem solid #eee;
  transition: .3s; }

.yd-comments {
  background: black; }
  .yd-comments .yd-wrapper {
    padding: .5rem;
    box-shadow: unset; }

/*# sourceMappingURL=your-dude.css.map */
