
/* ==========================================================================
	Gallery
========================================================================== */

.call-to-action {
    background: #DE496D;
    background-image: linear-gradient(90deg, #DE496D 0%, #f0c57a 100%);
    padding: 60px 0;
    color: #ffffff;
}
.call-to-action h4 {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-weight: normal;
    font-size: 32px;
    line-height: 62px;
    font-family: "MBS Regular", sans-serif;
    text-transform: uppercase;   
}
.call-to-action .btn {
    float: right;
    background: #ffffff;
    color: #3b3b48;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 10px 10px rgba(0,0,0,0.08);
}
.call-to-action .btn:hover {
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 2px 2px rgba(0,0,0,0.16);
}
@media (max-width: 1000px) {
    .call-to-action {
        text-align: center;
        line-height: 26px;
        font-size: 26px;
    }
    .call-to-action h4 {
        display: block;
        margin: 0 0 24px 0;
        font-size: 30px;
        line-height: 30px;
    }
    .call-to-action .btn {
        float: none;
    }
}
@media (max-width: 690px) {
    .call-to-action {
        line-height: 24px;
        font-size: 24px;
		padding: 38px 0;
    }
	.call-to-action h4 {
        font-size: 24px;
        line-height: 24px;
    }
}

/* ==========================================================================
	Gallery
========================================================================== */

.gallery {
    position: relative;
    display: block;
	clear: both;
    margin: 0px -10px;
}
.gallery img {
    position: absolute;
    border-style: none;
    width: 100%;
	height: 100%;
    display: block;
	object-fit: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.loaded .gallery img {
	object-fit: inherit;
    height: auto;
}
figcaption {
	display: none;
}
figure {
    overflow: hidden;
    display: inline-block;
    width: 24%;
	margin: 0;
    position: relative;
}
figure a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
	padding-bottom: 56.25%;
}
.loaded figure a {
	padding-bottom: 0;
}
figure a:after {
    content: '';
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: rgba(238, 198, 129, 0.55);
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
figure a:hover:after {
    opacity: 1;
}
figure a:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
[itemprop="copyrightHolder"] {
    position: relative;
    display: block;
    margin: -2px 0 0 0;
    padding: 8px 10px 0;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    text-align: center;
    color: #bbbbbb;
}
[itemprop="copyrightHolder"] a {
    text-decoration: underline;
}
.video-item:after {
	position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: -44px 0 0 -44px;
    border: 4px solid #fff;
    border-radius: 100%;
    background-size: 175px;
    background-position: 24px -417px;
    background-repeat: no-repeat;
    background-image: url(icons/modulobox.svg);
	background-color: rgba(0,0,0,0.05);
	pointer-events: none;
	-webkit-transition: -webkit-transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
@media screen and (max-width: 800px) {
	.video-item:after {
		width: 60px;
		height: 60px;
		margin: -34px 0 0 -34px;
		background-size: 125px;
		background-position: 18px -297px;
	}
}
@media screen and (max-width: 380px) {
	.video-item:after {
		width: 40px;
		height: 40px;
		margin: -24px 0 0 -24px;
		background-size: initial;
		background-position: 11px -210px;
		border-width: 3px;
	}
}
.loaded .video-item:after {
    content: "";
}
.video-item:hover:after {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}
.copyright {
    font-size: 14px;
    line-height: 16px;
    padding-bottom: 30px;
}

/* ==========================================================================
	Highlight JS
========================================================================== */

.highlight {
    background: #283646;
    color: #ddd;
    margin: 0 -40px;
    padding: 0;
    position: relative;
}
#demos .highlight {
    height: 0;
	overflow-y: scroll;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all 0.35s ease-out; 
    transition: all 0.35s ease-out;   
}
.highlight,
.highlight pre {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}
#demos .highlight pre {
    position: absolute;
	left: 0;
	right: 0;
}
.highlight pre {
	margin: 0;
	padding: 32px 40px;
    font-size: 16px;
}
.highlight code {
    font-size: 16px;
}
.highlight.html .hljs-comment,
.highlight.js .hljs-comment,
.highlight.js .hljs-regexp {
  color: #a1a1a1;
}
.highlight.js .hljs-modifier,
.highlight.js .hljs-number,
.highlight.js .hljs-type {
  color: #fee937;
}
.highlight.js .hljs-keyword,
.highlight.js .hljs-support {
  color: #86b9f5;
}
.highlight.js .hljs-literal {
  color: #fc8787;   
}
.highlight.js .hljs-built_in {
  color: #d08ee7;
}
.highlight.html .hljs-string,
.highlight.js .hljs-string {
  color: #62d543;
}
.highlight .hljs-line-numbers {   
    padding: 0 11px;
    text-align: right;
    font-size: 14px;
    font-weight: normal;
    color: #888888;
    background: rgba(0,0,0,0.15);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.highlight pre::-webkit-scrollbar {
    width: 22px;
    height: 22px;
}
.highlight pre::-webkit-scrollbar-thumb {
    height: 8px;
    border: 7px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
	border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
	Demos styles
========================================================================== */

.demos #hero,
.features #hero {
    display: block;
    height: 100vh;
    margin: 0;
    text-align: center;
    border: none;
    background: #f7f8fa;
    background-image: linear-gradient(to top, #f7f8fa 60%, #fff 100%);
    background-image: linear-gradient(to top, white 0%, #f7f8fa 100%);
    background-image: linear-gradient(to top, #ffffff 0%, #fff1e1 100%);
    background-image: linear-gradient(to top, #ffffff 0%, #fff1f1 100%);
}
.features #hero {
    background-image: linear-gradient(to top, #ffffff 0%, #f2f1ff 100%);
    border-bottom: solid 1px rgba(14,21,47,0.08);
}
.demos #hero h1,
.pricing h1,
.features #hero h1 {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    font-size: 13.4vw;
    line-height: 11vw;
    font-weight: 300;
    font-family: 'MBV Light', sans-serif;
    color: #DE496D;
    text-align: center;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left center, right center, from(#DE496D), to(#FFAE27));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}
.demos #hero h2,
.pricing h2,
.features #hero h2 {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-weight: 600;
    color: #3b3b48;
    font-family: 'MBS Regular';
    font-size: 1.8vw;
    letter-spacing: 0.5vw;
    line-height: 3.8vw;
    text-transform: uppercase;
}
#demos-sidebar {
    position: absolute;
    display: block;
    z-index: 9998;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    border-top: solid 1px rgba(14,21,47,0.08);
    border-bottom: solid 1px rgba(14,21,47,0.08);
    -webkit-transition: box-shadow 0.25s ease;
    transition: box-shadow 0.25s ease;
}
.fixed-sidebar #demos-sidebar {
    position: fixed;
    top: 70px;
    bottom: auto;
    border-color: rgba(14,21,47,0);
    box-shadow: 0 0 24px 2px rgba(14,21,47,0.08);
}
#demos-sidebar ul li {
    display: inline-block;
    float: left;
    width: 12.5%;
    margin: 0;
    text-align: center;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#demos-sidebar ul li a {
    display: block;
    padding: 12px 0;
    color: #3b3b48;
    font-size: 12px;
    line-height: 12px;
    font-weight: normal;
    font-family: 'MBV Bold', sans-serif;
    text-transform: uppercase;    
}
#demos-sidebar ul li a span {
    position: relative;
    display: inline;
}
#demos-sidebar li svg {
    display: block;
    margin: 0 auto 4px auto;
    padding: 0 0 4px 0;
    width: 32px;
    height: 32px;
    /*-webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;*/
}
.no-transition #demos-sidebar ul li,
.no-transition #demos-sidebar li svg {
    -webkit-transition: none;
    transition: none;
}
.fixed-sidebar #demos-sidebar li svg {
    height: 0;
    padding: 0;
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-16px);
    transform: scale(0.4) translateY(-16px);    
}
#demos-sidebar li svg *,
#demos h3 svg * {
    stroke: #3b3b48;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#demos-sidebar li:hover {
    background: #f7f8fa;
}
#demos-sidebar [data-color="accent"],
#demos h3 [data-color="accent"] {
    stroke: #DE496D;
}
.section-title svg {
    stroke: black;
    position: absolute;
	left: 16px;
    width: 38px;
}
.main-title-holder {
    padding: 60px 0 200px;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.main-title-holder h2 {
    position: absolute;
	width: 100%;
	-webkit-transform: translateX(1000%);
    transform: translateX(1000%);
}
.feature-number {
	font-family: 'MBV Light';
	opacity: 0.9999;
}
.feature-title {
	font-family: 'MBS Regular';
}
@media screen and (max-width: 1200px) {
    .feature-number {
    	stroke-width: 2px;
		stroke: url(modulobox.style.css#svg_gradient);
	}
}
@media screen and (max-width: 680px) {
    .main-title-holder {
		padding: 60px 0 100px;
	}
}

/* ==========================================================================
	input number
========================================================================== */

.thumbnail-options {
	position: relative;
    display: inline-block;
	width: 100%;
}
.thumbnail-size {
	display: inline-block;
	float: left;
	padding: 0 20px;
}
.thumbnail-size.mobile {
    padding: 0 40px 0 20px;
}
.thumbnail-size.label {
	padding: 38px 0 0 0;
}
.thumbnail-size.label span {
	display: block;
    padding: 0 0 6px 0;
    min-height: 40px; 
    line-height: 35px;
	font-weight: 600;
	font-style: italic;
}
.label-title {
    display: block;
    font-size: 16px;
    padding: 8px 0;
    font-weight: 600;
	color: #3b3b48;
}
input[type=number] {
	float: left;
	width: 56px;
	height: 100%;
	padding: 0;
	font-size: 14px;
	line-height: 31px;
	text-transform: uppercase;
	text-align: center;
	color: rgba(28, 54, 83, 0.8);
	border: none;
	border-radius: 0;
	border-right: 1.5px rgba(28, 54, 83, 0.6) solid;
	border-left: 1.5px rgba(28, 54, 83, 0.6) solid;
	background: none;
	outline: none;
	-moz-appearance: textfield;
}
.spinner {
	position: relative;
	display: block;
	height: 35px;
	margin: 0 0 6px 0;
	border: 1.5px rgba(28, 54, 83, 0.6) solid;
	border-radius: 2px;
	-webkit-touch-callout: none;
}
.spinner .sub,
.spinner .add {
	float: left;
	display: block;
	width: 35px;
	height: 100%;
 	text-align: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 31px;
	color: rgba(40, 54, 70, 0.75);
	cursor: pointer;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-transition: 0.1s linear;
	transition: 0.1s linear;
}
.spinner .sub:hover,
.spinner .add:hover {
	background: rgba(28, 54, 83, 0.6);
	color: #ffffff;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}
@media (max-width: 1280px) {
	.thumbnail-size.desktop {
		display: none;
	}
}
@media (max-width: 736px) {
	.thumbnail-size.desktop {
		display: none;
	}
	.thumbnail-size.tablet {
		display: none;
	}
}
.thumbnail-nav {
    position: relative;
    display: inline-block;
    padding: 0 20px 0 0;
}
.dynamic-control,
.thumbnail-nav > div {
	position: relative;
    display: inline-block;
    
}
input[type=radio],
input[type=checkbox]{
    display:none; 
    margin:10px;
}
.expand-code,
.dynamic-button,
input[type=radio] + label,
input[type=checkbox] + label {
	display: inline-block;
    float: left;
    padding: 0 20px;
	margin: 0 1px 2px 0;
    height: 34px;
    line-height: 34px;
	border: none;
	outline: none;
    color: rgba(40, 54, 70, 0.75);
    background-color: #ffffff;
    font-size: 16px;
	cursor: pointer;
	font-family: 'MBS Regular', sans-serif;
	box-shadow: 0 20px 20px rgba(0,0,0,0.016), 0 7px 27px rgba(0,0,0,0.016);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.expand-code {
	margin: 0;
}
#add-image,
.expand-code {
    background: #283646;
    color: #fff;
}
input[type=radio] + label:hover,
input[type=checkbox] + label:hover { 
    color: #DE496D;
}
#delete-image,
.dynamic-button:hover,
input[type=radio]:checked + label,
input[type=checkbox]:checked + label { 
	color: #ffffff;
    background-color: #DE496D;
}
.dynamic-button:hover,
input[type=radio] + label:hover,
input[type=checkbox] + label:hover {
	opacity: 0.8;
}
#add-image span,
#delete-image span {
    position: relative;
	vertical-align: top;
    font-size: 24px;
    font-weight: 600;
    padding: 0 5px 0 0;
    top: -2px;
}
.nav-radios {
	display: block;
	clear: both;
}

/* ==========================================================================
	Pricing table
========================================================================== */

#pricing {
    text-align: center;
}
#pricing .section-sub-title {
    margin: 32px 0 56px 0;
}
#pricing h1 {
    margin: 80px 0 0 0;
}
.pricing-nav {
    text-align: center;
    margin: 160px 0 0 0;
}
.pricing-nav ul {
    position: relative;
    display: inline-block;
    margin: 0 auto 40px auto;
    background: #ffffff;
    box-shadow: 0 20px 20px rgba(0,0,0,0.016), 0 7px 27px rgba(0,0,0,0.016);
}
.pricing-nav li {
    position: relative;
    display: inline-block;
    float: left;
    margin: 0;
    padding: 16px 28px;
    text-align: center;
    font-size: 16px;
    line-height: 18px;
    color: rgb(81, 93, 106);
    text-transform: uppercase;
    font-family: 'MBV Bold', sans-serif;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}
.wordpress .pricing-nav ul li:first-child,
.javascript .pricing-nav ul li:last-child {
    background: #DE496D;
    color: #ffffff;
}
.feature-section:not(.wordpress) .pricing-nav ul li:first-child:hover,
.feature-section:not(.javascript) .pricing-nav ul li:last-child:hover {
    color: #DE496D;
}
.pricing-offers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    clear: both;
    margin-bottom: 60px;
}
.pricing-offer {
    position: relative;
    float: left;
    width: 50%;
    margin: 0 0 100px 0; 
    text-align: center;
    border-left: solid 1px rgba(14,21,47,0.08);  
}
.pricing-offers .pricing-offer:first-child {
    display: none;
}
.pricing-offer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 20px 20px rgba(0,0,0,0.016), 0 7px 27px rgba(0,0,0,0.016);
}
.offer-content > *:nth-child(2) {
    display: none;
}
.offer-content > *:nth-child(3) {
    display: block;
}
.javascript .lite-version {
    display: none;
}
.pricing-offers .pricing-offer:first-child {
    z-index: 2;
    border-left: none;
}
.offer-header {
    margin: 0 auto;
    padding: 40px 0 30px 0;
    border-bottom: solid 2px rgba(14,21,47,0.08);  
}
.offer-header div {
    overflow: hidden;
}
.offer-title {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 18px;
    color: rgb(81, 93, 106);
    text-transform: uppercase;
    font-family: 'MBV Bold', sans-serif;
}
.features .offer-title {
    padding: 80px 0 0 0;
}
.offer-price {
    position: relative;
    display: inline-block;
    margin: 20px 0 0;
    padding: 0;
}
.offer-price span {
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}
.offer-price span:nth-child(2) {
    position: relative;
    display: block;
}
.offer-price span:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
}
.javascript .offer-price span:nth-child(2) {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
}
.wordpress .offer-price span:nth-child(3) {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
}
.javascript .offer-price span:nth-child(3) {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.offer-price-curr {
    position: absolute;
    left: -20px;
    font-size: 32px;
    line-height: 35px;
    opacity: 0.5;
    font-family: 'MBV Regular', sans-serif;
}
.offer-price-nb {
    font-size: 70px;
    line-height: 60px;
    font-family: 'MBV Regular', sans-serif;
    color: rgb(81, 93, 106);
    letter-spacing: -5px;
}
.offer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 30px 20px;
    background: #ffffff;
    -webkit-transition: box-shadow 0.25s ease-out;
    transition: box-shadow 0.25s ease-out;
}
.offer-content > *:nth-child(3) {
    display: block;
}
.offer-content.features {
    text-align: left;
}
.offer-features {
    padding: 16px 0 0 0;
}
.offer-features li {
    overflow: hidden;
    margin: 0 -30px;
    padding: 8px 30px;
    font-family: 'MBS Regular', sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -moz-binding: url(/web/20231023131115im_/https://restaurantsecretsinc.com/assets/modulobox/ellipsis.xml#ellipsis);
}
.offer-features li:nth-child(2n + 2) {
    background: rgba(247, 248, 250, 0.6);
}
.feature-available {  
    font-size: 18px;
    line-height: 20px;
}
.feature-available:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 12px;
    border: solid #4ad68c;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.feature-no-available:before {
    content: "\26AA"; 
    content: '';
    position: relative;
    display: inline-block;
    top: 3px;
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-radius: 12px;
    opacity: 0.6;
}
.purchase-plugin,
.purchase-plugin:active,
.purchase-plugin:focus {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 0 -47px 0;
    padding: 12px 20px;
    background: #283646;
    color: #ffffff;
    opacity: 0.8;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'MBV Bold', sans-serif;  
    -webkit-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
}
.purchase-plugin:hover {
    background: #283646;
    color: #ffffff;
    opacity: 1;
}
.wordpress .pricing-offer a:nth-child(3) {
    display: none;
}
.javascript .pricing-offer a:nth-child(2) {
    display: none;
}
@media (min-width: 992px) {
    .pricing-offer {
        width: 25%;
    }  
    .pricing-offers .pricing-offer:first-child {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .offer-content > *:nth-child(2) {
        display: block;
    }
    .offer-content > *:nth-child(3) {
        display: none;
    }
}
@media (max-width: 680px) {
    .pricing-offer {
        width: 100%;
    }
    .offer-header {
        padding: 20px 0 15px 0;
    }
    .offer-features li {
        padding: 4px 30px;
    }
    .pricing-offer {
        border: none;  
    }
    .pricing-nav li {
        padding: 10px 16px;
        font-size: 14px;
        line-height: 16px;
    }
}
@media (max-width: 374px) {
    .pricing-nav li {
        max-width: 50%;
    }
}

/* ==========================================================================
	subscribe form
========================================================================== */

.mobx-html-inner {	
	-webkit-overflow-scrolling: touch; 	
}
#newsletter {
	display: none;
}
.subscribe-popup {
    max-width: 420px;
    min-width: 320px;
    margin: 0 auto;
}
.subscribe-popup .form {
	position: relative;
	z-index: 1;
	background: #ffffff;
	margin: 0;
	padding: 45px;
	border-radius: 6px;
	text-align: center;
	
}
.subscribe-title {
    margin: 20px 0 16px 0;
    color: #3b3b48;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    text-transform: uppercase;
    font-family: 'MBV Regular', sans-serif;
}
.subscribe-desc {
    margin: 34px 0;
    font-size: 16px;
    line-height: 24px;
}
.subscribe-popup input {
	outline: 0;
	background: #f7f8fa;
	color: #3b3b48;
 	width: 100%;
	border: 0;
	margin: 0 0 15px;
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
	border-radius: 6px;
	text-align: center;
}
.subscribe-popup input::-webkit-input-placeholder {
  color: #3b3b48;
}
.subscribe-popup input::-moz-placeholder {
  color: #3b3b48;
}
.subscribe-popup input:-ms-input-placeholder {
  color: #3b3b48;
}
.subscribe-popup input:-moz-placeholder {
  color: #3b3b48;
}
.subscribe-btn {
	width: 100%;
	border: 0;
	outline: 0;
	padding: 15px;
	color: #ffffff;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 6px;
	background: #DE496D;
	background: -webkit-gradient(linear, left center, right center, from(#DE496D), to(#FFAE27));
	-webkit-transition: all 0.3s ease;
 	transition: all 0.3s ease;
}
.subscribe-btn:hover {
	opacity: 0.8;
}
.subscribe-popup .message {
	margin: 15px 0 0;
	padding: 0;
	font-size: 13px;
	line-height: 18px;
}
.subscribe-popup .message a {
	color: #DE496D;
	text-decoration: underline;
}
.close-popup {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    padding: 0;
    line-height: 0;
    text-align: center;
    font-family: 'MBV Regular', sans-serif;
    font-weight: normal;
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 20px;
    border-radius: 0 6px;
    background: #DE496D;
    cursor: pointer;
    opacity: 0.8;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.close-popup:hover {
	opacity: 1;
}
@media screen and (max-width:480px) {
	.subscribe-title {
		margin: 12px 0;
		font-weight: 600;
		font-size: 22px;
		line-height: 24px;
	}
	.subscribe-desc {
		margin: 12px 0;
		font-size: 14px;
		line-height: 20px;
	}
	.subscribe-popup .form {
		padding: 26px 20px;
		margin: 10px;
	}
}


/* ==========================================================================
	media query
========================================================================== */

@media screen and (max-width:1680px) {
    #doc-container #hero h1 {
        font-size: 3.5vw;
        line-height: 3.5vw;
    }
}
@media screen and (max-width:1280px) {
     #doc-sidebar {
		width: 320px;
		min-width: 320px;
    } 
    #doc-container {
        margin: 0 0 0 310px;
    }
    #demos-sidebar .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
}
@media screen and (max-width:990px) {
	noscript div {
		top: 50px;
	}
	.feature-section {
        padding: 80px 0 0 0;
    }
    #doc-sidebar {
        left: 100%;
        top: 50px;
        width: 420px;
        max-width: 100%;
        -webkit-transform: translateX(0);
		transform: translateX(0);
        -webkit-transition: transform 0.4s;
		transition: transform 0.4s;
    }
    .open-doc #doc-sidebar {
        -webkit-transform: translateX(-100%);
		transform: translateX(-100%);
    }
    #doc-container {
        margin: 0;
        padding: 0 24px;
    }
    #doc-container #hero {
        display: block;
        height: 500px;
        margin: 50px -40px 0;
    }
    #doc-container #hero h1 {
        font-size: 5vw;
        line-height: 5vw;
    }
    #doc-container section {
        padding: 50px 0 0 0;
    }
    #doc-container section h2 {
        font-size: 32px;
    }
	.documentation .logo-svg {
		width: 200px;
		height: 200px;
	}
    .highlight {
        margin: 0 -24px;
    }
    .highlight pre,
    .highlight code,
    #doc-container .description {
        font-size: 15px;
    }
    .highlight pre {
        padding: 22px 24px;
    }
    #scrollTo-top {
        display: none;
    }
    .fixed-sidebar #demos-sidebar {
        top: 50px;
    }
    .pricing h1,
    .demos #hero h1 {
        font-size: 27vw;
        line-height: 22vw;
    }
    .pricing h2,
    .demos #hero h2 {
        font-size: 3vw;
        line-height: 5vw;
    }
    #demos-sidebar ul li a {
        font-size: 11px;
    }
    #demos-sidebar ul li a span span {
        display: none;
    }
}
@media screen and (max-width:680px) {
    #doc-container #hero h1 {
        font-size: 6.5vw;
        line-height: 6.5vw;
    }
    #doc-container h3 {
        padding: 26px 40px;
    }
    #doc-container h3 code {
        font-size: 18px;
    }
    #demos-sidebar .container {
        padding: 0;
    }
    #demos-sidebar,
    .fixed-sidebar #demos-sidebar {
        position: fixed;
        top: auto;
        bottom: 0;
        box-shadow: 0 0 24px 2px rgba(14,21,47,0.08);
    }
    #demos-sidebar ul li a {
        padding: 10px;
    }
    #demos-sidebar ul li a span,
    .fixed-sidebar #demos-sidebar ul li a span {
        display: none;
    }
    #demos-sidebar li svg,
    .fixed-sidebar  #demos-sidebar li svg {
        width: 26px;
        height: 24px;
        opacity: 1;
        margin: 0 auto;
        padding: 0;
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        transition: none;
    }
}
@media (max-width: 1199px) {
    .pricing h1,
    .demos #hero h1,
    .features #hero h1 {
        font-size: 18.4vw;
        line-height: 15vw;
    }
    .pricing h2,
    .demos #hero h2,
    .features #hero h2 {
        font-size: 2.8vw;
        line-height: 4.8vw;
    }
    .section-title {
        font-size: 26px;
        padding: 0 20px;
    }
    .section-sub-title {
        font-size: 15px;
        padding: 0 20px;
    }
    .section-sub-title br {
        display: none;
    }
    #demo,
    #features,
    #interface  {
        padding: 80px 0;
    }
	#demos .section-title {
		padding: 0 0 0 68px;
	}
	#demos h3 svg {
		width: 36px;
    	height: 36px;
	}
}
@media (max-width: 780px) {
	.logo-svg text {
		font-family: 'MBV Regular', sans-serif;
		font-weight: 300;
	}
	.logo-svg text:lasr-child {
		font-weight: 300;
	}
    .section-title {
        font-size: 24px;
    }
    .demos #hero h1,
    .features #hero h1 {
        font-size: 17.5vw;
        line-height: 16vw;
    }
    .demos #hero h2,
    .features #hero h2 {
        font-size: 3.15vw;
        line-height: 6.4vw;
    }
	.expand-code,
	.dynamic-button,
	input[type=radio] + label,
	input[type=checkbox] + label {
		padding: 0 12px;
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.logo-svg {
		max-height: 60vh;
		max-width: 70vw;
	}
	.documentation .logo-svg {
		width: 140px;
		height: 140px;
	}
    .section-title {
        font-size: 24px;
    }
    .pricing h1,
    .demos #hero h1,
    .features #hero h1 {
        font-size: 15vw;
        font-weight: 100;
        font-family: 'MBV Regular', sans-serif;
    }
    .pricing h2,
    .demos #hero h2,
    .features #hero h2 {
        letter-spacing: 0.2vw;
    }
	#doc-container #hero h1 {
		font-weight: 100;
		font-family: 'MBV Regular';
	}
	#demos .section-title {
		padding: 0 0 0 48px;
	}
	#demos h3 svg {
		width: 26px;
    	height: 34px;
    	left: 10px;
	}
}



/*
     FILE ARCHIVED ON 13:11:15 Oct 23, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 04:21:35 May 06, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.527
  exclusion.robots: 0.03
  exclusion.robots.policy: 0.018
  esindex: 0.01
  cdx.remote: 10.71
  LoadShardBlock: 195.493 (3)
  PetaboxLoader3.datanode: 135.953 (5)
  PetaboxLoader3.resolve: 134.133 (2)
  load_resource: 115.709
  loaddict: 52.851
*/