/**
 * Theme Name:   ON1
 * Theme URI:    https://www.on1.com
 * Author:       ON1 Web Team
 * Author URI:   https://www.on1.com
 * Description:  Theme for the ON1 site
 * Version:      15.0 (2021)
 * Text Domain:  on1
 */

/*------------------------------------------------------------------------------
 * The theme's base/shared styles go in this file. Page-specific styles can be
 * found in the css directory.
 -----------------------------------------------------------------------------*/
* { outline: none; }

body {
	background: var(--bg-color);
	color: var(--text-color);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 1.125rem;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

body.bg-light {
	color: #303030;
}

body.bg-dark {
	background: #282828;
	color: #bdbdbe;
}

body.bg-dark #fsb { color: #303030; }

h1,
h2,
h3,
h4 {
	color: var(--headline-color);
	font-family: "GilroyExtraBold", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-weight: 700;
	margin-bottom: 1.5rem;
}

body.bg-dark h1, body.bg-dark h2, body.bg-dark h3, body.bg-dark h4, body.bg-dark h5 { color: #fff; }
body.bg-dark .bg-white h1, body.bg-dark .bg-white h2, body.bg-dark .bg-white h3, body.bg-dark .bg-white h4, body.bg-dark .bg-white h5 { color: #303030; }
body.bg-light #site-main h1, body.bg-light #site-main h2, body.bg-light #site-main h3, body.bg-light #site-main h4, body.bg-light #site-main h5 { color: #303030; }

.bg-light .form-control, .bg-light .form-control:focus, .bg-light .form-select, .bg-light .form-select:focus {
	background-color: var(--bs-body-bg);
	border: var(--bs-border-width) solid var(--bs-border-color);
	color: #303030;
}

.bg-dark.text-light, .bg-dark .text-light { color: #ededed !important; }

embed, iframe, object {
	border: none;
	max-width: 100%;
}

/*------------------------------------------------------------------------------
 * Background colors
 -----------------------------------------------------------------------------*/
.bg-darkest { background-color: #1e1e1e !important; }
.bg-dark { background-color: #282828 !important; }
.bg-dark-accent { background-color: #303030 !important; }

.bg-dark-hollow {
	background-color: transparent !important;
	border: 2px solid #303030 !important;
}

.bg-accent { background-color: #7c7c7d !important; }
.bg-light { background-color: #f6f6f7 !important; }
.bg-light-accent { background-color: #eaeaea !important; }
.bg-silver { background-color: #bdbdbe !important; }

.bg-white-hollow {
	background-color: transparent !important;
	border: 2px solid #fff !important;
}

.bg-green-soft { background-color: rgba(33, 206, 110, 0.25) !important; }

.bg-green-hollow {
	background-color: transparent !important;
	border: 2px solid #21ce6e !important;
}

.bg-blue-soft { background-color: rgba(10, 126, 250, 0.25) !important; }

.bg-blue-hollow {
	background-color: transparent !important;
	border: 2px solid #0a7efa !important;
}

.bg-purple-soft { background-color: rgba(125, 30, 255, 0.25) !important; }

.bg-purple-hollow {
	background-color: transparent !important;
	border: 2px solid #914fff !important;
}

.bg-orange-soft { background-color: rgba(253, 111, 22, 0.25) !important; }

.bg-orange-hollow {
	background-color: transparent !important;
	border: 2px solid #fd6f16 !important;
}

.bg-red-soft, .bg-pink-soft { background-color: rgba(255, 61, 87, 0.25) !important; }

.bg-red-hollow, .bg-pink-hollow {
	background-color: transparent !important;
	border: 2px solid #ff3d57 !important;
}

.bg-yellow-soft, .bg-gold-soft { background-color: rgba(250, 183, 59, 0.25) !important; }

.bg-yellow-hollow, .bg-gold-hollow {
	background-color: transparent !important;
	border: 2px solid #fab73b !important;
}

.bg-dark-green { background-color: #00a46d !important; }
.bg-dark-green-soft { background-color: rgba(0, 164, 109, 0.25) !important; }

.bg-dark-green-hollow {
	background-color: transparent !important;
	border: 2px solid #00a46d !important;
}

/*------------------------------------------------------------------------------
 * Gradient backgrounds
 -----------------------------------------------------------------------------*/
.bg-purple-blue-gradient {
	/*
	background: rgb(10, 126, 250) !important;
	background: linear-gradient(-40deg, rgba(10, 126, 250, 1) 0%, rgba(146, 66, 148, 1) 100%) !important;
	*/
	background: linear-gradient(to right, #7d1dfd 0%, #0a7efa 100%) !important;
}

.bg-pink-blue-gradient {
	background: linear-gradient(to right, rgba(245, 66, 90, 1) 0%, #0a7efa 100%) !important;
}

.bg-red-purple-gradient {
	background: rgb(255, 61, 87) !important;
	background: linear-gradient(-40deg, rgba(255, 61, 87, 1) 0%, rgba(146, 66, 148, 1) 100%) !important;
}

.bg-pink-orange-gradient {
	background: #ff3d57 !important;
	background: linear-gradient(to right, #c92b77 0%, #ff604c 100% ) !important;
}

.bg-green-blue-gradient-over-image {
	background: rgb(33, 206, 110) !important;
	background: linear-gradient(-40deg, rgba(33, 206, 110, 0.75) 0%, rgba(10, 126, 250, 0.75) 100%) !important;
}

.bg-blue-purple-gradient-over-image {
	background: rgb(10, 126, 250) !important;
	background: linear-gradient(-40deg, rgba(10, 126, 250, 0.75) 0%, rgba(146, 66, 148, 0.75) 100%) !important;
}

.bg-red-purple-gradient-over-image {
	background: rgb(255, 61, 87) !important;
	background: linear-gradient(-40deg, rgba(255, 61, 87, 0.75) 0%, rgba(146, 66, 148, 0.75) 100%) !important;
}

.bg-red-orange-gradient-over-image {
	background: rgb(255, 61, 87) !important;
	background: linear-gradient(-40deg, rgba(255, 61, 87, 0.75) 0%, rgba(243, 132, 42, 0.75) 100%) !important;
}

.bg-orange-gradient { background: linear-gradient(90deg, rgba(254, 125, 39, 1) 0%, rgba(255, 85, 20, 1) 100%) !important; }
.bg-blue-gradient { background: linear-gradient(90deg, rgba(30, 156, 221, 1) 0%, rgba(46, 110, 223, 1) 100%) !important; }
.bg-blue-gradient-rev { background: linear-gradient(90deg, rgba(46, 110, 223, 1) 0%, rgba(30, 156, 221, 1) 100%) !important; }
.bg-purple-gradient { background: linear-gradient(to right,#7d1eff 0%, #9219ee 100%) !important; }
.bg-pink-gradient { background: linear-gradient(to right, #ff4957 0%, #f22b90 100%) !important; }
.bg-orange-pink-gradient { background: linear-gradient(45deg, rgba(254, 125, 39, 1) 0%, rgba(253, 36, 75, 1) 45%, rgba(254, 125, 39, 1) 100%) !important; }
.bg-pink-red-orange-gradient { background: linear-gradient(to right, #c018b9 0%, #fd244b 40%, #fc8808 98%) !important; }
.bg-orange-red-pink-gradient { background: linear-gradient(to right, #ff7505 4%, #ff2b72 47%, #dc1cc3 100%) !important; }
.bg-red-orange-gradient { background: linear-gradient(to right, #ff4861 0%, #ff5e49 100%) !important; }
.bg-green-gradient { background: linear-gradient(to right, #01fe4f 0%, #00d6a4 100%) !important; }
.bg-pink-purple-gradient { background: linear-gradient(to right, #c338c8 0%, #8123fc 100%) !important; }
.bg-blue-purple-gradient { background: linear-gradient(to right, #3b73fb 0%, #6c4afe 100%) !important; }
.bg-orange-red-gradient { background: linear-gradient(to right, #f3842a 0%, #ff3d57 100%) !important; }
.bg-green-blue-gradient { background: linear-gradient(to right, #21ce6e 0%, #0a7efa 100%) !important; }
.bg-blue-green-gradient { background: linear-gradient(to right, #0a7efa 0%, #21ce6e 100%) !important; }
.bg-purple-blue-green-gradient { background: linear-gradient(to right, #8123fc 0%, #0a7efa 50%, #21ce6e 100%) !important; }
.bg-purple-blue-gradient { background: linear-gradient(to right, #8123fc 0%, #0a7efa 100%) !important; }
.bg-orange-pink-purple-gradient { background: linear-gradient(to right, #ff6600 0%, #ff0096 50%, #7d1eff 100%) !important; }
.bg-purple-pink-gradient { background: linear-gradient(to right, #0a7efa 0%, #7d1eff 44%, #ff0096 80%, #fb1047 100%) !important; }
.bg-purple-pink-orange-gradient { background: linear-gradient(to left, #ff6600 0%, #ff0096 50%, #7d1eff 100%) !important; }
.bg-yellow-orange-gradient { background: linear-gradient(to left, #ff7800 14%, #fda605 48%) !important; }

/*------------------------------------------------------------------------------
 * Text colors
 -----------------------------------------------------------------------------*/
.text-darkest, .text-title { color: #303030 !important; }
.text-dark-subtitle { color: #7c7c7d !important; }
.text-light-subtitle { color: #eaeaea !important; }
.text-dark-green { color: #00a46d !important; }

.text-purple-blue-gradient {
	background: linear-gradient(to right, #a308c4 40%, #0a7efa 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-green-blue-gradient {
	background: linear-gradient(to right, #21ce6e 35%, #0a7efa 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-purple-red-gradient {
	background: linear-gradient(to right, #a308c4 35%, #ff3d57 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-orange-red-gradient {
	background: linear-gradient(to right, #fc9700 35%, #ff3d57 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-yellow-pink-gradient {
	background: linear-gradient(to bottom right, #ffb040 35%, #ad2c87 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-pink-orange-yellow-gradient {
	background: linear-gradient(to right, #cb1aaf 45%, #ff5c4b 70%, #ffc53d 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-pink-purple-gradient, .pink-purple-text-gradient {
	background: linear-gradient(to right, #ff0096 50%, #7d1eff 75%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-blue-purple-pink-red-gradient {
	background: linear-gradient(to right, #0a7efa 0%, #7d1eff 40%, #ff0096 75%, #fb1047 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-orange-purple-gradient {
	background: linear-gradient(to right, #fd6f16 20%, #ff3d57 50%, #a308c4 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/*------------------------------------------------------------------------------
 * Sticky
 -----------------------------------------------------------------------------*/
.sticky.is-sticky {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
}

/*------------------------------------------------------------------------------
 * Content
 -----------------------------------------------------------------------------*/
#site-main.bg-dark {
	background: #282828;
	color: #bdbdbe;
}

.text-link {
	border-bottom: 1px solid var(--text-link) !important;
	color: var(--text-link) !important;
}

.text-link-blue {
	border-bottom: 1px solid var(--blue) !important;
	color: var(--blue) !important;
}

/*------------------------------------------------------------------------------
 * Pagination
 -----------------------------------------------------------------------------*/
.pagination, .pagination .page-item { margin-bottom: 0 !important; }

.pagination .page-link {
	background: none;
	border: 1px solid #676767;
	color: #eaeaea !important;
	padding: 0.625rem 1rem;
}

.pagination .page-link:hover {
	background: #7c7c7d;
	border-color: #676767;
	color: #eaeaea !important;
}

.pagination .page-item.active .page-link {
	background: #1e1e1e;
	border-color: #676767;
	color: #eaeaea !important;
}

/*------------------------------------------------------------------------------
 * Instant discount modal
 -----------------------------------------------------------------------------*/
/*
@media (max-width: 1199.98px) {
	.modal-xl { max-width: 96% !important; }
}
*/

#plus-pro-evpl-upgrade-modal .modal-content {
	background: linear-gradient(to top, #0a7efa 0%, #7d1eff 44%, #ff0096 80%, #fb1047 100%);
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	padding: 2px;
}

/*
.instant-discount-modal .modal-content .has-background {
	background: #000 url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/instant-discount/20240102-instant-discount-bg@2x.jpg) center top no-repeat;
	border: 1px solid #333942;
	background-size: cover;
	border-radius: 10px;
	padding: 3rem 2.5rem 2rem;
}
*/

#plus-pro-evpl-upgrade-modal .modal-content .has-background {
	background: #031a2a url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/plus-pro-evpl-upgrade-bg-dark@2x.jpg) center top no-repeat;
	background-size: cover;
	border-radius: 10px;
	text-shadow: 1px 1px 1px #000;
}


#plus-pro-evpl-upgrade-modal .modal-content .has-background .btn { text-shadow: none; }

@media (max-width: 575.98px) {
	/*
	.instant-discount-modal .modal-content .has-background {
		background: #0e0f10 url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/instant-discount/20240102-instant-discount-bg.jpg) center top no-repeat;
		background-size: cover;
	}
	*/

	#plus-pro-evpl-upgrade-modal .modal-content .has-background {
		background: #0d1319 url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/plus-pro-evpl-upgrade-bg-dark.jpg) center top no-repeat;
		background-size: cover;
		border-radius: 10px;
	}
}

/*
.instant-discount-modal form label {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0;
	text-transform: none;
}

.instant-discount-modal form .form-group { margin-bottom: 2rem; }

.instant-discount-modal form .form-control {
	border: none;
	color: #fff;
}

.instant-discount-modal form .form-control#email, .instant-discount-modal form .form-control#es_email {
	background: #1d232a;
	border: 1px solid #0a7efa;
	color: #fff;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
}

.instant-discount-modal form .form-select {
	background: #1d232a;
	background-image: url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/instant-discount/20221107-instant-discount-down-arrow.png);
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	border: 1px solid #0a7efa;
	color: #fff;
	height: calc(1.5em + 1.5rem + 2px);
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.instant-discount-modal form .form-control:focus, .instant-discount-modal form .form-select:focus {
	border-color: #0a7efa;
	box-shadow: none;
}

.instant-discount-modal form .form-control.is-valid, .instant-discount-modal form.was-validated .form-control:valid, .instant-discount-modal form .form-select.is-valid, .instant-discount-modal form.was-validated .form-select:valid {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2321ce6e' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
	background-position: center right calc(.375em + .1875rem);
	background-repeat: no-repeat;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
	border-color: #21ce6e;
}

.instant-discount-modal form .form-control.is-invalid, .instant-discount-modal form.was-validated .form-control:invalid, .instant-discount-modal form .form-select.is-invalid, .instant-discount-modal form.was-validated .form-select:invalid {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff3d57' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23ff3d57' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
	background-position: center right calc(.375em + .1875rem);
	background-repeat: no-repeat;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
	border-color: #ff3d57;
}

.instant-discount-modal form .form-control.is-valid:focus, .instant-discount-modal form.was-validated .form-control:valid:focus, .instant-discount-modal form .form-control.is-invalid:focus, .instant-discount-modal form.was-validated .form-control:invalid:focus, .instant-discount-modal form .form-select.is-valid:focus, .instant-discount-modal form.was-validated .form-select:valid:focus, .instant-discount-modal form .form-select.is-invalid:focus, .instant-discount-modal form.was-validated .form-select:invalid:focus { box-shadow: none; }

.instant-discount-modal form.was-validated .form-check-input:invalid~.invalid-feedback {
	display: block;
	clear: both;
}

.instant-discount-modal form .form-group.user-terms .form-check-input {
	font-size: 1rem;
	margin-left: -1.6rem;
}

.instant-discount-modal form .form-group.user-terms .form-check-label {
	line-height: 1.5;
}

.instant-discount-modal form .form-group.user-terms .invalid-feedback {
	margin-bottom: 1.5rem;
	margin-top: -1rem;
}

.instant-discount-modal form .form-group.user-terms .invalid-feedback.missing-terms {
	margin-left: -1.75rem;
	margin-top: 0;
}

.instant-discount-modal .form-control::-webkit-input-placeholder {
	color: #647693 !important;
	opacity: 1;
}

.instant-discount-modal .form-control::-moz-placeholder {
	color: #647693 !important;
	opacity: 1;
}

.instant-discount-modal .form-control:-ms-input-placholder {
	color: #647693 !important;
	opacity: 1;
}

.instant-discount-modal .form-control::-ms-input-placeholder {
	color: #647693 !important;
	opacity: 1;
}

.instant-discount-modal .form-control::placeholder {
	color: #647693 !important;
	opacity: 1;
}
*/

/*------------------------------------------------------------------------------
 * Buy boxes
 -----------------------------------------------------------------------------*/
@media (max-width: 575.98px) {
	.buy .col-lg-4, .buy .col-lg-5 { margin-bottom: 2rem; }
	.buy .col-lg-4:last-child, .buy .col-lg-5:last-child { margin-bottom: 0; }
}

/*------------------------------------------------------------------------------
 * Buy sections
 -----------------------------------------------------------------------------*/
.buy .nav-tabs { border-bottom: 4px solid #303030; }

.buy .nav-tabs .nav-item.show .nav-link, .buy .nav-tabs .nav-link.active, .buy .nav-tabs .nav-item.show .nav-link:hover, .buy .nav-tabs .nav-link.active:hover {
	background-color: #282828;
	border-bottom: none;
	border-left: 4px solid #303030;
	border-right: 4px solid #303030;
	border-top: 4px solid #303030;
	color: #fff;
	font-weight: 600;
}

.buy .nav-tabs .nav-link {
	border-bottom: none;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid transparent;
	color: #7c7c7d;
	font-weight: 600;
	margin-bottom: calc(-1 * 4.5px);
	padding: 0.5rem 1.5rem;
}

.buy .nav-tabs .nav-link:hover {
	background: #282828;
	border-bottom: none;
	border-left: 4px solid #303030;
	border-right: 4px solid #303030;
	border-top: 4px solid #303030;
	color: #fff;
}

.buy #buy-compare table.table-dark {
	background-color: transparent;
	color: #bdbdbe;
	position: relative;
}

.buy #buy-compare table.table-dark th {
	background-color: transparent;
	border-bottom: 4px solid #303030;
	color: #fff;
	padding: 0 1.25rem 1rem 1.25rem;
}

.buy #buy-compare table.table-dark td {
	background-color: transparent;
	border-bottom: 4px solid #303030;
	padding: 1.25rem 1rem;
	vertical-align: middle;
}

.buy .buy-box {
	background: linear-gradient(0deg, #303030 0%, #303030 100%);
	padding: 0.25rem;
}

.buy .buy-box .best-value-badge {
	display: inline-block;
	font-size: 1rem;
	font-weight: 900;
	padding: 0.25rem 1rem;
	position: absolute;
	right: 1.25rem;
	text-transform: uppercase;
	top: -2.125rem;
}

.buy .current-sub-badge {
	font-size: 1rem;
	font-weight: 900;
	padding: 0.25rem 1.25rem;
	text-transform: uppercase;
}

.buy .buy-box-inner {
	border-radius: 9px;
	padding: 2rem 1rem 1.5rem 1rem;
}

.buy .buy-box .product-icon { margin-bottom: 1rem; }

.buy .buy-box .product-name {
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.5;
	margin-bottom: 0;
}

.buy .buy-box .product-tagline {
	 font-size: 1rem;
	 font-weight: 400;
	 margin-bottom: 1rem;
 }

.buy .buy-box .product-price { margin-bottom: 1.5rem; }
.buy .buy-box .product-price del { margin-right: 0.5rem; }

.buy .buy-box .display-price {
	font-size: 1.75rem;
	font-weight: 900;
	line-height: 1.5;
}

.buy .buy-box .sale-badge {
	display: inline-block;
	font-size: 0.75rem;
	line-height: 1;
	margin-top: -2px;
	padding: .35rem .65rem;
	text-align: center;
	vertical-align: text-top;
	white-space: nowrap;
}

.buy .buy-box .nav-pills {
	background: #1e1e1e !important;
	border: 1px solid #bdbdbe !important;
	border-radius: 2rem !important;
	margin: 0 auto !important;
	width: 66px !important;
}

.buy .buy-box .nav-pills .rounded-pill {
	height: 30px !important;
	width: 30px !important;
}

.buy .buy-box .nav-pills .nav-link.active { background: #eaeaea; }
.buy .buy-box .product-selector { margin-bottom: 1.875rem; }

.buy .buy-box .billing-cycle {
	line-height: 1.3;
	margin-bottom: 0;
}

.buy .buy-box .billing-cycle .active { color: #0a7efa !important; }

.buy .buy-box .billing-cycle.text-white {
	color: #676767 !important;
	font-size: 0.875rem !important;
}

.buy .buy-box .billing-cycle .text-light { color: #676767 !important; }
.buy .buy-box .billing-cycle .uppercase.active + .text-light { color: #fff !important; }

@media (max-width: 1198.98px) {
	.buy .buy-box .billing-cycle small { font-size: 0.75rem !important; }
}

.buy .buy-box .vat-note {
	font-size: 0.75rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	margin-top: -1.5rem;
}

.buy .buy-box .buy-buttons { margin-bottom: 1.25rem; }

.buy .buy-box .product-offer {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 0.75rem;
	padding: 0 1rem;
}

.buy .buy-box .product-includes {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3;
	padding: 0 1rem;
}

.buy .buy-box .btn { border: none; }

.buy .buy-box hr {
	background-color: #7c7c7d;
	border-radius: 5px;
	height: 0.25rem;
}

.buy .buy-box .package-includes .row { margin-bottom: 1.5rem; }
.buy .buy-box .package-includes .row:last-child { margin-bottom: 0; }

.buy .buy-box .whats-included-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

.buy .buy-box .package-includes .package-product {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0;
}

.buy .buy-box .package-includes .package-desc {
	font-size: 1rem;
	line-height: 1.4;
	margin-bottom: 0;
}

.buy .buy-box .package-includes .package-desc a { font-weight: 500; }

.buy .buy-box .product-comparison {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0;
}

/*------------------------------------------------------------------------------
 * Buy with Confidence
 -----------------------------------------------------------------------------*/
#buy-with-confidence {
	background: url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/guarantee-bg.jpg) center top no-repeat;
	background-size: cover;
	padding-bottom: 5rem;
	padding-top: 5rem;
	width: 100%;
}

@media (max-width: 575.98px) {
	#buy-with-confidence {
		background: url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/guarantee-bg.jpg) center top no-repeat;
		background-size: cover;
		padding-bottom: 2.5rem;
		padding-top: 2.5rem;
	}
}

/*------------------------------------------------------------------------------
 * Miscellaneous
 -----------------------------------------------------------------------------*/
/*
.btn {
	font-weight: 500 !important;
	padding: 0.625rem 1.5rem;
}

.btn.focus, .btn:focus, .form-control:focus, .form-select:focus { box-shadow: none; }

/*
.btn-sm {
	font-size: 0.875rem;
	padding: 0.375rem 1.125rem;
}

.btn.btn-hover-blur:hover {
	text-shadow: 0 0 15px #fff, 0 0 15px #fff;
}
*/

.btn {
	font-weight: 500;
}

.btn.rounded-pill,
.btn.btn-wide.rounded-pill {
	padding: 0.625rem 2rem !important;
}

.btn.btn-sm.rounded-pill {
	padding: 0.313rem 1rem !important;
}

.btn.btn-hover-blur:hover {
	text-shadow: 0 0 15px var(--white), 0 0 15px var(--white);
}

.btn-close,
.btn-close:focus {
	border: none;
	box-shadow: none !important;
}

.text-sm { font-size: 0.875rem !important; }
.lh-1 { line-height: 1 !important; }
.lh-11 { line-height: 1.1 !important; }
.lh-12 { line-height: 1.2 !important; }
.lh-13 { line-height: 1.3 !important; }
.lh-14 { line-height: 1.4 !important; }
.lh-15 { line-height: 1.5 !important; }
.lh-16 { line-height: 1.6 !important; }
.rounded { border-radius: 0.3rem !important; }

.rounded-top {
	border-top-left-radius: 0.3rem !important;
	border-top-right-radius: 0.3rem !important;
}

.rounded-top-left { border-top-left-radius: 0.3rem !important; }
.rounded-top-right { border-top-right-radius: 0.3rem !important; }

.rounded-bottom {
	border-bottom-left-radius: 0.3rem !important;
	border-bottom-right-radius: 0.3rem !important;
}

.rounded-bottom-left { border-bottom-left-radius: 0.3rem !important; }
.rounded-bottom-right { border-bottom-right-radius: 0.3rem !important; }
.rounded10 { border-radius: 0.625rem !important; }
.rounded12 { border-radius: 0.75rem !important; }

.rounded10-top {
	border-top-left-radius: 0.625rem !important;
	border-top-right-radius: 0.625rem !important;
}

.rounded10-top-left { border-top-left-radius: 0.625rem !important; }
.rounded10-top-right { border-top-right-radius: 0.625rem !important; }

.rounded10-bottom {
	border-bottom-left-radius: 0.625rem !important;
	border-bottom-right-radius: 0.625rem !important;
}

.rounded10-bottom-left { border-bottom-left-radius: 0.625rem !important; }
.rounded10-bottom-right { border-bottom-right-radius: 0.625rem !important; }

.size-auto, .size-full, .size-large, .size-medium, .size-thumbnail {
	height: auto;
	max-width: 100%;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	clip-path: inset(50%);
}

.screen-reader-text:focus {
	background-color: #f6f6f7;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	clip-path: none;
}

.tooltip-toggle {
	border-bottom: 1px dotted;
	cursor: pointer;
}

span[data-toggle="tooltip"] { cursor: pointer; }
.tooltip { font-size: 0.875rem; }

.tooltip h3 {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.6;
}

.tooltip .tooltip-inner {
	max-width: 24rem;
	min-width: 20rem;
	padding: 0.9375rem;
	text-align: left;
}

.tooltip.show { opacity: 1; }

.tooltip ul {
	margin-left: 1.875rem;
	padding: 0;
}

.tooltip li { margin-bottom: 1rem; }
.tooltip li:last-child { margin-bottom: 0; }

a.scroll-top {
	border: none;
	bottom: 2.5rem;
	color: #989898;
	display: none;
	font-size: 2.25rem;
	font-weight: 300;
	position: fixed;
	right: 1.25rem;
	z-index: 3;
}

a.scroll-top:hover { color: #0a7ffb; }

a.plugin-series-badge {
	border: none;
	bottom: 2.5rem;
	color: #989898;
	display: none;
	font-size: 2.25rem;
	font-weight: 300;
	position: fixed;
	right: 4.5rem;
	z-index: 3;
}

.valid-feedback p, .invalid-feedback p {
	font-size: 0.875rem !important;
	font-weight: 700;
}

.form-control::-webkit-input-placeholder {
	color: #7c7c7d !important;
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: #7c7c7d !important;
	opacity: 1;
}

.form-control:-ms-input-placholder {
	color: #7c7c7d !important;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #7c7c7d !important;
	opacity: 1;
}

.form-control::placeholder {
	color: #7c7c7d !important;
	opacity: 1;
}

.modal-open, .fsb-modalOpen {
	overflow: auto !important;
	padding-right: 0 !important;
}

.modal .close, .modal .btn-close {
	background: none;
	border-radius: 0;
	box-sizing: initial;
	color: #fff;
	font-size: 2rem;
	font-weight: 400;
	height: auto;
	opacity: 1;
	outline: none;
	padding: 0;
	position: absolute;
	right: 0;
	text-shadow: none;
	top: -3rem;
	width: auto;
}

.modal .modal-fullscreen .btn-close {
	background: none;
	border-radius: 0;
	box-sizing: initial;
	color: #fff;
	font-size: 2rem;
	font-weight: 400;
	height: auto;
	opacity: 1;
	outline: none;
	padding: 0;
	position: absolute;
	right: 2rem;
	text-shadow: none;
	top: 0;
	width: auto;
}

/*
.modal .modal-fullscreen .btn-close {
	background: none;
	border-radius: 0;
	box-sizing: initial;
	color: #fff;
	font-size: 1.75rem;
	font-weight: 400;
	height: auto;
	opacity: 1;
	outline: none;
	padding: 0 0.5rem 0 0;
	position: initial;
	right: initial;
	text-shadow: none;
	top: initial;
	width: auto;
}
*/

.modal-backdrop.show { opacity: 0.85; }
#image-modal .modal-content, #video-modal .modal-content { border-radius: 0; }
#image-modal .modal-body, #video-modal .modal-body { padding: 0.313rem; }

.carousel-control-next, .carousel-control-prev { width: 5%; }

.twentytwenty-handle {
	border: none;
	border-radius: 0;
	bottom: 1.5rem;
	height: auto;
	margin-left: 0;
	margin-top: 0;
	top: initial;
	width: 3px;
}

.twentytwenty-horizontal .twentytwenty-handle::before { margin-bottom: 0; }
.twentytwenty-horizontal .twentytwenty-handle::after { margin-top: 0; }

.twentytwenty-left-arrow {
	background: rgba(0, 0, 0, 0.5);
	border: 0;
	border-right: 0;
	height: auto;
	line-height: 1;
	margin-left: -64px;
	margin-top: 0;
	padding: 0;
	text-align: center;
	width: 64px;
}

.twentytwenty-right-arrow {
	background: rgba(0, 0, 0, 0.5);
	border: 0;
	border-right: 0;
	height: auto;
	line-height: 1;
	margin-right: -64px;
	margin-top: 0;
	padding: 0;
	text-align: center;
	width: 64px;
}

.twentytwenty-left-arrow::before, .twentytwenty-right-arrow::before {
	color: #fff;
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.313rem 0;
	text-align: center;
	text-transform: uppercase;
	vertical-align: middle;
}

.twentytwenty-left-arrow::before { content: 'Before'; }
.twentytwenty-right-arrow::before { content: 'After'; }
.alert { font-weight: 500; }
.alert.bg-light { font-weight: 400; }
.important { font-weight: 600 !important; }
.grecaptcha-badge { display: none !important; }
#goog-gt-tt, .goog-te-banner-frame, #google_translate_element { display: none !important; }
.goog-te-menu-value:hover { text-decoration: none !important; }

.goog-text-highlight {
	background-color: transparent !important;
	box-shadow: none !important;
}

.edit-post-link {
	display: inline-block;
	line-height: 1.6;
}

.line-through {
	color: #7c7c7d;
	display: inline-block;
	font-weight: 500;
	position: relative;
}

.line-through::before {
	border-bottom: 2px solid #7c7c7d;
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: skewY(-12deg);
	width: 100%;
}

.uppercase { text-transform: uppercase !important; }
.no-wrap { white-space: nowrap !important; }
#dl-frame { display: block; }
.hide { display: none !important; }

.wpforms-container .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.wpforms-container .wpforms-field-hidden { display: none; }

.wpforms-container .wpforms-screen-reader-element {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.fs1 { font-size: 1rem !important; }
.fs1125 { font-size: 1.125rem !important; }
.fs125 { font-size: 1.25rem !important; }
.fs1375 { font-size: 1.375rem !important; }

.fs15 {
	font-size: 1.5rem !important;
	font-weight: 400;
}

.fs1625 {
	font-size: 1.625rem !important;
	font-weight: 400;
}

.fs175 {
	font-size: 1.75rem !important;
	font-weight: 400;
}

.fs1875 {
	font-size: 1.875rem !important;
	font-weight: 400;
}

.fs2 {
	font-size: 2rem !important;
	font-weight: 400;
}

.fs225 {
	font-size: 2.25rem !important;
	font-weight: 400;
}

.fs25 {
	font-size: 2.5rem !important;
	font-weight: 400;
}

.fs275 {
	font-size: 2.75rem !important;
	font-weight: 400;
}

.fs3 {
	font-size: 3rem !important;
	font-weight: 400;
}

.fs325 {
	font-size: 3.25rem !important;
	font-weight: 400;
}

.fs35 {
	font-size: 3.5rem !important;
	font-weight: 400;
}

.fs375 {
	font-size: 3.75rem !important;
	font-weight: 400;
}

.fs4 {
	font-size: 4rem !important;
	font-weight: 400;
}

.fs5 {
	font-size: 5rem !important;
	font-weight: 400;
}

.fs6 {
	font-size: 6rem !important;
	font-weight: 400;
}

.fs7 {
	font-size: 7rem !important;
	font-weight: 400;
}

.fs8 {
	font-size: 8rem !important;
	font-weight: 400;
}

.fs9 {
	font-size: 9rem !important;
	font-weight: 400;
}

.fs10 {
	font-size: 10rem !important;
	font-weight: 400;
}

.fs-7 { font-size: 0.875rem !important; }
.underline { text-decoration: underline; }
.view-cart { cursor: pointer; }
#fastspring_spinner { display: none; }
.fwt300 { font-weight: 300 !important; }
.fwt400 { font-weight: 400 !important; }
.fwt500 { font-weight: 500 !important; }
.fwt600 { font-weight: 600 !important; }
.fwt700 { font-weight: 700 !important; }
.fwt900 { font-weight: 900 !important; }
.shadow-custom-lg { box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5); }
.overflow-hidden-x { overflow-x: hidden; }
.overflow-hidden-y { overflow-y: hidden; }

@media (max-width: 575.98px) {
	.overflow-sm-hidden { overflow-x: hidden; }
}

.fs-popup-background {
	background: -webkit-linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.8)) !important;
	background: -o-linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.8)) !important;
	background: -moz-linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.8)) !important;
	background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.8)) !important;
	width: 100% !important;
	height: 100% !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 100000000000000 !important;
	overflow-y: scroll !important;
	-webkit-overflow-scrolling: touch !important;
}

.mb-2r { margin-bottom: 2rem !important; }

/*------------------------------------------------------------------------------
 * Carousel
 -----------------------------------------------------------------------------*/
.carousel-indicators [data-bs-target] {
	background-color: #303030;
	border: 2px solid #bdbdbe;
	border-radius: 100%;
	height: 8px;
	margin-left: 5px;
	margin-right: 5px;
	width: 8px;
}

.carousel-indicators .active {
	background-color: #fff;
	border: 2px solid #fff;
	opacity: 1;
}

.carousel-control-next, .carousel-control-prev { opacity: 1 !important; }

/*------------------------------------------------------------------------------
 * Animations
 -----------------------------------------------------------------------------*/
.animate__animated {
	animation-delay: 1s;
	animation-duration: 1s;
	animation-fill-mode: both;
}

@keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to { transform: translate3d(0, 0, 0); }
}

.slideInDown { animation-name: slideInDown; }

@keyframes heartBeat {
	0% { transform: scale(1); }
	14% { transform: scale(1.3); }
	28% { transform: scale(1); }
	42% { transform: scale(1.3); }
	70% { transform: scale(1); }
}

.heartBeat {
	animation-name: heartBeat;
	animation-duration: 1.3s;
	animation-timing-function: ease-in-out;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0,-100%,0);
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.animate__fadeInDown { animation-name: fadeInDown; }

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

	to {
		opacity: 0;
		transform: translate3d(0,-100%,0);
	}
}

.animate__fadeOutUp { animation-name: fadeOutUp; }
.delay-250ms { animation-delay: 250ms; }
.delay-500ms { animation-delay: 500ms; }
.delay-750ms { animation-delay: 750ms; }
.delay-1s { animation-delay: 1s; }
.delay-2s { animation-delay: 2s; }
.delay-3s { animation-delay: 3s; }
.delay-4s { animation-delay: 4s; }
.delay-5s { animation-delay: 5s; }

/*------------------------------------------------------------------------------
 * Alignments
 -----------------------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1rem;
}

.alignright {
	display: inline;
	float: right;
	margin-bottom: 1rem;
	margin-left: 1rem;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*------------------------------------------------------------------------------
 * Compare products lightbox
 -----------------------------------------------------------------------------*/
#compare-products-lightbox .btn-comparison-close, #compare-subscriptions-lightbox .btn-comparison-close {
	right: 0.75rem;
	top: -0.313rem;
	z-index: 99;
}

#compare-products-lightbox table.table-dark, #compare-subscriptions-lightbox table.table-dark {
	background-color: transparent;
	color: #bdbdbe;
	position: relative;
}

#compare-products-lightbox table.table-dark th, #compare-subscriptions-lightbox table.table-dark th {
	background-color: transparent;
	border-bottom: 2px solid #282828;
	color: #fff;
	padding: 1.5rem 1rem;
	vertical-align: middle;
}

#compare-products-lightbox table.table-dark td, #compare-subscriptions-lightbox table.table-dark td {
	background-color: transparent;
	border-bottom: 2px solid #282828;
	padding: 1.5rem 1rem;
	vertical-align: middle;
}

#compare-products-lightbox table.table-dark td del, #compare-subscriptions-lightbox table.table-dark td del { font-size: 1.25rem; }

/*------------------------------------------------------------------------------
 * Site ribbons & banners
 -----------------------------------------------------------------------------*/
/*
#launch-banner-2024 .my-3, #raw-trial-banner .my-3 {
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}

#launch-banner-2024 .mt-3, #raw-trial-banner .mt-3 { margin-top: 1rem !important; }
#launch-banner-2024 .mt-md-0, #raw-trial-banner .mt-md-0 { margin-top: 0 !important; }
.email-subscribe-banner .mb-2 { margin-bottom: 0.5rem !important; }

#masthead {
	background: url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/20240617-hero-bg@2x.jpg) center center no-repeat;
	background-size: cover;
}
*/

/*------------------------------------------------------------------------------
 * Snowflakes!
 -----------------------------------------------------------------------------*/
.snowflake {
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 1em;
	text-shadow: 0 0 5px #000;
}

@-webkit-keyframes snowflakes-fall{0%{top:-10%;}100%{top:100%;}}@-webkit-keyframes snowflakes-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0);}50%{-webkit-transform:translateX(80px);transform:translateX(80px);}}@keyframes snowflakes-fall{0%{top:-10%;}100%{top:100%;}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0);}50%{transform:translateX(80px);}}.snowflake{-webkit-animation-duration:10s,3s;animation-duration:10s,3s;-webkit-animation-iteration-count:infinite,infinite;animation-iteration-count:infinite,infinite;-webkit-animation-name:snowflakes-fall,snowflakes-shake;animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-play-state:running,running;animation-play-state:running,running;-webkit-animation-timing-function:linear,ease-in-out;animation-timing-function:linear,ease-in-out;cursor:default;position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.snowflake:nth-of-type(0){-webkit-animation-delay:0s,0s;animation-delay:0s,0s;left:1%;}.snowflake:nth-of-type(1){-webkit-animation-delay:1s,1s;animation-delay:1s,1s;left:10%;}.snowflake:nth-of-type(2){-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s;left:20%;}.snowflake:nth-of-type(3){-webkit-animation-delay:4s,2s;animation-delay:4s,2s;left:30%;}.snowflake:nth-of-type(4){-webkit-animation-delay:2s,2s;animation-delay:2s,2s;left:40%;}.snowflake:nth-of-type(5){-webkit-animation-delay:8s,3s;animation-delay:8s,3s;left:50%;}.snowflake:nth-of-type(6){-webkit-animation-delay:6s,2s;animation-delay:6s,2s;left:60%;}.snowflake:nth-of-type(7){-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s;left:70%;}.snowflake:nth-of-type(8){-webkit-animation-delay:1s,0s;animation-delay:1s,0s;left:80%;}.snowflake:nth-of-type(9){-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s;left:90%;}.snowflake:nth-of-type(10){-webkit-animation-delay:2s,0s;animation-delay:2s,0s;left:25%;}.snowflake:nth-of-type(11){-webkit-animation-delay:4s,2.5s;animation-delay:4s,2.5s;left:65%;}

/*------------------------------------------------------------------------------
 * Christmas Lights!
 -----------------------------------------------------------------------------*/
.lightrope { text-align: center; white-space: nowrap; overflow: hidden; position: absolute; z-index: 1; margin: -15px 0 0 0; padding: 0; pointer-events: none; width: 100%; } .lightrope li { position: relative; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; list-style: none; margin: 0; padding: 0; display: block; width: 12px; height: 28px; border-radius: 50%; margin: 20px; display: inline-block; background: #00f7a5; box-shadow: 0px 4.6666666667px 24px 3px #00f7a5; -webkit-animation-name: flash-1; animation-name: flash-1; -webkit-animation-duration: 2s; animation-duration: 2s; } .lightrope li:nth-child(2n+1) { background: aqua; box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.5); -webkit-animation-name: flash-2; animation-name: flash-2; -webkit-animation-duration: 0.4s; animation-duration: 0.4s; } .lightrope li:nth-child(4n+2) { background: #f70094; box-shadow: 0px 4.6666666667px 24px 3px #f70094; -webkit-animation-name: flash-3; animation-name: flash-3; -webkit-animation-duration: 1.1s; animation-duration: 1.1s; } .lightrope li:nth-child(odd) { -webkit-animation-duration: 1.8s; animation-duration: 1.8s; } .lightrope li:nth-child(3n+1) { -webkit-animation-duration: 1.4s; animation-duration: 1.4s; } .lightrope li:before { content: ""; position: absolute; background: #222; width: 10px; height: 9.3333333333px; border-radius: 3px; top: -4.6666666667px; left: 1px; } .lightrope li:after { content: ""; top: -14px; left: 9px; position: absolute; width: 52px; height: 18.6666666667px; border-bottom: solid #222 2px; border-radius: 50%; } .lightrope li:last-child:after { content: none; } .lightrope li:first-child { margin-left: -40px; } @-webkit-keyframes flash-1 { 0%, 100% { background: #00f7a5; box-shadow: 0px 4.6666666667px 24px 3px #00f7a5; } 50% { background: rgba(0, 247, 165, 0.4); box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2); } } @keyframes flash-1 { 0%, 100% { background: #00f7a5; box-shadow: 0px 4.6666666667px 24px 3px #00f7a5; } 50% { background: rgba(0, 247, 165, 0.4); box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2); } } @-webkit-keyframes flash-2 { 0%, 100% { background: aqua; box-shadow: 0px 4.6666666667px 24px 3px aqua; } 50% { background: rgba(0, 255, 255, 0.4); box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.2); } } @keyframes flash-2 { 0%, 100% { background: aqua; box-shadow: 0px 4.6666666667px 24px 3px aqua; } 50% { background: rgba(0, 255, 255, 0.4); box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.2); } } @-webkit-keyframes flash-3 { 0%, 100% { background: #f70094; box-shadow: 0px 4.6666666667px 24px 3px #f70094; } 50% { background: rgba(247, 0, 148, 0.4); box-shadow: 0px 4.6666666667px 24px 3px rgba(247, 0, 148, 0.2); } } @keyframes flash-3 { 0%, 100% { background: #f70094; box-shadow: 0px 4.6666666667px 24px 3px #f70094; } 50% { background: rgba(247, 0, 148, 0.4); box-shadow: 0px 4.6666666667px 24px 3px rgba(247, 0, 148, 0.2); } }

/*------------------------------------------------------------------------------
 * Medium screens
 -----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 991.98px) {
	.container {
		max-width: 100%;
		padding-left: 30px;
		padding-right: 30px;
	}

	.modal-dialog { max-width: 96%; }
}

/*------------------------------------------------------------------------------
 * Mobile
 -----------------------------------------------------------------------------*/
/* Phones & small screens */
@media (max-width: 575.98px) {
	/*------------------------------------------------------------------------------
	 * RAW 2024 Launch banner
	 -----------------------------------------------------------------------------*/
	#launch-banner-2024 {
		padding-bottom: 1rem;
		padding-top: 1rem;
		text-align: center;
	}

	#launch-banner-2024 .my-3, #raw-trial-banner .my-3 {
		margin-bottom: 0.5rem !important;
		margin-top: 0.5rem !important;
	}

	#launch-banner-2024 .btn.text-yellow { margin-top: 0.5rem; }
	#effects-launch-special-banner{ padding: 1rem 0; }

	/*------------------------------------------------------------------------------
	 * Header
	 -----------------------------------------------------------------------------*/
	/*
	#site-header .container-xxl.px-1-half {
		padding-left: 0.75rem !important;
		padding-right: 0.75rem !important;
	}

	#site-header .navbar-toggler { padding: 0; }

	#site-header .animated-icon {
		cursor: pointer;
		display: inline-block;
		height: 20px;
		margin: 0;
		position: relative;
		transform: rotate(0deg);
		transition: .5s ease-in-out;
		width: 28px;
	}

	#site-header .animated-icon span {
		border-radius: 6px;
		display: block;
		height: 3px;
		left: 0;
		opacity: 1;
		position: absolute;
		transform: rotate(0deg);
		transition: .25s ease-in-out;
		width: 100%;
	}

	#site-header .animated-icon span { background: #fff; }

	#site-header .animated-icon span:nth-child(1) {
		top: 0;
		transform-origin: left center;
	}

	#site-header .animated-icon span:nth-child(2) {
		top: 8px;
		transform-origin: left center;
	}

	#site-header .animated-icon span:nth-child(3) {
		top: 16px;
		transform-origin: left center;
	}

	#site-header .animated-icon.open span:nth-child(1) {
		left: 6px;
		top: 0;
		transform: rotate(45deg);
	}

	#site-header .animated-icon.open span:nth-child(2) {
		opacity: 0;
		width: 0%;
	}

	#site-header .animated-icon.open span:nth-child(3) {
		left: 6px;
		top: 20px;
		transform: rotate(-45deg);
	}
	*/

	/*------------------------------------------------------------------------------
	 * Footer
	 -----------------------------------------------------------------------------*/
	/*
	#site-footer .footer-bottom .container-xxl.px-1-half {
		padding-left: 0.75rem !important;
		padding-right: 0.75rem !important;
	}

	#site-footer .footer-top .btn { margin-bottom: 2rem !important; }
	*/

	/*------------------------------------------------------------------------------
	 * Miscellaneous
	 -----------------------------------------------------------------------------*/
	table.stack thead { display: none; }
	table.stack tfoot { display: none; }
	table.stack tr, table.stack th, table.stack td { display: block; }
	table.stack td { border-top: 0; }
	img[data-lazy-src] { opacity: 0; }

	img.lazyloaded {
		opacity: 1;
		transition: opacity .5s linear 0.2s;
	}

	#photo-raw-drawer .drawer {
		background: url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/instant-discount/20240416-drawer-bg_v1@2x.jpg) top right no-repeat;
		background-size: cover;
	}

	/*------------------------------------------------------------------------------
	 * Shopping cart
	 -----------------------------------------------------------------------------*/
	.fsb-MOD .fsb-modal-body { padding: 1.5rem; }

	.fsb-container-fluid.px-5 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.fsb-promocode { margin-top: 2rem; }

	#plus-pro-evpl-upgrade-modal .modal-content .has-background.px-1-half {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.app-store-dl { background: #000 url(https://ononesoft.cachefly.net/wp-content/themes/on1/images/photo-raw-2021/mobile/roadmap-bg.jpg) center right no-repeat; }

	/*------------------------------------------------------------------------------
	 * Buy sections
	 -----------------------------------------------------------------------------*/
	 .buy .tab-pane .container-xxl, .buy .tab-pane .container-xl {
		 padding-left: 0;
		 padding-right: 0;
	 }
}
