@font-face {
  font-family: "fontello";
  src: url("/font/fontello.eot?36442325");
  src: url("/font/fontello.eot?36442325#iefix") format("embedded-opentype"),
    url("/font/fontello.woff?36442325") format("woff"),
    url("/font/fontello.ttf?36442325") format("truetype"),
    url("/font/fontello.svg?36442325#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
.m-icon {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  /* speak: none; */

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;

  /* You can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  outline: none;
}
/* @import url(
  https://fonts.googleapis.com/css?family=Roboto:400,
  300,
  600,
  400italic&subset=cyrillic,
  cyrillic-ext
); */
@import url(https://fonts.googleapis.com/css?family=Roboto:600&subset=cyrillic);
@import url(https://fonts.googleapis.com/css?family=Roboto:400&subset=cyrillic);
/* @import url(
  https://fonts.googleapis.com/css?family=Roboto:400,
  300,
  600,
  400italic&subset=cyrillic,
  cyrillic-ext
); */

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  user-select: none;
  outline: none;
}

body {
  font-family: "Roboto", "Helvetica Neue", "HelveticaNeue", Helvetica, Arial,
    "AppleGothic", "Malgun Gothic", "Dotum", "Gulim", sans-serif;
  background: var(--navy);
  /*line-height: 1;*/
  color: black;
  /*  line-height: 1.4;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color:#001935;*/
}
a,
a:visited {
  /* порядок правил для ссылок имеет значение */
  color: #000;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:focus,
a:active {
  color: #000;
  text-decoration: none;
}
:root {
  --rgb-white: 255, 255, 255;
  --rgb-white-on-dark: 255, 255, 255;
  --rgb-black: 0, 0, 0;
  --navy: #001935;
  --red: #ff492f;
  --orange: #ff8a00;
  --yellow: #e8d738;
  --green: #00cf35;
  --blue: #00b8ff;
  --purple: #7c5cff;
  --pink: #ff62ce;
  --accent: #00b8ff;
  --secondary-accent: #e5e7ea;
  --follow: #f3f8fb;
  --white: rgb(var(--rgb-white));
  --white-on-dark: rgb(var(--rgb-white-on-dark));
  --black: rgb(var(--rgb-black));
  --transparent-white-65: rgba(var(--rgb-white-on-dark), 0.65);
  --transparent-white-40: rgba(var(--rgb-white-on-dark), 0.4);
  --transparent-white-25: rgba(var(--rgb-white-on-dark), 0.25);
  --transparent-white-13: rgba(var(--rgb-white-on-dark), 0.13);
  --transparent-white-7: rgba(var(--rgb-white-on-dark), 0.07);
  --gray-85: rgba(var(--rgb-black), 0.85);
  --gray-75: rgba(var(--rgb-black), 0.75);
  --gray-65: rgba(var(--rgb-black), 0.65);
  --gray-40: rgba(var(--rgb-black), 0.4);
  --gray-25: rgba(var(--rgb-black), 0.25);
  --gray-13: rgba(var(--rgb-black), 0.13);
  --gray-7: rgba(var(--rgb-black), 0.07);
  --font-family: "Roboto", "Helvetica Neue", "HelveticaNeue", Helvetica, Arial,
    "AppleGothic", "Malgun Gothic", "Dotum", "Gulim", sans-serif;
}

#root {
  max-width: 540px;
  margin: 40px auto 0 auto;
}

.modal {
  max-width: 540px;
  width: inherit;
}

/************************************************/
/****************** NAVIGATION ******************/
/************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 1;
}
.header.out {
  transform: translateY(-100%);
}

.topbar {
  background: var(--navy);
  color: white;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

/************* DROPDOWN **********/
/* SIMPLE DROP DOWN */
.dd {
  position: relative;
  display: inline-block;
}

.dd-c {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  color: var(--black);
  min-width: 160px;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 1;
  top: 0;
}
.dd-c li {
  cursor: pointer;
  color: var(--black);
  white-space: nowrap;
  padding: 10px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  list-style: none;
}
.dd-c li:hover {
  background-color: var(--gray-7);
}
.dd-r {
  right: 5px;
}
.dd-l {
  left: 5px;
}

.dd:hover .dd-c {
  display: block;
}
/* SIMPLE DROP DOWN  END*/

nav {
  margin: 0 auto;
  max-width: 400px;
}

nav::after {
  display: block;
  content: "";
  clear: both;
}

nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

nav ul li {
  /*float: left;*/
  position: relative;
}

nav ul li a,
nav ul li span:visited {
  display: block;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

/* nav>ul>li>a, nav>ul>li>a:visited{
  color: var(--white);
} */
/* nav ul li span:hover,
nav ul li span:focus {
} */

nav ul li span:focus {
  color: white;
}
nav ul li span:not(:only-child)::after {
  padding-left: 4px;
  content: " ▾";
}
/* nav ul li ul li {
  /* min-width: 100%;*/
/*} */

nav ul li ul li span {
  background: transparent;
  color: #4a5666;
  border-bottom: 1px solid #dde0e7;
  cursor: pointer;
  display: block;
  white-space: nowrap;
  padding: 10px;
}

nav ul li ul li span:hover,
nav ul li ul li span:focus {
  background: #e7e9ef;
  color: #111;
  border-radius: 4px;
}

.dropdown {
  display: none;
  position: absolute;
  margin-top: 0px;
  background: linear-gradient(to bottom right, white, #f8f8f8) !important;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(10, 20, 30, 0.4);

  /* padding: 0px 4px;*/
  min-width: min-content;
}
.dropdown.lewy {
  left: 0;
}
.dropdown.prawy {
  right: 0;
}

.dropdown::after {
  content: "";
  position: absolute;
  right: 10px;
  top: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}
.dropdown.lewy::after {
  left: 7px;
}
.dropdown.prawy::after {
  right: 10px;
}
.dropdown:hover::after {
  border-bottom: 8px solid #f6f7f9;
}
.scroll {
  display: block;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 40px;
  text-align: center;
}
.fullmodal .scroll {
	display: block;
	position: fixed;
	bottom: 0px;
	width: 100%;
	max-width: 540px;
	height: 40px;
	text-align: center;
}
.scroll a {
  color: var(--white);
  font-size: 20px;
  padding: 10px;
}
.menu {
  display: flex;
  max-width: 540px;
  margin: 0px auto;
  justify-content: space-around;
  background-color: var(--navy);
  border: 1px solid var(--navy);
}
.menuico {
  flex-shrink: 1;
}

.menu span {
  padding: 8px 0px;
  color: var(--transparent-white-40);
}
.pagination {
  display: none;
  padding: 5px 20px;
  background-color: var(--navy);
  color: var(--white);
  border-radius: 8px 8px 0px 0px;
  border: 1px solid var(--navy);
  width: 320px;
  position: fixed;
  bottom: 40px;
  right: 50%;
  transform: translate(50%, 0);
}
.pagination a {
  color: var(--black);
  background-color: var(--white);
  padding: 0 5px;
  border: 1px solid var(--secondary-accent);
  border-radius: 3px;
  text-decoration: none;
}

.btn-group {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.pagination .strona {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}

.pagin {
  height: 0px;
  font-size: 0px;
}

.red {
  background: var(--red);
}
.blue {
  background: var(--blue);
}
.green {
  background: var(--green);
}
.yellow {
  background: var(--yellow);
}

.photo-item {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.photo-item__image {
  display: block;
  width: 100%;
  margin: 5px 0;
}
.page-load-status {
  display: none;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
  color: #777;
  height: 100px;
  background: linear-gradient(to bottom right, #3d4258, #6670a0, #9688b4);
}
.blog_menu {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 50px;
  top: 44px;
}
.blog_menu_ajax {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 50px;
  top: 0px;
  max-width: 540px;
}

.width {
  max-width: 540px;
  margin: 0 auto;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--green);
  color: var(--white);
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
}
.blog_menu:before,
.blog_menu_ajax:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: linear-gradient(180deg, #000, transparent);
}
.blog_menu i {
  font-size: 22px;
  z-index: 105;
}

.blog_menu_blog {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  position: relative;
  display: block;
  text-decoration: none;
  max-width: 75%;
  flex-grow: 1;
  margin-left: 10px;
}
.blog_menu_comment {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  position: relative;
  display: block;
  text-decoration: none;
  max-width: 100%;
  flex-grow: 1;
  margin-left: 10px;
}
.blogheader {
  background-color: var(--follow);
}
.blogheader > .head {
  width: 100%;
  height: 100px;
}
.blogheader label {
  font-size: 14px;
}
.blogheader .avatar {
  margin: -45px auto 10px;
  text-align: center;
  width: 100px;
  height: 100px;
  /* position: relative; */
  background-size: cover;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}

.blogheader .nazwa {
  font-size: 20px;
  padding: 7px;
}
.blogheader .nazwa h1 {
  /* position: relative; */
  text-align: center;
}
.blogheader .slug {
  font-size: 16px;
  /* position: relative; */
  text-align: center;
}

.blogheader .slug i {
  font-size: 12px;
}
.blogheader .slug small {
  font-size: 12px;
}
.blogheader .opis {
  position: relative;
  padding: 20px 0;
  margin: 0 10px;
}
.blogheader .avatar input {
  display: none;
}
.blogtabs {
  font-size: 12px;
  position: sticky;
  top: 32px;
  background-color: var(--follow);
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--pink);
  cursor: pointer;
}
.blogtabs > div {
  padding: 0 10px;
  flex-grow: 1;
  text-align: center;
  border-bottom: 3px solid var(--gray-13);
}
.blogtabs > div:hover {
  border-bottom: 3px solid var(--blue);
}
.blogtabs > div.activ {
  border-bottom: 3px solid var(--blue);
}
.blogtabs_cifra {
  margin-top: 5px;
}
.blogtabs_opis {
  margin: 10px 0 7px;
}
.showhide {
  background-color: var(--white);
  display: block;
  height: 20px;
  padding: 5px 5px;
}
.addnewpost {
  display: flex;
  position: fixed;
  bottom: 40px;
  width: 50px;
  right: 20px;
  z-index: 10000;
  border-radius: 50%;
  background-color: #f2f2f2;
  height: 50px;
  font-size: 30px;
  justify-content: center;
  padding: 8px 4px;
  box-sizing: border-box;
}
.addnewpost a {
  color: #00cf35;
}
.otstup,
.otstup54 {
  margin-top: 50px;
}
.otstup10 {
  margin-top: 10px;
}
.otstup123 {
  margin-top: 123px;
}
.btn-zamknij,
.btn-zamknij:visited {
  z-index: 103;
  color: var(--white);
}
.ekran {
  max-width: 540px;
  margin: 0 auto;
  /* min-height: 100vh;*/
  background-color: white;
}
.fullmodal {
  padding: 0px;
  max-width: 540px;
  width: 100%;
  min-height: 100vh;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.blocker {
  padding: 0px;
  background-color: var(--navy);
}
.oceny {
  display: flex;
  width: 100%;
  flex-direction: row;
  max-width: 540px;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  margin: 0px;
  top: 50px;
  border-top: 1px solid var(--gray-13);
  height: 60px;
  border-bottom: 1px solid var(--gray-13);
  background: var(--white);
}
.photo-item .oceny {
  height: 46px;
}
.ocena {
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;

  margin: 0px 2px;

  background-color: var(--white);
}
.ocena .szczegoly {
  font-size: 10px;
  margin-top: 5px;
  font-family: var(--font-family);
  flex: 1 0 20%;
  padding: 0 0 0 3px;
}
.ocena p {
  display: block;
  flex-basis: 100%;
  font-size: 10px;
}
.komentarii {
  overflow: hidden;
}
.koment .avatar {
  float: left;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  background-size: cover;
  border: 1px solid var(--gray-13);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 1px var(--gray-13);
  -moz-box-shadow: 0 0 1px var(--gray-13);
  -o-box-shadow: 0 0 1px var(--gray-13);
  -ms-box-shadow: 0 0 1px var(--gray-13);
  box-shadow: 0 0 1px var(--gray-13);
}
.koment .tresc {
  margin: 10px 10px 0 30px;
  padding: 0 10px 5px 10px;
  font-size: 12px;
}
.koment .autor {
  width: 100%;
  float: left;
  margin: 2px 5px 5px -5px;
  font-weight: 600;
}

.lastcomm span,
.lastcomm > a {
  font-size: 12px;
  margin: 10px 10px 3px 10px;
  display: block;
  color: var(--gray-65);
}
.lastcomm a,
.lastcomm .koment .tresc {
  color: var(--gray-65);
}
.lastcomm > a {
  margin: 10px;
}

.btn,
.topmenu > .unfollow.guziki.btn {
  display: block;
  height: 17px;
  border: none;
  background: #4caf50;
  color: #fff;
  padding: 4px 6px;
  font-size: 13px;
}
.btn:hover,
.topmenu > .unfollow.guziki.btn:hover {
  background: #43a047;
  color: #fff;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.btn.unfollow,
.topmenu > .follow.guziki.btn {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
}
.btn.unfollow:hover,
.topmenu > .follow.guziki.btn:hover {
  background: gray;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.post_head {
  display: flex;
  margin-top: 3px;
}
.post_head_ava_ist_a {
  flex-shrink: 0;
  width: 65px;
}
.post_head_ava_ist {
  width: 50px;
  height: 50px;
  background-size: cover;
  margin: 5px 10px 5px 5px;
  display: inline-block;
  border-radius: 5px;
}

.post_head_blogi {
  flex-grow: 1;
  min-width: 0;
  margin-top: 5px;
}
.post_head_ist {
  display: flex;
}
.post_head_ist_nazwa {
  height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  font-weight: 700;
  font-size: 15px;
}
.post_head_reblog {
  display: flex;
  margin-top: 6px;
}

.post_head_reblog_nazwa {
  line-height: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  font-weight: 400;
  font-size: 12px;
}
.head_reblog_ico {
  background-image: url(/img/ico/reblog-me.png);
  width: 40px;
  height: 20px;
  display: inline-block;
  background-size: cover;
}
.post_head_action {
  padding: 3px 12px 0 12px;
}
.post_head_follow {
  width: 31px;
  font-size: 12px;
  padding: 5px;
  color: var(--accent);
  cursor: pointer;
}
.post {
  display: block;
  border-top: 1px solid var(--gray-13);
  font-family: var(--font-family);
  background-color: var(--white);
}
.post_head_ava_autor_a {
  flex-shrink: 0;
  width: 45px;
}
.post_head_ava_autor {
  width: 30px;
  height: 30px;
  background-size: cover;
  margin: 5px 10px 5px 5px;
  display: inline-block;
  border-radius: 5px;
}
.post_head_autor_nazwa {
  height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  font-size: 15px;
}

.post_aut {
  max-width: 540px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 0px;
  padding-top: 7px;
  height: 34px;
}
.post_aut_a {
  display: flex;
}
.name_post_aut {
  height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.avatar_post {
  float: left;
  /*position: relative;*/
  border-radius: 3px;
  /*  background-size: cover;
    overflow: hidden;*/
  height: 25px;
  width: 25px;
  margin-right: 10px;
}
.tagi,
.tekst,
.istocznik {
  /*  font-family: var(--font-family);
  background-color: var(--white);*/
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black);
  padding: 10px 10px 10px;
}

.tagi a,
.istocznik,
.istocznik a {
  color: var(--gray-65);
  text-decoration: none;
}

.post_footer_like {
  outline: none;
}

.reblogico {
  width: 21px;
  height: 15px;
  background-image: url(/img/ico/reblog-me.png);
  display: block;
  background-size: cover;
}
.commentico {
  width: 15px;
  height: 15px;
  background-image: url(/img/ico/coment_25_25.jpg);
  display: block;
  background-size: cover;
}
.upalico {
  width: 15px;
  height: 15px;
  background-image: url(/img/ico/upal_25_50.jpg);
  display: block;
  background-position-y: 0px;
  background-size: cover;
}
.tekuico {
  width: 24px;
  height: 15px;
  background-image: url(/img/ico/teku_39_50.jpg);
  display: block;
  background-position-y: 0px;
  background-size: cover;
}
.stouico {
  width: 18px;
  height: 15px;
  background-image: url(/img/ico/stou_30_50.png);
  display: block;
  background-position-y: 0px;
  background-size: cover;
}
.post_footer_like.activ {
  background-position-y: 15px;
}
.prosvet {
  height: 15px;
  background-color: var(--navy);
}
.login {
  max-width: 540px;
  width: 100%;
  height: 750px;
  background-image: url(/img/bg/login-fon2.png);
  background-size: cover;
}

.heading-correct-pronounciation {
  margin: auto;
  text-align: center;
  position: relative;
}
.login h1 {
  margin: 20px auto;
  display: block;
  color: #fff;
  font-family: "Cardo", serif;
  font-size: 1.5em;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 2.2em;
  text-shadow: 0em 0em 4px rgba(0, 0, 0, 1);
  height: 200px;
}
.login em {
  font-size: 2.8em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  font-style: normal;
  padding-top: 0.1em;
  text-shadow: 0.07em 0.07em 0 rgba(0, 0, 0, 0.1);
}
.login em::before,
.login em::after {
  color: #c80000;
  content: "❤";
  display: inline-block;
  /* -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); */
  /* opacity: 0.2; */
  margin: 0 0.6em;
  font-size: 0.3em;
}
.login .privet {
  display: block;
  max-width: 360px;
  margin: 60px auto;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  text-align: center;
  text-shadow: 0em 0em 3px rgba(0, 0, 0, 1);
}
.login .besp {
  display: block;
  max-width: 360px;
  margin: 50px auto;
  color: rgb(12, 190, 36);
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
  text-align: center;
  text-shadow: 0em 0em 3px rgba(0, 0, 0, 1);
}
.login .btn-gologin {
  display: block;

  width: 320px;
  padding: 10px 30px;
  margin: 30px auto;
  background-color: coral;
  border-radius: 4px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}
.login .btn-gologin:hover {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  background-color: rgb(240, 92, 38);
  transform: translate3d(4px, 4px, 4px);
  /* transform: translateX(4px); */
}
.login .btn-goregister {
  display: block;
  width: 320px;
  padding: 10px 30px;
  margin: 30px auto;
  background-color: rgb(12, 190, 36);
  border-radius: 4px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}
.login .btn-goregister:hover {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  background-color: rgb(21, 148, 38);
  transform: translate3d(4px, 4px, 4px);
  /* transform: translateX(4px); */
}
.login h2 {
  font-size: 30px;
  font-weight: 600;
  display: block;
  max-width: 360px;
  padding: 0 10px;
  margin: 30px auto 40px;
  color: #fff;
  border-bottom: 3px solid green;
  text-shadow: 0em 0em 4px rgba(0, 0, 0, 1);
}

.login .pasrow {
  padding: 0 10px;
  margin: 15px auto;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.login .pasrow label {
  flex: 1 1 50%;
  color: #070707;
  text-shadow: none;
  font-size: 14px;
  line-height: 18px;
  text-shadow: 0em 0em 4px rgba(255, 255, 255, 0.89);
}
.login .pasrow .privet {
  margin: 0;
  text-align: start;
}

.login input {
  flex: 1 1 50%;
  padding: 7px;
  font-size: 17px;
  background-color: #fff;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3…c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E),
    linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
  outline: none;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
}

.login .zabyl {
  display: block;
  margin: 10px;
  font-size: 12px;
  text-decoration: underline;
  color: white;
  background: var(--gray-40);
  padding: 3px;
  cursor: pointer;
  border-radius: 2px;
}
.login .pasmsg,
.login .pasmsg p,
.login .sendmsg,
.login .sendmsg p {
  text-align: left;
  font-weight: 600;
  color: rgb(218, 17, 17);
  text-shadow: 0em 0em 4px rgba(255, 255, 255, 0.89);
  width: 100%;
}

.logswitch {
  position: relative;
  width: 360px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: inline-block;
}
.logswitch-checkbox {
  display: none;
}
.logswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #999999;
  border-radius: 20px;
}
.logswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}
.logswitch-inner:before,
.logswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 24px;
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}
.logswitch-inner:before {
  content: "Конечно запомнить";
  padding-left: 10px;
  background-color: #34a7c1;
  color: #ffffff;
}
.logswitch-inner:after {
  content: "Я шифруюсь, не надо.";
  padding-right: 10px;
  background-color: #eeeeee;
  color: #999999;
  text-align: right;
}
.logswitch-switch {
  display: block;
  width: 14px;
  margin: 5px;
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 203px;
  border: 2px solid #999999;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}
.logswitch-checkbox:checked + .logswitch-label .logswitch-inner {
  margin-left: 0;
}
.logswitch-checkbox:checked + .logswitch-label .logswitch-switch {
  right: 0px;
}
@media only screen and (min-width: 321px) {
  .reblogico {
    width: 37px;
    height: 25px;
  }
  .commentico {
    width: 25px;
    height: 25px;
  }
  .upalico {
    width: 25px;
    height: 25px;
  }
  .tekuico {
    width: 39px;
    height: 25px;
    background-image: url(/img/ico/teku_39_50.jpg);
    display: block;
    background-position-y: 0px;
    background-size: cover;
  }
  .stouico {
    width: 30px;
    height: 25px;
    background-image: url(/img/ico/stou_30_50.png);
    display: block;
    background-position-y: 0px;
    background-size: cover;
  }
  .post_footer_like.activ {
    background-position-y: 25px;
  }
}
