section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap:wrap;
}
section>div {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.inp {
  display: none;
}
.mob {
  display: none;
}
main {
  flex: 1 0 auto;
}
/* PreLoader */
.preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
}

.header {
  width: 1280px;
  max-width: 100%;
  height: auto;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* logo */
.logo {
  width: 320px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.logo figure {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.logo figcaption {
  font-size: 18px;
  color: #d79d03;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  padding: 5px;
  border-top: 2px solid #d79d03;
}

/* search form in header */
.search-form {
  width: 610px;
  max-width: 100%;
  margin: 0 15px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.search-field {
  width: 290px;
  max-width: 100%;
  height: 40px;
  font-size: 18px;
  color: #000;
  padding-bottom: 2px;
  border-bottom: 2px solid #d79d03;
  transition: all .25s;
  padding-left: 15px;
}
.search-field::placeholder {
  color: #fff;
  transition: all .25s;
}
.search-submit {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  background-color: #d79d03;
  background-image: url(images/search.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .25s;
}
.search-field:focus {
  transition: all .25s;
  width: 610px;
  background: #fff;
}
.search-field:focus::placeholder {
  color: #000;
  transition: all .25s;
}
.search-field:focus + .search-submit {
  width: 50px;
  height: 50px;
  background-size: 30px;
  top: -5px;
  right: -5px;
  transition: all .25s;
  box-shadow: 0 0 5px #000;
}
input[type=text]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=text]::-ms-reveal {  display: none; width : 0; height: 0; }
.search-form input[type="search"]::-webkit-search-decoration,
.search-form input[type="search"]::-webkit-search-cancel-button,
.search-form input[type="search"]::-webkit-search-results-button,
.search-form input[type="search"]::-webkit-search-results-decoration { display: none; }

/* button in header */
.vip {
  width: 290px;
  height: 40px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  font-size: 18px;
  background: #d79d03;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  transition: all .3s;
  z-index: 0;
  padding-right: 90px;
  overflow: hidden;
}
.vip:hover {
  background: #c69514;
  transition: all .3s;
}
.vip:before {
  content: '';
  width: 60px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(images/crown.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.vip:after {
  content: '';
  width: 25%;
  height: 200%;
  background: rgba(0,0,0,0.1);
  z-index: 1;
  right: 0;
  top: 0;
  position: absolute;
  margin: -5px 0 0 -5px;
  transform: rotate(-20deg);
  transform-origin: 0 0;
  transition: all 0.3s;
}
.vip:hover:after {
  width: 30%;
  transition: all 0.3s;
}
.nav {
  width: 1280px;
  max-width: 100%;
  box-shadow: 0 0 5px #000;
  position: sticky;
  top: 0;
  z-index: 7;
}
.nav:after,
.nav:before {
  content: '';
  width: 8px;
  height: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: -14px;
  border-left: 1px solid #000;
  border-right: 2px solid #000;
}
.nav:before {
  right: -14px;
  left: auto;
  border-left: 2px solid #000;
  border-right: 1px solid #000;
}
.nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.nav ul li {
  width: calc(100%/7);
}
.nav ul li a {
  width: 100%;
  padding: 5px 10px;
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  text-align: center;
  background: #d79d03;
  transition: all 0.3s;
  position: relative;
  z-index: 0;
}
.nav ul li a:hover {
  transition: all .3s;
}
.nav ul li a:after {
  content: '';
  width: 0;
  height: 20px;
  position: absolute;
  left: -1px;
  top: 50%;
  margin-top: -10px;
  border-left: 2px dotted #000;
}
.nav ul li:first-child a:after {
  display: none;
}
.nav ul li:first-child {
  border-left: 3px solid #000;
}
.nav ul li:last-child {
  border-right: 3px solid #000;
}
.nav ul li a:before {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.1);
  z-index: -1;
  transition: all .3s;
}
.nav ul li a:hover:before {
  height: 100%;
  transition: all .3s;
}

/* main */
.main {
  width: 1280px;
  max-width: 100%;
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
}
/* heading */
h1 {
  width: 100%;
  padding-bottom: 15px;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  color: transparent;
  color: rgba(215, 157, 3, 0.3);
  text-transform: uppercase;
  position: relative;
  background-image: url(images/nnh1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  z-index: 0;
}

.new-section {

}
.rooms-in-fp {
  width: 100%;
  padding: 15px 15px 65px 15px;
  background: rgba(255,255,255,.6);
  position: relative;
  max-width: 1014px;
}
.page-template-reg .rooms-in-fp {
  max-width: 100%;
}
.rooms-in-fp:after {
  content: '';
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-top: 42px solid rgba(255,255,255,.6);
  position: absolute;
  top: 100%;
  /* left: 50%; */
  left: 63%;
  margin-left: -25px;
  z-index: 2;
}

.page-template-reg .rooms-in-fp:after {
  left: 50%;
}
.one-room {
  width: 960px;
  height: 60px;
  max-width: 100%;
  margin-bottom: 15px;
  padding-left: 15px;
  background: #f2f3f7;
  justify-content: flex-start;
  align-items: center;
}
.logo-room {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 3px rgba(0,0,0,.5);
  margin-right: 15px;
}
.title-room {
  width: 250px;
  margin: 0 15px;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
}
.title-room::first-letter {
  font-size: 30px;
  font-weight: bold;
  text-decoration: underline;
}

/* rating */
.rating-room {
  width: 290px;
  margin: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 95px;
}
.stars-room {
  width: 200px;
  height: 30px;
  position: relative;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0,0,0,1), rgba(0,0,0,0));
}
.stars {
  width: 100%;
  height: 100%;
  background-image: url(images/stars_stars.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.range {
  width: 0;
  height: 100%;
  background: #d79d03;
  z-index: -1;
}
.number-rating {
  width: 90px;
  font-size: 14px;
  line-height: 1;
  font-style: italic;
  color: #989898;
}
.number-rating span {
  font-weight: bold;
  font-style: normal;
}

.coments-number {
  width: 65px;
  margin-right: 15px;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.coments-number:after {
  content: '';
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/comment.svg);
}

.link-review-room {
  width: 200px;
  height: 60px;
  padding-right: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  max-width: 100%;
  background: #d79d03;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.link-review-room:hover {
  background: #c69514;
  transition: all .3s;
}
.link-review-room:before {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/review.svg);
}
.link-review-room:after {
  content: '';
  width: 40%;
  height: 200%;
  background: rgba(0,0,0,0.1);
  z-index: 1;
  right: 0;
  top: 0;
  position: absolute;
  margin: -5px 0 0 -5px;
  transform: rotate(-20deg);
  transform-origin: 0 0;
  transition: all 0.3s;
}
.link-review-room:hover:after {
  width: 50%;
  transition: all 0.3s;
}

/* btn-rooms */
.btn-all-rooms {
  width: 290px;
  height: auto;
  margin: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 0;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.btn-cards {
  width: 110px;
  height: 75px;
  position: relative;
  margin-right: 60px;
}
.btn-cards img {
  position: absolute;
  transition: all .5s;
  box-shadow: -2px 0 5px rgba(0,0,0,.3);
}
.cK {
  left: 25px;
  top: 5px;
}
.cA {
  left: 45px;
  top: 5px;
}

.btn-all-rooms:hover .cK {
  top: 10px;
  left: 10px;
  transition: all .3s;
  transform: rotate(-10deg);
}
.btn-all-rooms:hover .cA {
  top: 10px;
  left: 55px;
  transition: all .3s;
  transform: rotate(10deg);
}
.bet {
  width: 50px;
  height: 127px;
  position: absolute;
  bottom: 5px;
  right: 10px;
  z-index: 2;
}
.bet img {
  filter: drop-shadow(2px 0 1px rgba(0,0,0,.7));
  position: absolute;
  transition: all .5s;
}
.bet1 {
  right: 0;
  bottom: 0;
}
.bet2 {
  right: 2.5px;
  bottom: 5px;
}
.bet3 {
  right: 0;
  bottom: 10px;
}
.bet4 {
  right: -2.5px;
  bottom: 15px;
}
.bet5 {
  right: 3.5px;
  bottom: 20px;
}
.bet6 {
  right: 1.5px;
  bottom: 25px;
}
.bet7 {
  right: 0;
  bottom: 30px;
}


.bet8 {
  right: 2.5px;
  bottom: 110%;
}
.bet9 {
  right: 3.5px;
  bottom: 110%;
}
.bet10 {
  right: -2.5px;
  bottom: 110%;
}
.bet11 {
  right: 0;
  bottom: 110%;
}
.bet12 {
  right: -2.5px;
  bottom: 110%;
}
.bet13 {
  right: 0;
  bottom: 110%;
}
.bet14 {
  right: 2.5px;
  bottom: 110%;
}


.btn-all-rooms:hover {
  transition: all .5s;
}
.btn-all-rooms:hover .bet8 {
  bottom: 35px;
  transition: all .3s;
}
.btn-all-rooms:hover .bet9 {
  bottom: 40px;
  transition: all .3s .1s;
}
.btn-all-rooms:hover .bet10 {
  bottom: 45px;
  transition: all .3s .2s;
}
.btn-all-rooms:hover .bet11 {
  bottom: 50px;
  transition: all .3s .3s;
}
.btn-all-rooms:hover .bet12 {
  bottom: 55px;
  transition: all .3s .4s;
}
.btn-all-rooms:hover .bet13 {
  bottom: 60px;
  transition: all .3s .5s;
}
.btn-all-rooms:hover .bet14 {
  bottom: 65px;
  transition: all .3s .6s;
}






.btn-text {
  width: 100%;
  padding: 15px 60px 15px 15px;
  background-color: #d79d03;
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.btn-all-rooms:hover .btn-text {
  background: #c69514;
  transition: all .3s;
}



.news-in-fp {
  width: 100%;
  margin-top: 15px;
  padding: 65px 15px 15px 15px;
  position: relative;
  background: rgba(255,255,255,.6);
}
.news-in-fp:before {
  content: '';
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-top: 50px solid rgba(242, 243, 247, 0.6);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -30px;
  z-index: 1;
}
.news-in-fp:after {
  content: '';
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-top: 42px solid rgba(255,255,255,.6);
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  z-index: 2;
}
h2,
.h2 {
  width: 100%;
  padding-bottom: 15px;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  color: transparent;
  color: #d79d03;
  text-transform: uppercase;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  line-height: normal;
}
/* news-tile */
.one-news {
  width: 290px;
  height: 340px;
  margin: 15px;
  position: relative;
  z-index: 0;
  display: flex;
  padding: 30px;
  align-items: flex-end;
}
.bg-news {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.overlay-news {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0, 0.5);
}
.border-news {
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  top: 15px !important;
  left: 15px !important;
  border: 5px solid #d79d03;
  transition: transform 0.2s ease-out;
  z-index: 1;
}
.title-news {
  color: #d79d03;
  position: relative !important;
  z-index: 1;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0,0,0,.5);
}
/* btn news */
.btn-all-news .bet {
  width: 80px;
  right: 0;
  bottom: 0;
}


.banner {
  width: 100%;
  height: 290px;
  margin-top: 15px;
  position: relative;
  background: rgba(215, 157, 3, 0.7);
  display: flex;
  align-items: center;
}
.banner:before {
  content: '';
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-top: 50px solid rgba(242, 243, 247, 0.6);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -30px;
  z-index: 1;
}
.banner:after {
  content: '';
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-top: 42px solid rgba(215, 157, 3, 0.7);
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -25px;
  z-index: 2;
}
.banner-header {
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
}
.banner img {
  width: 290px;
}
.left-banner {
  width: 640px;
}



.heading-group {
  width: 100%;
}
.heading-group h2 {
  width: auto;
}

.help-text {
  margin-left: 10px;
  position: relative;
  cursor: help;
}

.q-help-text {
  display: flex;
  align-items: center;
  font-size: 14px;

  color: #989898;
}
.q-help-text:before {
  content: '';
  width: 25px;
  height: 25px;
  margin-right: 5px;
  background-image: url(images/quest.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}
.a-help-text {
  width: 290px;
  height: auto;
  position: absolute;
  font-style: italic;
  font-size: 12px;
  color: #989898;
  text-align: center;
  left: 0;
  top: 100%;
  opacity: 0;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #d79d03;
  transition: all .3s;
  padding: 5px;
  z-index: 3;
}
.help-text:hover .a-help-text {
  top: 0;
  opacity: 1;
  transition: all .3s;
}


.one-race {
  width: 450px;
  max-width: 100%;
  height: 290px;
  margin: 15px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}
.cbg-race {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  transition: transform 0.35s;
  z-index: -1;
  transform: scale(1.15);
}
.one-race:hover .cbg-race {
  transform: scale(1);
}
.top-race {
  width: 100%;
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  margin-top: 15px;
  transition: all .45s;
  position: relative;
}
.top-race:after {
  content: '';
  width: 100%;
  height: 4px;
  background: #d79d03;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(0,40px,0);
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.one-race:hover .top-race:after {
  transform: translate3d(0,0,0);
  opacity: 1;
}

.one-race:hover .top-race {
  margin-top: 0;
  transition: all .45s;
}
.title-race {
  color: #d79d03;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0,0,0,.5);
  width: 200px;
  text-align: right;
  padding-right: 15px;
  border-right: 2px solid #d79d03;
}
.money-race {
  margin-left: 15px;
  font-size: 30px;
  line-height: 1;
  color: #d79d03;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0,0,0,.5);
  width: 205px;
}

.rooms-race {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.rooms-race:before {
  content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(images/triangle.svg) no-repeat center center;
	background-size: cover;
	transition: opacity 0.45s, transform 0.45s;
	transform: rotate3d(0,0,1,45deg);
	transform-origin: 0 100%;
}
.one-race:hover .rooms-race:before {
  opacity: 0.7;
  transform: rotate3d(0,0,1,20deg);
}
.block-rr {
  position: absolute;
	right: 0;
	bottom: 0;
	padding: 0 15px 15px 0;
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: flex-end;
}
.link-room-race {
  width: 75px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
	transition: opacity 0.35s, transform 0.35s;
	transform: translate3d(0,50px,0);
}
.link-room-race span:first-child {
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  background-color: rgba(255,255,255,.8);
  border-radius: 50%;

}
.link-room-race span:last-child {
  font-size: 14px;
  color: #fff;
  text-align: center;
  width: 100%;
  line-height: 1;
  text-transform: uppercase;
}
.link-room-race span:last-child::first-letter {
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
}
.one-race:hover .block-rr .link-room-race {
	opacity: 1;
	transform: translate3d(0,0,0);
}

.one-race:hover .block-rr .link-room-race:nth-child(1) {
	transition-delay: 0.3s;
}

.one-race:hover .block-rr .link-room-race:nth-child(2) {
	transition-delay: 0.15s;
}


.link-race {
  z-index: 3;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #d79d03;
  text-transform: uppercase;
  transform: scale(1.15);
  transition: all 0.35s;
  border: 3px solid rgba(215, 157, 3, 0);
  background: rgba(0,0,0,.5);
}
.one-race:hover .link-race {
  transform: scale(1);
  border: 3px solid rgba(215, 157, 3, 1);
  background: rgba(0,0,0,.7);
}

/* btn race */
.btn-all-race .bet {
  width: 110px;
  height: 70px;
  right: 0;
  bottom: 0;
}
.btn-all-race .btn-text {
  padding: 15px 90px 15px 15px;
}
.btn-all-race .bet .bet8,
.btn-all-race .bet .bet9 {
  width: 100px;
  height: 53px;
}
.btn-all-race .bet .bet8 {
  right: -100%;
  top: -10px;
}
.btn-all-race:hover .bet .bet8 {
  right: 10px;
  top: 0;
}
.btn-all-race .bet .bet9 {
  right: -100%;
  top: -20px;
}
.btn-all-race:hover .bet .bet9 {
  right: 0;
  top: 20px;
}



/* FAQ block */
.faq-block {
  width: 960px;
  max-width: 100%;
  position: relative;
  counter-reset: faq;
}
.inp-faq {
  display: none;
}
.ffone {
  width: 210px;
  height: 210px;
  margin: 15px;
  position: relative;
}
.faq-one {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  align-items: flex-start;
  opacity: .9;
  background-image: url(images/bg-faq.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inp-faq:checked + .ffone .faq-one {
  overflow: visible;
  opacity: 1;
}
.faq-one:hover {
  opacity: 1;
}
.faq-one:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,.5));
  transition: all .3s;
}
.faq-one:hover:after {
  background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,.7));
}
#inp-faq-1:checked + .ffone .faq-one:after,
#inp-faq-2:checked + .ffone .faq-one:after,
#inp-faq-5:checked + .ffone .faq-one:after,
#inp-faq-6:checked + .ffone .faq-one:after,
#inp-faq-9:checked + .ffone .faq-one:after,
#inp-faq-10:checked + .ffone .faq-one:after,
#inp-faq-13:checked + .ffone .faq-one:after,
#inp-faq-14:checked + .ffone .faq-one:after {
  transform: translate3d(15px, 15px, 0);
  box-shadow: 0 0 5px rgba(0,0,0,.5);
  background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,.7));
}
#inp-faq-3:checked + .ffone .faq-one:after,
#inp-faq-4:checked + .ffone .faq-one:after,
#inp-faq-7:checked + .ffone .faq-one:after,
#inp-faq-8:checked + .ffone .faq-one:after,
#inp-faq-11:checked + .ffone .faq-one:after,
#inp-faq-12:checked + .ffone .faq-one:after,
#inp-faq-15:checked + .ffone .faq-one:after,
#inp-faq-16:checked + .ffone .faq-one:after {
  transform: translate3d(-15px, 15px, 0);
  box-shadow: 0 0 5px rgba(0,0,0,.5);
  background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,.7));
}
.faq-block .faq-one:before {
  content: counter(faq);
  counter-increment: faq;
  font-size: 120px;
  font-weight: bold;
  position: absolute;
  line-height: .7;
  letter-spacing: -20px;
  color: rgba(255, 255, 255, 1);
  z-index: 1;
  bottom: -10px;
}
.ffone-1 .faq-one:before,
.ffone-2 .faq-one:before,
.ffone-5 .faq-one:before,
.ffone-6 .faq-one:before,
.ffone-9 .faq-one:before,
.ffone-10 .faq-one:before,
.ffone-13 .faq-one:before,
.ffone-14 .faq-one:before {
  left: -15px;
}
.ffone-3 .faq-one:before,
.ffone-4 .faq-one:before,
.ffone-7 .faq-one:before,
.ffone-8 .faq-one:before,
.ffone-11 .faq-one:before,
.ffone-12 .faq-one:before,
.ffone-15 .faq-one:before,
.ffone-16 .faq-one:before {
  right: -15px;
}
.plus-faq {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid #fff;
  z-index: 1;
}
.ffone-1 .plus-faq,
.ffone-2 .plus-faq,
.ffone-5 .plus-faq,
.ffone-6 .plus-faq,
.ffone-9 .plus-faq,
.ffone-10 .plus-faq,
.ffone-13 .plus-faq,
.ffone-14 .plus-faq {
  right: 15px;
}
.ffone-3 .plus-faq,
.ffone-4 .plus-faq,
.ffone-7 .plus-faq,
.ffone-8 .plus-faq,
.ffone-11 .plus-faq,
.ffone-12 .plus-faq,
.ffone-15 .plus-faq,
.ffone-16 .plus-faq {
  left: 15px;
}
.plus-faq:before,
.plus-faq:after {
  content: '';
  width: 20px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  left: 50%;
  margin-left: -10px;
}
.plus-faq:after {
  transform: rotate(90deg);
}
.que-title {
  font-size: 18px;
  color: #d79d03;
  z-index: 1;
  transition: all .3s;
}
.ffone-1 .que-title,
.ffone-2 .que-title,
.ffone-5 .que-title,
.ffone-6 .que-title,
.ffone-9 .que-title,
.ffone-10 .que-title,
.ffone-13 .que-title,
.ffone-14 .que-title {
  text-align: left;
}
.ffone-3 .que-title,
.ffone-4 .que-title,
.ffone-7 .que-title,
.ffone-8 .que-title,
.ffone-11 .que-title,
.ffone-12 .que-title,
.ffone-15 .que-title,
.ffone-16 .que-title {
  text-align: right;
}
#inp-faq-1:checked + .ffone .que-title,
#inp-faq-2:checked + .ffone .que-title,
#inp-faq-5:checked + .ffone .que-title,
#inp-faq-6:checked + .ffone .que-title,
#inp-faq-9:checked + .ffone .que-title,
#inp-faq-10:checked + .ffone .que-title,
#inp-faq-13:checked + .ffone .que-title,
#inp-faq-14:checked + .ffone .que-title {
  transform: translate3d(15px, 15px, 0);
}
#inp-faq-3:checked + .ffone .que-title,
#inp-faq-4:checked + .ffone .que-title,
#inp-faq-7:checked + .ffone .que-title,
#inp-faq-8:checked + .ffone .que-title,
#inp-faq-11:checked + .ffone .que-title,
#inp-faq-12:checked + .ffone .que-title,
#inp-faq-15:checked + .ffone .que-title,
#inp-faq-16:checked + .ffone .que-title {
  transform: translate3d(-15px, 15px, 0);
}
.ans-text {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  position: absolute;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 5px rgba(0,0,0,.7);
  color: #fff;
  padding: 30px 15px 15px 15px;
  z-index: -1;
  opacity: 0;
  top: 105px;
  width: 480px;
  height: auto;

  transition: all .3s;
}
.ans-text p {
  width: 100%;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 10px;
}
.ans-text p::first-letter {
  font-size: 20px;
  font-weight: bold;
}
.ffone-1 .ans-text,
.ffone-2 .ans-text,
.ffone-5 .ans-text,
.ffone-6 .ans-text,
.ffone-9 .ans-text,
.ffone-10 .ans-text,
.ffone-13 .ans-text,
.ffone-14 .ans-text {
  left: 105px;
  transform: translate3d(-15px,-15px,0);
}
.ffone-3 .ans-text,
.ffone-4 .ans-text,
.ffone-7 .ans-text,
.ffone-8 .ans-text,
.ffone-11 .ans-text,
.ffone-12 .ans-text,
.ffone-15 .ans-text,
.ffone-16 .ans-text {
  right: 105px;
  text-align: right;
  transform: translate3d(15px,-15px,0);
}

.inp-faq:checked + .ffone .ans-text {
  z-index: 5;
  opacity: 1;
  transform: translate3d(0,0,0);
}
.cross-faq {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 5px;
  z-index: 6;
  right: 5px;
}
.cross-faq:after,
.cross-faq:before {
  content: '';
  width: 25px;
  height: 2px;
  background-color: #d79d03;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -12.5px;
}
.cross-faq:after {
  transform: rotate(45deg);
}
.cross-faq:before {
  transform: rotate(-45deg);
}
/* content */
.cont-txt {
  width: 930px;
  margin: 0 15px;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.8;
}
.cont-txt p,
.cont-txt ul,
.cont-txt ol,
.cont-txt li {
  width: 100%;
  margin-bottom: 10px;
  text-align: justify;
}
.cont-txt a {
  color: green;
  text-decoration: underline;
}
.cont-txt a:hover {
  color: #000;
}


.cont-txt p img {
  width: 930px;
  max-width: 100%;
  display: block;
  margin: 0 auto 10px;
}
.cont-txt h3 {
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  z-index: 0;
}
.cont-txt h3:after {
  content: '';
  width: 290px;
  height: 5px;
  background-color: #000;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -145px;
  z-index: -1
}
.cont-txt h3:before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: #000;
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
  z-index: 0;
  transform: rotate(45deg);
}

.cont-txt blockquote {
  margin: 0 40px 10px 40px;
  padding: 15px 15px 15px 120px;
  font-weight: normal;
  font-style: italic;
  position: relative;
}
.cont-txt blockquote:before {
  content: '\201c';
  font-size: 100px;
  line-height: 1;
  width: 70px;
  height: 70px;
  position: absolute;
  left: 15px;
  top: 15px;
}
.cont-txt blockquote:after {
  content: '';
  width: 5px;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 100px;
  top: 0;
}

.cont-txt ul,
.cont-txt ol {
  margin-left: 80px;
}
.cont-txt ol {
  counter-reset: count;
}
.cont-txt ul li,
.cont-txt ol li {
  position: relative;
}


.cont-txt ul li:before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #000;
  position: absolute;
  top: 10px;
  left: -25px;
  z-index: 0;
  transform: rotate(45deg);
}
.cont-txt ol li:before {
  content: counter(count) '. ';
  counter-increment: count;
  position: absolute;
  left: -25px;
  z-index: 0;
}
.cont-txt table {
  width: 100%;
  height: auto;
  font-size: 16px;
  margin-bottom: 10px;
}
.cont-txt table td {
  border: 1px solid #989898;
}
/* footer */
footer {
  width: 1280px;
  max-width: 100%;
  height: auto;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 15px;
  padding-top: 15px;
}
footer:before {
  content: '';
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-top: 50px solid rgba(242, 243, 247, 1);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -30px;
  z-index: 1;
}
.copyright {
  width: 290px;
  margin: 10px 15px;
  color: #fff;
  font-size: 12px;
  padding-left: 15px;
  border-left: 2px solid #fff;
}
.social {
  width: 290px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #d79d03;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  margin: 0 15px;
  position: relative;
  z-index: 0;
  transition: all .3s;
}
.social a:hover {
  transition: all .2s;
  background-size: 22px;
}
.social a:after {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  top: -5px;
  left: -5px;
  z-index: -1;
  opacity: 0;
  box-shadow: 2px 2px #d79d03;
  transition: all .3s;
  border-radius: 50%;
  transform: rotate(-90deg);
}
.social a:hover:after {
  opacity: 1;
	transform: rotate(0deg);
  transition: all .3s;
}
.f-mail {
  background-image: url(images/icon/e-mail.svg);
}
.f-skype {
  background-image: url(images/icon/skype.svg);
}
.f-tg {
  background-image: url(images/icon/tg.svg);
}

.GPWA {
  width: 290px;
  margin: 0 15px;
  display: flex;
  justify-content: flex-end;
}
#GPWASeal {
  height: 65px;
  background-image: url('images/poker-royal777.ru.gif');
  width: 190px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#GPWASeal img {
  height: 100%;
}

.mob-menu {
  display: none;
}



@media screen and (max-width:669px) {
  .header {
    padding-bottom: 10px;
  }
  .logo {
    background-color: #000;
  }
  .inp {
    display: none;
  }
  #mob-menu:checked ~ header .logo {
    position: fixed;
    width: calc(100vw - 70px);
    height: 84px;
    top: 0;
    left: 0;
    z-index: 5;
    transition: all .5s;
    box-shadow: 0 0 5px #000;
  }
  #mob-menu:checked ~ header {
    padding-top: 84px;
  }
  .mob-menu {
    width: 40px;
    height: 40px;
    background: #d79d03;
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 6;
    box-shadow: 0 0 5px #000;
    overflow: hidden;
  }
  .mob-menu span {
    position: absolute;
    width: 22px;
    height: 3px;
    background: #000;
    left: 50%;
    margin-left: -11px;
    top: 50%;
    transition: all .3s;
  }
  .mob-menu span:first-child {
    margin-top: -9px;
  }
  .mob-menu span:nth-child(2) {
    margin-top: -1.5px;
  }
  .mob-menu span:last-child {
    margin-top: 7.5px;
  }
  #mob-menu:checked ~ .mob-menu span:first-child,
  #mob-menu:checked ~ .mob-menu span:last-child {
    margin-top: -1.5px;
    transition: all .3s;
  }
  #mob-menu:checked ~ .mob-menu span:first-child {
    transform: rotate(45deg);
  }
  #mob-menu:checked ~ .mob-menu span:last-child {
    transform: rotate(-45deg);
  }
  #mob-menu:checked ~ .mob-menu span:nth-child(2) {
    left: calc(100% + 11px);
    transition: all .3s;
  }
  .nav {
    height:auto;
    position: fixed;
    top: 84px;
    left: -100%;
    width: calc(100vw - 70px);
    transition: all .5s;
  }
  .nav:after,
  .nav:before {
    display: none;
  }
  #mob-menu:checked ~ .nav {
    left: 0;
    transition: all .5s;
  }
  .nav ul {
    width: 100%;
    height: 100%;
    align-content: flex-start;
  }
  .nav ul li {
    width: 100%;
    height: 60px;
    border-left: 3px solid #000;
  }
  .nav ul li a {
    height: 100%;
    align-items: center;
    text-align: right;
    justify-content: flex-end;
  }
  .nav ul li a:after {
    width: 30px;
    height: 0;
    border-left: none;
    border-bottom: 2px dotted #000;
    margin-top: 0;
    top: 0;
    left: auto;
    right: 10px;
  }
  .nav ul li:last-child {
    border-right: none;
  }
  #mob-menu:checked ~ footer .social {
    width: calc(100vw - 70px);
    height: 70px;
    position: fixed;
    left: 0;
    bottom: 0;
    transition: all .5s;
    box-shadow: 0 0 5px #000;
    margin: 0;
    background: #000;
    z-index: 5;
  }
  #mob-menu:checked ~ footer .copyright {
    margin-bottom: 60px;
  }


  .search-form {
    width: calc(50% - 22.7px);
    margin: 0 7.5px 0 15px;
  }
  .search-field {
    font-size: 14px;
    padding-left: 5px;
  }
  .vip {
    width: calc(50% - 22.7px);
    font-size: 14px;
    padding: 0 40px 0 5px;
    margin: 0 15px 0 7.5px;
  }
  .vip:before {
    width: 40px;
    height: 40px;
  }

  h1, h2, .h2 {
    font-size: 26px;
  }
  .one-room {
    height: auto;
    padding: 10px 0;
    justify-content: center;
  }
  .logo-room {
    margin-left: 15px;
  }
  .title-room {
    max-width: 200px;
    margin: 0;
  }
  .rating-room {
    width: auto;
    margin: 10px 15px;
    align-items: center;
  }
  .number-rating {
    display: none;
  }
  .coments-number {
    width: 45px;
    font-size: 12px;
  }
  .coments-number:after {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
  .link-review-room {
    width: 260px;
    height: 50px;
  }
  .link-review-room:before {
    height: 50px;
  }
  .btn-text,
  .btn-all-race .btn-text {
    padding: 15px;
  }
  .btn-cards {
    display: none;
  }
  .bet {
    display: none;
  }
  .heading-group h2 {
    width: 100%;
  }
  .help-text {
    margin-left: 0;
  }
  .a-help-text {
    left: 50%;
    margin-left: -145px;
  }
  .one-race {
    width: 290px;
    align-content: flex-start;
  }
  .top-race {
    margin-top: 0;
  }
  .title-race {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    text-align: center;
  }
  .money-race {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .rooms-race::before {
    display: none;
  }
  .link-race {
    margin-top: 30px;
  }
  .ans-text {
    width: 290px;
    left: 50%;
    margin-left: -145px;
    top: 145px;
  }
  .cont-txt {
    font-size: 16px;
  }
  .cont-txt h3 {
    font-size: 24px;
  }
  .cont-txt h3::after {
    height: 3px;
    bottom: -9px;
  }
  .cont-txt blockquote {
    margin: 0 0 10px 0;
    padding: 15px 15px 15px 45px;
  }
  .cont-txt blockquote::before {
    width: 30px;
    height: 30px;
    font-size: 40px;
    top: 15px;
    left: 0;
  }
  .cont-txt blockquote::after {
    width: 3px;
    left: 30px;
  }
  .cont-txt ul {
    margin-left: 30px;
  }
  footer {
    padding-top: 50px;
    justify-content: center;
  }
  .GPWA {
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .cont-txt table {
    font-size: 12px;
  }
}
@media screen and (min-width:640px) and (max-width:669px) {
  .logo {
    width: 100%;
  }
}
@media screen and (min-width:670px) and (max-width:989px) {
  .nav:after, .nav:before {
    display: none;
  }
  .logo {
    width: calc(100%/3);
  }
  .logo figcaption {
    font-size: 16px;
  }
  .search-form {
    width: calc(100%/3 - 30px);
  }
  .search-field {
    font-size: 14px;
  }
  .vip {
    width: calc(100%/3 - 30px);
    font-size: 14px;
    padding: 0 60px 0 10px;
  }
  .nav ul li a {
    height: 100%;
    align-items: center;
    font-size: 14px;
  }
  .one-room {
    height: auto;
    padding: 10px 15px;
    justify-content: center;
  }
  .logo-room {
    margin-right: 0;
  }
  .title-room {
    width: 200px;
  }
  .rating-room {
    width: 200px;
  }
  .number-rating {
    display: none;
  }
  .coments-number {
    margin-right: 0;
  }
  .link-review-room {
    height: 50px;
  }
  .link-review-room::before {
    height: 50px;
  }
  .heading-group h2 {
    width: 100%;
  }
  .help-text {
    margin-left: 0;
  }
  .a-help-text {
    left: 50%;
    margin-left: -145px;
  }
  .ans-text {
    width: 400px;
    left: 50%;
    margin-left: -200px;
    top: 145px;
  }
  .cont-txt blockquote {
    margin: 0 0 10px 0;
    padding: 15px 15px 15px 45px;
  }
  .cont-txt blockquote::before {
    width: 30px;
    height: 30px;
    font-size: 40px;
    top: 15px;
    left: 0;
  }
  .cont-txt blockquote::after {
    width: 3px;
    left: 30px;
  }
  .cont-txt ul {
    margin-left: 30px;
  }
  footer {
    padding-bottom: 10px;
  }
  footer .logo {
    width: 320px;
  }
  .GPWA {
    justify-content: center;
  }
  .rooms-in-fp:after {
    display: none;
  }

}
@media screen and (min-width:750px) and (max-width:989px) {
  .ans-text {
    width: 280px;
    left: 50%;
    margin-left: -140px;
    top: 145px;
  }
}
@media screen and (min-width:830px) and (max-width:989px) {
  .one-race {
    width: calc(50% - 30px);
  }
  .top-race {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .title-race {
    padding-right: 0;
    border-right: none;
    text-align: center;
    justify-content: center;
  }
  .money-race {
    margin-left: 0;
  }
}
@media screen and (min-width:960px) and (max-width:989px) {

  footer .logo {
    width: calc(100%/4);
  }
  .copyright {
    width: calc(100%/4 - 30px);
  }
  .social {
    width: calc(100%/4 - 30px);
  }
  .social a {
    margin: 0 5px;
  }
  .GPWA {
    width: calc(100%/4 - 30px);
  }
}
@media screen and (min-width:990px) and (max-width:1299px) {
  .nav:after, .nav:before {
    display: none;
  }
  .search-form {
    width: 290px;
  }
  .nav ul li a {
    height: 100%;
    align-items: center;
  }
  footer .logo {
    width: calc(100%/4);
  }
  .copyright {
    width: calc(100%/4 - 30px);
  }
  .social {
    width: calc(100%/4 - 30px);
  }
  .social a {
    margin: 0 5px;
  }
  .GPWA {
    width: calc(100%/4 - 30px);
  }
  .rooms-in-fp {
    width: calc(80% - 30px);
  }
  aside {
    width: calc(20% - 30px);
  }
  .rooms-in-fp:after {
    display: none;
  }
  .rating-room {
    display: none;
  }
  .one-room {
    justify-content: space-between;
  }
  .promo .title-room {
    margin: 0 5px;
    line-height: normal;
  }
  .promo .title-room::first-letter {
    font-size: inherit;
    font-weight: inherit;
    text-decoration: inherit;
  }

}


.rank-math-breadcrumb {
  width: 1280px;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items:center;
  font-size: 16px;
  margin: 10px 0;
}
.rank-math-breadcrumb p {
  display: inline;
}
.rank-math-breadcrumb a {
  padding: 5px 15px;
  background-color: #fff;
  font-style: italic;
  position: relative;
  z-index: 1;
  color: #d79d03;
}
.rank-math-breadcrumb a:hover {
  color: #000;
}
.rank-math-breadcrumb .last {
  padding: 5px 15px;
  background-color: #d79d03;
  font-style: italic;
  position: relative;
  z-index: 0;
  font-weight: bold;
}
.separator {
  width: 7.5px;
  height: 29px;
  display: inline;
  position: relative;
  z-index: 2;
  transform: skew(-10deg);
  background-color: #f2f3f7;
}
.separator:after {
  content: '';
  width: 0;
  height: 0;
  border: 13px solid transparent;
  border-left: 15px solid #fff;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  left: -2px;

}
.separator:before {
  content: '';
  width: 0;
  height: 0;
  border: 13px solid transparent;
  border-left: 15px solid #f2f3f7;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  right: -28px;
  z-index: 0;
}


/* rooms-in-pp */
.rooms-in-pp .one-room {
  height: auto;
  position: relative;
  flex-wrap: wrap;
  padding-left: 0;
  box-shadow: -2px 0 5px rgba(0,0,0,.2);
}
.logo-title-room {
  width: calc(100%/3 - 30px);
  max-width: 100%;
  margin: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.set-title-room {
  width: 225px;
  display: flex;
  flex-wrap: wrap;
}
.rooms-in-pp .one-room .title-room {
  margin: 0;
  width: 100%;
}
.set-room {
  width: 100%;
  padding: 5px;
  color: #989898;
  font-size: 12px;
  margin-bottom: 10px;
  background-color: #fff;
}
.set-room span {
  font-weight: bold;
  color: #000;
}
.rake-in-or {
  width: calc(100%/3 - 30px);
  max-width: 100%;
  margin: 0 15px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.item-bonus {
  width: 100%;
  height: 50px;
  margin: 10px 0;
  position: relative;
  padding-left: 50px;
  box-shadow: -1px 0 3px rgba(0,0,0,.3);
}
.item-bonus:before {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d79d03;
  background-size: 35px;
  background-position: center;
  background-repeat: no-repeat;
}
.rake-value:before {
  background-image: url(images/ii1.svg);
}
.bonus-on-fd:before {
  background-image: url(images/ii2.svg);
}
.promocode-on:before {
  background-image: url(images/ii3.svg);
}
.lose-on-fd:before {
  background-image: url(images/ii4.svg);
}
.item-bonus>span {
  width: 100%;
  height: 50%;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.item-bonus>span:first-child {
  font-size: 12px;
  color: #989898;
  position: relative;
}
.item-bonus>span:first-child:after {
  content: '';
  width: calc(100% - 20px);
  height: 1px;
  background-color: #d79d03;
  position: absolute;
  bottom: 0;
  left: 10px;
}
.rake-value>span:first-child:after {
  width: calc(100% - 60px);
}
.item-bonus>span:nth-child(2) {
  font-size: 14px;
  font-weight: bold;
  color: green;
}

.offer-vip {
  width: 27.5px;
  height: 27.5px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -15px;
  background-image: url(images/info.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.offer-vip span {
  width: 200px;
  height: 40px;
  position: absolute;
  font-size: 14px;
  color: #000;
  left: 50%;
  top: 50%;
  margin: 0;
  margin-top: -20px;
  opacity: 0;
  background: #d79d03;
  border-radius: 5px;
  border: 1px solid #d79d03;
  transition: all .3s;
  padding: 5px 50px 5px 5px;
  z-index: 3;
}
.offer-vip:hover span {
  left: 100%;
  opacity: 1;
  transition: all .3s;
}
.offer-vip:hover span:before {
  width: 40px;
  height: 40px;
}

.metrics-or {
  width: calc(100%/3 - 30px);
  max-width: 100%;
  margin: 0 15px;
}
.metrics-or .rating-room {
  margin: 0;
  padding-top: 5px;
  border-top: 1px solid #989898;
  margin-bottom: 10px;
}
.item-progress {
  width: 100%;
  flex-wrap: wrap;
  padding-left: 30px;
  position: relative;
  margin: 10px 0;
}
.item-progress:after {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ip-1:after {
  background-image: url(images/ip1.svg);
}
.ip-2:after {
  background-image: url(images/ip2.svg);
}
.ip-3:after {
  background-image: url(images/ip3.svg);
}
.ip-4:after {
  background-image: url(images/ip4.svg);
}

.overflow-progress {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

.txt-bar {
  width: 260px;
  height: auto;
  display: flex;
  flex-wrap: wrap;

}
.txt-progress {
  width: 165px;
  height: 17px;
  font-size: 12px;
  color: #989898;
  padding-left: 5px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.progress-number {
  width: 100%;
  display: flex;
  align-items: center;
}
.progressbar {
  width: 165px;
  margin-right: 5px;
  height: 25px;
  background-color: #fff;
  border: 1px solid green;
  border-radius: 3px;
  display: flex;
  align-items:center;
  position: relative;
}
.progressbar:after,
.progressbar:before {
  width: 15px;
  height: 15px;
  display: flex;
  font-style: italic;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1;
  top: -17px;
  position: absolute;
  justify-content: center;
  color: #989898;
}
.progressbar:after {
  content: '0';
  left: -14px;
  border-right: 1px solid #989898;
}
.progressbar:before {
  content: '10';
  right: -14px;
  border-left: 1px solid #989898;
}

.progress-value {
  height: calc(100% - 2px);
  margin-left: 1px;
  background-color: green;
  border-radius: 3px;
  animation: background 3s infinite alternate;
  overflow: hidden;
  position: relative;
}
.progress-value:after {
  content: attr(data-hover);
  width: 19px;
  height: 19px;
  background: rgba(255,255,255,1);
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 1px;
  right: 1px;
  border-radius: 50% 2px 2px 50%;
  color: green;
}
.progress-value:before {
  content: '';
  width: 50%;
  height: 50px;
  border: 15px solid #15bf15;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: -100%;
  filter: blur(10px);
  transform: skewX(-20deg);
  animation: gradient 3s infinite ease;
}
@keyframes gradient {
  from {
    left: -100%;
    opacity: 1;
  }
  to {
    left: 100%;
    opacity: 0;
  }
}
.buttons-on {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.rooms-in-pp .coments-number {
  margin-right: 0;
  margin-left: 25px;
}
.rooms-in-pp .link-review-room {
  height: 50px;
  margin-bottom: 10px;
}
.rooms-in-pp .link-review-room:before {
  height: 50px;
}
.link-compare-room {
  background-color: #989898;
  display: none;
}
.link-compare-room:hover {
  background: #989898;
  transition: all .3s;
}
.link-compare-room span:nth-child(2) {
  display: none;
}
.compare:checked + .link-compare-room {
  background-color: green;
}
.compare:checked + .link-compare-room span:nth-child(1) {
  display: none;
}
.compare:checked + .link-compare-room span:nth-child(2) {
  display: flex;
}

.link-compare-room:before {
  background-image: url(images/compare.svg);
}
.compare-status {
  width: 65px;
  height: 50px;
  margin-left: 15px;
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/c-status.svg);
  filter: grayscale(100);
  opacity: 0.2;
  transition: all .3s;
  display: none;
}



.compare:checked ~ .compare-status {
  filter: grayscale(0) drop-shadow(-2px 0 2px rgba(0,0,0,.5));
  opacity: 1;
  transition: all .3s;
}

.compare-button {
  background-color: red;
  position: fixed;
  bottom: 0;
  right: calc((100vw - 1280px)/2);
  display: none;
  z-index: 10;
  box-shadow: -2px 0 5px rgba(0,0,0,.5);
}
.compare-button.visible {
  display: flex;
}
.compare-button:hover {
  background: red;
}
.compare-button .col {
  width: 60px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
}
.compare-button:before {
  display: none;
}




@media screen and (max-width:669px) {
  .rooms-in-pp .logo-room {
    margin-left: 0;
  }
  .rooms-in-pp .set-title-room {
    width: 195px;
  }
  .rooms-in-pp .link-review-room {
    width: 200px;
  }
  .rooms-in-pp .coments-number {
    margin-left: 15px;
    height: 50px;
  }
  .rooms-in-pp .compare-status {
    width: 45px;
    height: 45px;
  }
  .offer-vip span {
    width: 170px;
    right: 50%;
    left: auto;
  }
  .offer-vip:hover span {
    right: 100%;
    left: auto;
  }
  .rooms-in-pp .number-rating {
    display: inline;
    width: 60px;
  }
  .item-progress {
    max-width: 260px;
  }
  .rooms-in-pp .link-review-room.compare-button {
    margin-bottom: 0;
    right: 0;
  }
}
@media screen and (min-width:640px) and (max-width:669px) {
  .item-progress {
    max-width: 290px;
  }
}
@media screen and (min-width:670px) and (max-width:989px) {
  .rooms-in-pp .number-rating {
    display: inline;
    width: 60px;
  }
  .rooms-in-pp .logo-room {
    margin-right: 15px;
  }
  .rooms-in-pp .rating-room {
    width: 290px;
  }
}


/* room page */
.info-room {
  width: 960px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #f2f3f7;
}
.info-room .logo-title-room {
  margin: 10px 15px;
}
.info-room .title-room {
  margin: 0;
}
.link-download-room {
  height: 50px;
}
.link-download-room:before {
  background-image: url(images/down.svg);
  height: 50px;
}
.download-picture {
  height: 50px;
  margin-left: 15px;
  margin-right: 0;
  width: 75px;
}
.download-picture:after {
  background-image: url(images/count-down.svg);
}


.contact-block {
  width: calc(100%/3 - 30px);
  max-width: 100%;
  margin: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  box-shadow: -2px 0 5px rgba(0,0,0,.3);
}
.vip-manager {
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #989898;
  padding: 15px;
  position: relative;
}
.vip-manager:after {
  content: '';
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-right: 28px solid #fff;
  position: absolute;
  top: 10px;
  left: -43px;
}
.vip-manager:before {
  content: '';
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-right: 28px solid rgba(0,0,0,.3);
  position: absolute;
  top: 10px;
  left: -46px;
  filter: blur(2px);
}
.ava {
  width: 50px;
  height: 50px;
  background-color: #d79d03;
  border-radius: 50%;
  padding: 5px;
  border: 3px solid #fff;
  box-shadow: 0 0 3px rgba(0,0,0,.5);
}
.name-manager {
  width: 195px;
  margin-left: 15px;
}
.name-manager p:first-child {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #989898;
  margin-bottom: 5px;
}
.name-manager p:nth-child(2) {
  font-size: 14px;
}
.contact-block .social {
  flex-direction: column;
  padding: 10px 15px;
  margin: 0;
  width: 100%;
}
.contact-block .social a {
  width: 100%;
  height: auto;
  border-radius: none;
  background-image: none;
  margin: 5px 0;
  border: none;
  align-items: center;
}
.contact-block .social a span:first-child {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #d79d03;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;

  position: relative;
  z-index: 0;
  transition: all .3s;
}
.contact-block .social a:hover span:first-child {
  transition: all .2s;
  background-size: 22px;
}
.contact-block .social a span:first-child:after {
  content: '';
  position: absolute;
  width: 54px;
  height: 54px;
  top: -5px;
  left: -5px;
  z-index: -1;
  opacity: 0;
  box-shadow: 2px 2px #d79d03;
  transition: all .3s;
  border-radius: 50%;
  transform: rotate(-90deg);
}
.contact-block .social a:hover span:first-child:after {
  opacity: 1;
	transform: rotate(0deg);
  transition: all .3s;
}
.contact-block .f-mail span:first-child{
  background-image: url(images/icon/e-mail.svg);
}
.contact-block .f-skype span:first-child{
  background-image: url(images/icon/skype.svg);
}
.contact-block .f-tg span:first-child{
  background-image: url(images/icon/tg.svg);
}

.contact-block .social a span:last-child {
  width: 195px;
  margin-left: 10px;
  font-size: 14px;
  color: #000;
  transition: all .25s;
}
.contact-block .social a:hover span:last-child {
  color: #d79d03;
  transition: all .25s;
}

.btns {
  width: 100%;
  margin: 5px 0;
  font-size: 14px;
  color: green;
  text-decoration: underline;
  padding-left: 20px;
  position: relative;
  transition: all .25s;
}
.btns:hover {
  color: #000;
  transition: all .25s;
}
.btns:before,
.btns:after {
  content: '';
  width: 10px;
  height: 2px;
  background-color: #d79d03;
  position: absolute;

}
.btns:before {
  top: 6px;
  left: 0;
}
.btns:after {
  top: 10px;
  left: 4px;
}

.rake-structure {
  width: calc(100% - 50px);
  font-size: 12px;
}
.title-rake-str {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.title-rake-str:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #000;
  margin-left: 10px;
  transition: all .25s;
}
#title-rake-str:checked + .title-rake-str:after {
  transform: rotate(180deg);
  transition: all .25s;
}
.rake-structure table {
  width: 100%;
  display: none;
  border-top: 1px solid #989898;
  border-bottom: 1px solid #989898;
}
#title-rake-str:checked ~ table {
  display: flex;
}
.rake-structure table tr:last-child td:first-child,
.rake-structure table tr:last-child td:last-child {
  border-bottom: none;
}
.rake-structure table tr td:first-child {
  width: 140px;
  text-align: right;
  color: #989898;
  padding: 5px;
}
.rake-structure table tr td:last-child {
  width: 100px;
  color: green;
  font-weight: bold;
  padding: 5px;
  text-align: left;
}

.char-room {
  width: 100%;
  border-top: 1px solid #989898;
  display: flex;
  flex-wrap: wrap;
}
.trafic-room {
  width: calc(100%/3 - 30px);
  max-width: 100%;
  margin: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
}
.trafic-all {
  width: 100%;
  height: 50px;
  position: relative;
  padding-left: 60px;
  display: flex;
  flex-wrap: wrap;
}
.trafic-all:after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: 30px;
  background-repeat: no-repeat;
  background-image: url(images/traffic.svg);
  border-right: 1px solid #d79d03;
}
.trafic-all p:first-child {
  width: 150px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: right;
  font-size: 14px;
  padding-right: 10px;
  font-weight: bold;
}
.trafic-all p:last-child {
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: green;
  background-color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
}

.geo-traffic {
  width: calc(100% - 50px);
}
.geo-traffic table tr td:first-child {
  width: 160px;
  font-size: 14px;
  text-align: right;
  padding: 3px 10px 3px 10px;
  font-style: italic;
}
.geo-traffic table tr td:last-child {
  width: 80px;
  font-size: 14px;
  font-weight: bold;
  border-right: 1px solid #fff;
  text-align: left;
  padding: 5px;
}
.geo-traffic table tr td:last-child span:last-child {
  font-weight: normal;
}

.app-room {
  width: 200px;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
.app-room li {
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.app-room li.iOS {
  background-image: url(images/apple.svg);
}
.app-room li.Android {
  background-image: url(images/android.svg);
}
.app-room li.Windows {
  background-image: url(images/windows.svg);
}
.app-room li.Mac {
  background-image: url(images/mac.svg);
}
.app-room li.Linux {
  background-image: url(images/linux.svg);
}
.app-room li.Flash {
  background-image: url(images/flash.svg);
}
.app-room li.HTML5 {
  background-image: url(images/html.svg);
}

.payment-room {
  width: calc(100%/3 - 30px);
  max-width: 100%;
  margin: 10px 15px;
  display: flex;
  flex-wrap: wrap;
}
.title-pr {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}
.payment-dep {
  width: 100%;
}
.payment-dep table {
  border-top: 1px solid #989898;
  border-bottom: 1px solid #989898;
  font-size: 14px;
  width: 100%;

}
.payment-dep table tr td {
  padding: 3px;
  text-align: left;
}



.payment-method {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  justify-content: space-evenly;
}
.payment-method>p {
  margin: 3px;
  color: #989898;
}
.payment-method>a {
  margin: 3px;
  color: #989898;
  text-decoration: underline;
}
.payment-method>a:hover {
  color: green;
}
.payment-speed,
.payment-support {
  width: 100%;
  font-size: 14px;
  padding: 3px;
  font-style: italic;
  margin: 2px 0;
  background-color: #fff;
}
.payment-speed span,
.payment-support span {
  font-weight: bold;
}



.other-services {
  width: 100%;
  font-size: 14px;
  margin-top: 10px;
}
.other-services>p {
  font-weight: bold;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #989898;
}
.serv-massiv {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.serv-massiv p {
  margin: 3px;
  padding: 3px 5px;
  background-color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: -2px 0 5px rgba(0,0,0,.2);
}


/* form-room */
.instr-reg {
  width: 100%;
  border-top: 1px solid #989898;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.instr-reg>p {
  width: 610px;
  max-width: 100%;
  margin: 10px 15px;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  line-height: 1.8;
  background-color: #fff;
  border: 1px solid green;
  border-radius: 3px;
  background-color: #f6e0a5;
}
.instr-reg>p>a {
  color: green;
  text-decoration: underline;
  font-weight: bold;
}
.instr-reg>p>a:hover {
  color: #000;
}
.in-t-room {
  font-weight: bold;
}
.in-pr-room {
  position: relative;
  font-weight: bold;
  padding-right: 20px;
}
.in-pr-room:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(images/crown.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  top: 50%;
  margin-top: -7.5px;
  right: 0;
}
.list-instr-reg {
  width: 610px;
  max-width: 100%;
  margin: 10px 15px;
  display: flex;
  flex-wrap: wrap;
}
.li-list-instr-reg {
  width: 100%;
  border-bottom: 1px solid #989898;
  display: flex;
  flex-wrap: wrap;
}
.li-list-instr-reg:last-child {
  border-bottom: none;
}
.li-list-instr-reg>p {
  width: 100%;
  font-size: 14px;
  padding-left: 40px;
  position: relative;
  padding: 15px 0 15px 40px;
  line-height: 1.8;
}
.li-list-instr-reg>p>span.num {
  position: absolute;
  left: 0;
  top: 12px;
  width: 30px;
  height: 30px;
  background-color: #f6e0a5;
  border: 1px solid green;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
}
.li-list-instr-reg>p>a {
  color: green;
  text-decoration: underline;
  font-weight: bold;
}
.li-list-instr-reg>p>a:hover {
  color: #000;
}
.orange-color {
  color: #d79d03;
}

.form-room {
  width: 100%;
  font-size: 14px;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0,0,0,.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.page-template-wallet .form-room {
  width: 610px;
  max-width: 100%;
}
.form-room input[type="text"],
.form-room input[type="email"] {
  width: 100%;
  background-color: #fff;
  border: 1px solid transparent;
  border-bottom: 1px solid green;
  padding: 10px;
  margin-bottom: 10px;
  transition: all .3s;
  color: green;
  font-weight: bold;
}
.form-room input[type="text"]::placeholder,
.form-room input[type="email"]::placeholder {
  color: #989898;
  font-weight: normal;
}
.form-room input[type="text"]:focus,
.form-room input[type="email"]:focus {
  background-color: #f6e0a5;
  transition: all .3;
  box-shadow: inset 0 0 2px rgba(0,0,0,.2);
  border: 1px solid green;
}
.form-room input[type="text"]:focus::placeholder,
.form-room input[type="email"]:focus::placeholder {
  color: green;
}
.form-room>p {
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.form-room input[type="radio"] {
  display: none;
}
.form-room label {
  width: 120px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 30px 10px 35px;
  position: relative;
  border-bottom: 1px solid #989898;
  transition: all .2s;
  color: #989898;
}
.form-room label:before {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  left: -35px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100);
  transition: all .2s;
}
.form-room label:hover:before {
  filter: grayscale(50%);
  transition: all .2s;
}
.form-room label[for="email"]:before {
  background-image: url(images/icon/e-mail.svg);
}
.form-room label[for="skype"]:before {
  background-image: url(images/icon/skype.svg);
}
.form-room label[for="telegram"]:before {
  background-image: url(images/icon/tg.svg);
}
#email:checked ~ label[for="email"],
#skype:checked ~ label[for="skype"],
#telegram:checked ~ label[for="telegram"] {
  border-bottom: 1px solid #000;
  color: #000;
  transition: all .2s;
}
#email:checked ~ label[for="email"]:before,
#skype:checked ~ label[for="skype"]:before,
#telegram:checked ~ label[for="telegram"]:before {
  filter: grayscale(0);
  transition: all .2s;
}
input[name="email"],
input[name="skype"],
input[name="telegram"] {
  display: none;
}
#email:checked ~ input[name="email"],
#skype:checked ~ input[name="skype"],
#telegram:checked ~ input[name="telegram"] {
  display: flex;
}
.send-button {
  height: 50px;
  font-size: 16px;
  background-color: #989898;
  cursor: not-allowed;
}
.send-button:hover {
  background-color: #989898;
}
.send-button:before {
  height: 50px;
  background-image: url(images/send.svg);
  background-size: 30px;
}
input[name="name"]:valid ~ #email:checked ~ input[name="email"]:valid ~ .send-button,
input[name="name"]:valid ~ #skype:checked ~ input[name="skype"]:valid ~ .send-button,
input[name="name"]:valid ~ #telegram:checked ~ input[name="telegram"]:valid ~ .send-button {
  background-color: #d79d03;
  cursor: pointer;
}
input[name="name"]:valid ~ #email:checked ~ input[name="email"]:valid ~ .send-button:hover,
input[name="name"]:valid ~ #skype:checked ~ input[name="skype"]:valid ~ .send-button:hover,
input[name="name"]:valid ~ #telegram:checked ~ input[name="telegram"]:valid ~ .send-button:hover {
  background-color: #c69514;
}

.thanks {
  position: absolute;
  width: 100%;
  height: 65px;
  z-index: 1;
  background-color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  bottom: 0;
  right: -100%;
  transition: all 1s;
  opacity: 0;
}
.thanks.visible {
  right: 0;
  transition: all 1s;
  opacity: 1;
}
.thanks.sended {
  right: 100%;
  transition: all 1s;
  opacity: 0;
}



/* comments */
#comment {
  border-bottom: 1px dashed #989898;
}
.comment {
  width: 100%;
  justify-content: flex-start;
}
.comment-overflow {
  width: 960px;
  max-width: 100%;
  max-height: 500px;
  overflow-y: auto;
  align-content: flex-start;
  padding: 15px;
}
.comment-respond {
  width: 100%;
  max-width: 100%;
  flex-direction: column;
}
.comment-form {
  width: 100%;
  font-size: 14px;
}
.logged-in-as {
  width: 100%;
}
.logged-in-as>a:last-child {
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1.5px;
  color: #000;
  text-decoration: underline;
  text-decoration-style: dashed;
  transition: all .25s;;
}
.logged-in-as>a:last-child:hover {
  color: #d79d03;
  transition: all .25s;
}
.comment-form-comment,
.comment-form-author,
.form-submit {
  position: relative;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
}
.comment-form-comment {
  margin-top: 0;
}

.comment-respond #comment {
  width: 100%;
  padding: 15px;
  padding-left: 50px;
  border: 1px solid #989898;
  position: relative;
  background: #fff;
  font-size: 14px;
  transition: all .25s;
  height: 100px;
}
.comment-respond #comment:focus,
.comment-respond #comment:valid {
  width: 100%;
  height: 150px;
  padding: 15px;
  transition: all .25s;
  border: 1px solid green;
}
.comment-respond #comment:focus::placeholder {
  color: #000;
}
.comment-respond #comment:focus + .icon-message,
.comment-respond #comment:valid + .icon-message {
  opacity: 0;
  z-index: 0;
  transition: all .25s;
}
.comment-respond #comment::placeholder {
  color: #989898;
}
.icon-message {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  top: 5px;
  left: 5px;
  background-image: url(images/chat-grey.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  transform: scale(-1,1);
  z-index: 1;
  transition: all 0.25s;
}

#submit {
  width: auto;
  min-width: 150px;
  border-radius: 100px;
  margin-top: 10px;
  background: #d79d03;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  position: relative;
  z-index: 0;
}

.commentlist {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
}
.commentlist>li {
  width: 100%;
}
.commentlist li .comment-respond {
  margin: 0;
}

.comment-author {
  width: auto;
  margin: 5px 10px 5px 0;
  padding: 10px 10px 10px 50px;
  font-size: 12px;
  font-weight: bold;
  position: relative;
}
.comment-author:after {
  content: '';
  width: 40px;
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(images/ava.svg);
  background-size: 43px;
  background-position: center bottom;
  background-repeat: no-repeat;
}
li.comment-author-admin>.comment-body>.comment-author:after {
  width: 40px;
  height: 40px;
  background-image: url(images/crown.svg);
  background-size: 32px;
  background-color: rgba(0,0,0,0);
  background-position: center;
  background-repeat: no-repeat;
}
.comment-author cite {
  font-style: normal;
}


.icon-user {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  background-image: url(images/user.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  z-index: 1;
  transition: all .25s;
}

.comment-respond #author {
  width: 100%;
  border: 1px solid #989898;
  background: #fff;
  font-size: 14px;
  padding: 15px;
  padding-left: 50px;
  position: relative;
  transition: all .25s;
  max-height: 40px;
}

.comment-respond #author::placeholder {
  color: #989898;
}
.comment-respond #author:focus,
.comment-respond #author:valid {
  width: 100%;
  padding: 15px;
  transition: all .25s;
  border: 1px solid green;
}
.comment-respond #author:focus::placeholder {
  color: #000;
}
.comment-respond #author:focus + .icon-user,
.comment-respond #author:valid + .icon-user {
  opacity: 0;
  transition: all .25s;
  z-index: 0;
}


.comment-respond>small {
  width: auto;
  display: flex;
  margin-bottom: 10px;
}
.comment-respond>small a {
  width: auto;
  min-width: 150px;
  border-radius: 100px;
  margin-top: 10px;
  background: green;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  position: relative;
  z-index: 0;
}

.comment.parent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #989898;
}
.children {
  margin: 20px 20px 20px 0;
  padding: 10px 10px 10px 50px;
  border-left: 1px solid #989898;
}
.comment-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.comment-meta {
  width: auto;
  margin: 5px;
  padding: 10px;
  color: #989898;
  font-size: 14px;
}
.comment-edit-link {
  transition: all .25s;
}
.comment-edit-link:hover {
  transition: all .25s;
  color: #d79d03;
}
.comment-body>p {
  width: 100%;
  margin: 10px 10px 10px 0;
  font-size: 14px;
  line-height: normal;
}
.reply {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.reply .comment-reply-link {
  font-size: 14px;
  color: #989898;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all .25s;
}
.reply .comment-reply-link:hover {
  color: #d79d03;
  transition: all .25s;
}
#wait_approval {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #fff;
  background: green;
}
#comment ul li:after,
#comment ul li:before,
#comment ol li:after,
#comment ol li:before {
  display: none;
}
.comment-author>img {
  display: none;
}





@media screen and (max-width:669px) {
  .rank-math-breadcrumb {
    font-size: 12px;
  }
  .rank-math-breadcrumb p {
    text-align: center;
  }
  .rank-math-breadcrumb a,
  .rank-math-breadcrumb .last {
    margin-bottom: 5px;
  }
  .link-download-room {
    width: 200px;
  }
  .info-room .logo-room {
    margin-left: 0;
  }
  .info-room .set-title-room {
    width: 195px;
  }
  .download-picture {
    width: 45px;
    font-size: 12px;
  }
  .download-picture:after {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
  .vip-manager:before,
  .vip-manager:after {
    display: none;
  }
  .item-progress {
    max-width: 260px;
  }
  .info-room .link-review-room.compare-button {
    margin-bottom: 0;
    right: 0;
  }
  .info-room  .number-rating {
    display: inline;
    width: 60px;
  }
  .trafic-all p:last-child {
    width: calc(100% - 150px);
  }
  .char-room {
    justify-content: center;
  }
  .li-list-instr-reg > p {
    margin: 0 15px;
  }
  .rooms-in-fp::after {
    left: 50%;
  }
  aside {
    width: 100%;
    margin: 0 15px;
  }
  .promo .logo-room {
    margin-left: 0;
  }
}
@media screen and (min-width:640px) and (max-width:669px) {
  .item-progress {
    max-width: 290px;
  }
}
@media screen and (min-width:670px) and (max-width:989px) {
  .char-room {
    justify-content: center;
  }
  .info-room  .number-rating {
    display: inline;
    width: 60px;
  }
  .vip-manager:before,
  .vip-manager:after {
    display: none;
  }

}
@media screen and (min-width:750px) and (max-width:989px) {
  aside {
      width: 100%;
      justify-content: space-around;
      flex-direction: row;
      margin: 15px;
      flex-wrap: wrap;
    }
    .promo {
      max-width: 270px;
    }
    .promo .set-title-room {
      width: 100%;
    }
}
@media screen and (min-width:830px) and (max-width:989px) {

}
@media screen and (min-width:960px) and (max-width:989px) {

}
@media screen and (min-width:990px) and (max-width:1299px) {
  aside {
      width: 100%;
      justify-content: space-around;
      flex-direction: row;
      margin: 15px;
      flex-wrap: wrap;
    }
    .promo .set-title-room {
      width: 100%;
    }
    .promo {
      max-width: 270px;
    }
}



/* page-news */
.ajax-load-more-wrap {
  width: 960px;
  max-width: 100%;

}
.alm-load-more-btn.more  {
  width: 290px;
  max-width: 100%;
  height: auto;
  margin: 0 15px;
  padding: 15px;
  background-color: #d79d03;
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 0;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}



.soft-all .title-race {
  width: 100%;
  margin-right: 0;
  border-right: none;
  text-align: center;
}


.main-contact {
  width: 960px;
  max-width: 100%;
  align-items: flex-start;
}
.main-contact .social {
  width: 290px;
  margin: 15px;
}
.map {
  width: 610px;
  margin: 15px;
  max-width: 100%;
}
.map iframe {
  width: 100%;
  height: 480px;
  margin-top: 0;
}
.main-contact .f-address span:first-child {
  background-image: url(images/map-pin-marked.svg);
}
@media screen and (max-width:1019px) {
  .map iframe {
    width: 100%;
    height: 290px;
    margin-top: 0;
  }
}
.content-txt time {
  width: 100%;
  text-align: center;
  font-style: italic;
  margin-bottom: 10px;
  font-size: 14px;
}




.overflow-compare {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.left-char {
  width: 290px;
  margin: 0 15px;
  display: flex;
  flex-wrap: wrap;
}
.left-char div {
  width: 100%;
  padding: 15px;
}
.compare-table {
  width: 900px;
  margin: 0 15px;
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 30px;
  font-size: 14px;
}
.compare-table .tr>div {
  width: 290px;
  margin: 0 15px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #989898;
  white-space: normal;
}
.compare-table .tr>div .title-room {
  margin: 0;
  width: 100%;
}
.compare-table .tr>div .link-review-room {
  height: 50px;
}
.compare-table .tr>div .link-review-room:before {
  height: 50px;
}
.compare-table .tr>div table {
  width: 100%;
  max-width: 100%;
}
.compare-table .tr>div table td {
  text-align: left;
}
.rake-massive {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.warning-text,
.rkn {
  width: 290px;
  max-width: 100%;
  margin: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.rkn img {
  width: 100px;
}
.warning-text p {
  font-size: 18px;
  width: 100%;
  margin-bottom: 10px;
  /* text-align: center; */
}
.warning-text span,
.ip span {
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  padding: 5px;
  border: 1px solid #989898
}

/* Banner */
.promo-banner {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}
.promo-banner img {
  border-bottom: 2px solid #d79d03;
}
.clearfy-cookie {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(0,0,0,.9) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 16px !important;
}
.clearfy-cookie-container {
  width: 640px;
  max-width: 100%;
  background-color: #000;
  padding: 15px;
  line-height: 1.5;
  border: 2px solid #d79d03;
  box-shadow: 0 0 5px rgba(0,0,0,.5);
}
.clearfy-cookie-accept {
  /* margin: 15px 10px 0 !important; */
}


.btns-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}


aside {
  width: 20%;
  justify-content: flex-start;
  flex-direction: column;
}
.promo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
  height: 50px;
  margin: 10px 0;
  position: relative;
  padding-left: 50px;
  box-shadow: -1px 0 3px rgba(0,0,0,.3);
  transition: all .4s;
  }
.promo::before{
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d79d03;
  background-size: 35px;
  background-position: center;
  background-repeat: no-repeat;
}
.promo .logo-room {
  margin-right: 0;
  width: 40px;
  height: 40px;
  left: 5px;
  position: absolute;
  background: transparent;
  box-shadow: 0 0 0;
  border: 0px;
}
.promo .set-title-room {
  width: 100%;

}
.promo .title-room {
  width: auto;
  font-size: 14px;
  margin-right: 0;
}
.h3-sidebar {
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  z-index: 0;
}

.h3-sidebar::after {
    content: '';
    width: 100%;
    height: 5px;
    background-color: #000;
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: -1;
}
.promo:hover {
    box-shadow: -1px 0 3px rgba(0,0,0,.7);
}

@media screen and (min-width:670px) and (max-width:989px) {
  aside {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .promo {
    width: calc(100%/2 - 30px);
  }
}
@media screen and (max-width:669px) {
  aside {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}


@media screen and (max-width:768px) {
  .logo-title-room,
  .rake-in-or,
  .contact-block,
  .metrics-or,
  .trafic-room,
  .payment-room {
    width: 100%;
  }
}
