body {
  width: 100%;
  background: url(../images/body-bg-top.jpg) center top no-repeat, 
  url(../images/body-bg-bottom.jpg) center bottom no-repeat;
  background-color: #000;
  font-family: 'Candara', Arial, sans-serif;
  font-size: 12px;
  color: #c6ccad;
  line-height: 1;
}

a {
  transition: all 0.3s ease;
  color: #efef67;
}
a:hover,
button:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  text-decoration: none;
}
p {
  margin-bottom: 15px;
}
h1,
h2,
h3 {
  color: #efef67;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: 'Candara', Arial, sans-serif;
}
h1 {
  font-size: 20px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
input,
textarea {
  background: rgba(255, 255, 255, 0.04);
  outline: 1px solid rgba(216, 122, 115, 0.1);
  border: none;
  color: #fff;
  padding: 10px 12px;
  position: relative;
}
button,
.button {
  transition: all 0.3s ease;
  cursor: pointer;
  background: linear-gradient(to bottom, #305107, #496b19);
  border-radius: 5px;
  background-size: cover;
  border: 1px solid #325308;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-family: 'Candara', Arial, sans-serif;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.7);
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.5);
}
button:hover,
.button:hover {
  -webkit-filter: hue-rotate(-35deg) brightness(140%) contrast(110%);
  filter: hue-rotate(-35deg) brightness(140%) contrast(110%);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
  color: #afafaf;
}
.button-big {
  height: 69px;
  line-height: 62px;
  width: 136px;
  padding: 0px;
  background: url(../images/button-big.png) no-repeat;
  border: none;
  padding-bottom: 8px;
}
.button-small {
  background-size: 67px 26px;
  height: 26px;
  line-height: 26px;
  width: 67px;
  padding: 0px;
  font-size: 12px;
  background: url(../images/button-small.png) no-repeat;
  border: none;
}
:focus {
  outline: none;
}
::-webkit-input-placeholder {
  color: #706f6f;
}
::-moz-placeholder {
  color: #706f6f;
}
:-moz-placeholder {
  color: #706f6f;
}
:-ms-input-placeholder {
  color: #706f6f;
}
.wrapper {
  width: 1280px;
  margin: 0 auto;
  position: relative;
}
.container {
  min-height: 600px;
  display: flex;
  justify-content: space-between;
}
/* Header
-----------------------------------------------------------------------------*/
.header {
  position: relative;
  height: 600px;
}
.top-menu {
  text-align: center;
  display: flex;
  justify-content: space-around;

}
.top-menu_baoshi {
  background: url(../images/baoshi.png) no-repeat ;
			padding:0px;
			margin:0px;
			background-repeat:no-repeat;
			background-position:50% 0%;
}

.top-menu .active a {
  background: rgba(255, 255, 230, 0.1);
  color: #ffffe6;
  text-shadow: 3px 3px 5px rgba(255, 255, 230, 0.3), -3px -3px 5px rgba(255, 255, 230, 0.3);
}
.top-menu .active a:before {
  content: "";
  background: #ffffa4;
  position: absolute;
  height: 1px;
  width: 100%;
  top: 0px;
  left: 0px;
  box-shadow: 0px 3px 5px 0px rgba(255, 255, 230, 0.6);
  opacity: 1;
}
.top-menu li {
  display: inline-block;
  position: relative;
}
.top-menu li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  padding: 0px 25px;
  display: block;
  line-height: 70px;
  position: relative;
}
.top-menu li a:before {
  content: "";
  opacity: 0;
  transition: all 0.5s ease;
}
.top-menu li ul {
  position: absolute;
  padding: 25px 0px;
  min-width: 180px;
  margin-top: 0px;
  background: url(../images/texture-bg.jpg);
  border: 1px solid #341f20;
  text-align: left;
  opacity: 0;
  left: -9999px;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.top-menu li ul li {
  display: block;
}
.top-menu li ul li a {
  line-height: 1.3;
  padding: 10px 25px;
}
.top-menu li ul li a:before {
  content: ">";
  opacity: 1;
  margin-right: 10px;
}
.top-menu li:hover a {
  background: rgba(255, 255, 230, 0.1);
  color: #ffffe6;
  text-shadow: 3px 3px 5px rgba(255, 255, 230, 0.3), -3px -3px 5px rgba(255, 255, 230, 0.3);
}
.top-menu li:hover a:before {
  content: "";
  background: #ffffa4;
  position: absolute;
  height: 1px;
  width: 100%;
  top: 0px;
  left: 0px;
  box-shadow: 0px 3px 5px 0px rgba(255, 255, 230, 0.6);
  opacity: 1;
}
.top-menu li:hover ul {
  opacity: 1;
  left: 0px;
  transition: opacity 0.5s ease;
}
.top-menu li:hover ul li a {
  color: #efef67;
  background: none;
}
.top-menu li:hover ul li a:hover {
  color: #ffffe6;
  text-shadow: 3px 3px 5px rgba(255, 255, 230, 0.3), -3px -3px 5px rgba(255, 255, 230, 0.3);
  background: rgba(142, 170, 91, 0.1);
  box-shadow: 0px 3px 5px -3px rgba(142, 170, 91, 0.5), 0px -3px 10px -3px rgba(142, 170, 91, 0.5);
}
.top-menu li:hover ul li a:before {
  content: ">";
  opacity: 1;
  margin-right: 10px;
  position: relative;
  background: none;
  box-shadow: none;
}
.logo a {
  position: absolute;
  display: block;
  left: 423px;
  top: 236px;
}
.logo a:hover {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}
.server-block {
  background: url(../images/server-bg.png);
  width: 342px;
  height: 151px;
  position: absolute;
  right: -45px;
  bottom: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.server-status {
  width: 160px;
  margin: 0px 75px 20px 0px;
}
.server-status.online .server-name span {
  background: url(../images/online-icon.png);
}
.server-status.online .progress-bg span {
  background: #95ff38;
  box-shadow: 0px 0px 5px 2px rgba(149, 255, 56, 0.3);
}
.server-status.online .server-online span {
  color: #95ff38;
}
.server-status.offline .server-name span {
  background: url(../images/offline-icon.png);
}
.server-status.offline .progress-bg span {
  background: #ff1313;
  box-shadow: 0px 0px 5px 2px rgba(255, 19, 19, 0.3);
}
.server-status.offline .server-online span {
  color: #ff1313;
}
.server-status .server-name {
  color: #fce180;
  font-size: 14px;
  text-transform: uppercase;
}
.server-status .server-name span {
  float: right;
  display: block;
  height: 16px;
  width: 16px;
  margin-top: -2px;
}
.server-status .progress-bg {
  margin: 10px 0px;
  background: #000;
  border: 1px solid rgba(198, 204, 173, 0.1);
  height: 3px;
}
.server-status .progress-bg span {
  height: 3px;
  display: block;
}
.server-status .server-online {
  font-size: 12px;
  color: #5b5d52;
}
/* Left Sidebar
-----------------------------------------------------------------------------*/
.left-sidebar {
  width: 290px;
}
.sidebar-title {
  height: 63px;
  line-height: 63px;
  font-size: 16px;
  text-transform: uppercase;
  color: #efef67;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
.sidebar-title:after {
  content: "";
  position: absolute;
  width: 316px;
  height: 62px;
}
.left-sidebar-title {
  background: url(../images/sidebar-title-l.jpg) no-repeat;
}
.left-sidebar-title:after {
  background: url(../images/sidebar-title-icon-l.png) no-repeat;
  right: -6px;
  top: -18px;
}
.right-sidebar-title {
  background: url(../images/sidebar-title-r.jpg) no-repeat;
}
.right-sidebar-title:after {
  background: url(../images/sidebar-title-icon-r.png) no-repeat;
  left: -6px;
  top: -18px;
}
.border {
  outline: 1px solid rgba(255, 255, 164, 0.1);
  background: #020801;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.box {
  border-top: 1px solid rgba(49, 56, 35, 0);
  border-bottom: 1px solid rgba(49, 56, 35, 0);
}
.box:hover {
  background: rgba(255, 255, 164, 0.15);
  border-top: 1px solid rgba(86, 90, 55, 0.5);
  border-bottom: 1px solid rgba(86, 90, 55, 0.5);
  box-shadow: 0px 4px 5px -1px rgba(86, 90, 55, 0.3), 0px -4px 5px -1px rgba(86, 90, 55, 0.3);
}
.login-block form {
  padding: 5px 0px 0px 10px;
}
.login-block form button {
  float: right;
  width: 106px;
  height: 113px;
  border: none;
  padding-bottom: 28px;
  padding-left: 19px;
  margin: -8px -4px 0px 0px;
  background: url(../images/login-button.png) no-repeat;
}
.login-block form input {
  width: 150px;
  margin-bottom: 9px;
}
.login-block a {
  text-decoration: none;
}
.login-block .lost-block {
  margin-top: 5px;
}
.p-block {
  padding: 0px 10px;
}
.best-players {
  margin: 20px 0px 3px 0px;
}
.best-players li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  padding: 0px 10px;
  font-size: 14px;
  color: #fff;
}
.best-players li .number {
  width: 18px;
}
.best-players li .ava {
  width: 45px;
  height: 40px;
}
.best-players li .nickname {
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 1px;
}
.best-players li .rating {
  width: 40px;
  color: #a5dc52;
  text-shadow: 3px 3px 10px rgba(165, 220, 82, 0.5), -3px -3px 10px rgba(165, 220, 82, 0.5);
}
.best-players li img {
  margin-top: 5px;
  width: 32px;
  height: 32px;
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 164, 0.3);
  border-radius: 50%;
}
.best-players li .button {
  padding: 0px;
}
.best-players li:hover span {
  color: #ffffa4;
}
.best-players li:hover .button {
  -webkit-filter: hue-rotate(-35deg) brightness(140%) contrast(110%);
  filter: hue-rotate(-35deg) brightness(140%) contrast(110%);
}
.guilds {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  padding: 15px 15px 12px 15px;
  color: #7f8876;
}
.guilds .guild-img {
  width: 55px;
}
.guilds .guild-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 164, 0.3);
}
.guilds .guild-text {
  width: 150px;
}
.guilds .guild-text .guild-text-n {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  color: #ffffff;
}
.guilds .guild-text span b {
  color: #a5dc52;
  text-decoration: underline;
  font-weight: normal;
}
.guilds .guild-comments {
  width: 50px;
  text-align: right;
  color: #a5dc52;
}
.guilds:hover .guild-text .guild-text-n {
  color: #ffffa4;
}
.guilds:hover .guild-text span b {
  color: #ffffa4;
}
.guilds:hover .guild-comments {
  color: #ffffa4;
  text-shadow: 3px 3px 7px rgba(165, 220, 82, 0.3), -3px -3px 7px rgba(165, 220, 82, 0.3), 3px -3px 7px rgba(165, 220, 82, 0.3), -3px 3px 7px rgba(165, 220, 82, 0.3);
}
.guilds:hover .comment-icon {
  -webkit-filter: hue-rotate(0deg) brightness(150%) contrast(200%);
  filter: hue-rotate(0deg) brightness(150%) contrast(200%);
}
.comment-icon {
  background: url(../images/comment-icon.png) no-repeat;
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-bottom: -4px;
  margin-right: 3px;
}
/* Middle
-----------------------------------------------------------------------------*/
.content {
  width: 680px;
  background: #020801;
  position: relative;
  outline: 1px solid rgba(255, 255, 164, 0.1);
  line-height: 1.3;
}

.contentxx {
  width: 980px;
  background: #020801;
  position: relative;
  outline: 1px solid rgba(255, 255, 164, 0.1);
  line-height: 1.3;
}

.contentxx-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(../images/contentxx-title.jpg) repeat-x;
  position: relative;
  padding: 0px 25px;
  height: 63px;
}

.tabs-news_show {
  padding: 10px 15px;
  margin-bottom: 15px;
}



.contentxx-title h2 {
  margin-bottom: 0px;
  text-transform: uppercase;
  font-weight: normal;
}

.content img {
  max-width: 630px;
}
.content .page {
  padding: 25px;
}
.content:before {
  content: "";
  position: absolute;
  top: -85px;
  right: -4px;
  background: url(../images/bush-img.png) no-repeat;
  width: 625px;
  height: 135px;
  z-index: 1;
}
.content-page {
  padding: 35px 25px;
  width: 630px;
}
.content-page img {
  max-width: 630px;
}
.content-page .content-title {
  margin: 0px -25px 25px -25px;
}
.content-page .content-title-top {
  margin: -35px -25px 25px -25px;
}
.content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(../images/content-title.jpg) repeat-x;
  position: relative;
  padding: 0px 25px;
  height: 63px;
}
.content-title h2 {
  margin-bottom: 0px;
  text-transform: uppercase;
  font-weight: normal;
}
.content-title a {
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.tabs-block {
  margin-bottom: 25px;
}
.tabs-buttons {
  padding: 0px 25px;
  border-bottom: 1px solid #3d421b;
  margin-bottom: 25px;
}
.tabs-buttons a {
  text-decoration: none;
  margin-right: 50px;
  text-transform: uppercase;
  font-size: 16px;
  color: #c6ccad;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 20px 0px;

}
.tabs-buttons .active {
  color: #efef67;
}
.tabs-buttons .active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  margin-left: -5px;
  width: 11px;
  height: 7px;
  background: url(../images/tab-icon.png) no-repeat;
}


.block,
.block-server,
.block-media {
  display: none;
}
.block.active,
.block-server.active,
.block-media.active {
  display: block;
}
.first-news {
  display: flex;
  margin-bottom: 25px;
}
.first-news .news-img {
  width: 283px;
  position: relative;
}
.first-news .news-img img {
  width: 283px;
  min-height: 202px;
  margin-bottom: -3px;
}
.first-news .news-img .date {
  position: absolute;
  bottom: 0px;
  width: calc(100% - 50px);
  background: linear-gradient(to right, rgba(28, 33, 18, 0.8), rgba(28, 33, 18, 0.1));
  height: 50px;
  line-height: 50px;
  padding: 0px 25px;
  font-size: 14px;
}
.first-news .news-img .date span {
  color: #efef67;
  font-size: 18px;
}
.first-news .news-f-text {
  width: 347px;
  background: linear-gradient(to right, rgba(28, 33, 18, 0.8) -10%, rgba(28, 33, 18, 0.1));
  padding: 25px;
  position: relative;
}
.first-news .news-f-text h2 {
  text-transform: uppercase;
  font-weight: normal;
}
.first-news .news-f-text .news-text {
  margin-bottom: 30px;
  font-family: Tahoma, Geneva, sans-serif;
}
.first-news .news-f-text .news-info {
  height: 50px;
  line-height: 50px;
  position: absolute;
  bottom: 0px;
  left: 25px;
  width: calc(100% - 50px);
}
.first-news .news-f-text .views,
.first-news .news-f-text .comments {
  font-size: 14px;
}
.first-news .news-f-text .views span,
.first-news .news-f-text .comments span {
  color: #a5dc52;
}
.first-news .news-f-text .views {
  margin-right: 10px;
}
.first-news .news-f-text .comments {
  margin-left: 10px;
}
.first-news .news-f-text .read-more {
  float: right;
  padding: 0px;
  border: none;
}
.news {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  border-bottom: 1px dashed rgba(90, 87, 90, 0.1);
  font-family: Tahoma, Geneva, sans-serif;
  padding: 15px 25px 17px 25px;
}
.news a {
  float: right;
  margin-left: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}
.news span {
  color: #ffffa4;
}
.news:hover {
  background: rgba(255, 255, 164, 0.15);
  border-top: 1px solid rgba(86, 90, 55, 0.5);
  border-bottom: 1px solid rgba(86, 90, 55, 0.5);
  box-shadow: 0px 4px 5px -1px rgba(86, 90, 55, 0.3), 0px -4px 5px -1px rgba(86, 90, 55, 0.3);
}
.news:hover a {
  opacity: 1;
}
.block-server a {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  border-bottom: 1px dashed rgba(90, 87, 90, 0.1);
  display: block;
  padding: 15px 25px 15px 35px;
  text-decoration: none;
  color: #bec4a6;
  position: relative;
}
.block-server a:before {
  border: 5px solid transparent;
  border-left-color: #bec4a6;
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -5px;
  content: '';
}
.block-media.active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block-media.active a {
  display: block;
  width: 334px;
  height: 200px;
  margin-bottom: 15px;
  position: relative;
}
.block-media.active a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.6);
}
.block-media.active a:hover {
  transform: scale(1.1);
  z-index: 1;
}
.block-media.active a:hover:after {
  background: url(../images/play-icon.png) center no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
}
.block-media.active img {
  width: 334px;
  height: 200px;
}
/* Right Sidebar
-----------------------------------------------------------------------------*/
.right-sidebar {
  width: 290px;
}
.shop {
  height: 66px;
  padding: 16px 0px 16px 20px;
  position: relative;
}
.shop h3 {
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 150px;
  font-weight: normal;
}
.shop p {
  margin-bottom: 7px;
  color: #bec4a6;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 150px;
}
.shop:after {
  transition: all 0.5s ease;
}
.shop:hover:after {
  right: -40px;
}
.shop-one {
  background: url(../images/shop-bg.jpg) 0px 0px no-repeat;
}
.shop-one:after {
  content: "";
  background: url(../images/hero-one.png) no-repeat;
  width: 141px;
  height: 111px;
  position: absolute;
  right: -10px;
  bottom: -4px;
}
.shop-two {
  background: url(../images/shop-bg.jpg) 0px -98px no-repeat;
}
.shop-two:after {
  content: "";
  background: url(../images/hero-two.png) no-repeat;
  width: 176px;
  height: 111px;
  position: absolute;
  right: -15px;
  bottom: 0px;
}
.shop-three {
  background: url(../images/shop-bg.jpg) 0px -196px no-repeat;
}
.shop-three:after {
  content: "";
  background: url(../images/hero-three.png) no-repeat;
  width: 181px;
  height: 114px;
  position: absolute;
  right: -28px;
  bottom: -4px;
}
.fast-links a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 25px;
  color: #fff;
}
.fast-links a:before {
  content: ">";
  margin-right: 8px;
}
.fast-links a:hover {
  color: #ffffa4;
}
.vote-f-us-block {
  padding-bottom: 20px;
}
.vote {
  height: 89px;
  width: 240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #ffffa4;
  text-decoration: none;
  margin-top: 10px;
}
.vote span {
  display: block;
  width: 100%;
  padding: 10px 15px;
  transition: all 0.4s ease;
  background: linear-gradient(to right, rgba(152, 197, 116, 0.3), rgba(152, 197, 116, 0.05));
}
.vote:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 15px 0px rgba(142, 170, 91, 0.3);
}
.vote-title {
  margin-bottom: 20px;
}
.vote-one {
  background: url(../images/vote-bg-1.jpg) no-repeat;
}
.vote-two {
  background: url(../images/vote-bg-2.jpg) no-repeat;
}
.vote-three {
  background: url(../images/vote-bg-3.jpg) no-repeat;
}
/* Footer
-----------------------------------------------------------------------------*/
.footer {
  height: 330px;
  position: relative;
}
.block-top {
  border-bottom: 1px solid rgba(72, 175, 22, 0.15);
  min-height: 100px;
  margin-bottom: 50px;
  position: relative;
}
.out-nav-block {
  display: flex;
  justify-content: flex-end;
  margin-right: 15px;
  margin-bottom: 15px;
}
.soc-block {
  margin-right: 30px;
}
.soc-block a {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  width: 28px;
  text-align: center;
  border: 1px solid #1b1f11;
  margin-right: 3px;
  border-radius: 50%;
}
.soc-block a:nth-child(1) {
  background: url(../images/soc-icons.png) -3px 5px no-repeat;
  background-color: #020801;
}
.soc-block a:nth-child(2) {
  background: url(../images/soc-icons.png) -33px 5px no-repeat;
  background-color: #020801;
}
.soc-block a:nth-child(3) {
  background: url(../images/soc-icons.png) -64px 5px no-repeat;
  background-color: #020801;
}
.soc-block a:hover {
  box-shadow: 0px 3px 5px -2px rgba(170, 221, 89, 0.2), 0px -3px 5px -2px rgba(170, 221, 89, 0.2);
}
.lang-block {
  position: relative;
  padding-top: 8px;
}
.hide,
.hide + label ~ div {
  display: none;
}
.hide + label {
  margin: 0;
  padding: 0;
  color: #ffffa4;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  position: relative;
  transition: all 0.4s ease;
}
.hide + label span {
  color: #fff;
}
.hide + label img {
  border: 1px solid rgba(152, 198, 80, 0.4);
  margin: 0px 0px -3px 5px;
}
.hide + label:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}
.hide:checked + label {
  border-bottom: 0;
}
.hide:checked + label + div {
  display: block;
  position: absolute;
  background: url(../images/texture-bg.jpg);
  border: 1px solid #341f20;
  padding: 18px 0px;
  min-width: 180px;
  animation: fade ease-in 0.5s;
  margin: 7px 0px 0px -53px;
  z-index: 2;
}
.hide:checked + label + div:before {
  border: 6px solid transparent;
  border-bottom-color: #341f20;
  position: absolute;
  left: 40px;
  bottom: 100%;
  content: '';
}
.hide:checked + label + div span {
  display: block;
  color: #fff;
  font-size: 12px;
  padding: 6px 25px 6px 35px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hide:checked + label + div span:hover {
  color: #ffffa4;
  background: rgba(142, 170, 91, 0.1);
  box-shadow: 0px 3px 5px -3px rgba(142, 170, 91, 0.5), 0px -3px 10px -3px rgba(142, 170, 91, 0.5);
}
.hide:checked + label + div span:hover:before {
  content: ">";
  position: absolute;
  margin-left: -15px;
}
.hide + label:before {
  content: "";
  border: 4px solid transparent;
  border-top-color: #ffffa4;
  position: absolute;
  left: -10px;
  top: 3px;
  transform: rotate(-90deg);
}
.hide:checked + label:before {
  content: "";
  transform: rotate(0deg);
  left: -12px;
  top: 6px;
}
#toTop {
  background: url(../images/to-top.png) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: -20px;
  cursor: pointer;
  transition: all 0.4s ease;
}
#toTop:hover {
  -webkit-filter: brightness(150%);
  filter: brightness(150%);
}
.f-logo {
  position: absolute;
  left: 12px;
  bottom: 91px;
}
.f-menu {
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
}
.f-menu .active a {
  color: #fffad1;
}
.f-menu li {
  display: inline-block;
  position: relative;
}
.f-menu li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0px 24px;
  display: block;
  line-height: 69px;
  position: relative;
  color: #efef67;
}
.f-menu li a:hover {
  color: #fffad1;
}
.f-menu li a:before {
  content: "";
  opacity: 0;
  transition: all 0.5s ease;
}
.f-menu li ul {
  position: absolute;
  padding: 15px 0px;
  min-width: 180px;
  margin-top: -10px;
  background: url(../images/texture-bg.jpg);
  border: 1px solid #341f20;
  text-align: left;
  opacity: 0;
  left: -9999px;
  transition: opacity 0.3s ease;
  bottom: 50px;
}
.f-menu li ul li {
  display: block;
}
.f-menu li ul li a {
  line-height: 1.3;
  padding: 5px 25px;
}
.f-menu li ul li a:before {
  content: ">";
  opacity: 1;
  margin-right: 10px;
}
.f-menu li ul:before {
  border: 8px solid transparent;
  border-top-color: #341f20;
  position: absolute;
  left: 27%;
  top: 100%;
  content: '';
}
.f-menu li:hover ul {
  opacity: 1;
  left: 0px;
  transition: opacity 0.5s ease;
}
.f-menu li:hover ul li a:hover {
  color: #ffffa4;
  background: rgba(142, 170, 91, 0.1);
  box-shadow: 0px 3px 5px -3px rgba(142, 170, 91, 0.5), 0px -3px 10px -3px rgba(142, 170, 91, 0.5);
}
.f-menu li:hover ul li a:before {
  content: ">";
  opacity: 1;
  margin-right: 10px;
  position: relative;
  background: none;
  box-shadow: none;
}
.copy {
  text-align: center;
  color: #bec4a6;
  line-height: 1.3;
  font-family: Tahoma, Geneva, sans-serif;
}
.copy a {
  text-decoration: none;
  color: #48af16;
}
.templstock {
  position: absolute;
  font-size: 13px;
  right: 0px;
}
.templstock a {
  color: #48af16;
}

.pass {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  border-bottom: 1px dashed rgba(90, 87, 90, 0.1);
  font-family: Tahoma, Geneva, sans-serif;
  padding: 15px 25px 17px 25px;
}

.pass:hover {
  background: rgba(255, 255, 164, 0.15);
  border-top: 1px solid rgba(86, 90, 55, 0.5);
  border-bottom: 1px solid rgba(86, 90, 55, 0.5);
  box-shadow: 0px 4px 5px -1px rgba(86, 90, 55, 0.3), 0px -4px 5px -1px rgba(86, 90, 55, 0.3);
}

.ranking {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  border-bottom: 1px dashed rgba(90, 87, 90, 0.1);
  font-family: Tahoma, Geneva, sans-serif;
  padding: 15px 25px 17px 25px;
}

.ranking:hover {
  background: rgba(255, 255, 164, 0.15);
  border-top: 1px solid rgba(86, 90, 55, 0.5);
  border-bottom: 1px solid rgba(86, 90, 55, 0.5);
  box-shadow: 0px 4px 5px -1px rgba(86, 90, 55, 0.3), 0px -4px 5px -1px rgba(86, 90, 55, 0.3);
}




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