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, sub, sup, 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, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}
/* HTML5 display-role reset for older browsers */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}


* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  width: 100%;
  background: url(../images/fon-bg-top.jpg) center top no-repeat, url(../images/fon-bg-bottom.jpg) center bottom no-repeat, url(../images/fon-bg-repeat.jpg) center repeat-y;
  background-color: #eaecff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #230707;
  line-height: 1;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  transition: all 0.3s ease;
  color: #bf5252;
  text-decoration: none;
}

p {
  margin-bottom: 15px;
}
h1,
h2,
h3 {
  color: #230707;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
}
h1 {
  font-size: 20px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
table {
  width: 100%;
}
table td {
  border-collapse: collapse;
  padding: 4px;
  border: 1px solid #c09074;
}
table tr:nth-child(odd) {
  background-color: rgba(136, 93, 15, 0.2);
}
caption {
  margin-bottom: 15px;
}
input,
textarea {
  background: url(../images/red-light-bg.jpg);
  border-radius: 30px;
  border: 1px solid #9b666e;
  color: #fff;
  padding: 8px 18px;
  position: relative;
}

button,
.button {
  transition: all 0.3s ease;
  cursor: pointer;
  background: #b4a814;
  border-radius: 5px;
  border: none;
  color: #fff!important;
  font-size: 11px;
  position: relative;
  z-index: 1;
  padding: 12px 28px;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0em 0.5em 10px rgba(31, 29, 29, 0.7);
}

button:hover,
.button:hover {
  background: #c1b51c;
}
.button-border:after {
  content: "";
  border-radius: 8px;
  border: 3px solid rgba(80, 72, 57, 0.5);
  left: -3px;
  top: -3px;
  height: 100%;
  width: 100%;
  position: absolute;
}

:focus {
  outline: none;
}
::-webkit-input-placeholder {
  color: #c37289;
}
::-moz-placeholder {
  color: #c37289;
}
:-moz-placeholder {
  color: #c37289;
}
:-ms-input-placeholder {
  color: #c37289;
}
.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.container {
  min-height: 1300px;
  display: flex;
  position: relative;
}

.flex {
  display: flex;
}
.flex-s {
  display: flex;
  justify-content: space-between;
}
.flex-s-c {
  display: flex;
  justify-content: space-between;
}
.flex-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-panel {
  width: 100%;
  position: absolute;
  top: 0px;
  background: url(../images/top-fon-menu.jpg) repeat-x;
  border-bottom: 2px solid #625c0d;
  z-index: 10;
}

.menu li a:before {
  content: "";
  position: absolute;
  background: url(../images/point-menu.png) no-repeat;
  height: 23px;
  width: 4px;
  left:0px;
  top: 22px;
}
.menu li:first-child a:before{
  display: none;
}

.menu {
  height: 66px;
}
.menu li {
  margin: 0px 8px;
}
.menu a {
  color: #e9dd46;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0px 26px;
  font-weight: 600;
  display: block;
  height: 66px;
  line-height: 66px;
  position: relative;
}

.menu a:after {
  content: "";
  transition: 0.3s;
  height: 0px;
  width: 0px;
}

.menu a:hover {
  color: #fbf6b6;
}

.menu a:hover:after {
  content: "";
  height: 2px;
  width: 100%;
  bottom: -2px;
  left: 0px;
  position: absolute;
  background: #fbf6b6;
}
.menu .active a {
  color: #fbf6b6;
  border-bottom: 2px solid #fbf6b6;
  bottom: -2px;
}

.languages a {
  margin-left: 10px;
}

.languages a:hover {
  -webkit-filter: brightness(140%);
  filter: brightness(140%);
  margin-left: 10px;
}

/* Header
-----------------------------------------------------------------------------*/
.header {
  height: 551px;
  position: relative;
}
.logo {
  display: block;
  position: absolute;
  margin-left: -180px;
  bottom: 5px;
  z-index: 2;
  transition: 0.3s;
}

.logo:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.countdown-block {
  position: absolute;
  bottom: 74px;
  text-align: center;
  width: 100%;
}
.countdown-block h3 {
  color: #5a2824;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}
.countdown li {
  margin: 0px 7px;
  position: relative;
}
.countdown li:after {
  content: ":";
  position: absolute;
  right: -12px;
  top: 8px;
  font-size: 38px;
  color: #3b0c16;
}
.countdown li:first-child:after {
  display: none;
}
.countdown li:last-child:after {
  display: none;
}
.countdown span {
  display: block;
  background: rgba(120, 40, 62, 0.5);
  border-radius: 6px;
  height: 60px;
  width: 60px;
  font-size: 32px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  margin-bottom: 7px;
}
.countdown p {
  font-size: 12px;
  margin-bottom: 0px;
  font-weight: bold;
  color: #5a2823;
  text-transform: uppercase;
}

.leaves-left-1 {
  background: url(../images/leaves-left-1.png) no-repeat;
  width: 120px;
  height: 133px;
  position: absolute;
  left: 50px;
  top: -300px;
  animation: leaves-left-1 12s infinite linear;
}
@keyframes leaves-left-1 {
  0% {
    top: -300px;
  }
  90% {opacity: 1;}
  100% {
    top: 750px;
    transform: rotate(-200deg);
    left: -250px;
    opacity: 0;
  }
}
.leaves-left-2 {
  background: url(../images/leaves-left-2.png) no-repeat;
  width: 160px;
  height: 72px;
  position: absolute;
  left: 50px;
  top: -200px;
  animation: leaves-left-2 12s infinite linear;
  animation-delay: 6s;
}
@keyframes leaves-left-2 {
  0% {
    top: -200px;
  }
  90% {opacity: 1;}
  100% {
    top: 750px;
    opacity: 1;
    transform: rotate(-150deg);
    left: -250px;
    opacity: 0;
  }
}
.leaves-left-3 {
  background: url(../images/leaves-left-3.png) no-repeat;
  width: 120px;
  height: 88px;
  position: absolute;
  left: 50px;
  top: -200px;
  animation: leaves-left-3 12s infinite linear;
  animation-delay: 9s;
}
@keyframes leaves-left-3 {
  0% {
    top: -200px;
  }
  90% {opacity: 1;}
  100% {
    top: 750px;
    transform: rotate(-250deg);
    left: -250px;
    opacity: 0;
  }
}
.leaves-left-4 {
  background: url(../images/leaves-left-4.png) no-repeat;
  width: 120px;
  height: 106px;
  position: absolute;
  left: 50px;
  top: -300px;
  animation: leaves-left-4 12s infinite linear;
  animation-delay: 3s;
}
@keyframes leaves-left-4 {
  0% {
    top: -250px;
  }
  90% {opacity: 1;}
  100% {
    top: 750px;
    transform: rotate(-150deg);
    left: -250px;
    opacity: 0;
  }
}
.leaves-left-5 {
  background: url(../images/leaves-left-5.png) no-repeat;
  width: 170px;
  height: 108px;
  position: absolute;
  left: 50px;
  top: -300px;
  animation: leaves-left-5 12s infinite linear;
  animation-delay: 7s;
}
@keyframes leaves-left-5 {
  0% {
    top: -250px;
  }
  90% {opacity: 1;}
  100% {
    top: 750px;
    transform: rotate(-250deg);
    left: -250px;
    opacity: 0;
  }
}
.leaves-right-1 {
  background: url(../images/leaves-right-1.png) no-repeat;
  width: 200px;
  height: 115px;
  position: absolute;
  right: 200px;
  top: -250px;
  animation: leaves-right-1 12s infinite linear;
  animation-delay: 1s;
}
@keyframes leaves-right-1 {
  0% {
    top: -250px;
  }
  90% {
    transform: rotate(-200deg);
    opacity: 1;
  }
  100% {
    top: 850px;
    transform: rotate(-200deg);
    right: -250px;
    opacity: 0;
  }
}
.leaves-right-2 {
  background: url(../images/leaves-right-2.png) no-repeat;
  width: 140px;
  height: 55px;
  position: absolute;
  right: 200px;
  top: -250px;
  animation: leaves-right-2 12s infinite linear;
  animation-delay: 3s;
}
@keyframes leaves-right-2 {
  0% {
    top: -250px;
  }
  90% {
    transform: rotate(-100deg);
    opacity: 1;
  }
  100% {
    top: 850px;
    transform: rotate(-120deg);
    right: -250px;
    opacity: 0;
  }
}
.leaves-right-3 {
  background: url(../images/leaves-right-3.png) no-repeat;
  width: 160px;
  height: 74px;
  position: absolute;
  right: 100px;
  top: -250px;
  animation: leaves-right-3 12s infinite linear;
  animation-delay: 6s;
}
@keyframes leaves-right-3 {
  0% {
    top: -250px;
  }
  90% {
    transform: rotate(150deg);
    opacity: 1;
  }
  100% {
    top: 850px;
    transform: rotate(170deg);
    right: -250px;
    opacity: 0;
  }
}
.leaves-right-4 {
  background: url(../images/leaves-right-4.png) no-repeat;
  width: 59px;
  height: 110px;
  position: absolute;
  right: 200px;
  top: -250px;
  animation: leaves-right-4 12s infinite linear;
  animation-delay: 9s;
}
@keyframes leaves-right-4 {
  0% {
    top: -250px;
  }
  90% {
    transform: rotate(150deg);
    opacity: 1;
  }
  100% {
    top: 850px;
    transform: rotate(170deg);
    right: -250px;
    opacity: 0;
  }
}
.leaves-right-5 {
  background: url(../images/leaves-right-5.png) no-repeat;
  width: 110px;
  height: 65px;
  position: absolute;
  right: 250px;
  top: -250px;
  animation: leaves-right-5 12s infinite linear;
  animation-delay: 2s;
}
@keyframes leaves-right-5 {
  0% {
    top: -250px;
  }
  90% {
    transform: rotate(150deg);
    opacity: 1;
  }
  100% {
    top: 850px;
    transform: rotate(170deg);
    right: -250px;
    opacity: 0;
  }
}
/* Left Sidebar
-----------------------------------------------------------------------------*/
.download-block a {
  background: url(../images/download-button.jpg) center;
  height: 90px;
  font-size: 20px;
  color: #fff;
}

.download-block a:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}
.download-block b {
  text-shadow: 1px 1px 1px rgba(191, 120, 35, 1);
}

.download-block a span {
  padding-left: 50px;
}
.download-block a b {
  font-weight: 400;
  display: block;
  color: #552e07;
  font-size: 12px;
  margin-top: 5px;
}
.widget {
  padding: 25px;
  padding-bottom: 40px;
  padding-top: 31px;
  min-height: 305px;
}
.widget-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #ffde00;
  font-size: 14px;
  margin-bottom: 28px;
  position: relative;
  text-shadow: 1px 3px 3px rgba(25, 23, 23, 0.85);
}
.widget-title a:hover {
  text-decoration: underline;
}
.widget-title span {
  display: block;
  margin-top: 9px;
}
.widget-title:after {
  content: "";
  background: url(../images/widget-title-bg.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -22px;
  top: -26px;
}
.widget-title span,
.widget-title a {
  text-transform: none;
  font-size: 12px;
  color: #b4a814;
  font-weight: 400;
}
.l-input {
  width: 235px;
  height: 44px;
  border: none;
  padding: 7px 60px 15px 50px;
  position: relative;
}
.l-input input {
  background: none;
  border: none;
  padding: 5px 15px;
  width: 170px;
}
.select-hidden {
  display: none;
  visibility: hidden;
}
.select {
  cursor: pointer;
  display: block;
  position: relative;
  width: 170px;
  height: 30px;
}
.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-in;
  color: #fff;
  padding: 7px 15px;
  width: 170px;
}
.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: -50px;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background: linear-gradient(to bottom, #2a1c14, #573b2b);
  border: 1px solid #6a4411;
  width: 235px;
}

.select-options li {
  margin: 0;
  list-style: none !important;
  margin: 0px !important;
  padding: 10px 10px;
  border-bottom: 1px solid #744906;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  color: #fff;
}
.select-options li:hover {
  background: rgba(255, 255, 255, 0.1);
}


.select-options li[rel="hide"] {
  display: none;
}

.login-block p {
  margin-bottom: 5px;
}
.login-block a:hover {
  text-decoration: underline;
}
.login-block .lost a {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}

.login {
  background: url(../images/login-input.png) no-repeat;
}
.pass {
  background: url(../images/password-input.png) no-repeat;
}
.select-s {
  background: url(../images/select_server.png) no-repeat;
}
.select-s-page {
  background: url(../images/select_server-page.png) no-repeat;
}
.buttons {
  margin-top: 10px;
}
.top-block {
  width: 100%;
  color: #ffffff;
}
.top-block span {
  display: block;
  padding-bottom: 1px;
}
.top-block .top-number {
  width: 35px;
}
.top-block .top-flag {
  width: 25px;
  padding-top: 2px;
}

.top-block .top-name {
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-block .top-lvl {
  width: 55px;
}
.top-block .top-lvl sup {
  font-size: 10px;
  color: #ff0000;
}
.top-list {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0px 10px;
  font-size: 12px;
  border-bottom: 1px dashed #62441b;
  transition: 0.3s;
}
.top-list a {
  color: #fff;
}
.top-list:hover {
  background: url(../images/fon-hover.jpg) repeat;
  margin: -1px -30px 0px -30px;
  padding: 0px 28px 0px 28px;
  box-shadow: 0em 0.5em 10px rgba(0, 0, 0, 0.5);
  height: 37px;
  color: #ffd562;
  position: relative;
  z-index: 5;
}

.top-list:hover a {
  color: #ffd562;
}
.top-title {
  height: 37px;
  display: flex;
  align-items: center;
  padding: 0px 10px;
  background: #1a100a;
  font-size: 13px;
  border-bottom: 1px solid #412a0b;
}
.no-reset {
  text-align: right;
  margin-top: 15px;
}
.no-reset a {
  color: #ffd562;
  font-size: 12px;
}
.gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gallery li {
  position: relative;
}
.gallery li img {
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: -1px;
  width: 113px;
  height: 75px;
}
.gallery li:first-child {
  margin-bottom: 8px;
}
.gallery li:first-child img {
  width: 235px;
  height: 145px;
  outline: 1px solid #ffffff;
}
.gallery li:first-child a {
  width: 235px;
  height: 145px;
}
.gallery li:first-child a:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 50px 80px 5px rgba(0, 0, 0, 0.7);
}
.gallery li:first-child a:before {
  content: "";
  background: url(../images/play-icon.png) no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -23px;
  margin-top: -20px;
  width: 46px;
  height: 46px;
  z-index: 2;
}
.gallery li a {
  display: block;
  cursor: pointer;
}
/* Middle
-----------------------------------------------------------------------------*/
.content { 
  width: 630px;
  line-height: 1.3;
  background: url(../images/fon-all-news-bg.jpg) repeat-y;
}
.content a {
  text-decoration: underline;
}
.content-page {
  background: url(../images/block-top-bg.jpg) right top no-repeat;
  min-height: 50px;
  padding: 20px;
  line-height: 1.6;
}
.content-page img {
  max-width: 590px;
}
.content-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.content-page ul li {
  list-style: circle;
  margin: 5px 0px;
}
.sidebar {
  width: 285px;
  padding-top: 58px;
}

.slider-effect {
  content: "";
  position: absolute;
  width: 136px;
  height: 104px;
  background: url(../images/slider-effect.png) no-repeat;
  top: 526px;
  left: 246px;
  z-index: 1;
}

.slider {
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 100px;
  width: 630px;
  height: 280px;
} 

.slider .slides {
  position: relative;
  transition: 1s;
}
.slider .slides .slide {
  float: left;
  display: block;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  width: 630px;
  height: 280px;
  border: 1px solid #373022;
}
.slider .slides .slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 80px;
}
.slider .slides .slide-info {
  position: relative;
  padding: 40px 35px 35px 35px;
  margin-top: 110px;
  width: 100%;
  height: 50%;
  opacity: 0;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.slider .slides .slide-info h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 25px;
}
.slider .slides .slide-info .slide-text {
  background: linear-gradient(to bottom, rgba(36, 32, 27, 0.8) 70%, rgba(0, 0, 0, 0));
  color: #fff;
  line-height: 1.7;
  padding: 15px 35px;
  width: 470px;
  margin-left: -35px;
  margin-bottom: 15px;
  position: relative;
}
.slider .slides .slide-info .slide-text:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffc500;
  top: -2px;
  left: 0;
}
.slider .slides .slide-info .slide-i {
  width: 100%;
}
.slider .slides .slide-info p {
  margin-bottom: 0px;
}
.slider .slides .slide-info .slide-date {
  font-size: 14px;
  color: #38352f;
  font-family: Candara, Arial, sans-serif;
}
.slider .slides .slide-info .slide-date span {
  color: #38352f;
  font-size: 18px;
}
.slider .slides .active .slide-info {
  transition: all 2s ease;
  opacity: 1;
}
.slider .arrows {
  position: absolute;
  height: 33px;
  width: 33px;
  top: 125px;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
}
.slider .next {
  background: url(../images/arrow-right.png) no-repeat;
  right: 1px;
}
.slider .prev {
  background: url(../images/arrow-left.png) no-repeat;
  left: 1px;
}
.slider .navigation {
  position: absolute;
  bottom: 20px;
  left: 0px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.slider .navigation .dot {
  width: 2px;
  height: 2px;
  cursor: pointer;
  background-color: #fff;
  margin: 0px 10px;
}
.slider:hover .next,
.slider:hover .prev {
  opacity: 1;
  transition: all 0.7s ease;
}
.slider .navigation .active {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin: 0px 5px;
  background-color: #ffc103;
  position: relative;
}
.slider .navigation .active:after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 1px;
  border: 1px solid rgba(240, 71, 71, 0.3);
  box-shadow: 0px 0px 8px 0px rgba(240, 71, 71, 0.6);
}


.content-title{
  background: url(../images/content-title-bg.png) no-repeat;
  height: 74px;
  position: relative;
  z-index: 2;
  padding: 19px 39px 0px 39px;
}

.content-title a{
  color: #fff;
  font-size: 12px;
}

.content-title h1,
.content-title h2,
.content-title h3 {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 400;
}
.block {
  min-height: 110px;
}
.news-block {
  margin-top: -20px;
}

.news .news-img img {
  display: block;
}
.news .news-info {
  width: 100%;
  padding: 24px 20px;
}
.news .news-info p {
  line-height: 1.6;
  margin-left: -15px;
  height: 120px;
  overflow: hidden;
}

.news-date-page{
   font-family: Candara, Arial, sans-serif;
  color: #b4a814;;
  font-size: 14px; 
  padding-top: 20px;
}

.news-date-page span{
  color: #736c10;
}

.news-date {
  font-family: Candara, Arial, sans-serif;
  color: #903c3c;
  font-size: 14px;
}
.news-date {
  color:  #b4a814;
  margin-left: -15px;
  padding-top: 14px;
}

.news-i .button {
   border: 3px solid rgba(247, 230, 200, 0.27);
   box-shadow: 0em 0.5em 10px rgba(122,122,122,0.7);
}
.news-date span {
  color: #736c10;
}

.top-news-block .news-info {
  position: relative;
  z-index: 2;
}
.top-news-block .news-info h2 {
  border-bottom: 1px solid #612e0c;
  margin: 6px -20px 29px -15px;
  padding: 0px 20px 20px 0px;
}
.top-news {
  background-position: left;
  background-repeat: no-repeat;
  height: 304px;
  padding-left: 265px;
  position: relative;
}
.top-news:after {
  content: "";
  position: absolute;
  background: url(../images/fon-news-bg.png) no-repeat;
  width: 630px;
  height: 304px;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.pagination {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;

}
.page-numbers {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  border: 1px solid #d3c9b1;
  color: #8d7951;
  text-decoration: none !important;
  font-size: 12px;
  margin: 0px 7px;
}
.page-numbers.active {
  background: radial-gradient(#d3c846, #b4a814);
  color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.page-numbers:hover {
  background: radial-gradient(#e9e08b, #d1c876);
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.page-numbers.prev,
.page-numbers.next {
  background: radial-gradient(#d3c846, #b4a814);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  font-size: 0px;
}
.page-numbers.prev:hover,
.page-numbers.next:hover {
  background: radial-gradient(#e9e08b, #d1c876);
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}
.page-numbers.prev {
  margin: 0px 25px 0px 0px;
}
.page-numbers.next {
  margin: 0px 0px 0px 25px;
}
.page-numbers.prev:after {
  content: "";
  position: absolute;
  background: url(../images/prev-p.png) no-repeat;
  width: 12px;
  height: 16px;
  margin-left: -8px;
  margin-top: -7px;
  left: 50%;
  top: 50%;
  z-index: 2;
}
.page-numbers.prev:hover:after {
  background: url(../images/prev-p.png) no-repeat;
}
.page-numbers.next:after {
  content: "";
  position: absolute;
  background: url(../images/next-p.png) no-repeat;
  width: 12px;
  height: 16px;
  margin-right: -8px;
  margin-top: -7px;
  right: 50%;
  top: 50%;
}
.page-numbers.next:hover:after {
  background: url(../images/next-p.png) no-repeat;
}
/* Right Sidebar
-----------------------------------------------------------------------------*/
.status-block {
  position: relative;
  background: url(../images/status-bg.jpg) no-repeat;
  height: 120px;
  padding-left: 90px;
}

.status-block:after {
  content: "";
  position: absolute;
  background: url(../images/img-server-left.png) no-repeat;
  width: 106px;
  height: 154px;
  left: 0px;
  top: -16px;
}

.status-block:before {
  content: "";
  position: absolute;
  background: url(../images/img-server-right.png) no-repeat;
  width: 128px;
  height: 91px;
  right: -20px;
  top: -16px;
}

.server {
  width: 160px;
  font-size: 12px;
}
.server .server-name {
  color: #ffde00;
}
.server .status-online {
  color: #58c526;
  float: right;
}
.server .status-online b {
  font-weight: 400;
  color: #58c526;
}
.progress-bar {
  height: 16px;
  margin: 9px 0px 6px 0px;
  position: relative;
}
.progress-bar:after {
  content: "";
  position: absolute;
  background-color: #1a100a;
  width: 100%;
  height: 4px;
  top: 7px;
  left: 0px;
}
.progress-bar span {
  height: 16px;
  background: url(../images/line-server.png) repeat-x;
  display: block;
  position: relative;
  z-index: 1;
}
.desc {
  color: #a79376;
  font-size: 11px;
  text-decoration: underline;
}
.desc:hover {
  text-decoration: none;
}
.top-block.guild .top-number {
  width: 60px;
}
.top-block.guild .top-number img {
  margin-bottom: -2px;
}
.top-block.guild .top-name {
  width: 105px;
}
.top-block.guild .score {
  width: 60px;
}
.events {
  line-height: 1.2;
}
.events li {
  border-bottom: 1px dashed #62441b;
  padding: 15px 0px;
  transition: 0.5s;
}
.events li:hover {
  background: url(../images/fon-hover.jpg) repeat;
  margin: -1px -30px 1px -35px;
  padding: 15px 35px 15px 25px;
  box-shadow: 0em 0.5em 10px rgba(0, 0, 0, 0.5);
  color: #ffd562;
  z-index: 2;
  position: relative;
}

.events li:hover a {
  color: #ffd562;
}
.events li:hover span {
  color: #a79255;
}
.events li a {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}
.events li span {
  color: #bfb5ae;
  font-size: 11px;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer {
  height: 310px;
  position: relative;
}


.footer:after {
  content: "";
  position: absolute;
  width: 1200px;
  left: 0;
  top: 73px;
}
.footer-block-t {
  position: absolute;
  width: 1200px;
  bottom: 130px;
  left: 0;
}
.f-menu {
  display: flex;
}
.f-menu li {
  margin: 0px 25px;
}
.f-menu li:first-child {
  margin: 0px 25px 0px 0px;
}
.f-menu li:last-child {
  margin: 0px 0px 0px 25px;
}
.f-menu li a {
  text-transform: uppercase;
  color: #cdae8e;
  font-size: 12px;
  padding: 0px 10px;
  display: block;
}

.f-menu li a:hover{
  color: #b1a513;
}

.f-menu li a:active{
  color: #b1a513;
}

.footer-block-l {
  width: 915px;
}
.footer-block-r {
  width: 260px;
  text-align: center;
}
.soc-block a {
  padding-top: 15px;
  display: inline-block;
  margin: -19px -6px 3px;
  background: url(../images/fon-icon-ss.png) no-repeat;
  height: 61px;
  width: 61px;

}
.soc-block a:hover {
  -webkit-filter: brightness(140%); 
  filter: brightness(140%);
}
/*
.soc-block .facebook {
  background: url(../images/soc-icons.png) 7px 4px no-repeat;
}
.soc-block .twitter {
  background: url(../images/soc-icons.png) -32px 4px no-repeat;
}
.soc-block .twitch {
  background: url(../images/soc-icons.png) -72px 4px no-repeat;
}
.soc-block .youtube {
  background: url(../images/soc-icons.png) -113px 4px no-repeat;
}
*/

.footer-block-b {
  position: absolute;
  width: 1200px;
  top: 200px;
  padding-right: 30px;
}

.templstock:hover{
  -webkit-filter: brightness(120%); 
  filter: brightness(120%);
}

.copyright p {
  font-size: 12px;
  color: #e0f0fd;
  margin-bottom: 25px;
}
.copyright p a {
  color: #b1a513;
}
.copyright span {
  color: #8b8b8c;
  text-transform: uppercase;
  font-size: 10px;
}


.toTop-fon{
    background: url(../images/fon-all-news-bottom-bg.jpg)center bottom no-repeat;
    display: flex;
    justify-content: center;
    height: 65px;
    padding-top: 25px;
    position: absolute;
    bottom: -55px;
    width: 630px;
}

.toTop {
  background: url(../images/fon-circle.png) no-repeat;
  width: 98px;
  height: 98px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;

}

.toTop:hover {
  -webkit-filter: brightness(120%); 
  filter: brightness(120%);

}

.red-light {
  background: url(../images/red-light-top-bg.jpg) center top no-repeat, url(../images/red-light-bottom-bg.jpg) center bottom no-repeat, url(../images/red-light-bg.jpg) center repeat-y;
}
.red-dark {
  background: url(../images/red-dark-top-bg.jpg) center top no-repeat, url(../images/red-dark-bottom-bg.jpg) center bottom no-repeat, url(../images/red-dark-line-bg.jpg) center repeat-y;
}

.modalx-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
  overflow: auto;
  visibility: hidden;
  -webkit-transition: background 0.25s linear;
  -moz-transition: background 0.25s linear;
  transition: background 0.25s linear;
}
.modal_window {
  z-index: 9999;
  position: relative;
  cursor: auto;
  margin: 0 auto;
  display: none;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin-bottom: 20px;
  transform: scale(0.4);
  background: #000;
  width: 1000px;
  height: 540px;
  box-shadow: 0px 10px 63px 0px rgba(0, 0, 0, 0.5);
  background: url(../images/sidebar-bg.jpg);
}
.close-r {
  display: block;
  position: absolute;
  margin-top: -25px;
  width: 70px;
  height: 70px;
  right: -35px;
  background: url(../images/close_popup.png) no-repeat;
  filter: hue-rotate(50deg);
  -webkit-filter: hue-rotate(50deg);
}
.modal_window iframe {
  border: 0px;
}
/*# sourceMappingURL=style.css.map */
a.tag:focus,
a.tag:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}
.tag-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}
.tag-default {
    background-color: #818a91
}
.tag-default[href]:focus,
.tag-default[href]:hover {
    background-color: #687077
}
.tag-primary {
    background-color: #0275d8
}
.tag-primary[href]:focus,
.tag-primary[href]:hover {
    background-color: #025aa5
}
.tag-success {
    background-color: #5cb85c
}
.tag-success[href]:focus,
.tag-success[href]:hover {
    background-color: #449d44
}
.tag-info {
    background-color: #5bc0de
}
.tag-info[href]:focus,
.tag-info[href]:hover {
    background-color: #31b0d5
}
.tag-warning {
    background-color: #f0ad4e
}
.tag-warning[href]:focus,
.tag-warning[href]:hover {
    background-color: #ec971f
}
.tag-danger {
    background-color: #d9534f
}
.tag-danger[href]:focus,
.tag-danger[href]:hover {
    background-color: #c9302c
}
.jumbotron {
    /* padding: 2rem 1rem; */
    padding: 1px 1px;
    margin-bottom: 2rem;
    background-color: #eceeef;
    border-radius: .3rem
}
@media (min-width: 544px) {
    .jumbotron {
        /* padding: 4rem 2rem */
    }
}
.jumbotron-hr {
    border-top-color: #d0d5d8
}
.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0
}
.alert {
    padding: 15px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}
.alert-heading {
    color: inherit
}
.alert-link {
    font-weight: 700
}
.alert-dismissible {
    padding-right: 35px
}
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d0e9c6;
    color: #3c763d
}
.alert-success hr {
    border-top-color: #c1e2b3
}
.alert-success .alert-link {
    color: #2b542c
}
.alert-info {
    background-color: #d9edf7;
    border-color: #bcdff1;
    color: #31708f
}
.alert-info hr {
    border-top-color: #a6d5ec
}
.alert-info .alert-link {
    color: #245269
}
.alert-warning {
    background-color: #fcf8e3;
    border-color: #faf2cc;
    color: #8a6d3b
}
.alert-warning hr {
    border-top-color: #f7ecb5
}
.alert-warning .alert-link {
    color: #66512c
}
.alert-danger {
    background-color: #f2dede;
    border-color: #ebcccc;
    color: #a94442
}
.alert-danger hr {
    border-top-color: #e4b9b9
}
.alert-danger .alert-link {
    color: #843534
}
@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}
@-o-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}
@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}
.progress {
    display: block;
    width: 100%;
    height: 1rem;
    margin-bottom: 1rem
}
.progress[value] {
    background-color: #eee;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem
}
.progress[value]::-ms-fill {
    background-color: #0074d9;
    border: 0
}
.progress[value]::-moz-progress-bar {
    background-color: #0074d9;
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem
}
.progress[value]::-webkit-progress-value {
    background-color: #0074d9;
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem
}
.progress[value="100"]::-moz-progress-bar {
    border-bottom-right-radius: .25rem;
    border-top-right-radius: .25rem
}
.progress[value="100"]::-webkit-progress-value {
    border-bottom-right-radius: .25rem;
    border-top-right-radius: .25rem
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}
.embed-responsive-21by9 {
    padding-bottom: 42.857143%
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%
}
.embed-responsive-4by3 {
    padding-bottom: 75%
}
.embed-responsive-1by1 {
    padding-bottom: 100%
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2
}
.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5
}
button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}
.modal-open {
    overflow: hidden
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    -webkit-overflow-scrolling: touch
}
.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out, -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%)
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}
.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}
.modal-backdrop.fade {
    opacity: 0
}
.modal-backdrop.in {
    opacity: .5
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}
.modal-header::after {
    content: "";
    display: table;
    clear: both
}
.modal-header .close {
    margin-top: -2px
}
.modal-title {
    margin: 0;
    line-height: 1.5
}
.modal-body {
    position: relative;
    padding: 15px
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}
.modal-footer::after {
    content: "";
    display: table;
    clear: both
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}
@media (min-width: 544px) {
    .modal-dialog {
        max-width: 600px;
        margin: 30px auto
    }
    .modal-sm {
        max-width: 300px
    }
}
@media (min-width: 992px) {
    .modal-lg {
        max-width: 900px
    }
}
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}
.tooltip.in {
    opacity: .9
}
.tooltip.bs-tether-element-attached-bottom,
.tooltip.tooltip-top {
    padding: 5px 0;
    margin-top: -3px
}
.tooltip.bs-tether-element-attached-bottom .tooltip-arrow,
.tooltip.tooltip-top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}
.tooltip.bs-tether-element-attached-left,
.tooltip.tooltip-right {
    padding: 0 5px;
    margin-left: 3px
}
.tooltip.bs-tether-element-attached-left .tooltip-arrow,
.tooltip.tooltip-right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}
.tooltip.bs-tether-element-attached-top,
.tooltip.tooltip-bottom {
    padding: 5px 0;
    margin-top: 3px
}
.tooltip.bs-tether-element-attached-top .tooltip-arrow,
.tooltip.tooltip-bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}
.tooltip.bs-tether-element-attached-right,
.tooltip.tooltip-left {
    padding: 0 5px;
    margin-left: -3px
}
.tooltip.bs-tether-element-attached-right .tooltip-arrow,
.tooltip.tooltip-left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}
.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}
.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    padding: 1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem
}
.popover.bs-tether-element-attached-bottom,
.popover.popover-top {
    margin-top: -10px
}
.popover.bs-tether-element-attached-bottom .popover-arrow,
.popover.popover-top .popover-arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0
}
.popover.bs-tether-element-attached-bottom .popover-arrow::after,
.popover.popover-top .popover-arrow::after {
    bottom: 1px;
    margin-left: -10px;
    content: "";
    border-top-color: #fff;
    border-bottom-width: 0
}
.popover.bs-tether-element-attached-left,
.popover.popover-right {
    margin-left: 10px
}
.popover.bs-tether-element-attached-left .popover-arrow,
.popover.popover-right .popover-arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0
}
.popover.bs-tether-element-attached-left .popover-arrow::after,
.popover.popover-right .popover-arrow::after {
    bottom: -10px;
    left: 1px;
    content: "";
    border-right-color: #fff;
    border-left-width: 0
}
.popover.bs-tether-element-attached-top,
.popover.popover-bottom {
    margin-top: 10px
}
.popover.bs-tether-element-attached-top .popover-arrow,
.popover.popover-bottom .popover-arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: rgba(0, 0, 0, .25)
}
.popover.bs-tether-element-attached-top .popover-arrow::after,
.popover.popover-bottom .popover-arrow::after {
    top: 1px;
    margin-left: -10px;
    content: "";
    border-top-width: 0;
    border-bottom-color: #fff
}
.popover.bs-tether-element-attached-right,
.popover.popover-left {
    margin-left: -10px
}
.popover.bs-tether-element-attached-right .popover-arrow,
.popover.popover-left .popover-arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: rgba(0, 0, 0, .25)
}
.popover.bs-tether-element-attached-right .popover-arrow::after,
.popover.popover-left .popover-arrow::after {
    right: 1px;
    bottom: -10px;
    content: "";
    border-right-width: 0;
    border-left-color: #fff
}
.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: .2375rem .2375rem 0 0
}
.popover-title:empty {
    display: none
}
.popover-content {
    padding: 9px 14px
}
.popover-arrow,
.popover-arrow::after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}
.popover-arrow {
    border-width: 11px
}
.popover-arrow::after {
    content: "";
    border-width: 10px
}
.carousel {
    position: relative
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}
.carousel-inner>.carousel-item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}
.carousel-inner>.carousel-item>a>img,
.carousel-inner>.carousel-item>img {
    line-height: 1
}
.uppercase {
	text-transform: uppercase;
	padding-left: 0px!important;
}
.dropdown img {
	height: 22px;
	vertical-align:middle
}

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

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 175px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  height: 35px;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  line-height: unset;
}
.dropbtn {
	font-size: 12px;
}
.dropdown-content a:hover {background-color: #4c3a3a!important;}
.dropdown-content a:before {display: none!important;}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.page-hd {
	background-image: none!important
}

