body {
	font-family: 'Nunito Sans', sans-serif;
}
.cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fbfcfe;
    top: -200%;
    left: 0
}

.cover-active {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fbfcfe;
    animation: showCover .02s ease-in;
    animation-fill-mode: forwards;
    left: 0;
    z-index: 16
}

.cover-active__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%
}

.cover-active__body {
    display: flex;
    flex-direction: column;
    align-items: center
}

.cover-active__header {
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #ededed
}

.cover-active__header svg {
    cursor: pointer;
}

.cover-active__form {
    width: 100%;
    text-align: center
}

.cover-active__search-field {
    padding: 0 30px
}

.cover-active__search-logo {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
    width: 22px
}

.cover-active__close-button {
	width: 18px;
	cursor: pointer;
	margin-right: 15px;
}

.cover-active__last-requests {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;
    box-shadow: 0 4px 11px rgba(61, 62, 64, .15);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    cursor: pointer
}

.cover-active__request {
    padding: 12px 0;
    display: block;
    width: 100%;
    text-align: center
}

.cover-active__request:not(:last-of-type) {
    border-bottom: 1px solid #ededed
}

.cover-hidden {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fbfcfe;
    animation: hideCover .5s;
    animation-fill-mode: forwards;
    left: 0;
    z-index: 1
}

.cover-hidden .additionally__form-link {
    display: none!important
}

.categories {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px
}

.categories__header {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center
}

.categories__headliner {
    font: bold 11px 'Nunito Sans', Lato, sans-serif;
    text-transform: uppercase;
    color: #c3c3c3
}

.categories__shape {
    width: 100%;
    height: 1px;
    background: #ededed;
    margin-left: 15px
}

.categories__icons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px
}

.categories__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer
}

.categories__icon:not(:first-of-type) {
    margin-left: 30px
}

.categories__icon-description {
    font: bold 11px 'Nunito Sans', Lato, sans-serif;
    text-transform: uppercase;
    color: #121212;
    margin-top: 10px
}

.last {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px
}

.last__header {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center
}

.last__headliner {
    font: bold 11px 'Nunito Sans', Lato, sans-serif;
    text-transform: uppercase;
    color: #c3c3c3
}

.last__shape {
    width: 100%;
    height: 1px;
    background: #ededed;
    margin-left: 15px
}

.last__requests {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.last__request {
    font: bold 11px 'Nunito Sans', Lato, sans-serif;
    overflow: auto;
    text-transform: uppercase;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #000
}

.last__request:not(:last-of-type) {
    margin-bottom: 25px
}

.last__request:first-of-type {
    margin-top: 25px
}

.additionally {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px
}

.additionally__header {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center
}

.additionally__headliner {
    font: bold 11px 'Nunito Sans', Lato, sans-serif;
    text-transform: uppercase;
    color: #c3c3c3
}

.additionally__shape {
    width: 100%;
    height: 1px;
    background: #ededed;
    margin-left: 15px
}

.additionally__form-link {
    width: 95%;
    margin: 25px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.additionally__form-link svg {
    cursor: pointer
}

.additionally__feedback-link {
    font: 500 11px 'Nunito Sans', Lato, sans-serif;
    text-transform: uppercase;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.additionally__feedback {
    margin-left: 10px
}
.cover-active__logo-desktop {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 22px;
	font-weight: bold;
	color: #000;
	justify-content: center;
	margin: 0 auto;
}
@media (min-width:500px) {
    .cover-active__search-logo {
        left: 10.7%
    }
    .cover-active__form {
        width: 70%;
        position: relative;
        text-align: right
    }
    .cover-active__last-requests {
        left: 50%;
        margin-left: 5%
    }
}

@media (min-width:550px) {
    .cover-active__header {
        display: flex;
        justify-content: center
    }
    .categories__header {
        display: none
    }
    .categories__icons {
        justify-content: flex-start;
        padding-left: 50px
    }
    .additionally__form-link {
        margin-left: 15px
    }
}

@media(min-width:720px) {
    .cover-active {
        display: flex;
        flex-direction: column;
        align-items: center
    }
    .cover-active__header {
        display: flex;
        justify-content: center;
        width: 100%
    }
    .cover-active__body {
        width: 580px
    }
    .cover-hidden {
        display: flex;
        flex-direction: column;
        align-items: center
    }
}

@media (min-width:1100px) {
    .cover-active__form {
        width: 900px;
        text-align: right
    }
}

@keyframes showCover {
    from {
        top: -100%
    }
    to {
        top: 0
    }
}

@keyframes hideCover {
    from {
        top: 0
    }
    to {
        top: -200%
    }
}

a {
    text-decoration: none
}

.dont-lose__wrapper {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(18, 18, 18, 0.7);
		z-index: 16;
		align-items: center;
		position: fixed;
}
.dont-lose {
    width: 90%;
    border-radius: 10px;
    margin: 0 auto 36px;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px #d3d3d3;
    min-height: 50px;
		background-color: #fff;
		position: relative;
}

.dont-lose--close {
	border: 0;
	background: transparent;
	padding: 0;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
}

.dont-lose__icon {
    width: 100%
}

.dont-lose__text {
    width: 100%
}

.dont-lose__headliner {
    font: 500 17px 'Nunito Sans', Lato, sans-serif;
    margin-block-start: .5em;
    margin-block-end: 15px;
}

.dont-lose__description {
    margin-block-start: .3em;
    margin-block-end: 25px;
    text-align: left;
    font: normal 16px 'Nunito Sans', Lato, sans-serif;
    color: #bfc8d6
}

.dont-lose__checkbox-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px
}

.dont-lose__form {
    width: 100%;
		display: flex;
		flex-wrap: wrap;
}

.dont-lose__form button {
    margin-top: 25px
}

.dont-lose__input {
    width: 100%;
    margin-top: 15px;
    padding: 0 10px !important;
		flex: 1;
}

.dont-lose__button {
    background: 0 0;
    border: 1px solid #bfc8d6;
    border-radius: 6px;
    font: normal 16px 'Nunito Sans', Lato, sans-serif;
    padding: 8px 16px;
		color: #000;
}

.dont-lose .info {
	display: flex;
	margin-top: 15px;
}
.dont-lose .info svg {
	width: 16px;
	flex: none;
	margin-right: 8px;
	margin-top: 2px;
}
.dont-lose .info .extra-info {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 13px;
	line-height: 18px;
	color: #000000;
}

@media(min-width:320px) {
    .dont-lose {
        width: 580px
    }
    .dont-lose__form {
        display: flex;
        justify-content: space-between;
        align-items: center
    }
    input.dont-lose__input {
        margin: 0;
        width: 77%;
        margin-right: 15px
    }
    button.dont-lose__button {
        padding: 7px 16px;
        margin-top: 0
    }
}

a {
    text-decoration: none
}

body {
    margin: 0
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .5s;
    overflow-x: hidden
}

.posts {
    min-width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.post {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 10px #d3d3d3;
    margin-bottom: 36px;
    overflow: hidden;
		background-color: #fff;
}

.post__countdown {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    border-top: 1px solid #eceff3;
    text-transform: uppercase;
    font: 500 11px 'Nunito Sans', Lato;
    color: #74757a
}

.post__time {
    display: flex
}

.days,
.hours,
.minutes,
.seconds {
    border: 1px solid #f1f1f2;
    border-radius: 2px;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    padding: 1px;
    margin: 0 5px
}

.post__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px
}

.post__header svg {
    cursor: pointer
}

.post__all-stocks {
    display: flex;
    align-items: center;
    text-decoration: none
}

.post__logo-container {
    display: flex;
    align-items: center;
    cursor: pointer
}

.post__logo {
    margin-right: 5px;
    width: 36px
}

.post__company-container,
.stocks__company-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.post__location-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.post__location-container svg {
    margin-right: 3px
}

.post__company,
.post__location,
.stocks__company {
    text-transform: uppercase;
    line-height: 10px;
    font: bold 15px 'Nunito Sans', Lato, sans-serif;
    color: #000;
}

.post__location-container_custom {
    display: flex;
    flex-direction: column
}

.post__location {
    color: #c3c3c3;
    font-weight: 400;
    text-align: right;
    display: inline-block;
}

.post__video-preview-container {
    position: relative
}

.post__video {
    width: 100%;
    cursor: pointer
}

.video_poster {
    width: 100%
}

.play__button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56.53px;
    height: 56.53px;
    transform: translate(-50%, -50%);
    cursor: pointer
}

.preloader-video {
    position: absolute;
    top: 50%!important;
    left: 50%!important;
    width: 150px!important;
    height: 150px!important;
    transform: translate(-50%, -50%)!important;
    cursor: pointer!important
}

.post__text {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.post__headliner {
    margin-block-start: 0;
    font: 500 17px 'Nunito Sans', Lato, sans-serif
}

.post__description,
.post__subHeadliner {
    margin-block-start: 0;
    font: normal 16px 'Nunito Sans', Lato, sans-serif;
    color: #8c8c91;
    position: relative
}

.post__description {
    line-height: 20px;
    font-weight: 300;
}

.post__description-hidden {
    display: none;
    margin-block-start: 0;
    font: normal 16px 'Nunito Sans', Lato, sans-serif;
    color: #8c8c91;
    position: relative;
    font-weight: 300;
    line-height: 20px;
}

.post__more {
    color: #2f80ed;
    cursor: pointer;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    background: #fff;
    box-shadow: 0px 2px 2px rgba(61, 62, 64, 0.07), 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 7px 10px;
    z-index: 14;
    white-space: nowrap;
		margin-right: 5px;
}

.post__more_btns {
    line-height: 0;
    margin: 0 auto;
    display: inline-table;
}

.post__more_btns_wrapper {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.post__social_icon  {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    box-shadow: 0px 2px 2px rgba(61, 62, 64, 0.07), 0px 0px 4px rgba(61, 62, 64, 0.1);
    margin-left: 10px;
		display: flex;
    align-items: center;
    justify-content: center;
}

.post__coupon {
    width: 220px;
    max-height: 0;
    background: 0 0;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    font: normal 16px 'Nunito Sans', Lato, sans-serif;
    margin: .7em 0 1em 0;
    padding: 8px 0;
    display: none;
    overflow: hidden;
    outline: 0;
    cursor: pointer;
    transition: max-height .3s ease-out
}

.post__footer {
    border-top: 1px solid #ededed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 15px
}

.post__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 120px;
}

.post__icons .post_icon {
  display: flex;
  cursor: pointer;
  align-items: center;
}
.post__icons .post_icon span {
  text-decoration: underline;
  color: #000;
  cursor: pointer;
  margin: 2px 0 0 5px;
}

.post__icons svg {
    cursor: pointer
}

.post__icons svg:nth-child(3),
.post__icons svg:nth-child(4) {
    margin-bottom: 5px
}

.post__icons svg:nth-child(5),
.post__icons svg:nth-child(6) {
    margin-top: 5px
}

.post__icons svg:nth-child(4),
.post__icons svg:nth-child(6),
.post__star-activated_pinned {
    display: none
}

.post__share-container {
    display: flex;
    align-items: center
}

.post__share {
    text-decoration: underline;
    color: #000;
    cursor: pointer
}

.post__link {
    cursor: pointer
}

.stocks {
    display: flex;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #ededed;
    max-height: 0;
    display: none;
    overflow: hidden;
    transition: max-height .3s ease-out
}

.stocks__link-container {
    display: flex;
    align-items: center;
    cursor: pointer
}

.stocks__logo {
    width: 60px;
    margin-right: 13px
}

.stocks__more-stocks {
    color: #c3c3c3;
    text-transform: uppercase;
    line-height: 10px;
    font: normal 11px 'Nunito Sans', Lato, sans-serif
}

.arrow-to-top,
.posts_total_count {
    cursor: pointer;
    display: none;
    pointer-events: all;
    font-size: 12px;
}

.arrow-to-top {
    margin-left: auto;
    margin-right: 19px;
    margin-bottom: 15px;
    display: none;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    box-shadow: 0px 4px 11px rgba(61, 62, 64, 0.15);
		margin-bottom: 105px;
		border: 2px solid #fff;
}
.accept-rules .arrow-to-top {
		margin-bottom: 135px;
}

.arrow-to-top span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: 4px;
    transform: rotate(-45deg);
}

.posts_total_count {
    font-weight: 600;
    font-size: 14px;
}

#posts_total_count_wrapper {
		width: 64px;
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: none;
    justify-content: center;
    align-items: center;
		bottom: 105px;
}
.accept-rules #posts_total_count_wrapper {
		bottom: 135px;
}

.scroll-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #000;
  border-radius: 100px;
  z-index: 45;
  cursor: pointer;
  text-align: center;
  font-size: 35px;
  line-height: 40px;
  color: #000;
  user-select: none;
	border: 2px solid #fff;
}
.scroll-button span {
	font-family: Arial;
  font-size: 16px;
  line-height: 18px;
	font-weight: bold;
  color: #fff;
	margin-bottom: 8px;
}
.scroll-button:hover {
	color: #000;
}
.scroll-button::before,
.scroll-button::after {
	content: "";
	position: absolute;
	left: 4.5px;
	top: 7px;
	width: 30px;
	height: 30px;
	border: #000 12px solid;
	opacity: 0.3;
	animation: ripple 3s ease-out infinite;
	border-radius: 50%;
	z-index: -1;
}  
.scroll-button:after {
	animation-delay: -0.6s;
}
.scroll-button.scroll-button-floating {
	position: fixed;
	bottom: 100px;
	transition: opacity 0.5s;
	opacity: 0;
}
.scroll-button.visible {
	opacity: 1;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  50%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.chevron {
  position: absolute;
  width: calc(0.6rem * 3.5);
  height: calc(0.6rem * 0.8);
  opacity: 0;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
}
.chevron:first-child {
  animation: move-chevron 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
  animation: move-chevron 3s ease-out 2s infinite;
}
.chevron:before,
.chevron:after {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: 50%;
	background: #000;
}
.chevron:before {
	left: -1px;
	transform: skewY(30deg);
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.chevron:after {
	right: -1px;
	width: 50%;
	transform: skewY(-30deg);
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
@keyframes move-chevron {
 25% {
  opacity: 1;
	}
 33.3% {
  opacity: 1;
  transform: translateY(calc(0.6rem * 3.8));
 }
 66.6% {
  opacity: 1;
  transform: translateY(calc(0.6rem * 5.2));
 }
 100% {
  opacity: 0;
  transform: translateY(calc(0.6rem * 8)) scale(0.5);
 }
}

.arrow-to-top-container,
.arrow-to-top-wrapper,
.posts_total_count_wrapper {
    position: fixed;
    bottom: 0;
    margin: auto;
    min-height: 65px;
    width: 100%;
    pointer-events: none
}

.posts_total_count_container {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    pointer-events: all;
}
.posts_total_count_container:hover {
    cursor: pointer;
}

.arrow-to-top-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
		z-index: 999;
}

.about-us__description > p {
    font: normal 16px 'Nunito Sans', Lato, sans-serif;
    color: #8c8c91;
    position: relative;
    font-weight: 300;
    line-height: 20px;
}

@media(min-width:320px) {
    .post__more {
        max-width: 100vw;
        overflow: hidden;
        min-width: 36px;
        box-sizing: border-box;
        position: relative;
    }

    .post__more::after {
        content: "";
        display: inline-block;
        position: relative;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 75%);
        width: 10px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
    }
}

.post_social {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

@media(min-width:320px) and (max-width:425px) {
    .post__company,
    .post__location,
    .stocks__company {
        text-transform: uppercase;
        line-height: 10px;
        font: bold 11px 'Nunito Sans', Lato, sans-serif
    }
    .post__location-container {
        position: static;
        transform: translate(0, 0)
    }
}

@media(min-width:720px) {
    .post,
    .posts {
        width: 580px
    }
    .arrow-to-top-wrapper,
    .posts_total_count_wrapper {
        width: 87%
    }
}

@media(min-width:1100px) {
    .arrow-to-top-wrapper,
    .posts_total_count_wrapper {
        width: 1000px
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    font-family: 'Nunito Sans', Lato, sans-serif;
    line-height: 22px;
    letter-spacing: .4px
}

a {
    text-decoration: none;
    font-family: 'Nunito Sans', Lato, sans-serif;
    line-height: 22px;
    letter-spacing: .3px
}

.desk {
    max-width: 50%;
    position: relative
}

.popup {
    width: 90%;
    background-color: #fbfcfe;
    position: fixed;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: showPopup .3s;
    animation-fill-mode: forwards
}

#popup-header .popup__buttons {
    width: auto
}

.popup__icon {
    transform: translate(0, -50%);
    position: relative;
    top: -30px;
}

.popup__headliner {
    margin-block-start: -25px;
    margin-block-end: 0;
    font: 500 20px 'Nunito Sans', Lato, sans-serif
}

.popup__description {
    margin-block-start: .5em;
    margin-block-end: 0;
    text-align: center;
    width: 90%;
    font: normal 16px 'Nunito Sans', Lato, sans-serif;
    color: #c3c3c3
}

.popup__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.popup__input-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center
}

.popup__input {
    margin: 15px 0
}

.popup__arrow-container {
    height: 36px;
    width: 22px;
    position: absolute;
    top: 15px;
    right: 8%;
    cursor: pointer
}

.popup__arrow {
    position: absolute;
    top: 37%;
    right: 8%;
    cursor: pointer;
    animation: rotateArrowDown .3s;
    animation-fill-mode: forwards
}

.popup__arrow-up {
    position: absolute;
    top: 37%;
    right: 8%;
    cursor: pointer;
    animation: rotateArrowUp .3s;
    animation-fill-mode: forwards
}

.popup__buttons {
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin: 25px 0 15px 0
}

.popup__button {
    border: none;
    background: 0 0;
    font: normal 16px 'Nunito Sans', Lato, sans-serif;
    outline: 0;
    cursor: pointer
}

.popup__accept {
    color: #2f80ed
}

.popup__decline {
    color: #eb5757
}

.popup__disabled {
    color: #c3c3c3
}

.popup-hidden {
    width: 90%;
    background-color: #fbfcfe;
    position: fixed;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: hidePopup .5s;
    animation-fill-mode: forwards
}

.popup-none {
    display: none
}

.main__bg-layer {
    position: fixed;
    z-index: 16;
    width: 100%;
    height: 100%;
    background: #121212;
    opacity: .7
}

.main__bg-layer-hidden {
    display: none
}

input:not([type=checkbox]) {
    width: 90%;
    min-height: 36px;
    background: rgba(142, 142, 147, .1);
    color: #121212;
    border: none;
    border-radius: 6px;
    font: bold 11px 'Nunito Sans', Lato, sans-serif;
    outline: 0;
    box-sizing: border-box;
    padding: 0 15px
}

#popup__input-location {
    padding: 0 35px 0 10px
}

input:focus {
    border: 1px solid #c3c3c3;
    background: rgba(142, 142, 147, .12)
}

#dont-lose__news-letter {
    background: #fff!important;
    border: 1px solid #d9d9d9;
    width: 20px;
    height: 20px
}

.input {
    display: flex;
    flex-direction: column;
    align-items: center
}

.input__hint-container-active {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #fbfcfe;
    animation: showHintContainer .3s;
    animation-fill-mode: forwards
}

.input__hint-active {
    width: 90%;
    height: 0;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    background-color: #fbfcfe;
    animation: showHintItem .3s;
    animation-fill-mode: forwards
}

.input__hint-active a {
    margin-bottom: 10px;
}

.input__hint-active a:first-child {
    margin-top: 5px;
}

.input__city {
    cursor: pointer;
    margin: 2px 0;
    font: normal 15px 'Nunito Sans', Lato, sans-serif;
    color: #000
}

#input__hint-container-hidden.input__hint-container {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 250%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #fbfcfe;
    animation: hideHintContainer .3s;
    animation-fill-mode: forwards
}

#input__hint-container-hidden .input__hint {
    width: 90%;
    height: 80px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    background-color: #fbfcfe;
    animation: hideHintItem .3s;
    animation-fill-mode: forwards
}

.input__hint-container-hidden .input__city {
    display: none
}

.input__hint-container-active .input__hint-active .input__city {
    display: block
}

@keyframes showPopup {
    from {
        top: -100%
    }
    to {
        top: 50%
    }
}

@keyframes hidePopup {
    from {
        top: 50%
    }
    to {
        top: -100%
    }
}

@keyframes showHintContainer {
    from {
        height: 0
    }
    to {
        height: 175px
    }
}

@keyframes showHintItem {
    from {
        height: 0
    }
    to {
        height: 150px
    }
}

@keyframes hideHintContainer {
    from {
        height: 100px
    }
    to {
        height: 0
    }
}

@keyframes hideHintItem {
    from {
        height: 80px
    }
    to {
        height: 0
    }
}

@keyframes rotateArrowUp {
    from {
        transform: rotate(180deg)
    }
    to {
        transform: rotate(0)
    }
}

@keyframes rotateArrowDown {
    from {
        transform: rotate(0)
    }
    to {
        transform: rotate(180deg)
    }
}

@media (min-width:360px) {
    .popup,
    .popup-hidden {
        width: 300px
    }
}

a {
    text-decoration: none
}

.video-popup {
    width: 100%;
}

.video-popup__active {
    width: 100%;
    position: absolute;
    top: 300px;
    left: 50%;
    z-index: 16;
    transform: translate(-50%, -200px);
    animation: showPopupVideo .3s;
    animation-fill-mode: forwards;
    background: 0 0
}

.video-popup__active__close {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -50px
}

.video-popup__active__video {
    margin-bottom: 20px;
    max-width: 100%;
    cursor: pointer;
    border-bottom: 5px solid #ededed;
    display: block;
		width: 100%;
}

.video-popup__hidden {
    width: 100%;
    position: absolute;
    top: 300px;
    left: 50%;
    z-index: 16;
    transform: translate(-50%, -200px);
    animation: hideVideo .3s;
    animation-fill-mode: forwards
}

.video-popup__hidden .video-popup__active__close {
    display: none
}

@keyframes hideVideo {
    from {
        top: 300px
    }
    to {
        top: -100%;
        visibility: hidden
    }
}

a {
    text-decoration: none
}

@keyframes showPopupVideo {
    from {
        top: -100%
    }
    to {
        top: 300px
    }
}

.popup-share {
    width: 90%;
    background-color: #fbfcfe;
    position: fixed;
    z-index: 49;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: showPopup .3s;
    animation-fill-mode: forwards
}

.popup-share__item {
    text-align: center;
    width: 100%;
    font: 500 16px 'Nunito Sans', Lato, sans-serif;
    line-height: 50px;
    border: none;
    cursor: pointer;
    background: 0 0;
    text-decoration: none;
    outline: 0;
    color: #000;
    border-bottom: 1px solid #ededed;
}
.popup-share__item svg {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
}

.popup-share__item--close {
    line-height: 10px;
    border-bottom: 1px solid white;
    margin: 0 0 0 auto;
    text-align: right;
}
    
.popup-share__item:last-child {
    border-bottom: none
}

.popup-share-hidden {
    width: 90%;
    background-color: #fbfcfe;
    position: fixed;
    z-index: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: hidePopup .5s;
    animation-fill-mode: forwards
}

.popup-share-none {
    display: none
}

@keyframes showPopup {
    from {
        top: -100%
    }
    to {
        top: 50%
    }
}

@keyframes hidePopup {
    from {
        top: 50%
    }
    to {
        top: -50%
    }
}

@media (min-width:360px) {
    .popup-share,
    .popup-share-hidden {
        width: 300px
    }
}

a {
    text-decoration: none
}
 
.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 17px;
    height: 50px;   
		max-width: 580px;
		width: 100%;
    margin: 20px auto 200px;
		box-sizing: border-box;
}

.header__container {
    width: 100%;
    display: flex;
    justify-content: space-between
}

.header__location {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
    position: relative;
    cursor: pointer
}

.header__city-container {
    display: flex;
    flex-direction: column;
    margin-right: 7px;
    font: 11px 'Nunito Sans', Lato, sans-serif;
    text-transform: uppercase
}

.header__city-container span:first-child {
    color: #c3c3c3;
    margin-bottom: 2px;
    cursor: pointer
}

.header__city {
    line-height: 1;
    cursor: pointer
}

.header__search-container {
    display: flex;
    align-items: center;
    justify-content: center
}

.header__search-field {
    font: bold 11px 'Nunito Sans', Lato, sans-serif;
    width: 0;
    border: none;
    text-transform: uppercase;
    opacity: .8
}

.header__search-logo {
    cursor: pointer
}

.header div:last-child {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 18px;
}
.header div:last-child.additionally__form-link {
    display: flex;
		justify-content: center;
}
.header .header__logo-container svg {
	width: 36px;
	margin: 3px 0 0 -5px;
	cursor: pointer;
	height: auto;
}

.header__logo-container {
	display: flex;
	cursor: pointer;
	margin-right: 3px;
	font-size: 22px;
	font-weight: bold;
	color: #000;
	align-items: center;
}

.header__logo {
	width: 130px;
}
.cover-active .header__logo {
	width: 160px;
}

.popup-none {
    display: none
}

.is-true-location {
    width: 235px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 -5px 20px 3px #d3d3d3;
    position: absolute;
    top: 45px;
    right: 53px;
    z-index: 49;
    background-color: #fbfcfe;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation-name: shake;
    animation-duration: .8s;
    animation-timing-function: linear
}

.is-true-location__rect {
    position: absolute;
    top: -8px;
    right: 20px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    background-color: #fbfcfe
}

.is-true-location__link,
.is-true-location__question {
    font: bold 11px 'Nunito Sans', Lato, sans-serif;
    text-transform: uppercase
}

.is-true-location__link {
    color: #2f80ed;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 3px
}

@keyframes animated {
    0% {
        opacity: 1;
    }

    25% {
        opacity: .7;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: .7;
    }
}

.poster_animate {
    animation: animated 2s infinite;
}

.category-list {
	max-width: 600px;
	padding: 40px 20px;
	width: 100%;
	box-sizing: border-box;
}
.category-list__title {
	text-align: center;
	color: #121212;
	margin-bottom: 40px;
	font: 500 34px 'Nunito Sans', Lato, sans-serif;
}
.category-item_parent {
	font: 500 24px 'Nunito Sans', Lato, sans-serif;
	margin-bottom: 15px;
	color: #121212;
	display: block;
}
.category-item_child {
	box-shadow: 0 0 10px #d3d3d3;
	padding: 25px;
	margin-bottom: 35px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.category-item_child img {
	max-width: 100%;
}

@media(min-width:720px) {
    .header {
        justify-content: center;
        padding: 10px 0
    }
    .header__container {
        width: 85%
    }
}

@media(min-width:850px) {
    .header__container {
        width: 83%
    }
}

@media(min-width:950px) {
    .header__container {
        width: 81%
    }
}

@media(min-width:1100px) {
    .header {
        justify-content: center;
        padding: 10px 0
    }
    .header__container {
        width: 950px
    }
}

@keyframes shake {
    0% {
        transform: translate(2px, 1px) rotate(0)
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg)
    }
    20% {
        transform: translate(-3px, 0) rotate(1deg)
    }
    30% {
        transform: translate(0, 2px) rotate(0)
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg)
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg)
    }
    60% {
        transform: translate(-3px, 1px) rotate(0)
    }
    70% {
        transform: translate(2px, 1px) rotate(-1deg)
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg)
    }
    90% {
        transform: translate(2px, 2px) rotate(0)
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

a {
    text-decoration: none
}