:root {
	--main: #077fde;
	--secondary: darkorange;
}
.hide {
	display: none;
}

/* container */
.options-container {
	width: 700px;
	background: #fff;
	position: relative;
}
.admin-tabs {
	background: #333;
	display: flex;
	position: sticky;
	top: 32px;
	z-index: 5;
}
.admin-tabs a {
	color: #fff;
	text-decoration: none;
	padding: 15px;
	font-size: 20px;
	display: inline-block;
	outline: none !important;
	box-shadow: none !important;
	box-sizing: border-box;
	transition: .2s;
	line-height: 1;
}
.admin-tabs a.active {
	background: var(--main);
}
.admin-tabs a:not(.active):hover {
	background: rgba(255, 255, 255, .1);
}
.admin-tabs button.submit-btn {
	margin-inline: auto 0;
	border-radius: 0;
	border: none;
	padding: 0;
	background: var(--secondary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	font-size: 20px;
	min-width: 150px;
	text-align: center;
	box-sizing: border-box;
	padding: 0 30px;
}
.admin-tabs button.submit-btn:hover {
	background: orange;
}
button.submit-btn.loading .btn-txt,
button.submit-btn:not(.loading) .btn-load {
	display: none;
}
.btn-load img {
	width: 25px;
	display: block;
	margin: auto;
}

/* development mode motice */
.dev-mode-notice {
  padding: 15px 30px 0;
  box-sizing: border-box;
}
.dev-mode-notice:not(.dev-on) {
	display: none;
}
.dev-mode-notice-container {
	background: pink;
	color: darkred;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px;
}
.admin-box {
	padding: 30px;
	box-sizing: border-box;
}


/* options */
.options-container h4 {
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 17px;
	font-weight: 700;
	padding-top: 30px;
	border-top: 1px solid #ececec;
}
.options-container h4:first-child {
	margin-top: 0px;
	padding-top: 0px;
	border-top: none;
}
.options-desc,
.option-title {
	font-size: 16px;
	font-weight: 600;
	color: #868686;
	display: block;
	margin-bottom: 13px;
	width: 100%;
	white-space: nowrap;
}
.option-title.note {
	margin-bottom: 15px;
	color: var(--secondary);
	opacity: 0.7;
}
.options-desc {
	margin-bottom: 30px;
	line-height: 1.5;
}
.option-subtitle {
	display: block;
	margin-top: -5px;
	margin-bottom: 13px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 600;
	color: #aaa;
	width: 100%;
}
.admin-option {
	margin-bottom: 20px;
	position: relative;
	width: 100%;
}
.admin-option:last-child {
	margin-bottom: 0;
}
.admin-option.inner-option {
	margin-top: 20px;
}
.admin-option label {
	display: inline-flex;
	flex-wrap: wrap;
}
small.def {
	display: block;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.4;
	margin-top: 6px;
}
.wp-core-ui .button-primary:focus,
.admin-option input:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--main);
}
.wp-core-ui .button-primary {
	background: var(--main);
	border-color: var(--main);
}
.wp-core-ui .button-primary.reded {
	background: darkred;
	border-color: #590000;
}
.wp-core-ui .button-primary.reded:hover {
	background: #b70000;
}


/* radio */
.radio-option label {
	position: relative;
	margin-inline-end: 10px;
}
.icon-radio label input,
.radio-option input {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	z-index: 1;
}
.radio-option label span {
	font-size: 15px;
	display: inline-flex;
	align-items: center;
}
.radio-option label input+span::before {
	content: "";
	width: 20px;
	height: 20px;
	display: inline-flex;
	border: 2px solid;
	margin-inline-end: 7px;
	font-size: 15px;
	align-content: center;
	justify-content: center;
	padding-bottom: 2px;
	box-sizing: border-box;
	border-radius: 4px;
}
.radio-option label input:checked+span {
	font-weight: 600;
	color: var(--main);
}
.radio-option label input:checked+span::before {
	content: "✔";
}

/* icon radio */
.admin-option.icon-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
	align-items: flex-start;
	align-content: flex-start;
}
.admin-option.icon-radio .option-title {
	width: 100%;
}
.admin-option.icon-radio label {
	width: auto;
}
.admin-option.icon-radio label span {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 20px;
	color: #868686;
	border: 1px solid;
	border-radius: 4px;
	box-sizing: border-box;
	background: #f8f8f8;
}
.admin-option.icon-radio label input:checked+span {
	color: var(--main);
	background: #fff;
}
/* unit */
.admin-option input[type="number"] {
	width: 100px;
}
.unit-option input {
	border-radius: 4px 0 0 4px;
}
.unit-option .unit {
	height: 30px;
	background: #e1e1e1;
	padding: 0 10px;
	border-radius: 0 4px 4px 0;
	display: inline-flex;
	margin-inline-start: -3px;
	border: 1px solid #8c8f94;
	box-sizing: border-box;
	align-items: center;
}
label label.error,
label pre {
	order: 1;
	width: 100%;
	line-height: 1;
	color: red;
	margin: 10px 0 0 0;
	font-size: 14px;
	flex: 0 0 100% !important;
}
.admin-option input:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--main);
}
[dir="rtl"] .admin-option.unit-option label {
	direction: ltr;
	text-align: right;
	justify-content: flex-end;
}
[dir="rtl"] .option-title,
[dir="rtl"] .option-subtitle {
	direction: rtl;
}

/* image select */
.image-view {
	display: flex;
	gap: 15px;
	margin-bottom: 10px;
}
.img-actions {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 5px;
}
.image-option img.thumb {
	width: 70px;
	max-height: 70px;
	object-fit: cover;
	display: block;
}
.image-option img.thumb[src=""] {
	display: none;
}
.image-option input[type="text"] {
	position: absolute;
	visibility: hidden;
	pointer-events: none;
}
.image-option input[type="text"]:placeholder-shown~.image-view input#remove_image_button,
.image-option input[type="text"]:placeholder-shown~.inner-option {
	display: none;
}


/* color picker */
.color-picker.wp-color-picker {
	max-width: 100px;
}

/* icon picker */
input.iconpicker-element.iconpicker-input {
	background: #fff;
}
.admin-option.icon-picker label {
	position: relative;
}
.admin-option.icon-picker label > i {
	font-size: 20px;
	width: 35px;
	height: 35px;
	display: block;
	border: 1px solid;
	border-radius: 4px;
	text-align: center;
	line-height: 35px;
}
.admin-option.icon-picker label > input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 35px;
	height: 35px;
	z-index: 1;
	cursor: pointer;
}
[dir="rtl"] .admin-option.icon-picker label > input {
	right: 0;
	left: auto;
}
.iconpicker-popover {
	border: 1px solid #ccc;
	position: relative !important;
	top: auto !important;
	left: auto !important;
	width: 100% !important;
	max-width: 100% !important;
	z-index: 1;
}
.iconpicker-popover:not(.in) {
	display: none !important;
}
.iconpicker-popover.popover > .arrow {
	display: none !important;
}
.no-blank .iconpicker-popover .iconpicker-item:first-child {
	display: none;
}
[dir="rtl"] .iconpicker-popover.popover {
	text-align: right;
}

/* social option */
.admin-option.social-option {
	display: flex;
	gap: 10px;
	background: #fff;
	margin-bottom: 0;
	padding-bottom: 20px;
	flex-wrap: wrap;
}
.admin-option.social-option .drag-handle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.admin-option.social-option .drag-handle .dashicons {
	cursor: move;
}
.admin-option.social-option .drag-handle:not(:hover) .dashicons {
	color: #868686;
}
.admin-option.social-option .drag-handle:hover+label .option-title {
	color: #3c434a;
}
.admin-option.social-option .drag-handle .dashicons {
	font-size: 17px;
	height: 17px;
	width: 17px;
}
.admin-option.social-option label,
.admin-option.social-option label input {
	flex: 1;
}
.help-tt {
	position: relative;
}
.admin-option.social-option .help-tt {
	margin-inline-start: 10px;
	margin-top: auto;
	margin-bottom: 0;
}
.help-tt i {
	width: 18px;
	height: 18px;
	background: #000;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 18px;
	border-radius: 50%;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	cursor: help;
}
.help-tt small.tooltip {
	position: absolute;
	top: 26px;
	right: -10px;
	visibility: hidden;
	opacity: 0;
	transition: .1s;
	background: #000;
	color: #fff;
	padding: 5px 10px;
	white-space: nowrap;
	border-radius: 5px;
	z-index: 2;
	cursor: auto;
}
.help-tt small.tooltip::before {
	content: "";
	display: block;
	width: 0px;
	height: 0px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #000;
	right: 14px;
	top: -9px;
	position: absolute;
}
.help-tt small.tooltip a {
	color: cyan;
}
.help-tt small.tooltip span {
	font-style: italic;
	color: var(--secondary);
}
[dir="rtl"] .help-tt small.tooltip {
	left: -10px;
	right: auto;
}
[dir="rtl"] .help-tt small.tooltip::before {
	left: 14px;
	right: auto;
}
.help-tt:hover small.tooltip {
	visibility: visible;
	opacity: 1;
}
.admin-option.social-option label > i {
	width: 30px;
	height: 30px;
	font-size: 18px;
	line-height: 30px;
	background: var(--main);
	border-radius: 5px;
	text-align: center;
	color: #fff;
	margin-inline-end: 10px;
}
.admin-option.social-option label > i.fa-whatsapp {
	background: #25D366;
}
.admin-option.social-option label > i.fa-telegram-plane {
	background: #0084c6;
}
.admin-option.social-option label > i.fa-twitter {
	background: #1d9bf0;
}
.admin-option.social-option label > i.fa-youtube {
	background: #f00;
}
.admin-option.social-option label > i.fa-pinterest-p {
	background: #e60023;
}
.admin-option.social-option label > i.fa-linkedin-in {
	background: #0a66c2;
}
.admin-option.social-option label > i.fa-facebook-f {
	background: #1877f2;
}
.admin-option.social-option label > i.fa-vk {
	background: #07f;
}
.admin-option.social-option label > i.fa-tiktok {
	background: #000;
}
.admin-option.social-option label > i.fa-behance {
	background: #000;
}
.admin-option.social-option label > i.fa-skype {
	background: #02aff3;
}
.admin-option.social-option label > i.fa-vimeo {
	background: #00aef0;
}
.admin-option.social-option label > i.fa-snapchat-ghost {
	background: #fffc00;
}
.admin-option.social-option label > i.fa-instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.ui-state-highlight {
	background: #ddd;
	height: 40px;
	margin-bottom: 15px;
}
.elements-container .ui-state-highlight:not(:first-child) {
	margin-top: 20px;
}

/* no pages input */
.nopages {
	background: #ececec;
	padding: 10px;
	box-sizing: border-box;
	max-height: 300px;
	overflow: auto;
}
.nopages label {
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 10px;
	gap: 8px;
	align-items: flex-start;
	padding-top: 3px;
	position: relative;
	flex-wrap: nowrap;
}
.nopages label:last-child {
	margin-bottom: 0px;
}
.nopages label input {
	margin: 1px 0 0;
}

/* elements */
.element-select {
	padding: 10px;
	margin-top: 20px;
	border: 1px solid #ececec;
	position: relative;
	box-sizing: border-box;
	display: none;
}
.elements-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
	max-height: 300px;
	overflow: auto;
	padding-right: 10px;
}
[dir="rtl"] .elements-list {
	padding-left: 10px;
	padding-right: 0px;
}
.element-select::before {
	content: "";
	display: block;
	width: 0px;
	height: 0px;
	border-width: 10px 8px;
	border-style: solid;
	border-color: transparent transparent #ececec;
	left: 20px;
	top: -20px;
	position: absolute;
}
[dir="rtl"] .element-select::before {
	right: 20px;
	left: auto;
}
.elements-title {
	flex: 0 0 100%;
	font-size: 16px;
	font-weight: 600;
	color: #868686;
	display: block;
	width: 100%;
	background: #ececec;
	padding: 10px;
	margin: -10px -10px 0px;
}
.element-btn {
	background: #ececec;
	padding: 7px;
	box-sizing: border-box;
	display: inline-flex;
	gap: 12px;
	cursor: pointer;
	transition: .2s;
	flex: 0 0 calc(50% - 5px);
	line-height: 1.4;
	font-size: 12px;
}
.element-btn > span {
	width: 40px;
	height: 40px;
	background: #ccc;
	border-radius: 5px;
	line-height: 40px;
	text-align: center;
	font-size: 30px;
	transition: .2s;
	flex: 0 0 40px;
}
.element-btn b {
	display: block;
	font-size: 110%;
	line-height: 1.2;
	margin-bottom: 3px;
}
.element-btn:hover {
	background: var(--main);
	color: #fff;
}
.element-btn:hover > span {
	background: #333;
}
.elements-container {
	margin-top: 30px;
}
.element-item {
	border: 1px solid #ccc;
	margin-top: 20px;
	background: #fff;
}
.element:first-child {
	margin-top: 0px;
}
.element-head {
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
.element-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	padding: 10px 15px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}
.element-title span {
	margin-inline-end: 10px;
	display: inline-block;
	transition: .3s;
}
.element-item.close .element-title span {
	transform: rotate(180deg);
}
.element-actions {
	margin-inline-end: 3px;
}
.element-actions > * {
	padding: 10px 7px;
	cursor: pointer;
	opacity: .75;
}
#moveElement {
	cursor: move;
}
#deleteElement {
	cursor: pointer;
	transition: 0s;
}
#deleteElement:hover {
	color: red;
}
.element-content {
	padding: 15px;
	box-sizing: border-box;
	border-top: 2px solid #ccc;
	max-height: 400px;
	overflow: auto;
}
.element-content label,
.element-content input[type="text"],
.element-content input[type="url"] {
	width: 100%;
}
.element-content .admin-option.icon-picker label > input,
.element-content .admin-option.icon-picker label > i {
	height: 30px;
	width: 30px;
	box-sizing: border-box;
	font-size: 17px;
	line-height: 30px;
}
.design-options-toggle {
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	background: #f0f0f0;
	padding: 10px;
	box-sizing: border-box;
	display: flex;
}
.design-options-toggle::before {
	content: "+";
	margin-inline-end: 7px;
	font-weight: 900;
	font-size: 22px;
}
.design-options-toggle.open::before {
	content: "-";
}
.design-options {
	background: #f9f9f9;
	padding: 10px;
}
.design-options + .admin-option {
	margin-top: 15px;
}
#saveWYS {
	width: auto;
	margin-top: 10px;
}

/* msg */
.sf-msg {
	position: fixed;
	right: 20px;
	bottom: 20px;
	height: 60px;
	display: flex;
	align-items: center;
	padding: 0 15px 0 35px;
	line-height: 1.3;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
	z-index: 10;
	transition: .3s;
	padding-bottom: 1.5px;
}
[dir="rtl"] .sf-msg {
	left: 20px;
	right: auto;
	padding: 0 35px 0 15px;
}
.sf-msg::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: rgba(0, 0, 0, 0.2);
	display: block;
	transition: 3s;
	transition-timing-function: linear;
}
[dir="rtl"] .sf-msg::after {
	left: auto;
	right: 0;
}
.sf-msg.type-successes {
	background: lightgreen;
	color: darkgreen;
}
.sf-msg.type-error {
	background: pink;
	color: darkred;
}
.sf-msg .msg-content {
	display: flex;
	align-items: center;
}
.sf-msg .msg-content::after {
	margin-inline-start: 10px;
	font-family: 'dashicons';
	font-size: 30px;
	display: inline-block;
}
.sf-msg.type-successes .msg-content::after {
	content: "\f15e";
}
.sf-msg.type-error .msg-content::after {
	content: "\f335";
}
.sf-msg.msg-on {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}
.sf-msg.msg-on::after {
	width: 0px;
}
.sf-msg .dashicons.close-msg {
	position: absolute;
	left: 5px;
	top: 5px;
	font-size: 25px;
	width: 25px;
	height: 25px;
	color: #333;
	cursor: pointer;
	opacity: .5;
}
[dir="rtl"] .sf-msg .dashicons.close-msg {
	right: 5px;
	left: auto;
}
.sf-msg .dashicons.close-msg:hover {
	opacity: 1;
}

/* preview */
#sf-form {
	display: flex;
	gap: 30px;
}
.fs-preview {
	flex: 1;
	height: calc(100vh - 50px);
	position: sticky;
	top: 40px;
	background: #ddd;
}
.fs-preview-box {
	height: calc(100% - 35px);
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 10px -6px #000;
	background-image: linear-gradient(45deg, #ececec 25%, transparent 25%, transparent 75%, #ececec 75%, #ececec), linear-gradient(45deg, #ececec 25%, transparent 25%, transparent 75%, #ececec 75%, #ececec);
	background-size: 40px 40px;
	background-position: 0 0, 20px 20px;
}
.previewBar {
	position: absolute;
	bottom: 0;
	z-index: 100;
	background: #333;
	width: 100%;
	padding: 0px 10px;
	color: #fff;
	box-sizing: border-box;
	font-size: 11px;
	z-index: 9999;
	overflow: hidden;
	line-height: 1.2;
}
.previewBarHead {
	display: flex;
	justify-content: space-between;
	height: 35px;
	line-height: 35px;
	width: 100%;
	border-bottom: 1px solid #555;
}
.previewBarNote {
  display: flex;
  align-items: center;
  gap: 10px;
}
.previewBar:not(.show) .previewBarHead .closePBH,
.previewBar.show .previewBarHead .openPBH {
	display: none;
}
.previewBarHead span {
	font-size: 15px;
	height: 15px;
	width: 15px;
}
.previewBarHead u {
	color: gold;
	cursor: pointer;
}
.previewBar ol {
	display: none;
}
.fs-fe-note {
	background: pink;
	color: darkred;
	padding: 10px;
	border: 1px solid;
}

/* device & darkmode switcher */
.previewBarActions {
  display: flex;
  gap: 10px;
}
.darkmode-switcher,
.device-switcher {
	display: flex;
	align-items: center;
	height: 35px;
}
.darkmode-switcher {
  border-right: 1px solid #555;
  padding-right: 10px;
}
[dir="rtl"] .darkmode-switcher {
  border-left: 1px solid #555;
  border-right: none;
  padding-right: 0px;
  padding-left: 10px;
}
.darkmode-switcher span,
.device-switcher span {
	width: 35px;
	height: 22px;
	line-height: 22px;
	color: #999;
	font-size: 16px;
	margin: 0 -0.5px;
	cursor: pointer;
}
.darkmode-switcher span.act,
.device-switcher span.act {
	background: #666;
	color: #fff;
	box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.4);
}
.fs-preview-box.fs-prev-mob {
  max-width: 400px;
  margin: 10px auto 0;
  height: calc(100% - 35px - 20px);
}
.fs-preview-box.fs-prev-dark {
	background: #111;
  	background-image: linear-gradient(45deg, #222 25%, transparent 25%, transparent 75%, #222 75%, #222), linear-gradient(45deg, #222 25%, transparent 25%, transparent 75%, #222 75%, #222);
	background-size: 40px 40px;
	background-position: 0 0, 20px 20px;
}


/* preview fix to frontend code */
body.wp-admin .fs-preview .combar-fs-wrapper {
	position: relative;
	width: 100%;
	visibility: visible;
	height: 100%;
	pointer-events: all;
	z-index: 10;
	top: 0;
}
.fs-preview .fs-close-outside,
.fs-preview .combar-fs-container {
	transition: 0s;
	transform: none !important;
}
.combar-fs-scrollbox {
  overflow-x: hidden;
}
.fs-preview .combar-fs-overlay {
	opacity: 1;
}
.fs-preview #fs-trigger {
	position: absolute;
	z-index: 1000;
}
.fs-preview .fs-close-outside {
	visibility: visible;
	opacity: 1;
}
.fs-preview .fs-block.fs-hide-desk,
.fs-preview .fs-block.fs-hide-tab,
.fs-preview .fs-block.fs-hide-mob {
	display: block;
}

/* preview sidebar/trigger */
.fs-preview .fs-preview-box.show-trigger .combar-fs-wrapper,
.fs-preview .fs-preview-box.show-sidebar .combar-fs-trigger {
	display: none;
}
.fs-preview .fs-preview-box.show-trigger .combar-fs-trigger {
	display: flex !important;
}

/* preview desktop/mobile trigger */
/* desk */
.fs-preview-box.fs-prev-desk .combar-fs-trigger.trigger-align-top {
	top: var(--fs-trigger-v);
	bottom: auto;
}
.fs-preview-box.fs-prev-desk .combar-fs-trigger.trigger-align-bottom {
	bottom: var(--fs-trigger-v);
	top: auto;
}
.fs-preview-box.fs-prev-desk .combar-fs-trigger.trigger-align-center {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
}
/* mob */
.fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-align-mob-top {
	top: var(--fs-trigger-mob-v) !important;
	bottom: auto !important;
	transform: none  !important;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-align-mob-center {
	bottom: auto  !important;
	top: 50%  !important;
	transform: translateY(-50%) !important;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-align-mob-bottom {
	bottom: var(--fs-trigger-mob-v) !important;
	top: auto !important;
	transform: none  !important;
}
/* mobile preview trigger size */
body.fs-side-left .fs-preview-box.fs-prev-mob .combar-fs-trigger {
	left: var(--fs-trigger-mob-h);
}
body.fs-side-right .fs-preview-box.fs-prev-mob .combar-fs-trigger {
	right: var(--fs-trigger-mob-h);
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-small {
	line-height: 30px;
	font-size: 19px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-small .fs-trigger-icon {
	width: 30px;
	height: 30px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-small .fs-trigger-title {
	padding: 0 13px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-medium {
	line-height: 45px;
	font-size: 24px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-medium .fs-trigger-icon {
	width: 45px;
	height: 45px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-medium .fs-trigger-title {
	padding: 0 20px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-big {
	line-height: 60px;
	font-size: 32px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-big .fs-trigger-icon {
	width: 60px;
	height: 60px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.size-mob-big .fs-trigger-title {
	padding: 0 30px;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_1.size-mob-small .fs-trigger-title {
	padding: 13px 0;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_1.size-mob-medium .fs-trigger-title {
	padding: 20px 0;
}
.fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_1.size-mob-big .fs-trigger-title {
	padding: 30px 0;
}
body.fs-side-left .fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_3.size-mob-small .fs-trigger-title {
	left: 45px;
}
body.fs-side-left .fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_3.size-mob-medium .fs-trigger-title {
	left: 60px;
}
body.fs-side-left .fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_3.size-mob-big .fs-trigger-title {
	left: 75px;
}
body.fs-side-right .fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_3.size-mob-small .fs-trigger-title {
	right: 45px;
}
body.fs-side-right .fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_3.size-mob-medium .fs-trigger-title {
	right: 60px;
}
body.fs-side-right .fs-preview-box.fs-prev-mob .combar-fs-trigger.trigger-style_3.size-mob-big .fs-trigger-title {
	right: 75px;
}

/* hide on devices */
.fs-preview-box.fs-prev-desk .fs-block.fs-hide-desk {
	display: none;
}
.fs-preview-box.fs-prev-mob .fs-block.fs-hide-mob {
	display: none;
}