@font-face {
    font-family: 'Arimo Stalker';
    src: url('/theme_r/css/font/Arimo-Stalker.eot');
    src: url('/theme_r/css/font/Arimo-Stalker.eot?#iefix') format('embedded-opentype'),
		url('/theme_r/css/font/ArimoStalker-Regular.woff2') format('woff2'),
        url('/theme_r/css/font/ArimoStalker-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body {
    position: relative;
    overflow-x: hidden;
    background-color: #CFD8DC;
	font-family: 'Arimo Stalker';
}
body, html {
	min-height:calc(100vh - 110px) !important;
}


:root {
  --colors-bg--300: #1e181e;
  --colors-bg--500: #191a1e;
  --colors-primary--200: #f4908b;
  --colors-primary--300: #ea6f69;
  --colors-primary--500: #e8615a;
  --colors-primary--600: #4a5265;
  --colors-primary--700: #727f9a;
  --colors-primary--800: #451717;
  --colors-primary--900: #3c181a;
  --colors-secondary--500: #2be4ea;
  --colors-secondary--900: #295459;
  --colors-tertiary--500: #fed33f;
  --colors-on_bg--500: var(--colors-primary--500);
  --colors-on_tertiary--500: var(--colors-bg--300);
  --colors-on_primary--500: var(--colors-primary--200);
  --colors-active--500: #2bfea0;
  --fonts-primary: "Rajdhani", sans-serif;
  --fonts-secondary: "VT323", monospace;
  --ui-glow: 0 0 5px var(--colors-primary--500);
  --ui-glow-borders--500: 0 0 3px var(--colors-primary--500);
  --ui-glow-color: currentcolor;
  --ui-glow-text: -9px -6px 40px var(--ui-glow-color);
  --ui-glow-text--dimmed: -9px -6px 40px var(--ui-glow-color);
  --ui-elevation--1: 2px 2px 0 rgba(0, 0, 0, 0.8);
  --ui-notch-amount: 16px;
  --ui-notch-hypotenuse: 22.627416px; /* hypothenuse of --ui-notch-amount */
  --ui-notch-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--ui-notch-amount) + 2px),
    calc(100% - var(--ui-notch-amount) + 2px) 100%,
    0 100%
  );
  --ui-notch-path-2: polygon(
    calc(100% - var(--ui-notch-amount) + 2px) 0,
    100% calc(0% + var(--ui-notch-amount) - 2px),
    100% 100%,
    0 100%,
    0 0
  );
  --ui-button-1: polygon(
    100% 0,
    100% 100%,
    calc(0% + var(--ui-notch-amount)) 100%,
    0 calc(100% - var(--ui-notch-amount)),
    0 0
  );
  --ui-tooltip: polygon(
    10px 0,
    100% -3px,
    100% calc(100% - var(--ui-notch-amount) + 2px),
    calc(100% - var(--ui-notch-amount) + 2px) 100%,
    5px 100%,
	5px 5px
  );
  --ui-tooltip-ald: polygon(
    10px 0,
    100% -3px,
    100% calc(100% - var(--ui-notch-amount) + 2px),
    calc(100% - var(--ui-notch-amount) + 2px) 100%,
    5px 100%,
    5px calc(100% - 20px),
    0px calc(100% - 15px),
    5px calc(100% - 10px),
	5px 5px
  );
  --ui-tooltip-alt: polygon(
    10px 0,
    100% -3px,
    100% calc(100% - var(--ui-notch-amount) + 2px),
    calc(100% - var(--ui-notch-amount) + 2px) 100%,
    5px 100%,
    5px 20px,
    0px 15px,
    5px 10px,
	5px 5px
  );
  
  --ui-tooltip-nalt: polygon(
    10px 0,
    100% -3px,
    100% calc(100% - var(--ui-notch-amount) + 2px),
    calc(100% - var(--ui-notch-amount) + 2px) 100%,
    5px 100%,
	5px 5px
  );
  --ui-tooltip-an-bg: polygon(
  calc(100% - 30px) 100%,
  calc(100% - 13px) calc(100% - 19px),
  100% calc(100% - 19px),
  100% 10px,
  calc(100% - 10px) 0%,
  10px 0%,
  6px 4px,
  0% 4px,
  0% calc(100% - 4px),
  6px calc(100% - 4px),
  10px 100%);
  --ui-tooltip-an-but: polygon(
  calc(100% - 17px) 100%,
  100% 0%,
  17px 0%,
  0% 100%);
  --ui-tooltip-an-but-bg: polygon(
  calc(100% - 18px) calc(100% - 1px),
  calc(100% - 2px) 1px,
  18px 1px,
  2px calc(100% - 1px));
  --ui-tooltip-an-butc: polygon(
  100% 100%,
  calc(100% - 12px) 0%,
  0% 0%,
  12px 100%);
  --ui-tooltip-an-butc-bg: polygon(
  calc(100% - 2px) calc(100% - 1px),
  calc(100% - 12px) 1px,
  2px 1px,
  12px calc(100% - 1px));
}
/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: rgba(110,110,110, 0.8);
  color: black;
  z-index: 1000; /* absurdity 2 */
    clip-path: var(--ui-tooltip);
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: rgba(110,110,110, 0.8);
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: rgba(189,189,224, 1);
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: calc(50% - 4px);
  border-right-width: 0;
  border-left-color: rgba(189,189,224, 1);
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: rgba(189,189,224, 1);
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.container{
    background: #171514;
    width: 80%;
	max-width:80%;
    height: calc(100vh - 140px);
    position: relative;
    overflow: hidden;
    padding: 0px;
    min-height: 200px;
	padding:8px;
	color:#c6baaa;
}

.footer{
	width:100%;
	height: 50px;
    bottom: 0px;
    position: absolute;
	background-color:#171514;
}
 .w_tl, .w_tr{
	background-image:url('/theme_r/img/win_01.png');
	background-repeat: no-repeat;
	background-position:0px 0px;
	width:16px;
	height:8px;
	position:absolute;
	top:0px;
	left:0px;
}
 .w_tr{
	background-position:0px -8px;
	left:unset;
	right:0px;
}
 .w_bl, .w_br{
	background-image:url('/theme_r/img/win_01.png');
	background-repeat: no-repeat;
	background-position:0px -16px;
	width:16px;
	height:9px;
	position:absolute;
	bottom:0px;
	left:0px;
}
 .w_br{
	background-position:0px -25px;
	left:unset;
	right:0px;
}
 .w_tm, .w_bm {
    position: absolute;
    background-image:url('/theme_r/img/win_topbot.png');
    background-repeat: repeat-x;
	top:0px;
    left: 16px;
    width: calc(100% - 32px);
    height: 8px;
}
 .w_bm {
	background-position:0px -8px;
	top:unset;
	bottom:0px;
    height: 9px;
}

.w_sl, .w_sr{
	position:absolute;
	background-image:url('/theme_r/img/win_sides.png');
	background-repeat: repeat-y;
	left:0px;
	top:8px;
	width:8px;
	height:calc(100% - 16px);
}
 .w_sr{
	background-position:-8px 0px;
	right:0px;
	left:unset;
}
 .in_menu{
	position:absolute;
	background-image:url('/theme_r/img/sep_ver.png');
	background-repeat: repeat-y;
	background-position: right;
	left:0px;
	top:8px;
	width:25%;
	min-width:250px;
	height:calc(100% - 16px);
	padding: 20px 6px 0px 8px;
}
.in_menu a,.in_menu label{
	cursor:pointer;
	text-decoration:none;
	display: grid;
	width:100%;
	padding: 10px 30px 10px 30px;
}
.in_menu a.menu_active,.in_menu label.menu_active{
	border: 1px solid #824f08;
	border-left: 4px solid #824f08;
	border-right: 4px solid #824f08;
}
.in_menu a.menu_active .a_title,.in_menu label.menu_active .a_title{
	color:#bc6901 !important;
}
.in_menu a .a_title,.in_menu label .a_title{
	font-size: 24px;
	color:#bcb1a1;
	line-height:24px;
}
.in_menu a .a_desc,.in_menu label .a_desc{
	font-size: 10px;
	color:#6e6e6e;
	line-height:10px;
}
.menu_show,.menu_showS{
	display:grid !important;
}
.menu_hide{
	display:none !important;
	height:54px;
}
.menu_hideS{
	display:none !important;
	height:54px;
}
.menu_hideE{
	display:none !important;
	height:54px;
}
.tarrow,.darrow{
	width: 25%;
    text-align: center;
    height: 20px;
    position: absolute;
    font-size: 30px;
    left: 0px;
	cursor:pointer;
	display:none;
}
.darrow{
    bottom: 20px;
}
.tarrow{
    top: 0px;
}
.main_menu{
	width:100%;
	height:90px;
}
.main_menu .mm_r{
	background-image:url('/theme_r/img/back_01.png');
	background-repeat: no-repeat;
	background-position:0px 0px;
	width:415px;
	height:90px;
	position:absolute;
	top:0px;
	left:0px;
}

.main_menu .mm_l{
	background-image:url('/theme_r/img/back_01.png');
	background-repeat: no-repeat;
	background-position:0px -90px;
	width:298px;
	height:90px;
	position:absolute;
	top:0px;
	right:0px;
}
.main_menu .mm_b{
	background-image:url('/theme_r/img/back_02.png');
	background-repeat: repeat-x;
	width:calc(100% - 298px - 415px);
	height:90px;
	position:absolute;
	left:415px;
}

.main_menu .mm_menu{
	position: relative;
    z-index: 1;
    height: 52px;
    top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu .mm_menu a{
	color:#6e6e6e;
	text-decoration:none;
	font-weight: bold;
    font-size: 22px;
    padding-right: 30px;
    padding-left: 30;
}
.main_menu .mm_menu a:hover{
	color:#bcb1a1;
}
.main_menu .mm_menu .active{
	color:#bcb1a1;
	background-image:url('/theme_r/img/mm_active.png');
	background-repeat: no-repeat;
    height: 52px;
    margin-top: 20px;
    background-position: center;
    background-position-y: 15px;
}
#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#content{
	margin-top:0px;
    height: calc(100% - 110px);
    overflow: scroll;
    scroll-snap-type: y mandatory;
    scroll-snap-type: mandatory;
    -ms-scroll-snap-type: mandatory;
    -webkit-scroll-snap-type: mandatory;
    -webkit-scroll-snap-destination: 0% 0%;
    -webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	
}

#content::-webkit-scrollbar {
    display: none;
}

.container .cont,#desc {
    scrollbar-width: auto;
    scrollbar-color: #6e6e6e transparent;
  }

  /* Chrome, Edge, and Safari */
.container .cont::-webkit-scrollbar,#desc::-webkit-scrollbar {
    width: 8px;
	cursor:pointer;
  }

.container .cont::-webkit-scrollbar-track,#desc::-webkit-scrollbar-track {
    background-color: transparent;
  }

.container .cont::-webkit-scrollbar-thumb,#desc::-webkit-scrollbar-thumb {
    background-color: #6e6e6e;
    border-radius: 4px;
    border: 0px;
}
.container .cont::-webkit-scrollbar-thumb:hover,#desc::-webkit-scrollbar-thumb:hover {
  background: #be512d;
}
.container .cont::-webkit-scrollbar-thumb:active,#desc::-webkit-scrollbar-thumb:active {
  background: #b24c2a;
}

#clock {
    align-items: center;
	height: 18px;
    width: 50px;
    font-size: 14px;
    z-index: 1;
    position: absolute;
    top: 8px;
    right: 10px;
	color:#c1b8a7;
}

#city {
    position: absolute;
    z-index: 1;
	color:#c1b8a7;
    font-size: 14px;
	height: 18px;
    top: 8px;
    left: 10px;
}

.prod_item{
	flex-basis: 20%;
    position: relative;
    width: 20%;
    height: 0;
    padding-bottom: 20%;
	background:transparent;
	display:flex;
	overflow: hidden;
    align-items: center;
    justify-content: center;
	overflow:visible;
}
.cprod_item{
	flex-basis: 100px;
    position: relative;
    width: 100px;
    height: 100px;
	background:transparent;
	display:flex;
	overflow: hidden;
    align-items: center;
    justify-content: center;
	overflow:visible;
}
.mprod_item{
	flex-basis: 200px;
    position: relative;
    width: 200px;
    height: 200px;
	background:transparent;
	display:flex;
	overflow: hidden;
    align-items: center;
    justify-content: center;
	overflow:visible;
}
.prod_back{
	width: 100%;
    height: 100%;
	background-image:url('/theme_r/img/item_win.png');
	background-size: cover;
	background-repeat: no-repeat;
	display:block;
	position:absolute;
	top:0px;
	left:0px;
	filter: drop-shadow(0 5px 10px #000);
}
.prod_item img,.mprod_item img{
	display: block;
    width: 100%;
    height: fit-content;
	margin-top: 100%;
}
.mprod_item img{
	display: block;
    width: 100%;
    height: fit-content;
	margin: 0;
}
.cprod_item img{
	display: block;
    width: 100%;
    height: fit-content;
	margin: 0;
}
.not{
	flex-basis: 222px;
	width: 222px;
	padding-bottom: 222px;
}
@media (min-width: 1000px) { /* Example breakpoint for wider screens */
	.prod_item:not(.not) {
		flex-basis: 25%; /* 6 items per row */
		padding-bottom: 25%;
	}
}
@media (min-width: 1800px) { /* Example breakpoint for wider screens */
	.prod_item:not(.not) {
		flex-basis: 20%; /* 6 items per row */
		padding-bottom: 20%;
	}
}
@media (min-width: 2200px) { /* Example breakpoint for wider screens */
	.prod_item:not(.not) {
		flex-basis: 16.66%; /* 6 items per row */
		padding-bottom: 16.66%;
	}
}
@media (min-width: 2600px) { /* Example breakpoint for wider screens */
	.prod_item:not(.not) {
		flex-basis: 14.28%; /* 6 items per row */
		padding-bottom: 14.28%;
	}
}
.prodcont{
	width: 100%;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    height: fit-content;
    max-height: calc(100% - 34px);
    overflow: auto;
    overflow-x: hidden;
	top:34px;
}
.prodconst{
	width: 100%;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    height: fit-content;
    max-height: calc(100% - 205px);
    overflow: auto;
    overflow-x: hidden;
	top:205px;
}

#cartcont{
    display: flex;
    flex-wrap: wrap;
	background-image: url(/theme_r/img/sep_ver.png);
    background-repeat: repeat-y;
    background-position: left;
	float: right;
    width: calc(100% - 213px);
    position: absolute;
    top: 5px;
    right: 13px;
    height: calc(100% - 10px);
	padding-left: 5px;
	overflow:auto;
}
.pbottom {
	bottom:31px !important;
}
.pright1 {
	right:35px !important;
}
.pright2 {
	right:66px !important;
}
.pright3 {
	right:97px !important;
}
.persons{
	width: 196px;
    top: -2px;
    position: absolute;
    right: 0px;
    height: 25px;
}
.persons .svg_pica {
	top:4px;
	cursor:default;
}
.persons .svg_ext {
	top:4px;
	cursor:default;
}
.persons .svg_bipod {
	top:4px;
	cursor:default;
}
.persons .svg_checkmark {
	top:4px;
	cursor:default;
}
.dark{
	box-shadow: -10px -10px 0 -8px #454545, 10px -10px 0 -8px #454545, -10px 10px 0 -8px #454545, 10px 10px 0 -8px #454545 !important;
}
.green{
	box-shadow: -10px -10px 0 -8px #90EE90, 10px -10px 0 -8px #90EE90, -10px 10px 0 -8px #90EE90, 10px 10px 0 -8px #90EE90 !important;
}
.persons .svg_ext:hover{
	filter: none !important;
	box-shadow: -10px -10px 0 -8px #6e6e6e, 10px -10px 0 -8px #6e6e6e, -10px 10px 0 -8px #6e6e6e, 10px 10px 0 -8px #6e6e6e !important;
}
.persons .svg_pica:hover{
	filter: none !important;
	box-shadow: -10px -10px 0 -8px #6e6e6e, 10px -10px 0 -8px #6e6e6e, -10px 10px 0 -8px #6e6e6e, 10px 10px 0 -8px #6e6e6e !important;
}
.persons .svg_bipod:hover{
	filter: none !important;
	box-shadow: -10px -10px 0 -8px #6e6e6e, 10px -10px 0 -8px #6e6e6e, -10px 10px 0 -8px #6e6e6e, 10px 10px 0 -8px #6e6e6e !important;
}
.persons .svg_checkmark:hover{
	filter: none !important;
	box-shadow: -10px -10px 0 -8px #6e6e6e, 10px -10px 0 -8px #6e6e6e, -10px 10px 0 -8px #6e6e6e, 10px 10px 0 -8px #6e6e6e !important;
}

.persons .dark:hover{
	filter: none !important;
	box-shadow: -10px -10px 0 -8px #454545, 10px -10px 0 -8px #454545, -10px 10px 0 -8px #454545, 10px 10px 0 -8px #454545 !important;
}

.persons .green:hover{
	filter: none !important;
	box-shadow: -10px -10px 0 -8px #90EE90, 10px -10px 0 -8px #90EE90, -10px 10px 0 -8px #90EE90, 10px 10px 0 -8px #90EE90 !important;
}
.vertical-text-rl {
    transform: rotate(270deg);
    transform-origin: left top;
    white-space: nowrap;
    position: absolute;
    right: 106px;
    bottom: 23px;
}
.svg_cart,.svg_person,.svg_person-remove,.svg_save,.svg_info,.svg_resize,.svg_settings,.svg_exit,.svg_forward,.m_balance,.c_balance,.c_type,.c_count,.svg_arrow,.svg_checkmark,.svg_trash,.svg_sidor,.svg_number1,.svg_left,.svg_right,.svg_bar,.svg_group,.m_input,.steam_input,.svg_house,.p_tier,.svg_mailbox,.svg_pica,.svg_ext,.svg_bipod,.svg_number2{
	cursor:pointer;
	display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 4px;
    z-index: 2000;
	box-shadow: -10px -10px 0 -8px #6e6e6e, 10px -10px 0 -8px #6e6e6e, -10px 10px 0 -8px #6e6e6e, 10px 10px 0 -8px #6e6e6e;
}
.steam {
    background: url(/theme_r/img/svg/steam.svg);
    background-size: cover;
    height: 24px;
    width: 100px;
    position: absolute;
    right: 20px;
	cursor:pointer;
	z-index:1;
	font-weight:bold;
	color:#6e6e6e;
    padding-top: 10px;
    padding-left: 54px;
	top: 46px;
}
.steam:hover{
	filter: brightness(0) saturate(100%) invert(87%) sepia(9%) saturate(483%) hue-rotate(356deg) brightness(84%) contrast(81%);
	text-decoration:none;
}
.svg_cart {
	background:url('/theme_r/img/svg/cart.svg');
	background-size: cover;
	/*right:4px;*/
}
.svg_save {
	background:url('/theme_r/img/svg/save.svg');
	background-size: cover;
	z-index:100;
	/*right:4px;*/
}
.svg_person {
	background:url('/theme_r/img/svg/person.svg');
	background-size: cover;
	z-index:100;
	/*right:4px;*/
}
.svg_person-remove {
	background:url('/theme_r/img/svg/person-remove.svg');
	background-size: cover;
	z-index:100;
	/*right:4px;*/
}
.svg_house {
	background:url('/theme_r/img/svg/house.svg');
	background-size: cover;
}
.svg_info {
	background:url('/theme_r/img/svg/info.svg');
	background-size: cover;
	/*right:35px;*/
}
.svg_forward {
	background:url('/theme_r/img/svg/forward.svg');
	background-size: cover;
    height: 22px;
    width: 22px;
}
.svg_resize {
	background:url('/theme_r/img/svg/resize.svg');
	background-size: cover;
	/*right:66px;*/
}
.svg_trash {
	background:url('/theme_r/img/svg/trash.svg');
	background-size: cover;
	/*right:66px;*/
}
.svg_sidor {
	background:url('/theme_r/img/svg/sidor.svg');
	background-size: cover;
	/*right:66px;*/
}
.svg_number1, .svg_number2{
	text-align:center;
	line-height:30px;
	font-weight:bold;
	color:#6e6e6e;
}
.svg_mailbox {
	background:url('/theme_r/img/svg/mailbox.svg');
	background-size: cover;
	/*right:66px;*/
}
.svg_left {
	background:url('/theme_r/img/svg/left.svg');
	background-size: cover;
}
.svg_right {
	background:url('/theme_r/img/svg/right.svg');
	background-size: cover;
}
.svg_bar {
	background:url('/theme_r/img/svg/bar.svg');
	background-size: cover;
}
.svg_group {
	background:url('/theme_r/img/svg/group.svg');
	background-size: cover;
}
.svg_settings{
	right: 35px;
    top: 22px;
	background:url('/theme_r/img/svg/settings.svg');
	background-size: cover;
}
.svg_pica{
	background:url('/theme_r/img/svg/pica.svg');
	background-size: cover;
}
.svg_bipod{
	background:url('/theme_r/img/svg/bipod.svg');
	background-size: cover;
}
.svg_ext{
	background:url('/theme_r/img/svg/extansion.svg');
	background-size: cover;
}
.svg_checkmark{
	background:url('/theme_r/img/svg/checkmark.svg');
	background-size: cover;
}
.m_balance{
	width: auto !important;
	right:66px !important;
    top: 22px;
	background-size: cover;
	line-height: 27px;
	padding-left: 5px;
	padding-right: 5px;
}
.p_tier{
	width: auto !important;
	text-transform: uppercase;
	color:#bcb1a1;
	right:0px;
	top: -20px;
    position: absolute;
	background-size: cover;
	line-height: 27px;
	padding-left: 5px;
	padding-right: 5px;
}
.c_balance{
	width: auto !important;
	left: 96px !important;
    bottom: 2px;
	background-size: cover;
	line-height: 27px;
	padding-left: 5px;
	padding-right: 5px;
	cursor:default;
}
.c_type{
	left: 96px !important;
    bottom: 2px;
	background-size: cover;
	line-height: 27px;
	padding-left: 5px;
	padding-right: 5px;
	cursor:default;
	width: 80px !important;
    text-align: center;
}
.c_count{
	left: 96px !important;
    bottom: 33px;
	background-size: cover;
	line-height: 27px;
	padding-left: 5px;
	padding-right: 5px;
	cursor:default;
	width: 130px !important;
    text-align: center;
}
.m_input{
	width: 60px !important;
	right:66px !important;
    bottom: 2px;
	background-size: cover;
	line-height: 27px;
	padding-left: 5px;
	padding-right: 5px;
	cursor:text;
	background: transparent;
    border: none; /* Optional: removes the default border */
    outline: none; /* Optional: removes the focus outline */
	color:#c6baaa;
	text-align: center;
}
.steam_input{
    width: 160px !important;
    right: 4px !important;
    top: 4px;
	background-size: cover;
	line-height: 27px;
	padding-left: 5px;
	padding-right: 5px;
	cursor:text;
	background: transparent;
    border: none; /* Optional: removes the default border */
    outline: none; /* Optional: removes the focus outline */
	color:#c6baaa;
	text-align: center;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
.svg_exit{
	right: 4px;
    top: 22px;
	background:url('/theme_r/img/svg/door.svg');
	background-size: cover;
}
.svg_arrow{
	position: absolute;
    width: 25px;
    height: 25px;
	bottom:4px;
	background:url('/theme_r/img/svg/exit.svg');
	background-size: cover;
}
.svg_info:hover:not([tooltip]):not(.roul_item .svg_info),.svg_resize:hover:not([tooltip]),.svg_trash:hover:not([tooltip]),.svg_sidor:hover:not([tooltip]),.svg_number1:hover:not([tooltip]),.svg_number2:hover:not([tooltip]),.svg_mailbox:hover:not([tooltip]),.svg_left:hover:not([tooltip]),.svg_right:hover:not([tooltip]),.svg_bar:hover:not([tooltip]),.svg_cart:hover:not([tooltip]),.svg_group:hover:not([tooltip]),.svg_person:hover:not([tooltip]),.svg_person-remove:hover:not([tooltip]),.svg_save:hover:not([tooltip]),.svg_house:hover:not([tooltip]),.svg_settings:hover,.svg_exit:hover,.m_balance:hover,.svg_arrow:hover,.svg_checkmark:hover:not([tooltip]),.svg_pica:hover:not([tooltip]),.svg_ext:hover:not([tooltip]),.svg_bipod:hover:not([tooltip]){
	filter: brightness(0) saturate(100%) invert(87%) sepia(9%) saturate(483%) hue-rotate(356deg) brightness(84%) contrast(81%);
	box-shadow: -12px -12px 0 -10px #bcb1a1, 12px -12px 0 -10px #bcb1a1, -12px 12px 0 -10px #bcb1a1, 12px 12px 0 -10px #bcb1a1;
}
.svg_forward:hover, .roul_item .svg_info:hover{
	filter: brightness(0) saturate(100%) invert(87%) sepia(9%) saturate(483%) hue-rotate(356deg) brightness(84%) contrast(81%);
	box-shadow: -10px -10px 0 -8px #6e6e6e, 10px -10px 0 -8px #6e6e6e, -10px 10px 0 -8px #6e6e6e, 10px 10px 0 -8px #bcb1a1;
}
.t_forward,.roul_item .t_info,.t_info,.t_resize,.t_cart,.t_house,.t_add,.t_trash,.t_sidor,.t_mailbox,.t_left,.t_right,.t_bar,.t_save,.t_group,.t_person,.t_person-remove{
	position: absolute;
    width: 25px;
    height: 25px;
	bottom:0px;
}
.t_forward{
    right: 16px;
    bottom: 10px;
    width: 22px;
    height: 22px;
}
.t_cart,.t_add{
	right:4px;
}
.t_house{
	left:10px;
}
.t_save{
	right: 203px;
    top: 6px;
}
.t_person{
	right: 267px;
    top: 6px;
}
.t_person-remove{
	right: 235px;
    top: 6px;
}
.t_info{
	right: 35px;
}

.roul_item .t_info{
    right: 44px;
    bottom: 10px;
    width: 22px;
    height: 22px;
}
.t_resize{
	right: 66px;
}
.t_trash{
	right: 4px;
	bottom:0px;
	margin-bottom: -2px;
}
.t_sidor,.t_mailbox{
	right: 4px;
	bottom:0px;
	margin-bottom: -2px;
}
.t_left{
	right: 132px;
	bottom:0px;
	margin-bottom: -2px;
}
.t_right{
	right: 35px;
	bottom:0px;
	margin-bottom: -2px;
}
.t_bar{
	right: 35px;
	bottom:0px;
	margin-bottom: -2px;
}
.t_group{
	right: 66px;
	bottom:0px;
	margin-bottom: -2px;
}
.roul_item .svg_info {
    width: 22px;
    height: 22px;
}
.cactive{
	filter: brightness(0) saturate(100%) invert(79%) sepia(37%) saturate(4447%) hue-rotate(359deg) brightness(105%) contrast(106%) !important;
}
.p_need{
	filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(3066%) hue-rotate(347deg) brightness(94%) contrast(105%) !important;
}
.p_have{
	filter: brightness(0) saturate(100%) invert(67%) sepia(58%) saturate(512%) hue-rotate(73deg) brightness(95%) contrast(92%) !important;
}
.header_sep{
    position: absolute;
    background-image: url(/theme_r/img/sep_hor.png);
    background-repeat: repeat-x;
    background-position: bottom;
    left: 0px;
	top:0px;
    width: 100%;
    min-width: 100%;
    height: fit-content;
    padding: 4px 6px 6px 8px;
}
.house_sep{
    position: absolute;
    background-image: url(/theme_r/img/sep_hor.png);
    background-repeat: repeat-x;
    background-position: bottom;
    left: 0px;
	top:0px;
    width: 100%;
    min-width: 100%;
    height: 227px;
    padding: 4px 6px 6px 8px;
}

#start{
	width: calc(75% + 5px);
    max-width: calc(75% + 5px);
    left: 25%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    overflow: hidden;
    margin-left: -5px;
}
#startroad{
	width: calc(75% + 5px);
    max-width: calc(75% + 5px);
    left: 25%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    overflow: auto;
    margin-left: -5px;
	overflow-x: hidden;
}

.contflex{
  display: flex; /* Enables Flexbox for the container */
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  justify-content: center; /* Centers items horizontally within the container */
  gap: 20px; /* Adds space between items (optional) */
  max-width: 800px; /* Sets a maximum width for the container (optional, for centering the container itself) */
  margin: 0 auto;
}
.roul_item {
	background:url('/theme_r/img/win_02.png');
  width:300px;
  height:246px;
  flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
	position: relative;
}
.roul_img{
	background-repeat: no-repeat !important;
    background-size: 275px auto !important;
    background-position: 0px !important;
    position: absolute;
    width: 275px;
    height: 171px;
    top: 36px;
    left: 11px;
}


.loader {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translate(-50%, -50%);

  border-radius: 50%;
  overflow: hidden;
  width: 100vh;
  height: 100vh;

  background-image: url("https://raw.githubusercontent.com/BlackStar1991/Stalker2/main/img/RadSun.webp");
  background-size: contain;
  animation: Spin 1.5s linear infinite;
  z-index: 1;
  opacity: .5;
}

.profile{
	z-index: 1;
    position: absolute;
    right: 9px;
    top: 35px;
    color: #6e6e6e;
	font-size: 16px;
}

.profile_menu{
	position:absolute;
	min-width:200px;
	min-height:40px;
	top:90px;
	right:42px;
	z-index:3000;
	background:#171514;
	box-shadow:0px 5px 10px rgba(0, 0, 0, 0.3);
}
.profile_menu a{
		text-decoration:none;
	display: grid;
	width:100%;
	padding: 10px 30px 10px 30px;
}
.profile_menu a .a_title{
	font-size: 20px;
	color:#6e6e6e;
	line-height:24px;
}
.profile_menu a .a_title:hover{
	color:#bcb1a1;
}
.counts{
	position:absolute;
	background-color: rgba(0, 0, 0, 0.2);
	height:20px;
	width: 100%;
	z-index: 1;
    text-align: center;
    bottom: 0;
}
.arrr,.arrl{
	position: absolute;
    top: 0;
	cursor:pointer;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none;    /* IE 10 and IE 11 */
	user-select: none;
}
.arrr{
	
    right: 0px;
}
.arrl{
    top: 0;
}
.prices,.pname,.cpname{
	position:absolute;
	height:20px;
	width: fit-content;
	z-index: 1;
	color:orange;
	background-color: rgba(0, 0, 0, 0.2);
	padding: 0px 4px 0px 4px;
	font-size:1em;
}
.prices{
    bottom: 9px;
    left: 9px;
}
.pname{
	height: fit-content;
	width:100%;
	text-align:center;
    top: 5px;
}
.cpname{
	height: fit-content;
	width:100%;
	text-align:center;
    top: 5px;
	 white-space: nowrap; /* Prevents text from wrapping to the next line */
  overflow: hidden;    /* Hides any overflowing content */
  text-overflow: ellipsis;
  font-size: 10px;
  cursor:pointer;
}
.prod-aprice{
	text-decoration:line-through;
	color:#a1a1a1;
	text-shadow:none;
}

#prod_search {
    position: absolute;
    right: 0px;
    top: 0px;
}

#prod_search {
    background: url(/theme_r/img/svg/search.svg) no-repeat 0px 15px #444;
    background-size: 26px;
    background-position: 2px 1px;
    border: 0 none;
    font: bold 14px Arimo Stalker;
    color: #bcb1a1;
    width:107px;
    padding: 3px 15px 3px 35px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    /*text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); */
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
	line-height:20px;
    }
#prod_search:focus {
    width: 200px;
	outline: none;
}
#prod_search::placeholder{
	top:6px;
}
/*----- End Dark Background-----*/
#prod_info{
	background: url('/theme_r/img/prod_info.png') no-repeat;
	height:660px;
	width:418;
	position:absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:3000;
  display:none;
  padding: 20px;
  font-size: 14px;
  color:#8c8c7e;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
#prod_info2{
	background: url('/theme_r/img/prod_info.png') no-repeat;
	height:660px;
	width:836;
	position:absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:3000;
  display:none;
  padding: 20px;
  font-size: 14px;
  color:#8c8c7e;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
#prod_img{
	position:absolute;
	height:90%;
	width:fit-content;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:3000;
  display:none;
}
#prod_img img{
	height:100%;
}

#prod_prises{
	position:absolute;
	height:90%;
	width:fit-content;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:3000;
  display:none;
  padding:8px;
  background-color:#171514;
}
#desc {
	overflow: auto;
    height: 100%;

}
.ptitle{
	text-align: center;
    color: #ccccbd;
    top: 2px;
    position: relative;
    font-size: 22px;
    font-weight: bold;
	width: 378px;
}
.pdesc{
	width: 378px;
	padding-top:14px;
}
.pweight{
	bottom: 21px;
    position: absolute;
    font-weight: bold;
    left: 20px;
}

.pprice{
	bottom: 21px;
    position: absolute;
    font-weight: bold;
    right: 20px;
	color:orange;
}

.pprice2{
	bottom: 21px;
    position: absolute;
    font-weight: bold;
    right: 438px;
	color:orange;
}

.p_text{
	text-transform: uppercase;
	color:#bcb1a1;
	top: -20px;
    position: absolute;
}
.p_scale{
	background: url('/theme_r/img/prod_info.png') no-repeat;
	background-position:0px -660px;
	width:371px;
	height:10px;
	position: absolute;
    right: 30px;
}
.p_def_bal{
    top: 40px;
}

.p_def_expl{
	top: 80px;
}

.p_def_anim{
	top: 120px;
}

.p_def_zomb{
	top: 160px;
}

.p_def_chem{
	top: 200px;
}

.p_def_bio{
	top: 240px;
}

.p_def_rad{
	top: 280px;
}

.p_def_psy{
	top: 320px;
}

.p_def_fire{
	top: 360px;
}

.p_def_grav{
	top: 400px;
}

.p_def_elec{
	top: 440px;
}

.p_def_kisl{
	top: 480px;
}

.p_ful{
	background: url('/theme_r/img/prod_info.png') no-repeat;
	background-position:0px -670px;
	width:371px;
	height:10px;
	position: absolute;
}

.prod-table{
	margin-top:50px !important;
	height:calc(100% - 150px);
}
.prod-table img{
	position:absolute;
	width:141px;
	height:138px;
	top:14px;
	left:51px;
}
.rank_block{
	position:relative;
	width:200px;
	height:200px;
	float:left;
}
.rank_block .rank_back{
	position:absolute;
	width:200px;
	height:200px;
	top:0px;
	left:0px;
	z-index:10;
}
.rank_block img{
	position:absolute;
	z-index:1;
	top:0px;
	left:0px;
	width:200px;
	height:200px;
}
.rank_block .ranks{
	position:absolute;
	z-index:100;
	width:100%;
	height:22px;
    left: 0px;
	bottom:0px;
}
.rank_block .ranks span{
    width: 100%;
    height: 22px;
    display: block;
	text-align:center;
}

.sr_leg,.r_leg,.r_vrare,.r_rare,.r_def{
	border-radius:3px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 20px;
}
.sr_leg{
	background-color:rgb(48, 213, 200,0.8) !important;
	color:white;
}
.r_leg{
	background-color:rgb(214, 157, 36,0.8) !important;
	color:white;
}
.r_vrare{
	background-color:rgb(255, 0, 0,0.8) !important;
	color:white;
}
.r_rare{
	background-color:rgb(115, 0, 255,0.8) !important;
	color:white;
}
.r_def{
	background-color:rgb(73, 144, 14,0.8) !important;
	color:white;
}

.roadmap {
	width: 100%;
  padding: 30px 50px;
}
.roadmap .point {
  display: flex;
  flex-direction: column;
  padding: 10px 50px;
  position: relative;
}
.roadmap .point:first-child .point-index {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 2px) !important;
}
.roadmap .point:last-child .point-index {
  top: 0;
  /*transform: translate(50%, -2px) !important;*/
}
.roadmap .point:not(:last-child) {
  border-bottom: 2px solid gold;
}
.roadmap .point:nth-child(odd) {
  align-items: flex-start;
}
.roadmap .point:nth-child(odd):not(:first-child) {
  border-left: 2px solid gold;
}
.roadmap .point:nth-child(odd):last-child {
  border-left: none;
}
.roadmap .point:nth-child(odd) .point-index {
  left: 0;
  transform: translate(-50%, -50%);
}
.roadmap .point:nth-child(even) {
  align-items: flex-end;
}
.roadmap .point:nth-child(even):not(:last-child) {
  border-right: 2px solid gold;
}
.roadmap .point:nth-child(even) .point-index {
  right: 0;
  transform: translate(50%, -50%);
}
.roadmap .point .point-index {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #151317;
  border: 2px solid gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: bold;
}
.roadmap .point .point-label {
  flex: 1 0 100%;
  width: 100%;
  font-size: 14px;
  margin-bottom: 5px;
}
@media (min-width: 641px) {
  .roadmap .point .point-label {
    flex: 1 0 50%;
    width: 50%;
  }
}
.roadmap .point .point-text {
  flex: 1 0 100%;
  width: 100%;
  font-size: 12px;
  color: #cccccc;
}
@media (min-width: 641px) {
  .roadmap .point .point-text {
    flex: 1 0 50%;
    width: 50%;
  }
}


.markerouter {
	position: absolute;
	top: 0px;
}
.inactive {
	color:#4d1d0e;
	border-bottom: 2px solid #4d1d0e !important;
}
.inactive .point-text{
	color:#3b3b3b !important;
}
.inactive .point-index{
	border: 2px solid #4d1d0e !important;
}
.roadmap .inactive:nth-child(even):not(:last-child){
	border-right: 2px solid #4d1d0e !important;
}
.roadmap .inactive:nth-child(odd):not(:first-child) {
    border-left: 2px solid #4d1d0e !important;
}
.marker {
	transform: perspective(40px) rotateX(20deg) rotateZ(-45deg);
	transform-origin: 50% 50%;
	border-radius: 50% 50% 50% 0;
	padding: 0 3px 3px 0;
	width: 40px;
	height: 40px;
	background: #bc6901;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -2.8em 0 0 -0.8em;
	-webkit-box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.5);
	box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.5);
}

.marker:after {
	content: "";
	width: 1em;
	height: 1em;
	margin: 1em 0 0 0.7em;
	background: #ffffff;
	position: absolute;
	border-radius: 50%;
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: inset -2px 2px 4px hsla(0, 0, 0, 0.5);
	-webkit-box-shadow: inset -2px 2px 4px hsla(0, 0, 0, 0.5);
	box-shadow: inset -2px 2px 4px hsla(0, 0, 0, 0.5);
}
.beacon {
	position: relative;
	top: -16px;
    left: -34px;
	height: 3em;
	width: 3em;
	border-radius: 50%;
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}

.beacon:before,
.beacon:after {
	position: absolute;
	content: "";
	height: 3em;
	width: 3em;
	left: 0;
	top: 0;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 0 0 0 3px #bc6901;
	-webkit-animation: active 2s infinite linear;
	-moz-animation: active 2s infinite linear;
	animation: active 2s infinite linear;
}

.beacon:after {
	-moz-animation-delay: 1s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

@-webkit-keyframes active {
	0% {
		-webkit-transform: scale(0.1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(2.0);
		opacity: 0;
	}
}

@keyframes active {
	0% {
		transform: scale(0.1);
		transform: box-shadow(0px 0px 0px 1px #bc6901);
		opacity: 1;
	}
	100% {
		transform: scale(2.0);
		opacity: 0;
	}
}

#sidecart{
	position: absolute;
	right:220px;
	display:flex;
}
#sidecart .uicartprof .uicarttext .acartname{
	color:darkgray !important;
}
#sidecart .uicartprof:hover .uicarttext .acartname{
	color:#f7cb63 !important;
}
.uicartprof .uicarttext{
    padding-left: 8px;
    padding-right: 22px;
    position: relative;
    line-height: 28px;
    min-width: 70px;
    top: 0px;
    z-index: 1;
    display: inline-flex;
    cursor: pointer;
}
.uicartprof .uicarttext .acartname{
	    color: transparent;
    text-decoration: none;
    position: relative;
    z-index: 7;
    top: 2px;
    font-weight: bold;
    width: 100%;
    left: auto;
    text-align: center;
}

.badge {
    position: absolute;
    top: -10%;
    right: -5%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5em;
    border-radius: 1em;
    padding: .3333333333em .3333333333em .1666666667em;
    line-height: 1;
	background-color: #797878;
	color:white;
}

.arrn,.arrnr,.arrd,.arrdr,.numn,.numd{
	background-image: url('/theme/img/buttons.png');
	height:31px;
	display:block;
	float:left;
	text-align:center;
	line-height:31px;
	text-decoration:none;
	color:#c6c6c6;
	cursor:default;
	font-weight:bold;
}

.arrd,.arrdr{
	width:41px;
	background-position:0px -174px;
}
.arrd:hover,.arrdr:hover{
	background-position:0px -143px;
	cursor:pointer;
}

.arrnr,.arrdr{
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}
/*==========*/
.ctooltip span, .ctooltipe span, .ctooltipn span, .announce span, .announce_but span{
	z-index: 2;
	position: relative;
}
.ctooltip:after, .ctooltipe:after, .ctooltipn:after, .announce:after, .announce_but:after {
	content:"\A";
	border-style: solid;
	border-width: 10px 15px 10px 0;
	border-color: transparent #dd4397 transparent transparent;
	position: absolute;
	left: -15px;
}
.announce{
	background-color: rgba(130, 116, 116, 1);
    margin: 0 auto 0;
	color: #ededf8;
	clip-path: var(--ui-tooltip-an-bg);
	min-width: 10px;
	padding: 0 18px 18px 18px;
	min-height: 26px;
	position:relative;
    width: 400px;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.announce span span{
	font-size: 14px;
    line-height: 14px;
    color: #bdbde0;
}
.announce_buts{
	z-index: 12;
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.announce_butc{
	background-color: rgba(130, 116, 116, 1);
	color: #bdbde0;
	clip-path: var(--ui-tooltip-an-butc);
	min-width: 10px;
	padding: 0 12px 0 12px;
	min-height: 11px;
	position:absolute;
	top: 0px;
	right: -1px;
	width:fit-content;
	display:inline-block;
	z-index:12;
	cursor:pointer;
}
.announce_but{
	background-color: rgba(130, 116, 116, 1);
	color: #bdbde0;
	clip-path: var(--ui-tooltip-an-but);
	min-width: 10px;
	padding: 0 18px 0 18px;
	min-height: 20px;
	position:relative;
	bottom: 0px;
	margin-right: -22px;
    line-height: 18px;
	width:fit-content;
	display:inline-block;
	cursor:pointer;
}
.doAction{
	background-color: #d32f2f;
	color: #f5f5f5;
}
.announce_but:hover .announce_but_inside,.announce_butc:hover .announce_butc_inside{
	background-color: #bdbde0;
	color: rgba(130, 116, 116, 1);
}
.announce_but:hover ,.announce_butc:hover{
	color: rgba(130, 116, 116, 1);
}
.announce_but:last-child{
	margin-right: 13px;
}

.announce_but span{
	font-size:14px;
}
.announce_butc span{
	font-size:7px;
}
.announce_inside{
	position: absolute;
	background-color: rgba(74, 82, 101, 1);
	clip-path: var(--ui-tooltip-an-bg);
	top: 1px;
	left: 1px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	padding-left: 10px;
}
.announce_but_inside{
	position: absolute;
	background-color: rgba(74, 82, 101, 1);
	clip-path: var(--ui-tooltip-an-but-bg);
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	padding-left: 10px;
}

.doAction .announce_but_inside{
	background-color: #f44336;
}
.announce_butc_inside{
	position: absolute;
	background-color: rgba(74, 82, 101, 1);
	clip-path: var(--ui-tooltip-an-butc-bg);
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	padding-left: 10px;
}

.arrowUbase,.arrowDbase{
	position: absolute;
    left: auto;
    display: block;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: calc(50% - 10px)!important;
	cursor:pointer;
}
.arrowUbase{
    top: 30px;
}
.arrowDbase{
    bottom: 30px;
}
.arrowAnim {
  width: 50%;
  height: 50%;
  display: block;
  justify-content: center;
  align-items: center;
}

.arrowUp {
  top:0px;
  width: 20px;
  height: 20px;
  border: 1px solid;
  border-color: #f7cb63 transparent transparent #f7cb63;
  transform: rotate(45deg);
}
.arrowDown {
  bottom:0px;
  width: 20px;
  height: 20px;
  border: 1px solid;
  border-color: #f7cb63 transparent transparent #f7cb63;
  transform: rotate(225deg);
}


.arrowSliding {
  position: absolute;
  -webkit-animation: slide 4s linear infinite; 
          animation: slide 4s linear infinite;
}
.arrowSlidingD {
  position: absolute;
  -webkit-animation: slideD 4s linear infinite; 
          animation: slideD 4s linear infinite;
}

.delay1 {
  -webkit-animation-delay: 1s; 
    animation-delay: 1s;
}
.delay2 {
  -webkit-animation-delay: 2s; 
    animation-delay: 2s;
}
.delay3 {
  -webkit-animation-delay: 3s; 
    animation-delay: 3s;
}

@-webkit-keyframes slide {
    0% { opacity:0; transform: translateY(40px); }	
   20% { opacity:1; transform: translateY(30px); }	
   80% { opacity:1; transform: translateY(20px); }	
  100% { opacity:0; transform: translateY(10px); }	
}
@keyframes slide {
    0% { opacity:0; transform: translateY(40px); }	
   20% { opacity:1; transform: translateY(30px); }	
   80% { opacity:1; transform: translateY(20px); }	
  100% { opacity:0; transform: translateY(10px); }	
}

@-webkit-keyframes slideD {
    0% { opacity:0; transform: translateY(10px); }	
   20% { opacity:1; transform: translateY(20px); }	
   80% { opacity:1; transform: translateY(30px); }	
  100% { opacity:0; transform: translateY(40px); }	
}
@keyframes slideD {
    0% { opacity:0; transform: translateY(10px); }	
   20% { opacity:1; transform: translateY(20px); }	
   80% { opacity:1; transform: translateY(30px); }	
  100% { opacity:0; transform: translateY(40px); }	
}
.mirrored{
	-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.terms{
	color:#f7cb63 !important;
}
.dialog-ovelay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 999999
}
.dialog-ovelay .dialog {
    width: 400px;
    margin: 100px auto 0;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 3px;
    overflow: hidden
}
.dialog-ovelay .dialog header {
    padding: 10px 8px;
    background-color: #f6f7f9;
    border-bottom: 1px solid #e5e5e5
}
.dialog-ovelay .dialog header h3 {
    font-size: 14px;
    margin: 0;
    color: #555;
    display: inline-block
}
.dialog-ovelay .dialog header .fa-close {
    float: right;
    color: #c4c5c7;
    cursor: pointer;
    transition: all .5s ease;
    padding: 0 2px;
    border-radius: 1px    
}
.dialog-ovelay .dialog header .fa-close:hover {
    color: #b9b9b9
}
.dialog-ovelay .dialog header .fa-close:active {
    box-shadow: 0 0 5px #673AB7;
    color: #a2a2a2
}
.dialog-ovelay .dialog .dialog-msg {
    padding: 12px 10px
}
.dialog-ovelay .dialog .dialog-msg p{
    margin: 0;
    font-size: 15px;
    color: #333
}
.dialog-ovelay .dialog footer {
    border-top: 1px solid #e5e5e5;
    padding: 8px 10px
}
.dialog-ovelay .dialog footer .controls {
    direction: rtl
}
.dialog-ovelay .dialog footer .controls .button {
    padding: 5px 15px;
    border-radius: 3px
}
.button {
  cursor: pointer
}
.button-default {
    background-color: rgb(248, 248, 248);
    border: 1px solid rgba(204, 204, 204, 0.5);
    color: #5D5D5D;
}
.button-danger {
    background-color: #f44336;
    border: 1px solid #d32f2f;
    color: #f5f5f5
}
.link {
  padding: 5px 10px;
  cursor: pointer
}

.cart_list{
	width:50%;
	display:flex;
	position: relative;
	height:92px;
}
.instart{
	width:100%;
	position:relative;
	display:flex;
	flex-wrap:wrap;
	height:fit-content;
	max-height:100%;
}

.svg_textfix{
	position: relative;
    display: inline-block;
    bottom: unset;
    vertical-align: middle;
}

.footer-terms{
	position: relative;
    z-index: 1;
    height: 52px;
    top: -2px;
    display: flex;
    align-items: center;
	left:10px;
}

.ammo-select {
   background: transparent;
   width: 268px;
   padding: 5px;
   line-height: 1;
   border: 0;
   border-radius: 0;
   height: 34px;
   -webkit-appearance: none;
}
.ammo-select option {
  background: #333;
}
.ammo-select {
  width: fit-content;
  height: 24px;
  overflow: hidden;
  background: url('https://skyzone.com.au/assets/admin/images/select_arrow.png') no-repeat right #333;
  border: 1px solid #ccc;
  border-radius:4px;
  position:relative;
  top:-2px;
  color:#c6baaa;
 }
 
 a{
	 color:unset;
 }
 a:hover{
	 text-decoration:none;
 }
 .timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 40px;
    border-left: 2px solid #444;
    max-width: 800px;
  }

  .version {
    margin-bottom: 50px;
    position: relative;
  }

  .version::before {
    content: attr(data-ver);
    position: absolute;
    left: -75px;
    top: 0;
    background: #202020;
    color: #ff4747;
    border: 1px solid #555;
    padding: 2px 8px;
    font-size: 13px;
  }

  .date {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .version h3 {
    color: #f0c541;
    font-size: 18px;
    margin: 0 0 10px 0;
  }

  .change {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 10px 15px;
    border-radius: 3px;
    margin: 5px 0;
  }

  .change span {
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    color: #222;
    background-color: #f0c541;
    padding: 2px 6px;
    margin-right: 10px;
    border-radius: 2px;
  }

  .change span.improved {
    background-color: #1e88e5;
    color: #fff;
  }

  .change span.fixed {
    background-color: #6ecb63;
    color: #000;
  }

  .change span.removed {
    background-color: #c62828;
    color: #fff;
  }

  .change span.new {
    background-color: #f0c541;
    color: #000;
  }

  .footer-line {
    margin-top: 60px;
    text-align: center;
    color: #555;
    font-size: 13px;
    border-top: 1px solid #333;
    padding-top: 20px;
  }
  
  .server-block {
	position: relative;
    width: 600px;
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
  }

  .server-header {
    background: #111;
    border-bottom: 1px solid #2b2b2b;
    color: #f0c541;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
  }

  .server-content {
    padding: 20px 25px;
  }

  .server-row {
    margin-bottom: 20px;
  }

  .label {
    color: #888;
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .value {
    display: inline-block;
    background: #0f0f0f;
    border: 1px solid #3a3a3a;
    color: #f0c541;
    padding: 5px 10px;
    margin-left: 10px;
    font-size: 13px;
  }

  .btn-copy {
    display: inline-block;
    background: #333;
    color: #f0c541;
    border: 1px solid #555;
    padding: 5px 12px;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.2s;
  }

  .btn-copy:hover {
    background: #f0c541;
    color: #000;
  }

  .divider {
    border-top: 1px solid #2b2b2b;
    margin: 20px 0;
  }

  .status {
    font-size: 13px;
    color: #a0a0a0;
  }

  .status span {
    color: #7fff00;
    font-weight: bold;
  }
  
  .footer-terms a{
	  color:#bc6901;
  }