.storino__wrapper {
    overflow-x: hidden;
    margin: 10px 0;
}

.storino__highlights {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 10px 5px;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.storino__highlights::-webkit-scrollbar {
    display: none;
}

.storino__highlights__item {
    display: block;
    flex: 0 0 140px;
    height: 210px;
    margin: 0 7px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    user-select: none;
    border: 2px solid var(--highlight-color);
}

.storino__highlights__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.storino__highlights__item__trigger {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    outline: none !important;
    position: relative;
    background: #f0f0f0;
    border: 0;
}

.storino__highlights__item__picture {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.storino__highlights__item__trigger:hover .storino__highlights__item__picture {
    transform: scale(1.05);
}

.storino__highlights__item__trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.storino__highlights__item__title {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.storino__highlights__item.seen {
    opacity: 0.8;
}

.storino__highlights__item.seen .storino__highlights__item__picture {
    filter: grayscale(50%);
}

.storino__box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
	background-color: #1a1a1a;
	overflow: hidden;
	z-index: 99999999;
	opacity: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transition: opacity 0.15s ease-out;
    will-change: opacity;
}

.storino__box.opened {
	display: block;
	opacity: 1;
}

.storino__box.storino-closing {
    opacity: 0 !important;
    transition: opacity 0.15s ease-in !important;
}

.storino__box.storino-resizing .storino__box__elements__slides__wrapper {
    transition: none !important;
}

.storino__box__container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 480px;
    max-height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    background-color: #000;
    transform: scale(1);
    transform-origin: center center;
    border-radius: 0;
}

@media (min-width: 576px) {
    .storino__box__container {
        height: 90vh;
        max-height: 1440px;
		width: auto;
		aspect-ratio: 9 / 16;
		margin-top: 5vh;
		border-radius: 8px;
    }
}

.storino__box__close {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fcfcfc;
    fill: #fcfcfc;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    z-index: 20;
    outline: none !important;
    border: none;
    border-radius: none;
    transition: all .15s ease;
}

.storino__box__close:hover {
    background-color: transparent;
}

@media (max-width: 575px) {
	.storino__box__close {
		display: none;
	}
}

.storino__box__elements {
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.storino__box__elements__slides {
    width: 100%;
	height: 100%;
	overflow: hidden;
}

.storino__box__elements__slides__wrapper {
    display: flex;
	flex-direction: row;
	position: relative;
	height: 100%;
	background-color: #000;
	transition: transform 0.25s cubic-bezier(0.8, 0, 0.2, 1);
	transform: translate3d(0, 0, 0);
	width: 100%;
}

.storino__box__elements__slides__item {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s ease;
	flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.storino__box__elements__slides__item.active {
	opacity: 1;
}

.storino__box__elements__slides__item--content {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
	padding: 0;
	margin: 0;
	object-fit: contain;
	user-select: none;
	pointer-events: none;
}

.storino__box__elements__slides__item.image .storino__box__elements__slides__item--content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.storino__box__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 8px 16px;
	z-index: 9;
	box-sizing: border-box;
	background: linear-gradient(rgba(0, 0, 0, 0.4), transparent);
	padding-top: calc(2px + 16px);
}

.storino__box__header__bars {
	display: flex;
	flex-direction: row;
	position: absolute;
	top: 8px;
	left: 8px;
	right: 8px;
	height: 2px;
	z-index: 10;
	gap: 4px;
	box-sizing: border-box;
}

.storino__box__header__bars__item {
 	display: block;
	position: relative;
	border-radius: 2px;
	flex-grow: 1;
	height: 2px;
	cursor: pointer;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.35);   
}

.storino__box__header__bars__item span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background-color: #fff;
	transform: scaleX(0);
	transform-origin: right center;
}

.storino__box__header__bars__item.seen span {
	transform: scaleX(1);
}

.storino__box__header__bars__item.animate span {
	animation: storino-bar-anim 0s linear both;
	animation-play-state: running;
}

.storino__box.paused .storino__box__header__bars__item.animate span {
    animation-play-state: paused !important;
}

@keyframes storino-bar-anim {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

.storino__box__header__info {
	display: flex;
	align-items: center;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	gap: 10px;
}

.storino__box__header__info__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.storino__box__header__actions {
    display: flex;
    flex-direction: row;
	align-items: center;
	direction: ltr;
}

.storino__box__header__actions__button {
	background: none;
	border: none;
	padding: 5px;
	cursor: pointer;
	color: #fff;
	opacity: 0.9;
	transition: opacity 0.2s;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
	outline: none !important;
}

.storino__box__header__actions__button:hover {
    opacity: 1;
}

.storino__box__header__actions__button svg {
 	width: 24px;
	height: 24px;
	fill: #fff;
	pointer-events: none;
	display: block;   
}

.storino__box__header__actions__close {
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
}

@media (min-width: 576px) {
	.storino__box__header__actions__close {
		display: none;
	}
}

.storino__box__header__actions__play .icon-pause,
.storino__box.paused .storino__box__header__actions__play .icon-play {
	display: none;
}

.storino__box.paused .storino__box__header__actions__play .icon-pause {
	display: block;
}

.storino__box__header__actions__mute {
	display: none;
}

.storino__box__header__actions__mute.visible {
	display: block;
}

.storino__box__header__actions__mute .icon-unmute,
.storino__box__header__actions__mute.unmute .icon-mute {
	display: none;
}

.storino__box__header__actions__mute.unmute .icon-unmute {
	display: block;
}

.storino__box__navigation__prev,
.storino__box__navigation__next {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	user-select: none;
	z-index: 20;
	width: 32px;
	height: 32px;
	text-align: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.85);
	border: none;
	font-size: 24px;
	font-weight: bold;
	color: #333;
	line-height: 30px;
	opacity: 0;
	transition: opacity 0.25s ease;
	padding: 0;
	outline: none !important;
}

.storino__box__container:hover .storino__box__navigation__prev,
.storino__box__container:hover .storino__box__navigation__next {
	opacity: 0.85;
}

.storino__box__navigation__prev:hover,
.storino__box__navigation__next:hover {
	opacity: 1;
}

.storino__box__navigation__prev {
	right: 15px;
}

.storino__box__navigation__next {
	left: 15px;
}

@media (max-width: 575px) {
	.storino__box__navigation__prev,
	.storino__box__navigation__next {
		display: none;
	}
}

.storino__box__elements__slides__item__interactions {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: all;
    position: absolute;
    left: 15px;
    right: auto;
    bottom: 25%;
    z-index: 10;
    gap: 15px;
}

.storino__box__elements__slides__item__interactions__like,
.storino__box__elements__slides__item__interactions__comment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #fff;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s;
    outline: none !important;
}

.storino__box__elements__slides__item__interactions__like:hover,
.storino__box__elements__slides__item__interactions__comment:hover {
    transform: scale(1.1);
}


.storino__box__elements__slides__item__interactions__like svg,
.storino__box__elements__slides__item__interactions__comment svg {
    width: 30px;
    height: 30px;
    transition: all 0.2s;
}


.storino__box__elements__slides__item__interactions__like .count,
.storino__box__elements__slides__item__interactions__comment .count {
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

.storino__box__elements__slides__item__interactions__like.storino-liked-pop svg {
    animation: storino-like-pop 0.3s ease;
}

@keyframes storino-like-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.storino__box__elements__slides__item__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9;
    padding: 15px 20px 20px 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    pointer-events: none;
}

.storino__box__elements__slides__item__overlay__wrapper {
    display: flex;
    flex-direction: column;
    pointer-events: all;
}

.storino__box__elements__slides__item__overlay__caption {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    position: relative;
    pointer-events: all;
    width: 100%;
    margin-bottom: 10px;
    user-select: none;
    cursor: pointer;
    text-align: justify;
}

.storino__box__elements__slides__item__overlay__caption.truncated .storino__box__elements__slides__item__overlay__caption--content {
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6em * 2);
}

.storino__box__elements__slides__item__overlay__caption--more {
    background: none;
    border: none;
    color: #bbb;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 0 0 5px;
    display: inline;
    outline: none !important;
}

.storino__box__elements__slides__item__overlay__caption--more:hover {
    color: #fff;
}

.storino__box__elements__slides__item__overlay__cta {
    text-align: center;
    margin-bottom: 35px;
    pointer-events: all;
    width: 100%;
}

.storino__box__elements__slides__item__overlay__cta--btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.storino__guest {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.storino__guest.opened {
    display: flex;
}

.storino__guest__wrapper {
    background: #252525;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.storino__guest__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none !important;
}

.storino__guest__close svg {
    fill: #888;
}

.storino__guest__title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.storino__guest__desc {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 15px;
}

.storino__guest__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.storino__guest__form__input {
    border: 1px solid #444;
    background: #3a3a3a;
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    text-align: center;
}

.storino__guest__form__submit {
    border: none;
    background: #0084ff;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

.storino__guest__form__submit:disabled {
    background: #555;
    cursor: not-allowed;
}

.storino__comments__modal {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    max-height: 500px;
    background-color: #1c1c1c;
    color: #f0f0f0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.storino__comments__modal.opened {
    transform: translateY(0);
}

.storino__comments__header {
    position: relative;
    font-weight: 600;
    flex-shrink: 0;
    border-bottom: 1px solid #363636;
    text-align: center;
    padding: 10px 15px;
}

.storino__comments__header__close {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    outline: none !important;
}

.storino__comments__header__close svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.storino__comments__footer {
    flex-shrink: 0;
    padding: 10px 15px;
    border-top: 1px solid #363636;
    background-color: #1c1c1c;
    margin-top: auto;
}

.storino__comments__footer__replying {
    display: none;
    padding: 0 5px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #999;
}

.storino__comments__footer__replying--txt {
    font-weight: 600;
    color: #ccc;
}

.storino__comments__footer__replying--cancel {
    color: #F44336;
    font-weight: bold;
    cursor: pointer;
    margin-right: 5px;
}

.storino__comments__footer__form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.storino__comments__footer__form--input {
    background-color: transparent;
    color: #fff;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none !important;
    border: 1px solid #444;
    flex-grow: 1;
}

.storino__comments__footer__form--input::placeholder {
    color: #888;
}

.storino__comments__footer__form--submit {
    background-color: transparent;
    outline: none !important;
    border: 0;
    color: #0084ff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
}

.storino__comments__footer__form--submit:disabled {
    color: #555;
    cursor: not-allowed;
}

.storino__comments__list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px 15px 0 15px;
}

@media (min-width: 576px) {
	.storino__comments__list {
        padding: 35px 35px 0 35px;
    }
}

.storino__comments__list .loading-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.storino__comments__list__item {
    margin-bottom: 15px;
}

.storino__comments__list__item__wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.storino__comments__list__item__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #555;
    object-fit: cover;
    flex-shrink: 0;
    margin-top: 2px;
}

.storino__comments__list__item__main {
    flex-grow: 1;
}

.storino__comments__list__item__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.storino__comments__list__item__header__author {
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    margin-right: 6px;
}

.storino__comments__list__item__header__time {
    font-size: 11px;
    color: #999;
}

.storino__comments__list__item__content {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
}

.storino__comments__list__item__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}

.storino__comments__list__item__actions__voting,
.storino__comments__list__item__actions__reply {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    background-color: transparent;
    border: 0;
    outline: none !important;
    gap: 4px;
    padding: 0;
}

.storino__comments__list__item__actions__voting:hover,
.storino__comments__list__item__actions__reply:hover {
    color: #fff;
}

.storino__comments__list__item__actions__voting svg,
.storino__comments__list__item__actions__reply svg {
    width: 16px;
    height: 16px;
    fill: #aaa;
    transition: fill 0.2s;
}

.storino__comments__list__item__actions__voting:hover svg,
.storino__comments__list__item__actions__reply:hover svg {
    fill: #fff;
}

.storino__comments__list__item__actions__voting.voted-like svg {
    fill: #2078f4;
}

.storino__comments__list__item__actions__voting.voted-dislike svg {
    fill: #F44336;
}

.storino__comments__list__item__children {
    padding-right: 44px;
    margin-top: 15px;
}