@keyframes zuckSlideTime {
	0% {
		max-width: 0
	}
	
	to {
		max-width: 100%
	}
}

@keyframes zuckLoading {
	0% {
		transform: rotate(0deg)
	}
	
	to {
		transform: rotate(1turn)
	}
}

#zuck-modal {
	outline: 0 !important;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: rgba(0, 0, 0, .75);
	z-index: 100000;
	font-size: 14px;
	font-family: inherit
}

#zuck-modal-content,
#zuck-modal-content .story-viewer,
#zuck-modal-content .story-viewer>.slides,
#zuck-modal-content .story-viewer>.slides>* {
	width: 100vw;
	height: 100%;
	top: 0;
	bottom: 0;
	position: absolute;
	overflow: hidden
}

#zuck-modal * {
	user-select: none;
	outline: 0
}

#zuck-modal.with-effects {
	transform: scale(.01);
	transform-origin: top left;
	transition: .25s
}

#zuck-modal.with-effects.animated {
	transform: scale(1);
	border-radius: 0;
	margin-top: 0 !important;
	margin-left: 0 !important
}

#zuck-modal.with-effects.closed {
	transform: translateY(100%)
}

#zuck-modal .slider {
	width: 300vw;
	left: -100vw
}

#zuck-modal .slider,
#zuck-modal .slider>* {
	height: 100%;
	top: 0;
	bottom: 0;
	position: absolute
}

#zuck-modal .slider>* {
	width: 100vw
}

#zuck-modal .slider>.previous {
	left: 0
}

#zuck-modal .slider>.viewing {
	left: 100vw
}

#zuck-modal .slider>.next {
	left: 200vw
}

#zuck-modal .slider.animated {
	-webkit-transition: -webkit-transform .25s linear;
	transition: -webkit-transform .25s linear;
	transition: transform .25s linear;
	transition: transform .25s linear, -webkit-transform .25s linear
}

#zuck-modal.with-cube #zuck-modal-content {
	perspective: 1000vw;
	transform: scale(.95);
	perspective-origin: 50% 50%;
	overflow: visible;
	transition: .3s
}

#zuck-modal.with-cube .slider {
	transform-style: preserve-3d;
	transform: rotateY(0deg)
}

#zuck-modal.with-cube .slider>.previous {
	backface-visibility: hidden;
	left: 100vw;
	transform: rotateY(270deg) translateX(-50%);
	transform-origin: center left
}

#zuck-modal.with-cube .slider>.viewing {
	backface-visibility: hidden;
	left: 100vw;
	transform: translateZ(50vw)
}

#zuck-modal.with-cube .slider>.next {
	backface-visibility: hidden;
	left: 100vw;
	transform: rotateY(-270deg) translateX(50%);
	transform-origin: top right
}

#zuck-modal-content .story-viewer.paused.longPress .head,
#zuck-modal-content .story-viewer.paused.longPress .slides-pointers,
#zuck-modal-content .story-viewer.paused.longPress .tip {
	opacity: 0
}

#zuck-modal-content .story-viewer.viewing:not(.paused):not(.stopped) .slides-pointers>*>.active>b {
	-webkit-animation-play-state: running;
	animation-play-state: running
}

#zuck-modal-content .story-viewer.next {
	z-index: 10
}

#zuck-modal-content .story-viewer.viewing {
	z-index: 5
}

#zuck-modal-content .story-viewer.previous {
	z-index: 0
}

#zuck-modal-content .story-viewer.loading .head .loading,
#zuck-modal-content .story-viewer.muted .tip.muted {
	display: block
}

#zuck-modal-content .story-viewer.loading .head .right .close,
#zuck-modal-content .story-viewer.loading .head .right .time {
	display: none
}

#zuck-modal-content .story-viewer .slides-pagination span {
	position: absolute;
	top: 50vh;
	font-size: 48px;
	color: #fff;
	line-height: 48px;
	width: 48px;
	margin: 6px;
	transform: translateY(-50%);
	z-index: 1;
	text-align: center
}

#zuck-modal-content .story-viewer .slides-pagination .previous {
	left: 0
}

#zuck-modal-content .story-viewer .slides-pagination .next {
	right: 0
}

#zuck-modal-content .story-viewer .slides-pointers {
	display: table;
	table-layout: fixed;
	border-spacing: 6px;
	border-collapse: separate;
	position: absolute;
	width: calc(100vh * 0.58);
	top: 0;
	left: calc(50vw - 29vh);
	right: calc(50vw - 29vh);
	z-index: 100020
}

#zuck-modal-content .story-viewer .slides-pointers>* {
	display: table-row
}

#zuck-modal-content .story-viewer .slides-pointers>*>* {
	display: table-cell;
	background: hsla(0, 0%, 100%, .5);
	border-radius: 2px
}

#zuck-modal-content .story-viewer .slides-pointers>*>.seen {
	background: #fff
}

#zuck-modal-content .story-viewer .slides-pointers>*>*>b {
	background: #fff;
	width: auto;
	max-width: 0;
	height: 2px;
	display: block;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	border-radius: 2px
}

#zuck-modal-content .story-viewer .slides-pointers>*>.active>b {
	-webkit-animation-name: zuckSlideTime;
	animation-name: zuckSlideTime;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear
}

#zuck-modal-content .story-viewer .head {
	position: absolute;
	height: 56px;
	left: 0;
	right: 0;
	line-height: 56px;
	z-index: 100010;
	color: #fff;
	font-size: 14px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .35), 1px 0 1px rgba(0, 0, 0, .35);
	padding: 6px 12px
}

#zuck-modal-content .story-viewer .head .item-preview {
	overflow: hidden;
	vertical-align: top;
	background-size: cover;
	width: auto;
	height: 35px;
	display: inline-block;
	margin-right: 9px;
	/* border-radius: 50%; */
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: 50%
}

#zuck-modal-content .story-viewer .head .item-preview img {
	display: block;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: 50%;
	object-fit: cover
}

#zuck-modal-content .story-viewer .head .time {
	opacity: .75;
	font-weight: 500;
	font-size: 13px;
}

#zuck-modal-content .story-viewer .head .left {
	line-height: 1 !important;
	display: inline-block;
	margin: 6px 0
}

#zuck-modal-content .story-viewer .head .left .info {
	display: none;
	max-width: 30vw;
	vertical-align: middle
}

#zuck-modal-content .story-viewer .head .left .info>* {
	width: 100%;
	display: inline-block;
	line-height: 21px
}

#zuck-modal-content .story-viewer .head .left .info .name {
	font-weight: 500;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 330px;
	display: none;
}

#zuck-modal-content .story-viewer .head .right {
	float: right
}

#zuck-modal-content .story-viewer .head .back,
#zuck-modal-content .story-viewer .head .right .close {
	font-size: 42px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	text-align: center
}

#zuck-modal-content .story-viewer .head .left .back {
	display: none;
	width: 24px;
	margin: -9px -6px 0
}

#zuck-modal-content .story-viewer .head .right .send {
	display: block;
	width: 24px;
}

#zuck-modal-content .story-viewer .head .loading {
	display: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	margin: 9px 0;
	box-sizing: border-box;
	border: 4px solid hsla(0, 0%, 100%, .2);
	border-top-color: #fff;
	-webkit-animation: zuckLoading 1s linear infinite;
	animation: zuckLoading 1s linear infinite
}

#zuck-modal-content .story-viewer .head,
#zuck-modal-content .story-viewer .slides-pointers,
#zuck-modal-content .story-viewer .tip {
	-webkit-transition: opacity .5s;
	transition: opacity .5s
}

#zuck-modal-content .story-viewer .slides .item {
	display: none;
	overflow: hidden;
	background: #000
}

#zuck-modal-content .story-viewer .slides .item:before {
	z-index: 4;
	background: transparent;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0
}

#zuck-modal-content .story-viewer .slides .item>.media {
	height: 100%;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin: auto
}

#zuck-modal-content .story-viewer .slides .item.active,
#zuck-modal-content .story-viewer .slides .item.active .tip.link {
	display: block
}

#zuck-modal-content .story-viewer .tip {
	z-index: 5;
	text-decoration: none;
	display: none;
	border-radius: 0px;
	/* background: rgba(0, 0, 0, .5); */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0%) 0%, #000000);
	font-size: 25px;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	padding: 70px 24px 45px;
	width: 100%;	
    line-height: 1.1;
}

#zuck-modal-content .story-viewer .tip .title{
	font-family: Almarai;
	overflow: hidden;
    max-height: 87px;
    display: block;	
}

.descrip {
    display: block;
    font-family: Almarai;
    margin-top: 15px;
    text-align: center;
    line-height: 1.2;
    font-weight: 400;
    font-size: 18px;
	overflow: hidden;
    max-height: 110px;
}

.slideblock img{
	height: 100%;
	width: 100%;
	object-fit: fill;
}

#zuck-modal.rtl {
	direction: rtl;
	left: auto;
	right: 0
}

#zuck-modal.rtl.with-effects {
	transform-origin: top right
}

#zuck-modal.rtl.with-effects.animated {
	margin-left: auto !important;
	margin-right: 0 !important
}

#zuck-modal.rtl .slider {
	left: auto;
	right: -100vw
}

#zuck-modal.rtl .slider>.previous {
	left: auto;
	right: 0;
	transform: rotateY(-270deg) translateX(50%)
}

#zuck-modal.rtl .slider>.viewing {
	left: auto;
	right: 100vw
}

#zuck-modal.rtl .slider>.next {
	left: auto;
	right: 200vw
}

#zuck-modal.rtl.with-cube .slider>.previous {
	left: auto;
	right: 100vw;
	transform-origin: center right
}

#zuck-modal.rtl.with-cube .slider>.viewing {
	left: auto;
	right: 100vw;
	transform: translateZ(50vw)
}

#zuck-modal.rtl.with-cube .slider>.next {
	left: auto;
	right: 100vw;
	transform-origin: top left;
	transform: rotateY(270deg) translateX(-50%)
}

#zuck-modal.rtl #zuck-modal-content .story-viewer .slides-pagination .previous {
	left: auto;
	right: 0
}

#zuck-modal.rtl #zuck-modal-content .story-viewer .slides-pagination .next {
	right: auto;
	left: 0
}

#zuck-modal.rtl #zuck-modal-content .story-viewer .head .item-preview {
	margin-right: auto;
	margin-left: 9px
}

#zuck-modal.rtl #zuck-modal-content .story-viewer .head .right {
	float: left
}

#zuck-modal.rtl #zuck-modal-content .story-viewer .tip {
	left: auto;
	right: 50%;
	transform: translateX(50%)
}

.overlayy {
	position: relative;
	display: none;
	width: 100%;
	height: 100%;
	top: -8px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 9999999;
	cursor: pointer;
	transform: translateX(-50%);
    left: 50%;
    max-width: calc(100vh* 0.57);
}

#text{
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 50px;
	color: white;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	z-index: 99999999;
	background: #fff;
    padding: 10px;
	display: flex;
	border-radius: 5px;
}
#text a{
	border-radius: 5px;
}
#text a.shareapp{
	background: green;
	background-image: url('/wp-content/plugins/wp-story/dist/whatsapp-32.png');
	width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-position: center;
	margin-right: 15px;
}
#text a.copytext{
	background: gray;
	background-image: url('/wp-content/plugins/wp-story/dist/copy-32.png');
	width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width:1024px) {
	#zuck-modal-content .story-viewer .head {
		top: 3px
	}
	
	#zuck-modal-content .story-viewer .head .loading {
		width: 24px;
		height: 24px;
		margin: 6px 0
	}
	
	#zuck-modal-content .story-viewer .head .item-preview {
		width: auto;
		height: 30px;
		margin-right: 9px
	}
	
	#zuck-modal-content .story-viewer .head .left {
		font-size: 15px;
		margin: 15px 0
	}
	
	#zuck-modal-content .story-viewer .head .left>div {
		line-height: 30px
	}
	
	#zuck-modal-content .story-viewer .head .right .time {
		display: block;
		white-space: nowrap;
		font-size: 15px;
		margin: 15px 0;
		line-height: 30px
	}
	
	#zuck-modal-content .story-viewer .head .left>.back {
		display: none;
		background: transparent;
		z-index: 20;
		visibility: visible;
		position: absolute;
		height: 42px;
		width: 24px;
		line-height: 36px;
		text-align: left;
		vertical-align: top;
		text-shadow: none
	}
	
	#zuck-modal-content .story-viewer.with-back-button .head .left>.back {
		display: block
	}
	
	#zuck-modal-content .story-viewer.with-back-button .head .left .item-preview {
		margin-left: 18px
	}
	
	#zuck-modal-content .story-viewer .slides-pointers {
		width: 100vw;
		left: 0;
		right: 0
	}
	
	
	#zuck-modal-content .story-viewer .head .left .time{
		display: block;	
	}
	#zuck-modal-content .story-viewer .head .right .close {
		display: none
	}
	
	#zuck-modal.rtl #zuck-modal-content .story-viewer .head .item-preview {
		margin-right: auto;
		margin-left: 9px
	}
	
	#zuck-modal.rtl #zuck-modal-content .story-viewer .head .left>.back {
		text-align: right
	}
	
	#zuck-modal.rtl #zuck-modal-content .story-viewer.with-back-button .head .left .item-preview {
		margin-left: auto;
		margin-right: 18px
	}
}

.stories.carousel {
	white-space: nowrap;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch
}

.stories.carousel::-webkit-scrollbar {
	width: 0;
	background: transparent
}

.stories.carousel .story {
	display: inline-block;
	width: 18vw;
	max-width: 90px;
	margin: 0 6px 20px;
	vertical-align: top
}

.stories.carousel .story:first-child {
	margin-left: 0
}

.stories.carousel .story:last-child {
	margin-right: 0
}

.stories.carousel .story>.item-link {
	text-align: center;
	display: block
}

.stories.carousel .story>.item-link:active>.item-preview {
	transform: scale(.9)
}

.stories.carousel .story>.item-link>.item-preview {
	display: block;
	box-sizing: border-box;
	font-size: 0;
	max-height: 90px;
	height: 18vw;
	overflow: hidden;
	transition: transform .2s
}

.stories.carousel .story>.item-link>.item-preview img {
	display: block;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: 50%;
	object-fit: cover
}

.stories.carousel .story>.item-link>.info {
	display: inline-block;
	margin-top: .5em;
	line-height: 1.2em;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis
}

.stories.carousel .story>.item-link>.info .name {
	font-weight: 300
}

.stories.carousel .story>.item-link>.info .time,
.stories.carousel .story>.items {
	display: none
}

.stories.list {
	white-space: nowrap;
	overflow: auto
	}
	
	.stories.list .story {
		display: block;
		width: auto;
		margin: 6px;
		padding-bottom: 6px
	}
	
	.stories.list .story>.item-link {
		text-align: left;
		display: block
	}
	
	.stories.list .story>.item-link>.item-preview {
		height: 42px;
		width: 42px;
		max-width: 42px;
		margin-right: 12px;
		vertical-align: top;
		display: inline-block;
		box-sizing: border-box;
		font-size: 0;
		overflow: hidden
	}
	
	.stories.list .story>.item-link>.item-preview img {
		display: block;
		box-sizing: border-box;
		height: 100%;
		width: 100%;
		background-size: cover;
		background-position: 50%
	}
	
	.stories.list .story>.item-link>.info {
		line-height: 1.6em;
		vertical-align: top
	}
	
	.stories.list .story>.item-link>.info .name {
		display: block
	}
	
	.stories.list .story>.item-link>.info .time {
		display: inline-block
	}
	
	.stories.list .story>.items {
		display: none
	}
	
	.stories.rtl {
		direction: rtl
	}
	
	.stories.rtl.carousel .story:first-child {
		margin-left: auto;
		margin-right: 0
	}
	
	.stories.rtl.carousel .story:last-child {
		margin-right: auto;
		margin-left: 0
	}
	
	.stories.rtl.list .story>.item-link {
		text-align: right
	}
	
	.stories.rtl.list .story>.item-link>.item-preview {
		margin-right: auto;
		margin-left: 12px
	}
	
	.stories.facesnap .story>.item-link {
		text-decoration: none;
		color: #333
	}
	
	.stories.facesnap .story>.item-link>.item-preview {
		border-radius: 50%;
		padding: 2px;
		background: #3b5998
	}
	
	.stories.facesnap .story>.item-link>.item-preview img {
		border-radius: 50%;
		border: 3px solid #fff
	}
	
	.stories.facesnap .story.seen {
		opacity: .5
	}
	
	.stories.facesnap .story.seen>a>.item-preview {
		background: #999
	}
	
	.stories.snapgram .story>.item-link {
		text-decoration: none;
		color: #333
	}
	
	.stories.snapgram .story>.item-link>.item-preview {
		border-radius: 50%;
		padding: 2px;
		background: radial-gradient(ellipse at 70% 70%, #ee583f 8%, #d92d77 42%, #bd3381 58%)
	}
	
	.stories.snapgram .story>.item-link>.item-preview img {
		border-radius: 50%;
		border: 3px solid #fff
	}
	
	.stories.snapgram .story.seen {
		opacity: .75
	}
	
	.stories.snapgram .story.seen>a>.item-preview {
		background: #999
	}
	
	.stories.snapgram .story.seen>a {
		color: #999 !important
	}
	
	.stories.snapssenger.list .story>.item-link {
		text-decoration: none;
		color: #333
	}
	
	.stories.snapssenger.list .story>.item-link>.item-preview {
		border-radius: 50%;
		padding: 2px;
		background: #0084ff
	}
	
	.stories.snapssenger.list .story>.item-link>.item-preview img {
		border-radius: 50%;
		border: 3px solid #fff
	}
	
	.stories.snapssenger.list .story.seen {
		opacity: .75
	}
	
	.stories.snapssenger.list .story.seen>a>span {
		background: #999;
		color: #999
	}
	
	.stories.snapssenger.list .story.seen>a {
		color: #999 !important
	}
	
	.stories.snapssenger.carousel .story {
		max-height: 100px;
		max-width: 100px;
		width: 25vw
	}
	
	.stories.snapssenger.carousel .story>.item-link {
		text-decoration: none;
		text-align: left;
		color: #fff;
		position: relative;
		max-height: 100px
	}
	
	.stories.snapssenger.carousel .story>.item-link>.item-preview {
		height: 18vh
	}
	
	.stories.snapssenger.carousel .story>.item-link>.item-preview img {
		border-radius: 5px;
		position: absolute
	}
	
	.stories.snapssenger.carousel .story>.item-link>.info {
		top: auto;
		height: auto;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 6px;
		font-weight: 700;
		font-size: 12px;
		text-shadow: 1px 1px 1px rgba(0, 0, 0, .35), 1px 0 1px rgba(0, 0, 0, .35)
	}
	
	.stories.snapssenger.carousel .story>.item-link>.info .name {
		font-weight: 500
	}
	
	.stories.snapssenger.carousel .story>.item-link>.info .time {
		display: block;
		font-weight: 100;
		font-size: 11px
	}
	
	.stories.snapssenger .story.seen {
		opacity: .5
	}
	
	.stories.vemdezap .story>.item-link {
		text-decoration: none;
		color: #333
	}
	
	.stories.vemdezap .story>.item-link>.item-preview {
		border-radius: 50%;
		padding: 2px;
		background: #00bfa5
	}
	
	.stories.vemdezap .story>.item-link>.item-preview img {
		border-radius: 50%;
		border: 3px solid #fff
	}
	
	.stories.list.vemdezap .story {
		border-bottom: 1px solid #eee
	}
	
	.stories.list.vemdezap .story:last-child {
		border-bottom: 0
	}
	
	.stories.list.vemdezap .story>.item-link>.info .time {
		display: inline-block;
		color: #999
	}
	
	.stories.vemdezap .story.seem>img {
		opacity: .75
	}
	
	.stories.vemdezap .story.seem>a>.item-preview {
		background: #999
	}
	
	.stories.vemdezap .story.seem>a {
		color: #999 !important
	}
	
	body.wp-story {
		overflow: hidden !important
	}
	
	#zuck-modal svg {
		margin: 0
	}
	
	.stories.list .story>.item-link>.info {
		display: inline-block;
		height: 42px;
		line-height: 42px;
		overflow: hidden;
		text-overflow: ellipsis
	}
	
	.stories.list .story>.item-link>.info .name {
		font-weight: 500;
		display: flex;
		align-items: center
	}
	
	#zuck-modal-content .story-viewer .tip {
		text-transform: inherit
	}
	
	#zuck-modal-content .story-viewer .tip.wp-story-muted {
		left: auto;
		right: 0
	}
	
	#zuck-modal-content .story-viewer .head .back,
	#zuck-modal-content .story-viewer .head .right .close {
		display: inline-block;
		opacity: 1
	}
	
	#zuck-modal .close svg {
		width: 35px;
		height: 35px
	}
	
	#zuck-modal-content .story-viewer .head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		top: 0px;
		background: linear-gradient(to top, rgba(0, 0, 0, 0%) 0%, #000000);
		min-height: 80px;
		padding-bottom: 12px;
	}
	
	#zuck-modal-content .story-viewer .head .right {
		margin: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		float: none
	}
	
	#zuck-modal-content .story-viewer .head .right .close {
		width: auto;
		height: auto;
		line-height: normal
	}
	
	#zuck-modal-content .story-viewer .head .left {
		margin: 0;	
	}
	
	#zuck-modal-content .story-viewer .slides-pagination .next svg,
	#zuck-modal-content .story-viewer .slides-pagination .previous svg {
		width: 50px;
		height: 50px
	}
	
	#stories.rtl.carousel .story:last-child {
		margin-right: 6px
	}
	
	#stories.rtl.carousel .story:first-child {
		margin-left: 6px
	}
	
	.stories.snapgram .story>.item-link>.item-preview img {
		width: 86px;
		height: 86px;
		max-width: 100%;
		max-height: 100%
	}
	
	.stories.snapssenger.carousel .story>.item-link>.item-preview img {
		width: 100px;
		height: 90px;
		max-width: 100%;
		max-height: 100%
	}
	
	.stories.vemdezap .story>.item-link>.item-preview img {
		width: 38px;
		height: 38px;
		max-width: 100%;
		max-height: 100%
	}
	
	.slideblock {
		position: relative;
		max-width: calc(100vh * 0.57);
		left: 50%;
		transform: translateX(-50%);
		height: 100vh;
	}
	
	#zuck-modal-content .wp-story-post-title {
		position: absolute;
		top: 90px;
		left: 50%;
		transform: translateX(-50%);
		text-decoration: none;
		color: #fff;
		font-size: 20px;
		display: inline-block;
		background-color: rgba(0, 0, 0, .5);
		padding: 12px 24px;
		border-radius: 3px;
		z-index: 1001;
		text-align: center;
		width: calc(100% - 24px);
		max-width: 450px
	}
	
	#zuck-modal-content .story-viewer .slides .item>.media {
		max-width: none
	}
	
	#zuck-modal-content .story-viewer .head .left .info {
		max-width: 100%;
		flex: 0 0 calc(100% - 81px)
	}
	
	#zuck-modal-content .story-viewer.with-back-button .head .left>.back {
		flex: 0 0 24px
	}
	
	#zuck-modal-content .story-viewer.with-back-button .head .left .item-preview {
		flex: 0 0 auto;
	}
	
	#zuck-modal-content .story-viewer .slides .item.story-horizontal>.media {
		height: auto;
		width: 100%;
		top: 50%;
		transform: translate(-50%, -50%)
	}
	
	#zuck-modal-content .story-viewer .tip.wp-story-muted {
		padding: 0;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		cursor: pointer
	}
	
	#zuck-modal-content .story-viewer.muted .tip.wp-story-muted {
		display: inline-flex
	}
	
	#wp-story-scrollbar {
		display: none !important
	}
	
	
	
	@media (min-width:1024px) {
		.stories.carousel::-webkit-scrollbar {
			width: 0;
			background: transparent
		}
		#zuck-modal-content .story-viewer .head .left {
			left: calc(50vw - 29vh);
			position: relative;
		}
		#zuck-modal-content .story-viewer .head .right .send {
			right: calc(50vw - 34vh);
			position: relative;
		}
	}
	
	@media (min-width:1900px) {
		#zuck-modal-content .story-viewer .head .right .send {
			right: calc(50vw - 31vh);
			position: relative;
		}
	}
	
	@media (max-width:1024px) {
		#zuck-modal-content .wp-story-post-title {
			top: 90px
		}
		
		#zuck-modal-content .story-viewer .head .left>.back {
			height: 24px;
			position: absolute;
			top: 50%;
			margin-top: -12px
		}
		
		#zuck-modal-content .story-viewer .head .left {
			position: relative
		}
		
		#zuck-modal-content .story-viewer.with-back-button .head .left .item-preview {
			margin-left: 25px
		}
		
		#zuck-modal-content .story-viewer .head .right .time {
			margin: 0
		}
		
		#zuck-modal-content .story-viewer .head .left .time{
			display: block;
		}
		#zuck-modal-content .story-viewer .head .right .close {
			display: none
		}
		
		#zuck-modal-content .story-viewer .head .left>.back {
			position: static;
			margin: 0;
			display: inline-flex !important
		}
		
		#zuck-modal-content .story-viewer .head .left {
			margin: 0;
			display: flex;
			align-items: center
		}
		
		#zuck-modal-content .story-viewer .head {
			padding: 0 12px 12px;
		}
		
		#zuck-modal-content .story-viewer.with-back-button .head .left .item-preview {
			margin-left: 18px
		}
		#zuck-modal-content .story-viewer .head .left .info .name {
			max-width: 165px;
		}
	}
	
	/*# sourceMappingURL=wp-story.css.map */	