  .k2s-preview a.play-btn
{
	width: 68px;
	height: 48px;
	margin: -24px 0 0 -34px;
	border: none;
	background: rgba(33, 33, 33, 0.8);
	-webkit-clip-path: url(#k2s-play-button-bg);
	clip-path: url(#k2s-play-button-bg);
	opacity: 1;
	pointer-events: none;
	transition: 0.1s ease-in;
}
.k2s-preview a.play-btn i
{
	margin: 14px 0 0 26px;
}
.k2s-preview .poster:hover ~ .play-btn
{
	background: #f00;
}
.k2s-preview a.download-btn
{
	top: 0;
	right: 0;
	border: solid transparent;
	border-width: 10px 20px 0 9px;
}
#k2s-preview-svg
{
	width: 0;
	height: 0;
}

@keyframes k2s-preview-screenlist-show
{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes k2s-preview-screenlist-move
{
	from {
		margin-left: 0;
	}
	to {
		margin-left: -1680px;
	}
}
.k2s-preview .screenlist
{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-left: solid 8px transparent;
	border-right: solid 8px transparent;
	padding: 8px 0 8px;
	background: rgba(23,23,23,0.9);
	overflow: hidden;
	pointer-events: none;
	animation: k2s-preview-screenlist-show 0.1s linear;
}
.k2s-preview .thumbs
{
	white-space: nowrap;
	animation: k2s-preview-screenlist-show 0.4s linear, k2s-preview-screenlist-move 20s linear infinite;
}
.k2s-preview .thumbs div
{
	width: 320px;
	height: 215px;
	margin-right: 8px;
	background: #000 0 0 / cover;
	display: inline-block;
}
.k2s-preview .video div
{
	width: 100%;
	display: inline-block;
}


/* Complete CSS — replace your existing CSS with this.
   HTML expectations:
   - .tabs is the root wrapper
   - radio inputs are direct children of .tabs (id="tab1", "tab2", ...)
   - labels are inside a .tabs-nav element and use for="tabN"
   - content sections have ids like id="content-tab1", etc.
*/

/* --- Base wrapper & content (kept mostly intact) --- */
.tabs {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.tabs > section {
    display: none;
    padding: 2px 0 45px;
    margin: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 6px;
}

.tabs > section > p {
    margin: 0 0 5px;
    line-height: 1.5;
    color: #383838;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* hidden inputs */
.tabs > input {
    display: none;
    position: absolute;
}

/* --- Scrollable nav wrapper (no left gap) --- */
/* Removed left padding so first label sits flush; keep small right padding for breathing room */
.tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    gap: 3px;
    padding: 8px 6px 8px 0; /* top right bottom left (left = 0) */
    margin-bottom: -10px;
    background: transparent;
    box-sizing: border-box;
}

/* --- Tab labels (subtle, integrated) --- */
.tabs-nav > label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;           /* left padding kept on label itself so it doesn't stick to edge */
    font-weight: 600;
    font-size: 14px;
    color: #555;
    background: rgba(255,255,255,0.98);
    border-radius: 6px 6px 4px 4px;
    border: 1px solid #e6e0d8;
    cursor: pointer;
    transition: background .12s ease, color .12s ease, transform .12s ease;
    white-space: nowrap;
    box-shadow: none;
}

/* ensure first label aligns to left edge visually */
.tabs-nav > label:first-child {
    margin-left: 0;
}

/* small decorative marker (muted) */
.tabs-nav > label:before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 0px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'>\
      <defs><linearGradient id='g' x1='0' x2='1' y1='0' y2='1'>\
        <stop offset='0' stop-color='%23caa77a'/><stop offset='1' stop-color='%239a6a38'/>\
      </linearGradient></defs>\
      <polygon points='6,4 20,12 6,20' fill='url(%23g)'/>\
    </svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.95;
}

/* hover — subtle */
.tabs-nav > label:hover {
    background: #fffefb;
    transform: translateY(-1px);
}

/* Active label — greenish */
.tabs > input#tab1:checked ~ .tabs-nav label[for="tab1"],
.tabs > input#tab2:checked ~ .tabs-nav label[for="tab2"],
.tabs > input#tab3:checked ~ .tabs-nav label[for="tab3"],
.tabs > input#tab4:checked ~ .tabs-nav label[for="tab4"],
.tabs > input#tab5:checked ~ .tabs-nav label[for="tab5"],
.tabs > input#tab6:checked ~ .tabs-nav label[for="tab6"],
.tabs > input#tab7:checked ~ .tabs-nav label[for="tab7"],
.tabs > input#tab8:checked ~ .tabs-nav label[for="tab8"],
.tabs > input#tab9:checked ~ .tabs-nav label[for="tab9"],
.tabs > input#tab10:checked ~ .tabs-nav label[for="tab10"],
.tabs > input#tab11:checked ~ .tabs-nav label[for="tab11"],
.tabs > input#tab12:checked ~ .tabs-nav label[for="tab12"] {
    background: linear-gradient(180deg,#f6fff7,#e8faed); /* soft greenish paper */
    color: #073b2a;                                     /* deep green text */
    border: 1.8px solid #2e8b57;                        /* medium sea green border */
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(46,139,87,0.06);        /* subtle green glow */
}

/* compatibility with input+label adjacent pattern (kept) */
.tabs > input:checked + label {
    color: #073b2a;
    border-top: 1px solid #2e8b57;
    border-bottom: 1px solid #fff;
    background: #f9fffa;
}

/* show content sections */
#tab1:checked ~ #content-tab1,
#tab2:checked ~ #content-tab2,
#tab3:checked ~ #content-tab3,
#tab4:checked ~ #content-tab4,
#tab5:checked ~ #content-tab5,
#tab6:checked ~ #content-tab6,
#tab7:checked ~ #content-tab7,
#tab8:checked ~ #content-tab8,
#tab9:checked ~ #content-tab9,
#tab10:checked ~ #content-tab10,
#tab11:checked ~ #content-tab11,
#tab12:checked ~ #content-tab12 {
    display: block;
}

/* subtle scrollbar */
.tabs-nav::-webkit-scrollbar { height: 6px; }
.tabs-nav::-webkit-scrollbar-thumb { background: rgba(60,48,38,0.12); border-radius: 6px; }
.tabs-nav { scrollbar-width: thin; scrollbar-color: rgba(60,48,38,0.12) transparent; }

/* responsive */
@media screen and (max-width: 680px) {
    .tabs-nav { padding: 6px 6px 6px 0; gap: 6px; margin-bottom: -8px; }
    .tabs-nav > label { padding: 8px 12px; font-size: 13px; }
    .tabs > section > p { font-size: 14px; }
}
@media screen and (max-width: 400px) {
    .tabs-nav > label { padding: 7px 10px; font-size: 13px; }
    .tabs-nav > label:before { width: 7px; height: 7px; }
}
.tabs-nav.dragging { cursor: grabbing; cursor: -webkit-grabbing; }
.tabs-nav { cursor: grab; cursor: -webkit-grab; }
.tabs-nav {
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge Legacy */
  scrollbar-gutter: auto;      /* убрать reserved space */
}
.tabs-nav::-webkit-scrollbar { display: none; } /* WebKit */

.cv {
    border: 1px solid #333; 
    display: inline-block;
    padding: 5px 15px;
    text-decoration: none; 
    background: linear-gradient(to bottom, #D80000, #3b3b3b);
    color: #fff;
    
  }

   .cv:hover {
    box-shadow: 0 0 5px rgba(0,0,0,0.3); 
    background: linear-gradient(to bottom, #3C872B, #e9e9ce);
    color: #a00;
   }

.cvprem {
    border: 1px solid #333; 
    width: 100%;
    display: inline-block;
    padding: 5px 15px;
    text-decoration: none; 
    background: linear-gradient(to bottom, #EA9C00, #EA9C00);
    color: #fff;
    
  }

   .cvprem:hover {
    box-shadow: 0 0 5px rgba(0,0,0,0.3); 
    background: linear-gradient(to bottom, #3C872B, #e9e9ce);
    color: #a00;
   }


td {
  padding: 0px 5px;
}

div.k2s-preview a.download-btn {
  display: none;
}

i {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    
}
.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
   
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  
}


.cwd{text-align:center;}
.cwda{cursor: pointer; font-size:14px;  text-decoration: none; padding:10px 20px; color:#ff2929; background-color:#7accee; border-radius:5px; border: 3px solid #ff0000;}
.cwda:hover{background-color:#f26d6e;color:#ffffff;}

a.butt008 {
  
  display: inline-block;
  max-width:100%;
   
height:30px;
  border-radius: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff; 
  text-decoration: none; 
  user-select: none; 
  background: #49A033;
  padding: 0em 0.5em; 
  outline: none; 
  
} 
a.butt008:hover { background: #3C872B; color: #fff;} 
a.butt008:active { background: #49A033; } 


i {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    
}
.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
   
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  
}


/* SET BASE
----------------------------------------------- */
* {background: transparent;margin:0;padding:0;outline:none;border: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
table {border-collapse:collapse;border-spacing:0;}
input, select {vertical-align:middle;}
article, aside, figure, figure img, hgroup, footer, header, nav, section, main {display: block;}
body {font: 13px 'Open Sans', Arial, Helvetica, sans-serif; line-height:normal; padding:0; margin:0;        
color:#100a01 ; background-image: url(/templates/en/images/bgg.png); height:100%; width:100%; font-weight:400;}
img {max-width: 100%;}
.clr {clear: both;}
.clearfix:after {content: ""; display: table; clear: both;}
a {color: #2a5885; text-decoration: none;}
a:hover, a:focus {color:#2a5885; text-decoration: none;}
h1, h2, h3, h4, h5 {font-weight:400; font-size:18px;}

.form-wrap {}
.sub-title h1 {margin-bottom:15px; font-size:24px; font-weight:700;}
.pm-page, .search-page, .static-page, .tags-page, .form-wrap {}


/*--- SET ---*/
.button, .pagi-load a, .up-second li a, .up-edit a, .qq-upload-button, button:not(.color-btn):not([class*=fr]), 
html input[type="button"], input[type="reset"], input[type="submit"], .meta-fav a {
padding:0 15px; display:inline-block; height:40px; line-height:40px; border-radius:3px; cursor:pointer; 
background-color:#5e81a8; color:#fff;}
button::-moz-focus-inner, input::-moz-focus-inner {border:0; padding:0;}
button[disabled], input[disabled] {cursor:default;}
.button:hover, .up-second li a:hover, .up-edit a:hover, .qq-upload-button:hover, .pagi-load a:hover,
button:not(.color-btn):hover, html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .meta-fav a:hover 
{background-color:#507299; color:#fff;}
button:active, html input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active 
{box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.1);}
input[type="submit"].bbcodes, input[type="button"].bbcodes, input.bbcodes, .ui-button 
{font-size: 12px !important; height: 30px !important; line-height:30px !important; padding: 0px 10px; border-radius:3px;}

input[type="text"], input[type="password"] {display:block; width:100%; height:40px; line-height:40px; padding:0 15px;
color:#000000; background-color:#f5f5f5; border-radius:0px; -webkit-appearance: none; box-shadow:0 0 0 1px #EDEDED;}
input[type="text"]:focus {}

input:focus::-webkit-input-placeholder {color: transparent}
input:focus::-moz-placeholder {color: transparent}
input:focus:-moz-placeholder {color: transparent}
input:focus:-ms-input-placeholder {color: transparent} 

select {height:40px; border:1px solid #e3e3e3; background-color:#FFF;}
textarea {display:block; width:100%; padding:10px; border:1px solid #e3e3e3; background-color:#FFF; 
border-radius:0 0 0px 0px; box-shadow:inset 0 0 4px 0 rgba(0,0,0,0.1); overflow:auto; vertical-align:top; resize:vertical;}

.img-box {overflow:hidden; position:relative; background-color:#CCC;}
.img-box img {width:100%; min-height:100%;}
.img-wide {overflow:hidden; position:relative; background-color:#CCC;}
.img-wide img {width:100%; display:block;}
.square-img img {width:150%; max-width:150%; margin-left:-25%;}
.img-vert img {width:200%; max-width:200%; margin-left:-50%;}
.nowrap {white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
button, .show-login {transition: all .3s;}
.button, .ps-link{transition: color .3s, background-color .3s, opacity .3s;}

.flex-row {display: -webkit-box; display:-webkit-flex; -webkit-flex-flow: row wrap; -webkit-box-pack: justify; -webkit-justify-content: space-between; 
display:flex; flex-flow:row wrap; justify-content:space-between;}
.flex-col {display: -webkit-box; display:-webkit-flex; -webkit-flex-direction:column; -webkit-box-pack:center; -webkit-justify-content:center; 
display:flex; flex-direction:column; justify-content:center;}
.fx-row {display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;
-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}
.fx-center{-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}
.fx-between{-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}
.fx-stretch{-ms-flex-align:stretch;-webkit-align-items:stretch;align-items:stretch}
.fx-top{-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}
.fx-middle{-ms-flex-align:center;-webkit-align-items:center;align-items:center}
.fx-bottom{-ms-flex-align:end;-webkit-align-items:flex-end;align-items:flex-end}
.fx-col{display:-ms-flexbox;display:-webkit-flex;display:flex; 
-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}
.fx-wrap{-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}

.ps-link {cursor:pointer;}
.icon-l .fa {margin-right:10px;}
.icon-r .fa {margin-left:10px;}

.short, .side-box, .slider-wrp, .pages, .full-comms, .full-in 
{box-shadow: 0 1px 1px rgba(3,11,17,0.051), 0 0 1px rgba(3,11,17,0.072); background-color: #fff;}
.pages, .full-in {padding:3px;}


/* BASIC GRID
----------------------------------------------- */
.wrap {min-width:320px;}
.center {max-width:1250px; margin:0 auto; position:relative; z-index:50;}
.header {background-color:#fff; height:45px; position:relative; z-index:50; 
box-shadow: 0 -1px 1px rgba(3,11,17,0.051), 0 0 1px rgba(3,11,17,0.072);}
.header:before {content:""; width:100%; height:60px; left:0; top:0; position:absolute; background-color:#BA042B;}
.nav {background-color:#ed5e42; margin-bottom:20px; position:relative; z-index:880;}
.cont {padding:30px 10px;}
.main {width:calc(100% - 270px); width:-webkit-calc(100% - 270px); float:left;}
.main11 {width:calc(100% - 0px); width:-webkit-calc(100% - 0px); float:left;}
.side {width:240px; float:right;}
.footer {background-color:#fff; padding:30px 10px 15px 10px; 
box-shadow: 0 -1px 1px rgba(3,11,17,0.051), 0 0 1px rgba(3,11,17,0.072);}


/* HEADER
----------------------------------------------- */
.h-one, .h-two {height:60px; padding:0 10px;}

.logotype {display:block; width:200px; height:60px;}
.show-login, .login-btns a {display:inline-block; background-color:#424b5f; color:#FFF; margin-left:10px; 
line-height:30px; padding:0 15px; border-radius:3px; cursor:pointer;}
.show-login:hover, .login-btns a:hover {opacity:0.8;}
.nextprev a {display:inline-block; background-color:#424b5f; color:#FFF; margin-left:10px; 
line-height:30px; padding:0 15px; border-radius:3px; cursor:pointer;}
.nextprev a:hover {opacity:0.8;}
.nextprevd a {display:inline-block; background-color:#424b5f; color:#FFF; margin-left:10px; 
line-height:30px; padding:0 15px; border-radius:3px; cursor:pointer;max-width: 40%;}
.nextprevd a:hover {opacity:0.8;}

.search-box {width:100%;}
.search-in {width:100%; position:relative;}
.search-in input, .search-in input:focus {width:100%; padding:0 80px 0 10px; 
background-color:#f2f4f7; border-radius:3px; height:40px; line-height:40px; box-shadow:none;}
.search-box button {position:absolute; right:0; top:0; border-radius:0 3px 3px 0 !important;}


/* BASIC MENU
----------------------------------------------- */
.nav-menu {}
.nav-menu > li {position:relative; float:left;}
.nav-menu > li:first-child a {font-size:18px;}
.nav-menu > li > a {display:block; padding:0 15px; line-height:40px; height:40px; 
font-weight:700; text-transform:uppercase; border-radius:3px;}
.nav-menu > li > a:hover, .nav-menu .menuactive > a {background-color:#f2f4f7;}
.hidden-menu {position:absolute; left:0; top:100%; z-index:998; background-color:#f2f4f7; width:240px;
box-shadow:0 2px 2px 0 rgba(0,0,0,0.2); display:none;}
.hidden-menu a {display:block; padding:10px 15px; border-bottom:1px solid #e3e3e3;}
.hidden-menu a:hover {background-color:#f6f6f6;}
.submenu > a:after {content:"\f107 "; font-family:'FontAwesome'; margin-left:7px;}


/* SLIDER
----------------------------------------------- */
.slider-wrp {position:relative; padding-left:645px; 
height:400px; z-index:10; margin-bottom:15px; overflow:hidden;}
.slaider-mini {float:left; height:80px; padding:0 15px; width:100%; position:relative;
border-bottom:1px solid #e3e3e3; cursor:pointer; overflow:hidden;}
.sm-t {font-size:14px;}
.slaider-big {width:645px; height:400px; position:absolute; top:0; left:0; display:none;}
.slaider-big-img {width: 100%; height: 100%;}
.slide-title {position:absolute; color:#FFF !important; font-weight:700; font-size:24px;
display:block; padding:120px 30px 30px 30px; bottom:0; left:0; right:0; 
background: linear-gradient(to top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%); }
.slaider-mini:hover, .slaider-activ .slaider-mini { background-color: #f2f4f7;}
.slaider-activ .th-t {color:#2a5885;}
.sl-meta {font-size:16px; margin-bottom:15px;}
.sl-meta > span {margin-right:15px;}


/* SHORT
----------------------------------------------- */
.panel-body img{width:100%; height:300px; position:relative;left:-53%;max-height: 500px;}
.panel-body{width:213%}
.mosaic #dle-content, .rels {-webkit-column-width:190px; -webkit-column-gap:15px; -moz-column-width:190px; -moz-column-gap:15px; 
column-width:190px; column-gap:15px;}
.short {width:100%; height:400px;margin:0 20px 15px 0; padding:15px; display:inline-block; 	vertical-align: top;border-radius:3px; overflow:hidden;}
.s-img {margin:-15px -15px 15px -15px; display:block;}
.s-img:after {bottom:0; left: 50%; border: solid transparent; content: " "; height: 0; width: 0;
position: absolute; pointer-events: none; border-color: rgba(255, 255, 255, 0); border-bottom-color: #fff;
border-width: 10px; margin-left: -10px;}
.s-top {margin-bottom:15px;}
.s-th {width:50px; height:50px; border-radius:50%;}
.s-info {width:calc(100% - 65px); width:-webkit-calc(100% - 65px); line-height:20px;}
.s-title {font-size:16px; display:block;}
.s-meta {opacity:0.6;}
.s-meta > span + span {margin-left:10px;}
.s-meta .fa {margin-right:5px; opacity:0.6;}
.s-desc {line-height:20px; opacity:0.8; margin-bottom:15px;}
.s-btm {padding-top:1px; border-top:1px solid #e3e3e3; font-size:12px;}
.s-rate a {display:inline-block; white-space:nowrap; border-radius:3px; padding:0 5px; line-height:24px; color:#2a2a2a;}
.s-rate a span.fa {color:#c4d2e0; font-size:14px;}
.s-rate a > span:last-child {color:#7996b5; font-weight:700; margin-left:10px;}
.s-img:hover img {opacity:0.8;}
.s-info a:hover, .s-btm > a:hover {text-decoration:underline;}
.s-rate a:hover {background-color:#f2f4f7;}


/* SIDE
----------------------------------------------- */
.side-box, .side-box-no-bg {margin-bottom:15px; border-radius:3px; overflow:hidden;}
.side-bt {padding:10px 15px; background-color:#fafafa; font-size:16px; 
box-shadow: 0 1px 1px rgba(3,11,17,0.051), 0 0 1px rgba(3,11,17,0.072);}
.padd {padding:15px;}

.tabs-sel {padding:15px;}
.tabs-sel span {display:inline-block; padding:7px 0; width:49%; text-align:center; cursor:pointer; border-radius:3px;}
.tabs-b {display:none;}
.tabs-b.visible {display:block;}
span.current {background-color:#f2f4f7;}

.side-item {padding:15px; border-bottom:1px solid #e3e3e3;}
.side-title {display:block; margin-bottom:3px;}
.side-date {font-size:12px; opacity:0.6;}
.si1 {padding-left:70px;}
.side-img {width:40px; height:40px; border-radius:50%; float:left; margin-left:-55px;}
.side-title:hover {text-decoration:underline;}


/* FOOTER
----------------------------------------------- */
.fcol {width:23%;}
.ft {font-weight:700; margin-bottom:15px; text-transform:uppercase;}
.fmenu a {display:block; margin-bottom:7px;}
.fmenu a:hover {text-decoration:underline;}
.ftext {line-height:20px;}
.fbtm {width:100%; margin-top:15px; padding-top:15px; border-top:1px solid #e3e3e3;}
.fcopyr {font-size:12px; margin:10px 0;}


/* BOTTOM NAVIGATION
----------------------------------------------- */
.pagi-load {text-align:center;}
.pagi-load > span {display:none;}
.pagi-load > a {font-size:14px;}
.pagi-load + .pagi-nav {margin-top:30px;}
.bottom-nav {line-height:40px; text-align:center; font-size:16px; padding:20px 10px 30px 10px;}
.pagi-nav {white-space:nowrap; overflow-y:hidden; overflow-x:auto; max-width:100%;
background-color:#FFF; border:1px solid #e3e3e3; border-radius:3px; display:inline-block;}
.pagi-nav > span {display:inline-block;}
.pprev, .pnext {}
.pprev {border-right:1px solid #e3e3e3;}
.pnext a, .pprev a, .pprev > span, .pnext > span {display:block; width:40px; text-align:center;}
.navigation {text-align:center;}
.navigation a, .navigation span {display:inline-block; padding:0 5px; min-width:38px;
color:#444; border-right:1px solid #e3e3e3; margin-right:-4px;}
.navigation span, .pagi-nav a:hover {background-color:#5e81a8; color:#fff;}
.navigation span.nav_ext {background-color:transparent; color:#888;}
.dle-comments-navigation .pagi-nav {margin-bottom:0; padding-bottom:20px;}


/* SHARE
----------------------------------------------- */
.share-big {width:65px; height:390px; position:fixed; z-index:100000; left:0; top:50%; margin-top:-200px;}
.share-big a {display:block; width:65px; height:65px; margin-bottom:10px; 
box-shadow:0 0 20px 0 rgba(0,0,0,0.15); background:url(../images/share.png) 0 0 no-repeat;}
.share-big a:last-child {margin:0;}
.share-big a:nth-child(2) {background-position:0 -80px;}
.share-big a:nth-child(3) {background-position:0 -163px;}
.share-big a:nth-child(4) {background-position:0 -244px;}
.share-big a:nth-child(5) {background-position:0 -325px;}


/* FULL
----------------------------------------------- */
.full-in {margin-bottom:30px;}
.tile {display:block; height:450px; margin:-30px -30px 0 -30px; text-align:center;}
.tile:before {content:""; position:absolute; left:0; top:0; width:100%; height:100%; 
background: linear-gradient(to top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);}
.tile-o {position:absolute; left:0; bottom:0; z-index:10; width:100%; color:#FFF; padding:40px;}
.tile-t {font-weight:700; font-size:24px; text-transform:uppercase; margin-top:20px;}
.meta, .tile-cat {font-size:14px; text-transform:uppercase; font-weight:700; opacity:0.8;}
.tile h1 {font-size:30px; margin-bottom:30px;}
.meta > span {margin:0 7px;}
.full-in .s-btm {padding:15px 0; border:0; border-bottom:1px solid #e3e3e3; margin-bottom:30px;}


/* FULL STORY STATIC
----------------------------------------------- */
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame 
{width: 100%; max-width:100% !important; height:400px; display:block; margin:20px auto;}
.mejs-container {max-width:100% !important;}
.full-text {color:#444; font-size:14px; line-height:24px; padding-bottom:15px;}
.full-text img:not(.emoji) {max-width:100%; border:0px solid #e3e3e3; margin:10px 0;}
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {margin:0 10px 10px 0;}
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {margin:0 0 10px 10px;}
.full-text a {text-decoration:underline;}
.full-text a:hover {text-decoration:none;}
.full-text h2, .full-text h3, .full-text h4, .full-text h5 {margin:10px 0; font-size:18px; font-weight:700;}
.full-text p {margin-bottom:10px;}
.full-text > ul, .full-text > ol {margin:10px 0;}
.full-text > ul li {list-style:disc; margin-left:40px; position:relative;}
.full-text2 > ul li:before {content: "\f00c"; font-family: 'FontAwesome';
position:absolute; top:0px; left:-25px; width:8px; height:8px;
color:#9cce43; border-radius:0;}
.full-text > ol li {list-style:decimal; margin-left:40px;}

.full-text table {width:100%; text-align:left; margin:10px 0;}
.full-text table tr td {padding:10px; border:2px solid #fff;}
.full-text table tr:nth-child(2n+1) {background-color:#f5f5f5;} 
.full-text table tr:nth-child(1) {background-color:#0297dc !important; color:#FFF; font-size:14px !important;}
.full-text table img {display:block; margin:0; border:0; max-width:350px}
.attach {line-height:40px; background-color:#f5f5f5; padding:0 15px 0 0; border-radius:4px; margin:10px 0; overflow:hidden;}
.attach .download-link {color:#FFF !important; text-decoration:none !important; margin-right:15px; float:left; 
display:inline-block; padding:0 15px; background:#0297dc;}
.attach-info {float:right;}
.attach i {margin-right:5px;}
.dcont {border:1px solid #e3e3e3; padding:0 15px 15px 15px; margin:0 0 20px 0; line-height:20px;}
.polltitle {display:block; padding:5px 15px; margin:0 -15px 15px -15px; font-size:18px; background-color:#f5f5f5; line-height:normal;}
.full-taglist a {color:#4a61a3;}
.full-taglist {margin:0;}


/* COMMENTS
----------------------------------------------- */
.full-comms {padding:30px; border-radius:3px; margin-bottom:30px;}
.comms-title {line-height:40px;}
.comms-title > span {font-size:16px;}
.add-comm-form {position:relative; margin:20px 0; display:none;}
.ac-soc {position:absolute; right:0px; top:-8px;}
.ac-soc:before {content:attr(data-label); display:inline-block; vertical-align:top; line-height:30px; margin-right:5px;}
.ac-soc a {display:inline-block; margin:0 0 0 3px; vertical-align:top;}
.ac-soc img {display:block; width:30px;}
.ac-inputs, .ac-textarea {margin-bottom:15px;}

.ac-av {width:40px; height:40px; border-radius:0%; float:left; margin-right:10px;
background:#fff url(../dleimages/noavatar.png) no-repeat; background-size:contain;}
.ac-title {font-weight:700; margin-bottom:15px; text-transform:uppercase;}
.ac-inputs input {width:49%; background-color:#FFF; box-shadow:0 0 0 1px #EDEDED,inset 1px 1px 3px 0 rgba(0,0,0,0.1);}
.ac-textarea textarea {height:85px;}
.ac-submit {}
.sec-answer + .sec-label {margin-top:10px;}
.ac-protect {margin-top:-10px; display:none;}
.ac-protect .label {font-size:12px;}
.ac-protect .sep-input {padding:10px 10px 10px 160px;}
.ac-protect input {background-color:#FFF;}

.mass_comments_action {text-align:right; padding:5px 15px; background-color:#f0f0f0; margin:20px 0 0 0;}
.last-comm-link {font-size:16px; margin-bottom:10px;}
.last-comm-link a {text-decoration:underline; color:#06c;}
.full-comms {}

.comm-item {padding-left:70px; margin-top:20px;}
.comm-left {width:45px; height:45px; margin-left:-65px; float:left; border-radius:0%; 
box-shadow:0 0 0 5px #fff,0 0px 15px 0 rgba(0,0,0,0.2);}
.comm-right {width:100%; float:right; padding:10px; position:relative; border:1px dashed #e3e3e3;}

.comm-one {padding:0 80px 10px 0; position:relative; font-size:14px;}
.comm-one > span:nth-child(4) {color:#bcbcbc; float:right; margin-right:0;}
.comm-one > span {float:left; margin-right:20px;}
.comm-author {font-weight:700;}
.comm-author a {text-decoration:underline;}
.rate3-comm {position:absolute; right:0; top:0; white-space:nowrap; font-size:16px;}
.rate3-comm a {cursor:pointer; height:20px; line-height:20px; display:inline-block; font-size:14px;
color:#497b41; margin:0 5px 0 0; vertical-align:top}
.rate3-comm a:last-child {color:#a03939; margin:0 0 0 5px;}
.rate3-comm a:hover {opacity:0.5;}
.rate3-comm > span {height:20px; line-height:20px; display:inline-block; font-size:11px; font-weight:700; vertical-align:top;}
.rate3-comm > span > span.ratingtypeplus {color: #06b601;}
.rate3-comm > span > span.ratingplus {color: #95c613;}
.rate3-comm > span > span.ratingminus {color: #ff0e0e;}
.comm-two {color:#4c4c4c; line-height:20px; padding-bottom:0; font-size:14px;}
.signature {font:italic 12px Georgia, "Times New Roman", Times, serif; margin-top:10px; padding-top:10px; 
border-top:1px dashed #e3e3e3;}
.comm-three {margin-top:10px; font-size:12px; text-align:right;}
.comm-three li {display:inline-block; margin-left:10px;}
.comm-three a {color:#6382b1; text-decoration:underline;}
.comm-three li:first-child {margin-left:0px; float:left;}


/* LOGIN
----------------------------------------------- */
.ui-widget-overlay.ui-front { position: fixed !important; z-index: 99990 !important; top:0; left:0; right:0; bottom:0; }
.ui-dialog { position: fixed !important; z-index: 99999 !important; }
.ui-dialog, .ui-dialog * { z-index: 99999 !important; }
.ui-dialog .ui-dialog-titlebar-close { z-index: 100000 !important; }

.login-box {background-color:#FFF; padding:20px; display:none;}
.lb-user {margin:-20px -20px 20px -20px; padding:20px; background-color:#f6f6f6;  
display:flex; flex-flow:row wrap; justify-content:center; align-items:center;}
.lb-ava {width:80px; height:80px; border-radius:50%; margin-right:20px;}
.lb-name div {font-size:18px; font-weight:700;}
.lb-name a {margin-top:10px;}
.lb-menu a {display:block; line-height:30px; padding:0 10px; background-color:#f6f6f6;}
.lb-menu a:hover, .lb-menu a:hover .fa {background-color:#507299; color:#fff;}
.lb-menu a .fa {color:#507299;}
.login-box input[type="text"], .login-box input[type="password"], .login-box button, .lb-check 
{display:block; margin-bottom:20px; width:100%;}
.lb-check input {display:none;}
.lb-check input + label:before {width:14px; height:14px; margin-right:7px; cursor:pointer; position:relative; top:3px;
border-radius:3px; border:1px solid #ccc; content:""; background-color:#f6f6f6; display:inline-block;}
.lb-check input:checked + label:before {background-color:#e5050b;}
.lb-soc {margin:20px -20px -20px -20px; padding:20px; background-color:#f6f6f6; text-align:center;}
.lb-soc a {display:inline-block; margin:10px 3px 0 3px; vertical-align:top;}
.lb-soc img {display:block; width:30px;}


/* GO TOP BUTTON */
#gotop{position:fixed; width:40px; height:40px; line-height:36px; right:10px; bottom:10px; cursor:pointer; font-size:20px;
z-index:9998; display:none; opacity:0.7; background-color:#000; color:#FFF; border-radius:0%; text-align:center;}


/* ADAPTIVE
----------------------------------------------- */
.show-menu {display:none;}
.side-panel {width:260px; height:100%; overflow-x:hidden; overflow-y:auto; background-color:#444; 
padding:0 0 20px 0; z-index:888; position:fixed; left:-260px; top:0; transition:left .4s; -webkit-transition:left .4s;}
.side-panel.active {left:0;}
.close-overlay {width:100%; height:100%; background-color:rgba(0,0,0,0.8); 
position:fixed; left:0; top:0; z-index:887; display:none;}
.side-panel a {display:block; padding:8px 20px; font-size:14px; font-weight:700; color:#FFF; border-bottom:1px solid #111;}
.side-panel .menuactive, .side-panel a:hover {background-color:#444;}


@media screen and (max-width: 1220px) {
.center {max-width:1000px;}
.main {width:calc(100% - 255px); width:-webkit-calc(100% - 255px);}
.nav-menu {display:none;}
.slider-wrp {padding-left:400px;}
.slaider-big {width:400px;}
.slaider-big-img img {width:150%; max-width:150%; margin-left:-25%;}

.pages, .full-in, .full-comms {padding:15px;}
.tile {height:350px; margin:-15px -15px 0 -15px;}
.tile-o {padding:15px;}
}

@media screen and (max-width: 950px) {
.center {max-width:768px;}
.main {width:100%; float:none;}
.side {width:100%; float:none; display:none;}
.show-menu {display:block; height:60px; line-height:60px; cursor:pointer; 
font-size:24px; width:60px; text-align:center; color:#000; background-color:#f2f4f6;}
.side-panel > li:first-child {display:none;}
.side-panel .hidden-menu {position:static; background-color:#444; width:100%; display:block;}
}

@media screen and (max-width: 760px) {
.center {max-width:640px;}
.fcol {width:48%; margin-bottom:15px;}

.comm-one > span:nth-child(1), .comments-tree-list .comments-tree-list:before {display:none;}
.comm-three {display:none;}

.ac-protect {margin-top:0px;}
.comments-tree-list .comments-tree-list {padding-left:0px !important;}
.mass_comments_action {display:none;}
.sub-title h1 {font-size:18px; line-height:24px;}
}

@media screen and (max-width: 590px) {
.center {max-width:480px;}
.logotype {width:150px; padding-top:5px;}
.login-btns a {display:none;}
.slider-wrp {padding:250px 0 0 0; height:auto;}
.slaider-big {width:100%; height:250px;}
.slaider-big-img img {width:100%; max-width:100%; margin-left:0%;}
.slaider-mini {height:auto; padding:10px;}

.tile {height:250px;}
.tile h1 {font-size:18px; margin:10px 0;}
.meta, .tile-cat {font-size:12px;}

.comm-one > span:nth-child(4), .comm-one > span:nth-child(3) {display:none;}
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:300px;}

.ac-soc {position:static;}
.ac-inputs input {width:100%; margin-top:10px;}
.ac-protect {width:100%; float:none; margin:0;}
.ui-dialog {width:100% !important;}
.upop-left, .upop-right {float:none !important; width:100% !important; margin:0; padding:0 20px;}
.upop-left {margin-bottom:10px; text-align:center;}
.ui-dialog-buttonset button {display:block; margin:0 0 5px 0; width:100%;}
#dofullsearch, #searchsuggestions span.seperator {display:none !important;}
.attach .download-link {margin:0 -15px 0 0; float:none; display:block; padding:0 10px;}
.attach-info {float:none;}
}

@media screen and (max-width: 470px) {
.logotype {width:0px; padding-top:5px;}
.center {max-width:420px;}
.slider-wrp {padding:180px 0 0 0;}
.slaider-big {height:180px;}
.slide-title {font-size:16px; padding:15px;}
.sl-meta {font-size:12px;}
.fcol {width:100%;}

.tile img {width:150%; max-width:150%; margin-left:-25%;}
.full, .full-comms {padding:10px;}
.comms-title {text-align:center; display:block !important;}

.comm-two {line-height:18px; font-size:14px;}

.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:250px;}
}
@media screen and (max-width: 414px) {
.short {width:45%; height:400px; margin:0 15px 15px 0; padding:15px; display:inline-block; vertical-align: top;border-radius:3px; overflow:hidden;}


}


.instagram-media, .twitter-tweet {display: inline-block !important;}

.hljs-comment, .hljs-quote {
  color: #a0a1a7;
  font-style: italic;
}

.hljs-doctag, .hljs-keyword, .hljs-formula {
  color: #a626a4;
}

.hljs-section, .hljs-name, .hljs-selector-tag, .hljs-deletion, .hljs-subst {
  color: #e45649;
}

.hljs-literal {
  color: #0184bb;
}

.hljs-string, .hljs-regexp, .hljs-addition, .hljs-attribute, .hljs-meta-string {
  color: #50a14f;
}

.hljs-built_in, .hljs-class .hljs-title {
  color: #c18401;
}

.hljs-attr, .hljs-variable, .hljs-template-variable, .hljs-type, .hljs-selector-class, .hljs-selector-attr,
.hljs-selector-pseudo, .hljs-number {
  color: #986801;
}

.hljs-symbol, .hljs-bullet, .hljs-link, .hljs-meta, .hljs-selector-id, .hljs-title {
  color: #4078f2;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}
figure {
    margin: 0;
}

figure.align-left {
    float: left;
}

figure.align-right {
    float: right;
}

figure.image.align-center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

figure.image figcaption {
	padding: 1rem;
    background-color: #fafafa;
    font-size: .8rem;
    caption-side: bottom;
    word-break: break-word;
    text-align: center;
}

figure.image.align-center figcaption {
	display: table-caption;
}
.comments-image-gallery {
  margin: 0;
  padding: 0;  
  list-style: none;
  clear: both;
}

.comments-image-gallery li{
	list-style: none;
	margin: 0;
	padding: 0;  
}

.comments-image-gallery li img{
  float: left;
  margin-right: 5px;
  border: 5px solid #fff;
  width: 100px;
  height: 100px;
  transition: box-shadow 0.5s ease;
}

.comments-image-gallery li img:hover {
  box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
}

.mce-toc {
  border: 1px solid #dbdada;
  margin: 0 0 .7rem 0;
}

.mce-toc h2 {
  margin: 4px;
}

.mce-toc ul {
  padding-left: 20px;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.mce-toc ul ul {
  padding-left: 20px;
  margin-block-start: 0;
  margin-block-end: 0;
}

.mce-toc li {
  list-style-type: none;
}
.image-bordered {
	border: 1px solid #ddd;
}

.image-shadows {
	box-shadow: rgb(9 30 66 / 25%) 0px 4px 8px -2px, rgb(9 30 66 / 8%) 0px 0px 0px 1px;
}

.image-padded {
	padding: 0.5rem;
}

.comments-user-profile {
  font-weight: bold;
  cursor: pointer;
  color: #3394e6;
}
.title_spoiler svg{
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 7px;
	height: 16px;
	width: 16px;
}
.mce-accordion summary {
	cursor: pointer;
}

.self_delete_link {
	border: 0 none;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	padding: 12px 27px;
	border-radius: 10px;
	outline: none;
	background-color: #f44336;
	color: #fff;
	text-shadow: 0 1px #333;
	text-decoration: none !important;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	box-sizing: border-box;
	transition: all ease .1s; transition: all ease .1s;
}
.DLEPush {
	z-index: 2001;
	position: fixed;
	right: 20px;
	top: 20px
}

@keyframes DLEPush-show {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.DLEPush-notification.wrapper {
	animation-name: DLEPush-show;
	animation-duration: 1s;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	color: #333;
	margin-bottom: 10px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
	background-color: #fff;
	border-radius: 10px
}

.DLEPush-notification .DLEPush-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 45px;
	height: 100%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-align: center;
}

.DLEPush-notification .DLEPush-icon svg {
	scale: .8;
}

.DLEPush-notification .DLEPush-header {
	font-weight: 500;
	grid-column: 2;
	grid-row: 1;
	font-size: 1rem;
	margin-left: 1rem;
	margin-top: .5rem;
}
.DLEPush-notification .DLEPush-header:empty {
	margin-top: 0;
}

.DLEPush-notification .DLEPush-message {
	grid-column: 2;
	grid-row: 2;
	font-size: .875rem;
	margin: 1rem;
}

.DLEPush-notification .DLEPush-message li, .DLEPush-notification .DLEPush-message ul {
	list-style-type: none;
	padding-left: 0;
}

.DLEPush-notification .DLEPush-close {
	position: absolute;
	top: 8px;
	right: 10px;
	font-weight: 300;
	background: none;
	border: 0;
	font-size: 1.15rem;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	color: inherit;
	outline: 0;
	opacity: 0.75;
}

@media only screen and (min-width: 601px) {
	.DLEPush-notification.wrapper {
		min-width: 400px;
	}
}

.DLEPush-notification .DLEPush-close:hover {
	opacity: 1;
}

.DLEPush-notification.wrapper.push-success {
	background-color: #e0f2f1;
}

.DLEPush-notification.wrapper.push-success .DLEPush-icon {
	background-color: #00897b;
}

.DLEPush-notification.wrapper.push-warning {
	background-color: #FFF3E0;
}

.DLEPush-notification.wrapper.push-warning .DLEPush-icon {
	background-color: #FF9800;
}

.DLEPush-notification.wrapper.push-error {
	background-color: #FBE9E7;
}

.DLEPush-notification.wrapper.push-error .DLEPush-icon {
	background-color: #FF5722;
}

input[type="text"].comments_author_field {
	width: 100%;
	margin-bottom: 10px;
}
.ui-dialog-buttonset button.ui-button-delete {
    background-color: #f44336;
    border-color: #f44336;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(51, 51, 51, .5);
}
.ui-dialog-buttonset button.ui-button-delete:hover {
    background-color: #db3a2f;
    border-color: #db3a2f;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(51, 51, 51, .5);
}
.form-check-label {
    cursor: pointer;
}
.form-check-input {
    color: #0c5f7eed;
    flex-shrink: 0;
    width: 1.12rem;
    height: 1.12rem;
    margin: -0.188rem 0.625rem 0 0;
    appearance: none;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #0c5f7eed;
    vertical-align: middle;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%230c5f7eed' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%230c5f7eed'/%3e%3c/svg%3e");
}

.form-check-input[type=checkbox] {
    border-radius: .25rem;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}
.pm th{
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
}
.pm th.pm_checkbox {
	text-align: center;
}
.pm_list.pm_subj, .pm_list.pm_icon, .pm_list.pm_last_user {
 cursor: pointer;
}
.pm_list.pm_icon svg {
	width: 1.4rem;
	height: 1.4rem;
	vertical-align: middle;
}

.pm_list.pm_icon.pm-unread-image {
 color: #3394e6;
}
.pm td.pm_list.pm_icon, .userstop td, th.pm_head.pm_icon {
	border-bottom: none;
}
.pm_list.pm_icon.pm-reply-image {
	color: #087e02c4;
}
.pm_list.pm_icon.pm-read-image {
	color: #afafaf;
}

.pm_list .pm_last_message, .pm_list .pm_last_date, .pm_list .pm_with_user {
	color: #64748b;
	font-size: .8rem;
}
.pm tbody > tr:hover {
    background-color: #e2e8f099;
}
.pm_navigation {
	margin-top: 1rem;
}
.pm_navigation .navigation {
	display: inline-block;
	color: #333333;
	background-color: #f5f5f5;
	border-radius: 0.188rem;
	padding: .4rem;
}

.pm_navigation .navigation a, .pm_navigation .navigation span {
    padding: 0.5rem;
    min-width: 2.25rem;
}
.pm_navigation .navigation span {
    background-color: #4581d0;
    color: #fff;
}
.pm_navigation .navigation a {
    text-decoration: none;
    color: #000;
}
.pm_navigation .navigation a:hover {
    background-color: #e2e8f0;
}
.quote_link {
	float: right;
}
.quote_link svg {
	color: #6c838e;
	vertical-align: middle;
}
.clipboard-copy-link svg {
	color: #6c838e;
	vertical-align: middle;
	margin-top: -3px;
}

.smart-captcha {
    display: inline-block;
}


.mathml-container {
	font-family: math;
}
div.mathml-block {
	font-size: 1.1em;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .139em .35em;
}

div.mathml-block .katex {
    font-size: 1.1em;
}

span.mathml-inline {
	display: inline-block;
	vertical-align: middle;
	margin: 0 .12em;
}


.dleshowhidden {
	color: #104d92;
	background-color: #E3F2FD;
	border: 1px solid #1E88E5;
	box-shadow: 0 5px 12px rgba(126, 142, 177, 0.2);
	padding: .83em;	
}

