/*
 * `@font-face` for every typeface `pulseTheme` names, and only those. The DDB twin is ./ddb.css and
 * ./fonts.css is both together; ./pulse is the same set again as loadable assets, for native.
 *
 * **Why this is a file of its own rather than a slice of ./fonts.css.** Declaring a face a page never
 * uses costs a browser nothing — it fetches one only when a rule finally applies it — and that was
 * the reasoning for keeping a single stylesheet. It holds for the network and not for the bundle. A
 * browser bundler resolves every `url()` it parses and emits the file it points at, whether or not a
 * rule ever matches, so a Pulse storefront importing the combined sheet ships 2.4 MB of Roboto and
 * Majesty it cannot draw. That is the same waste the per-theme entries fix for Metro — arriving by a
 * different route, since here it is the bundler's asset graph rather than the absence of
 * tree-shaking, and wanting the same fix.
 *
 * Declared under the family name itself rather than one family plus weights. That is not a stylistic
 * choice: components set `fontFamily: "Gilroy-SemiBold"` because React Native has no synthetic weight
 * matching and needs one family per face. The web side has to declare the same names or the two
 * platforms disagree — which is exactly how a consumer ended up declaring `Gilroy-Semibold` and
 * getting away with it on web, where family matching is case-insensitive, while the same string would
 * silently fall back to the system face on native.
 *
 * The `font-weight` descriptors are still correct per face, so `font-weight: bold` in unrelated app
 * CSS behaves sensibly; they are not what the theme selects on.
 *
 * Import once at the app root: `import "@hasbro-dtc/direct-ui/fonts/pulse.css"`.
 *
 * Formats are what the source repo holds today — OpenType for Gilroy. Adding woff2 is a worthwhile
 * follow-up (roughly a 2-4x transfer saving) and needs no change here beyond another `src` entry per
 * face.
 */

@font-face {
  font-family: "Gilroy-Regular";
  src: url(Gilroy-Regular.86bc2a5a.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url(Gilroy-Medium.9f1092d0.otf) format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-SemiBold";
  src: url(Gilroy-SemiBold.017ff10c.otf) format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url(Gilroy-Bold.a64a9abe.otf) format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-LightItalic";
  src: url(Gilroy-LightItalic.c03158a6.otf) format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/*
 * The weighted 'Gilroy' family, declared over the typefaces direct-ui ships.
 *
 * direct-ui declares one family per face — 'Gilroy-Regular', 'Gilroy-Medium', 'Gilroy-Bold' — because
 * React Native has no synthetic weight matching and needs it that way, and importing
 * '@hasbro-dtc/direct-ui/fonts/fonts.css' is what makes those families resolve for its own components.
 * This app predates that and selects differently: `html, body { font-family: Gilroy }` in
 * theme/foundations/styles.js, with `fontWeight` picking the face, in some thirty theme files and
 * several hundred component props. Nothing in direct-ui declares a 'Gilroy' family, so without this
 * file every one of them falls back to the system face.
 *
 * The font files themselves are still direct-ui's — `url()` resolves into the package, and the app
 * hosts no font binaries of its own. Retiring this file means migrating those call sites onto the
 * per-face family names, which is the same spelling both platforms then use.
 *
 * Only the three weights the app actually asks for are here. Gilroy Thin/Light/Black were declared
 * before and used by nothing; direct-ui does not ship them and this does not miss them. 600 is
 * deliberately absent too — with no 600 face, CSS matching sends `font-weight: 600` up to Bold, which
 * is what this app has always rendered, and declaring the real SemiBold would lighten ~18 call sites.
 */

@font-face {
    font-family: 'Gilroy';
    src: url(Gilroy-Regular.86bc2a5a.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url(Gilroy-Medium.9f1092d0.otf) format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url(Gilroy-Bold.a64a9abe.otf) format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
/*** Ping Widgets ***/

#ping-account-page {
    background-color: var(--neutral-hbshade-800, #0c0d0e);
    background-image: url(d52eb2ada83963fe0c74.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.skWidget {
    color: white;
    font-family: 'Gilroy';
    max-width: 536px;
}

.skWidget * {
    margin: auto;
    max-width: 100% !important;
    min-width: unset !important;
}

.skWidget h1 {
    font-size: 22px;
    font-weight: var(--chakra-fontWeights-bold);
    line-height: var(--chakra-lineHeights-6);
}

.skWidget h3 {
    font-size: 22px;
    font-weight: var(--chakra-fontWeights-bold);
    line-height: var(--chakra-lineHeights-6);
}

.skWidget p {
    margin: var(--chakra-space-4) 0;
}

.skWidget p[data-skerrorid='username'].text-danger {
    display: none;
}

.skWidget ul {
    list-style: none;
    padding-top: var(--chakra-space-1);
}

.skWidget ul li {
    font-size: var(--chakra-fontSizes-sm);
    margin: 0;
    text-align: left;
}

#header {
    display: none;
}

/* Buttons */

.skWidget button,
.skWidget button#loginSignInBtn {
    background-color: white;
    border-radius: 50px;
    border: none;
    color: black;
    font-size: var(--chakra-fontSizes-sm);
    font-weight: var(--chakra-fontWeights-bold);
    height: 50px;
    line-height: var(--chakra-lineHeights-4);
    margin: var(--chakra-space-2) 0;
    padding: var(--chakra-space-2) 24px;
    width: 100%;
}

.skWidget button#pwdResetSubmitBtn {
    margin: var(--chakra-space-4) 0;
}

.skWidget button.btn-link {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: var(--chakra-fontSizes-sm);
    text-decoration: underline;
    padding: 0;
    margin: 0;
    height: auto;
}

#btnEmail {
    background-color: white;
    background-image: url(d10d23a9bf7f23283d31.png);
    background-position: 40% 50%;
    background-repeat: no-repeat;
    background-size: auto 1rem;
    margin: 1rem auto;
}

.btn.mdi {
    background-color: transparent;
    background-size: 1rem 1rem;
    border: none;
    height: 1rem;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 1rem;
    top: 50px;
    bottom: 19px;
    width: 1rem;
}

#registrationForm .btn.mdi {
    top: 82px;
}

#cancelBtn {
    display: inline-flex;
    font-size: var(--chakra-fontSizes-sm);
    font-weight: var(--chakra-fontWeights-normal);
    line-height: var(--chakra-lineHeights-5);
    margin: 1rem auto;
    position: relative;
    text-decoration: none;
    width: auto;
}

#cancelBtn::before {
    background-image: url(caf1615f8917cdd80a8a.png);
    background-size: 12px 12px;
    content: '';
    display: inline-flex;
    height: 12px;
    left: -16px;
    position: absolute;
    top: 4px;
    width: 12px;
}

#btnTrouble {
    font-size: var(--chakra-fontSizes-xs);
    font-weight: normal;
    text-align: right;
}

/* Forms */

.skWidget .form-control:focus {
    border: 1px solid #e7e7e7;
    outline: 0;
}

.skWidget .form-control::-webkit-input-placeholder,
.skWidget .form-control::-moz-placeholder,
.skWidget .form-control:-ms-input-placeholder,
.skWidget .form-control::placeholder {
    color: #888989;
    opacity: 1;
}

.skWidget label {
    color: #ffffff;
    display: block;
    font-family: 'Gilroy';
    font-size: 10px;
    font-style: normal;
    font-weight: var(--chakra-fontWeights-bold);
    letter-spacing: 0.0625rem;
    line-height: normal;
    margin-bottom: 8px;
    margin: 0 0 8px 0;
    opacity: 1;
    text-align: start;
    text-transform: uppercase;
    transition-duration: 200ms;
}

#emailLabel::after,
#firstNameLabel::after,
#lastNameLabel::after,
#passwordLabel::after,
.skWidget label[for='email']::after {
    color: #ea3757;
    content: '*';
    font-size: var(--chakra-fontSizes-lg);
    line-height: normal;
    vertical-align: middle;
}

.skWidget label[for='countryCodeInput']::after {
    color: #ea3757;
    content: '*';
    font-size: var(--chakra-fontSizes-lg);
    line-height: normal;
    vertical-align: middle;
}

.skWidget label[for='recoveryCode']::after {
    color: #ea3757;
    content: '*';
    font-size: var(--chakra-fontSizes-lg);
    line-height: normal;
    vertical-align: middle;
}

.skWidget label[for='newPassword']::after {
    color: #ea3757;
    content: '*';
    font-size: var(--chakra-fontSizes-lg);
    line-height: normal;
    vertical-align: middle;
}

.skWidget label[for='confirmPassword']::after,
.skWidget label[for='password']::after,
.skWidget label[for='currentPassword']::after {
    color: #ea3757;
    content: '*';
    font-size: var(--chakra-fontSizes-lg);
    line-height: normal;
    vertical-align: middle;
}
.skWidget label[for='phone']::after {
    color: #ea3757;
    content: '*';
    font-size: var(--chakra-fontSizes-lg);
    line-height: normal;
    vertical-align: middle;
}

.skWidget label[for='or'] {
    margin: 1rem auto;
    text-align: center;
}

.dropdown__input,
.dropdown__select,
.dropdown__select option,
.input-text,
.placeholder-shown .float-label__label,
.text-area,
.text-input {
    font-family: proxima-nova, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #798087;
}

.dropdown__option,
.option-text {
    font-family: proxima-nova, sans-serif;
    font-size: 15px;
    color: #798087;
    font-weight: 400;
}

.dropdown__input,
.dropdown__list,
.dropdown__select,
.input-border,
.input-box,
.text-area,
.text-input {
    /* background: #fff; */
    border: 1px solid #8b9197;
    /* border-radius: 2px; */
    border-radius: var(--chakra-radii-lg);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
}

.dropdown__input,
.dropdown__select,
.input-box,
.input-padding,
.text-area,
.text-input {
    padding: 15px 10px;
}

.dropdown__input::-webkit-input-placeholder,
.dropdown__select::-webkit-input-placeholder,
.placeholder-text,
.text-area::-webkit-input-placeholder,
.text-input::-webkit-input-placeholder {
    color: #8b9197;
    font-size: 15px;
    font-weight: 200;
    text-transform: unset;
}

.dropdown__input::-moz-placeholder,
.dropdown__select::-moz-placeholder,
.placeholder-text,
.text-area::-moz-placeholder,
.text-input::-moz-placeholder {
    color: #8b9197;
    font-size: 15px;
    font-weight: 200;
    text-transform: unset;
}

.dropdown__input::-ms-input-placeholder,
.dropdown__select::-ms-input-placeholder,
.placeholder-text,
.text-area::-ms-input-placeholder,
.text-input::-ms-input-placeholder {
    color: #8b9197;
    font-size: 15px;
    font-weight: 200;
    text-transform: unset;
}

.dropdown__input::placeholder,
.dropdown__select::placeholder,
.placeholder-text,
.text-area::placeholder,
.text-input::placeholder {
    color: #8b9197;
    font-size: 15px;
    font-weight: 200;
    text-transform: unset;
}

.dropdown {
    /* background: #fff; */
    position: relative;
    margin-bottom: 10px;
}

#phone-input-code-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}

.dropdown:focus {
    border-color: #2996cc;
}

.dropdown--standard:after,
.dropdown--with-message:after {
    font-family: Gilroy;
    content: 'v';
    font-size: 13px;
    line-height: 13px;
    position: absolute;
    right: 15px;
    top: 50px;
    height: 16px;
    /* width: 16px; */
    pointer-events: none;
}

.dropdown--with-icon-and-message:after,
.dropdown--with-status-icon:after {
    font-family: iconfont;
    content: 'v';
    font-size: 13px;
    line-height: 13px;
    position: absolute;
    right: 15px;
    top: 50px;
    height: 16px;
    /* width: 16px; */
    pointer-events: none;
    margin-right: 25px;
}

.dropdown--open:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.dropdown__input,
.dropdown__select {
    cursor: pointer;
    padding-right: 40px;
}

.dropdown__input--error,
.dropdown__select--error {
    border-color: #a31300;
}

.dropdown__input--success,
.dropdown__select--success {
    border-color: #4aba78;
}

.dropdown__input--error,
.dropdown__input--success,
.dropdown__select--error,
.dropdown__select--success {
    background-color: #fff;
    padding-right: 65px;
}

.dropdown__select {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dropdown__select.placeholder-shown {
    color: hsla(0, 0%, 100%, 0);
}

.dropdown__select.dropdown__select--placeholder {
    font-weight: 200;
}

.dropdown__list {
    -webkit-box-shadow: 0 1px 4px 1px rgba(121, 128, 135, 0.35);
    box-shadow: 0 1px 4px 1px rgba(121, 128, 135, 0.35);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #242627;
    margin: -1px 0 0;
    padding: 0;
    list-style: none;
    z-index: 1;
}

.dropdown--cardwidth .dropdown__list {
    width: 320px;
}

.dropdown__option {
    cursor: pointer;
    padding: 5px 10px 5px 20px;
    position: relative;
}

.dropdown__option:hover {
    color: #8b9197;
    background: black;
}

.dropdown__option--selected {
    font-weight: 600;
}

.dropdown__option--selected:before {
    content: '\2022';
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    vertical-align: middle;
}

.dropdown__option--search {
    position: relative;
}

.dropdown--search .dropdown__list {
    height: 250px;
    top: 0;
}

.dropdown--search .dropdown__list .dropdown__option--container {
    position: absolute;
    margin-left: -50%;
    height: 190px;
    overflow-y: scroll;
    width: 100%;
}

.dropdown--search.dropdown--open:after {
    content: none;
}

.dropdown--search.dropdown--open .dropdown__close {
    color: #8b9197;
    display: block;
    position: absolute;
    top: 15%;
    bottom: 0;
    right: 0;
    width: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

.dropdown--search.dropdown--open .dropdown__close:after {
    font-family: iconfont;
    content: 'v';
    font-size: 13px;
    line-height: 13px;
    position: absolute;
    right: 15px;
    top: 18px;
    height: 16px;
    width: 16px;
    pointer-events: none;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.dropdown--search .dropdown__close {
    display: none;
}

.dropdown__icon {
    font-family: iconfont;
    font-size: 16px;
    line-height: 16px;
    text-transform: none;
    position: relative;
    width: 100%;
}

.dropdown__icon:before {
    position: absolute;
    right: 15px;
    top: 14.5px;
}

.dropdown__icon--error:before {
    content: '\E914';
    color: #a31300;
}

.dropdown__icon--success:before {
    content: '\E92E';
    color: #4aba78;
}

.feedback {
    margin: 0 0 25px;
}

.skWidget .phone-input {
    display: flex;
}

.skWidget .phone-input__number {
    /* display: inline-table !important; */
    /* margin-left: -17%; */
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column-reverse;
    margin: auto auto 0 auto;
}

.skWidget .phone-input__code {
    height: 100%;
    display: flex;
    height: 100%;
    flex-direction: column-reverse;
    margin: initial;
    width: 100% !important;
}

.skWidget .iti.iti--inline-dropdown {
    margin: unset;
}

.skWidget .iti__dropdown-content {
    width: 175px !important;
    max-width: unset !important;
    min-width: unset !important;
    background-color: #242627;
}

.skWidget .iti__flag-box {
    margin: unset;
}

.skWidget span.iti__dial-code {
    margin: unset;
}

div[data-skerrorid='phone'] {
    margin-top: -21px;
}

.skWidget input[type='text'],
.skWidget input[type='password'] {
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    align-self: stretch;
    appearance: none;
    background-color: #242627;
    border-color: #242627;
    border-radius: var(--chakra-radii-lg);
    border: 1px solid #242627;
    color: white;
    display: flex;
    font-size: var(--chakra-fontSizes-md);
    font-weight: var(--chakra-fontWeights-medium);
    gap: var(--chakra-space-2);
    line-height: normal;
    padding: var(--chakra-space-4);
    width: 100%;
}

.skWidget input[type='password']::-ms-reveal,
.skWidget input[type='password']::-ms-clear {
    display: none;
}

.skWidget input[type='number'],
.skWidget input[type='tel'] {
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    align-self: stretch;
    /* margin-top: 20px; */
    appearance: textfield;
    background-color: #242627;
    border-color: #242627;
    border-radius: var(--chakra-radii-lg);
    border: 1px solid #242627;
    color: white;
    display: flex;
    font-size: var(--chakra-fontSizes-md);
    font-weight: var(--chakra-fontWeights-medium);
    gap: var(--chakra-space-2);
    line-height: normal;
    padding: var(--chakra-space-4);
    width: 100%;
    margin-bottom: 10px;
    margin-top: 0;
}

.skWidget .form-check {
    border-radius: 1rem;
    border: 1px solid #272727;
    line-height: normal;
    margin: var(--chakra-sizes-4) 0;
    padding: var(--chakra-space-4) var(--chakra-space-12) var(--chakra-space-4)
        var(--chakra-space-4);
    position: relative;
}

.skWidget input[type='radio'] {
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border-radius: 12.5rem;
    border: 1px solid #b8b8b8;
    height: var(--chakra-sizes-5);
    position: absolute;
    right: var(--chakra-sizes-4);
    top: var(--chakra-sizes-4);
    width: var(--chakra-sizes-5);
}

.skWidget input[type='radio'] + label {
    font-size: var(--chakra-fontSizes-sm);
    font-weight: var(--chakra-fontWeights-bold);
    line-height: normal;
    margin: 0;
}

.skWidget input[type='radio']:checked + label::before {
    background-color: white;
    border-radius: 12.5rem;
    border: 1px solid #b8b8b8;
    content: '';
    display: block;
    flex-shrink: 0;
    height: 10px;
    position: absolute;
    right: 21px;
    top: 21px;
    width: 10px;
}

.skWidget input:hover {
    border: 1px solid #888989;
}

.skWidget input:focus {
    border: 1px solid #e7e7e7;
}

#usernamePasswordForm .form-floating,
#resetPasswordForm .form-floating {
    flex-direction: column;
    position: relative;
}

.skWidget .form-floating {
    display: flex;
    flex-direction: column-reverse;
    margin: var(--chakra-space-4) auto;
}

.mdi-eye-off-outline {
    background: url(2ecaa9a33cc8a435b466.png) no-repeat;
}

.mdi-eye-outline {
    background: url(065b028723ba3ce4e60a.png) no-repeat;
}

.skWidget .text-danger {
    color: #ea3757;
    font-size: var(--chakra-fontSizes-sm);
    line-height: 18px;
    padding: 0;
    text-align: center;
}

.skWidget .text-danger.mdi-alert-circle::before {
    content: '';
}

.inputErrorMsg {
    color: #ea3757;
    font-size: var(--chakra-fontSizes-sm);
    text-align: left;
    margin: var(--chakra-space-2) 0 0;
}

#registrationForm[data-id="resetPasswordForm"] .inputErrorMsg,
#registrationForm[data-id="registrationForm"] .inputErrorMsg {
    position: absolute;
    top: 78px;
}

/* Registration */

#registrationForm h3 {
    border-top: 1px solid #1b1c1d;
    font-size: var(--chakra-fontSizes-md);
    font-weight: var(--chakra-fontWeights-bold);
    line-height: normal;
    margin-bottom: var(--chakra-space-4);
    margin-top: var(--chakra-space-8);
    padding-top: var(--chakra-space-8);
    text-align: left;
}

#registrationForm h5 {
    color: #b8b8b8;
    font-size: var(--chakra-fontSizes-xs);
    text-align: left;
}

#registrationForm #passwordContainer {
    border-top: 1px solid #1b1c1d;
    margin-top: var(--chakra-space-8);
    padding-top: var(--chakra-space-8);
    position: relative;
}

#registrationForm #confirmPasswordContainer {
    border-bottom: 1px solid #1b1c1d;
    margin-bottom: var(--chakra-space-8);
    padding-bottom: var(--chakra-space-8);
    position: relative;
}

#password-widget #registrationForm #confirmPasswordContainer {
    margin-bottom: var(--chakra-space-2);
    padding-bottom: var(--chakra-space-2);
}

#registrationWidget li {
    font-size: var(--chakra-fontSizes-xs);
    list-style: none;
    margin-bottom: 5px;
}

#registrationWidget label[for='mfaNone'],
#registrationWidget label[for='mfaEmail'],
#registrationWidget label[for='mfaSMS'] {
    font-size: var(--chakra-fontSizes-sm);
    text-transform: capitalize;
}

#registrationForm[data-id="registrationForm"] div.form-floating {
    position: relative;
    margin-bottom: var(--chakra-space-8);
}

#registrationForm[data-id="registrationForm"] div[data-skerrorid="password"] {
    padding-top: var(--chakra-space-8);
}

#registrationForm[data-id="registrationForm"] #confirmPasswordContainer .btn.mdi {
    bottom: calc(1rem + 32px);
}

#registrationForm[data-id="registrationForm"] div#phone-input {
    position: relative;
}

#registrationForm[data-id='registrationForm'] #phone-input .iti,
#registrationForm[data-id='registrationForm'] #phone-input .iti--inline-dropdown {
    display: block;
    width: 100% !important;
    margin: 0 !important;
}

#registrationForm[data-id='registrationForm'] #phone-input .iti__tel-input {
    width: 100% !important;
    margin: 0;
}

#registrationForm[data-id="registrationForm"] .phone-input__number [data-skerrorid="phone"] {
    margin-top: var(--chakra-space-2);
}

#regSubmitBtn {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration:200ms;
}

#regSubmitBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: var(--chakra-shadows-none);
    background: #242627;
    pointer-events: none;
    color:white;
}

/* Profile */
#password-widget,
#mfa-widget {
    max-width: 100%;
}

@media (min-width: 768px) {
    #password-widget #submitBtn,
    #mfa-widget #submitBtn,
    #password-widget #pwdResetSubmitBtn {
        width: auto;
    }
}

#resetPasswordForm {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: var(--chakra-space-4);
}

#resetPasswordForm .form-floating,
#resetPasswordForm ul {
    margin: 0;
    width: 50%;
    position: relative;
}

#currentPasswordContainer.form-floating {
    flex: 1 0 100%;
    order: 1;
    position: relative;
    margin-bottom: var(--chakra-space-9);
}

#newPasswordContainer {
    flex: 1;
    order: 2;
    position: relative;
}

/* #password-widget #newPasswordContainer button.btn.mdi {
    top: 39px;
} */

/* #password-widget #confirmPasswordContainer button.btn.mdi {
    top: 49px;
} */

#confirmPasswordContainer {
    order: 3;
}

#resetPasswordForm ul {
    order: 4;
}

#resetPasswordForm .d-flex.flex-column {
    flex: 1 0 100%;
    order: 5;
}

#resetPasswordForm .d-flex.flex-column button,
#pwdResetSuccessBtn {
    width: auto;
    min-width: 100px;
}

#resetPasswordForm input {
    margin: 0;
}

#resetPasswordForm .btn.mdi {
    top: 48px;
}

#resetPasswordForm .inputErrorMsg ~ .btn.mdi {
    top: 78px;
}

/* #currentPasswordContainer .btn.mdi {
    top: 0px;
} */

#confirmPasswordContainer .btn.mdi {
    top: auto;
    bottom: calc(1rem + 11px);
}

#password-widget .text-danger,
#mfa-widget .text-danger {
    text-align: left;
}

.mfSubtext {
    color: #bbbbbb;
    font-size: 0.875rem;
}

/* Media Queries */

@media (max-width: 500px) {
    #ping-account-page {
        background-image: url(d52eb2ada83963fe0c74.png);
    }

    #btnApple,
    #btnGoogle,
    #btnTwitch,
    #btnFacebook,
    #btnSteam,
    #btnSignIn {
        background-position: 20% 50%;
    }

    #resetPasswordForm {
        display: block;
    }

    #resetPasswordForm .form-floating {
        width: 100%;
    }

    #currentPasswordContainer .btn.mdi {
        right: 1rem;
    }

    #registrationForm .form-check {
        width: 100%;
    }

    #currentPasswordContainer.form-floating {
        padding-right: 0;
    }

}

.skWidget .iti__selected-flag {
    padding: 0 6px 0 8px;
}

/* For iPhone 13 styles */
@media (max-width: 400px) {
    .skWidget input[type='radio'] + label[for='mfaEmail'] {
        width: 193px;
        word-break: break-all;
    }

    .skWidget .phone-input {
        display: block;
        margin-left: 0%;
    }

    .skWidget .phone-input__code {
        padding-right: 0;
        padding-bottom: var(--chakra-space-4);
    }

    div[data-skerrorid='phone'] {
        margin-top: 0;
    }
    #registrationForm[data-id="registrationForm"] .phone-input__number [data-skerrorid="phone"] {
        margin-top: 118px;
    }
}

.crowdfunding-bar {
    margin: 2rem 0;
    padding-top: 2.3rem;
    position: relative;
}
/* Forgot your password */
form#usernameForm .inputErrorMsg {
    position: relative;
    top: 112px;
}
form[data-id="usernameForm"] .flex-column {
    margin-top: var(--chakra-space-10);
}
#recoveryCodeForm .inputErrorMsg{
    order: -1;
}

[data-component='funding-tracker'][data-layout='sticky'] {
    max-width: none;
}

[data-component='funding-tracker'][data-slot='responsive-text'],
[data-component='funding-tracker'][data-slot='responsive-text'] * {
    font-size: 14.4px;
}

@media (min-width: 62em) {
    [data-component='funding-tracker'][data-slot='responsive-text'],
    [data-component='funding-tracker'][data-slot='responsive-text'] * {
        font-size: 16px;
    }
}

@media (min-width: 80em) {
    [data-component='funding-tracker'][data-layout='sticky'] {
        max-width: 580px;
    }
}

[data-component='haslab-sticky'][data-slot='bar'] {
    border-radius: 16px 16px 0 0;
}

[data-component='haslab-sticky'][data-slot='tracker'] {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding-left: 4px;
    padding-right: 4px;
}

[data-component='haslab-sticky'][data-slot='product-summary'] {
    display: none;
}

[data-component='haslab-sticky'][data-slot='action'] {
    justify-content: space-between;
}

/* Keep the third-party accessibility control clear of the fixed tracker. */
#usntA40Toggle {
    bottom: 110px !important;
}

@media (max-width: 48.0625em) {
    #usntA40Toggle {
        bottom: 200px !important;
    }
}

@media (min-width: 62em) {
    [data-component='haslab-sticky'][data-slot='action'] {
        justify-content: flex-start;
    }
}

@media (min-width: 80em) {
    [data-component='haslab-sticky'][data-slot='bar'] {
        border-radius: 90px;
    }

    [data-component='haslab-sticky'][data-slot='tracker'] {
        flex-direction: row;
        column-gap: 8px;
        row-gap: 16px;
        justify-content: space-between;
        padding-left: 24px;
        padding-right: 24px;
    }

    [data-component='haslab-sticky'][data-slot='product-summary'] {
        display: flex;
        flex: 1 1 0%;
        min-width: 0;
    }

    [data-component='haslab-sticky'][data-slot='product-name'] {
        flex: 1 1 auto;
        min-width: 0;
    }
}

/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */

@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper,swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide,swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
:root{--ci360-button-bg: rgba(255, 255, 255, .9);--ci360-button-bg-hover: rgba(255, 255, 255, 1);--ci360-button-size: 40px;--ci360-button-border-radius: 6px;--ci360-button-shadow: 0 2px 8px rgba(0, 0, 0, .15);--ci360-icon-color: #505050;--ci360-icon-color-hover: #333333;--ci360-icon-size: 20px;--ci360-initial-icon-bg: rgba(255, 255, 255, .15);--ci360-initial-icon-color: #ffffff;--ci360-initial-icon-size: 100px;--ci360-initial-icon-shadow: 0 2px 16px rgba(0, 0, 0, .08);--ci360-initial-icon-border-radius: 16px;--ci360-spinner-color: rgba(0, 0, 0, .2);--ci360-spinner-accent: #505050;--ci360-spinner-size: 30px;--ci360-fullscreen-bg: #ffffff;--ci360-zoom-controls-border-radius: 8px;--ci360-scroll-hint-bg: rgba(0, 0, 0, .7);--ci360-scroll-hint-color: #ffffff;--ci360-scroll-hint-border-radius: 20px;--ci360-focus-color: #0066cc;--ci360-hotspot-marker-size: 24px;--ci360-hotspot-marker-bg: rgba(255, 255, 255, .8);--ci360-hotspot-marker-color: #1a1a1a;--ci360-hotspot-marker-border-width: 2px;--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .4);--ci360-hotspot-marker-border: var(--ci360-hotspot-marker-border-width) solid var(--ci360-hotspot-marker-border-color);--ci360-hotspot-marker-shadow: 0 2px 8px rgba(0, 0, 0, .15);--ci360-hotspot-pulse-color: rgba(0, 0, 0, .15);--ci360-hotspot-pulse-size: 40px;--ci360-hotspot-pulse-duration: 1.8s;--ci360-hotspot-brand-color: #00aaff;--ci360-popper-bg: #ffffff;--ci360-popper-color: #1a1a1a;--ci360-popper-border: 1px solid rgba(0, 0, 0, .1);--ci360-popper-border-radius: 12px;--ci360-popper-shadow: 0 8px 32px rgba(0, 0, 0, .12);--ci360-popper-padding: 16px;--ci360-popper-max-width: 320px;--ci360-popper-font-size: 14px;--ci360-popper-line-height: 1.5;--ci360-popper-title-font-size: 16px;--ci360-popper-title-font-weight: 600;--ci360-popper-title-color: #1a1a1a;--ci360-popper-price-color: #2d8c3c;--ci360-popper-price-font-size: 18px;--ci360-popper-price-font-weight: 700;--ci360-popper-original-price-color: #999999;--ci360-popper-description-color: #666666;--ci360-popper-cta-bg: #0058a3;--ci360-popper-cta-color: #fff;--ci360-popper-cta-border-radius: 8px;--ci360-popper-cta-padding: 8px 16px;--ci360-hints-bg: rgba(255, 255, 255, .9);--ci360-hints-color: #333333;--ci360-hints-font-size: 13px;--ci360-hints-border-radius: 20px;--ci360-hints-shadow: 0 2px 12px rgba(0, 0, 0, .1);--ci360-circle-color: #888888;--ci360-timeline-height: 6px;--ci360-timeline-track-bg: rgba(255, 255, 255, .4);--ci360-timeline-dot-size: 18px;--ci360-timeline-dot-color: var(--ci360-hotspot-marker-bg);--ci360-timeline-dot-active-color: var(--ci360-hotspot-brand-color);--ci360-timeline-dot-border: 2px solid #fff;--ci360-timeline-indicator-size: 12px;--ci360-timeline-indicator-color: var(--ci360-hotspot-brand-color);--ci360-timeline-tooltip-bg: rgba(255, 255, 255, .95);--ci360-timeline-tooltip-color: #333333}.ci360-theme-dark{--ci360-button-bg: rgba(40, 40, 45, .9);--ci360-button-bg-hover: rgba(55, 55, 60, .95);--ci360-button-shadow: 0 2px 8px rgba(0, 0, 0, .4);--ci360-icon-color: #e0e0e0;--ci360-icon-color-hover: #ffffff;--ci360-spinner-color: rgba(255, 255, 255, .2);--ci360-spinner-accent: #e0e0e0;--ci360-fullscreen-bg: #1a1a1f;--ci360-zoom-controls-bg: rgba(40, 40, 45, .9);--ci360-zoom-controls-bg-hover: rgba(55, 55, 60, .95);--ci360-zoom-controls-color: #e0e0e0;--ci360-zoom-controls-color-hover: #ffffff;--ci360-zoom-controls-shadow: 0 2px 8px rgba(0, 0, 0, .4);--ci360-scroll-hint-bg: rgba(255, 255, 255, .15);--ci360-scroll-hint-color: #e0e0e0;--ci360-popper-bg: #1a1a1a;--ci360-popper-color: #f0f0f0;--ci360-popper-border: 1px solid rgba(255, 255, 255, .1);--ci360-popper-shadow: 0 8px 32px rgba(0, 0, 0, .4);--ci360-popper-title-color: #f0f0f0;--ci360-popper-description-color: #aaaaaa;--ci360-popper-original-price-color: #777777;--ci360-hints-bg: rgba(40, 40, 45, .9);--ci360-hints-color: #e0e0e0;--ci360-hints-shadow: 0 2px 12px rgba(0, 0, 0, .3);--ci360-circle-color: #b0b0b0;--ci360-timeline-track-bg: rgba(255, 255, 255, .4);--ci360-timeline-dot-border: 2px solid rgba(255, 255, 255, .9);--ci360-timeline-indicator-color: var(--ci360-hotspot-brand-color);--ci360-timeline-tooltip-bg: rgba(40, 40, 45, .95);--ci360-timeline-tooltip-color: #e0e0e0;--ci360-loader-bg: rgba(40, 40, 45, .9);--ci360-loader-color: #e0e0e0;--ci360-loader-shadow: 0 4px 20px rgba(0, 0, 0, .4);--ci360-hotspot-marker-bg: rgba(0, 0, 0, .6);--ci360-hotspot-marker-color: #ffffff;--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .6);--ci360-hotspot-pulse-color: rgba(255, 255, 255, .15);--ci360-timeline-dot-color: var(--ci360-hotspot-marker-bg)}.ci360-hotspot-marker-inverted{--ci360-hotspot-marker-bg: rgba(0, 0, 0, .6);--ci360-hotspot-marker-color: #ffffff;--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .8);--ci360-hotspot-marker-shadow: 0 2px 8px rgba(0, 0, 0, .3);--ci360-hotspot-pulse-color: rgba(0, 0, 0, .2);--ci360-hotspot-navigate-bg: rgba(0, 0, 0, .6);--ci360-hotspot-navigate-border-color: rgba(255, 255, 255, .8)}.ci360-theme-dark.ci360-hotspot-marker-inverted{--ci360-hotspot-marker-bg: rgba(255, 255, 255, .8);--ci360-hotspot-marker-color: #1a1a1a;--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .4);--ci360-hotspot-pulse-color: rgba(255, 255, 255, .2);--ci360-hotspot-navigate-bg: rgba(255, 255, 255, .8);--ci360-hotspot-navigate-border-color: rgba(255, 255, 255, .4)}.ci360-hotspot-marker-brand{--ci360-hotspot-marker-bg: var(--ci360-hotspot-brand-color);--ci360-hotspot-marker-color: #ffffff;--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .9);--ci360-hotspot-marker-shadow: 0 2px 8px rgba(0, 0, 0, .25);--ci360-hotspot-pulse-color: rgba(255, 255, 255, .5);--ci360-hotspot-navigate-bg: var(--ci360-hotspot-brand-color);--ci360-hotspot-navigate-border-color: rgba(255, 255, 255, .9)}.ci360-theme-dark.ci360-hotspot-marker-brand{--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .6);--ci360-hotspot-marker-shadow: 0 2px 8px rgba(0, 0, 0, .4);--ci360-hotspot-navigate-border-color: rgba(255, 255, 255, .6)}.ci360-hotspot-marker--theme-inverted{--ci360-hotspot-marker-bg: rgba(0, 0, 0, .6);--ci360-hotspot-marker-color: #ffffff;--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .8);--ci360-hotspot-marker-shadow: 0 2px 8px rgba(0, 0, 0, .3);--ci360-hotspot-pulse-color: rgba(0, 0, 0, .2);--ci360-hotspot-navigate-bg: rgba(0, 0, 0, .6);--ci360-hotspot-navigate-border-color: rgba(255, 255, 255, .8)}.ci360-theme-dark .ci360-hotspot-marker--theme-inverted{--ci360-hotspot-marker-bg: rgba(255, 255, 255, .8);--ci360-hotspot-marker-color: #1a1a1a;--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .4);--ci360-hotspot-pulse-color: rgba(255, 255, 255, .2);--ci360-hotspot-navigate-bg: rgba(255, 255, 255, .8);--ci360-hotspot-navigate-border-color: rgba(255, 255, 255, .4)}.ci360-hotspot-marker--theme-brand{--ci360-hotspot-marker-bg: var(--ci360-hotspot-brand-color, #00aaff);--ci360-hotspot-marker-color: #ffffff;--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .9);--ci360-hotspot-marker-shadow: 0 2px 8px rgba(0, 0, 0, .25);--ci360-hotspot-pulse-color: rgba(255, 255, 255, .5);--ci360-hotspot-navigate-bg: var(--ci360-hotspot-brand-color, #00aaff);--ci360-hotspot-navigate-border-color: rgba(255, 255, 255, .9)}.ci360-theme-dark .ci360-hotspot-marker--theme-brand{--ci360-hotspot-marker-border-color: rgba(255, 255, 255, .6);--ci360-hotspot-marker-shadow: 0 2px 8px rgba(0, 0, 0, .4);--ci360-hotspot-navigate-border-color: rgba(255, 255, 255, .6)}@keyframes rotation{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.cloudimage-360{width:100%;position:relative}.cloudimage-360-inner-box{width:100%;position:relative;overflow:hidden}.cloudimage-360-icons-container{position:absolute;display:flex;top:15px;right:10px;height:100%;flex-direction:column;align-items:center;z-index:100;gap:8px}.cloudimage-360-button{width:var(--ci360-button-size);height:var(--ci360-button-size);cursor:pointer;transition:transform .15s ease-out,background-color .15s ease-out,box-shadow .15s ease-out;display:flex;align-items:center;justify-content:center;border-radius:var(--ci360-button-border-radius);border:none;background-color:var(--ci360-button-bg);box-shadow:var(--ci360-button-shadow);padding:6px;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}.cloudimage-360-button:hover{transform:scale(1.05);background-color:var(--ci360-button-bg-hover)}.cloudimage-360-button:focus{outline:none}.cloudimage-360-button:focus-visible{outline:2px solid var(--ci360-focus-color);outline-offset:2px}.cloudimage-360-button svg{width:var(--ci360-icon-size);height:var(--ci360-icon-size);stroke:var(--ci360-icon-color);transition:stroke .15s ease-out}.cloudimage-360-button:hover svg{stroke:var(--ci360-icon-color-hover)}.cloudimage-initial-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:var(--ci360-initial-icon-size);aspect-ratio:150 / 87;border-radius:var(--ci360-initial-icon-border-radius);background-color:var(--ci360-initial-icon-bg);box-shadow:var(--ci360-initial-icon-shadow);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);transition:all .3s ease;color:var(--ci360-initial-icon-color);display:flex;align-items:center;justify-content:center;z-index:21;-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:12px 16px}.cloudimage-initial-icon svg{width:100%;height:auto;color:var(--ci360-initial-icon-color);fill:var(--ci360-initial-icon-color)}.cloudimage-initial-icon:hover{transform:translate(-50%,-50%) scale(1.08)}.cloudimage-360-click-overlay{position:absolute;top:0;right:0;bottom:0;left:0;z-index:22;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;background:#0000004d;cursor:pointer;transition:background .3s ease}.cloudimage-360-click-overlay:hover{background:#00000073}.cloudimage-360-click-overlay-icon{position:static;transform:none}.cloudimage-360-click-overlay:hover .cloudimage-360-click-overlay-icon{transform:scale(1.08)}.cloudimage-360-click-overlay-label{color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;font-size:14px;font-weight:500;text-shadow:0 1px 3px rgba(0,0,0,.4);-webkit-user-select:none;-moz-user-select:none;user-select:none}.cloudimage-360-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:var(--ci360-loader-size, 70px);height:var(--ci360-loader-size, 70px);border-radius:50%;background-color:var(--ci360-loader-bg, rgba(255, 255, 255, .9));box-shadow:var(--ci360-loader-shadow, 0 4px 20px rgba(0, 0, 0, .15));transition:all .3s ease;color:var(--ci360-loader-color, #505050);display:flex;align-items:center;justify-content:center;z-index:2;-webkit-user-select:none;-moz-user-select:none;user-select:none;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);font-family:system-ui,-apple-system,sans-serif;font-size:14px;font-weight:600}.cloudimage-loading-spinner{width:var(--ci360-spinner-size);height:var(--ci360-spinner-size);transform:translate(-50%,-50%);border:3px solid var(--ci360-spinner-color);position:absolute;top:15px;left:15px;border-bottom-color:var(--ci360-spinner-accent);border-radius:50%;display:inline-block;box-sizing:border-box;opacity:0;animation:rotation .7s linear infinite}.cloudimage-360-view-360-circle{position:absolute;left:0;bottom:0;width:100%;height:auto;margin:auto;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;transition:.2s all;z-index:2;color:var(--ci360-circle-color)}.cloudimage-360-view-360-circle svg{display:block;width:100%;height:auto}.cloudimage-360--fullscreen{width:100%;height:100%;background-color:var(--ci360-fullscreen-bg)}.cloudimage-360--fullscreen .cloudimage-360-inner-box{height:100%;display:flex;justify-content:center;align-items:center}.cloudimage-360--fullscreen canvas{width:auto!important;max-width:100%;max-height:100%}.cloudimage-360-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.cloudimage-360-hints-overlay{position:absolute;bottom:0;left:0;width:100%;display:flex;align-items:flex-end;justify-content:center;padding-bottom:16px;z-index:50;pointer-events:none;opacity:0;transition:opacity .3s ease}.cloudimage-360-hints-overlay.visible{opacity:1}.cloudimage-360-hints-overlay.hiding{opacity:0}.cloudimage-360-hints-container{display:flex;flex-direction:row;gap:20px;padding:10px 20px;background:var(--ci360-hints-bg);border-radius:var(--ci360-hints-border-radius);box-shadow:var(--ci360-hints-shadow);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}.cloudimage-360-hint-item{display:flex;align-items:center;gap:8px;color:var(--ci360-hints-color);font-size:var(--ci360-hints-font-size);font-family:system-ui,-apple-system,sans-serif;white-space:nowrap}.cloudimage-360-hint-item svg{width:16px;height:16px;flex-shrink:0;stroke:var(--ci360-hints-color)}.cloudimage-360-hint-item span{opacity:.9}@media (max-width: 480px){.cloudimage-360-hints-container{flex-direction:column;gap:8px;padding:12px 16px;border-radius:12px}.cloudimage-360-hint-item{font-size:12px}.cloudimage-360-hint-item svg{width:14px;height:14px}.cloudimage-360-initial-icon{width:calc(var(--ci360-initial-icon-size) * .8);height:calc(var(--ci360-initial-icon-size) * .8)}}.cloudimage-360-inner-box.has-hotspot-timeline .cloudimage-360-hints-overlay{padding-bottom:56px}.cloudimage-360-zoom-controls{position:absolute;display:flex;flex-direction:row;gap:4px;z-index:100;opacity:0;pointer-events:none;transition:opacity .2s ease;background:var(--ci360-zoom-controls-bg, var(--ci360-button-bg));border-radius:var(--ci360-zoom-controls-border-radius);box-shadow:var(--ci360-zoom-controls-shadow, var(--ci360-button-shadow));padding:4px;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}.cloudimage-360-zoom-controls.visible{opacity:1;pointer-events:auto}.cloudimage-360-zoom-controls[data-position=bottom-left]{bottom:12px;left:12px}.cloudimage-360-zoom-controls[data-position=bottom-right]{bottom:12px;right:12px}.cloudimage-360-zoom-controls[data-position=top-left]{top:12px;left:12px}.cloudimage-360-zoom-controls[data-position=top-right]{top:12px;right:12px}.cloudimage-360-zoom-controls[data-position=top-center]{top:12px;left:50%;transform:translate(-50%)}.cloudimage-360-zoom-controls[data-position=bottom-center]{bottom:12px;left:50%;transform:translate(-50%)}.cloudimage-360-zoom-btn{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border:none;background:transparent;border-radius:calc(var(--ci360-zoom-controls-border-radius) - 2px);cursor:pointer;padding:0;color:var(--ci360-zoom-controls-color, var(--ci360-icon-color));transition:background-color .15s ease,color .15s ease}.cloudimage-360-zoom-btn:hover:not(:disabled){background:var(--ci360-zoom-controls-bg-hover, var(--ci360-button-bg-hover));color:var(--ci360-zoom-controls-color-hover, var(--ci360-icon-color-hover))}.cloudimage-360-zoom-btn:disabled{opacity:.3;cursor:default}.cloudimage-360-zoom-btn:focus{outline:none}.cloudimage-360-zoom-btn:focus-visible{outline:2px solid var(--ci360-focus-color);outline-offset:-2px}.cloudimage-360-zoom-btn svg{width:18px;height:18px;stroke:currentColor}.cloudimage-360-zoom-separator{width:1px;align-self:stretch;margin:6px 0;background:#80808033}.cloudimage-360-scroll-hint{position:absolute;bottom:50%;left:50%;transform:translate(-50%,50%);background:var(--ci360-scroll-hint-bg);color:var(--ci360-scroll-hint-color);padding:8px 16px;border-radius:var(--ci360-scroll-hint-border-radius);font-size:13px;font-family:system-ui,-apple-system,sans-serif;font-weight:500;white-space:nowrap;pointer-events:none;z-index:200;opacity:0;transition:opacity .3s ease;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}.cloudimage-360-scroll-hint.visible{opacity:1}.cloudimage-360-hotspot-timeline{position:absolute;bottom:0;left:0;right:0;width:100%;padding:20px;opacity:0;transition:opacity .3s ease;pointer-events:none;z-index:30;background:linear-gradient(to top,rgba(0,0,0,.45) 0%,rgba(0,0,0,.2) 60%,transparent 100%)}.cloudimage-360-hotspot-timeline.visible{opacity:1;pointer-events:auto}.cloudimage-360-hotspot-timeline-track{position:relative;width:100%;max-width:500px;margin:0 auto;height:var(--ci360-timeline-height);background:var(--ci360-timeline-track-bg);border-radius:calc(var(--ci360-timeline-height) / 2)}.cloudimage-360-hotspot-timeline-indicator{position:absolute;top:50%;left:0;width:var(--ci360-timeline-indicator-size);height:var(--ci360-timeline-indicator-size);background:var(--ci360-timeline-indicator-color);border-radius:50%;transform:translate(-50%,-50%);transition:left .1s ease-out;pointer-events:none;box-shadow:0 2px 4px #0003}.cloudimage-360-hotspot-timeline-dot{position:absolute;top:50%;width:var(--ci360-timeline-dot-size);height:var(--ci360-timeline-dot-size);background:var(--ci360-timeline-dot-color);border:var(--ci360-timeline-dot-border);border-radius:50%;transform:translate(-50%,-50%);cursor:pointer;transition:transform .15s ease,background .2s ease,box-shadow .2s ease;box-shadow:0 1px 4px #00000026;padding:0;font:inherit;outline:none}.cloudimage-360-hotspot-timeline-dot:hover{transform:translate(-50%,-50%) scale(1.15);box-shadow:0 2px 8px #0003}.cloudimage-360-hotspot-timeline-dot.active{background:var(--ci360-timeline-dot-color);box-shadow:0 1px 4px #00000026}.cloudimage-360-hotspot-timeline-dot:focus-visible{outline:2px solid var(--ci360-focus-color);outline-offset:2px}.cloudimage-360-hotspot-timeline-tooltip{position:absolute;bottom:calc(100% + 10px);left:50%;transform:translate(-50%);background:var(--ci360-timeline-tooltip-bg);color:var(--ci360-timeline-tooltip-color);padding:6px 12px;border-radius:6px;font-size:13px;font-weight:500;white-space:nowrap;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease;pointer-events:none;box-shadow:0 2px 8px #00000026;z-index:10}.cloudimage-360-hotspot-timeline-tooltip:after{content:"";position:absolute;top:100%;left:50%;transform:translate(-50%);border:6px solid transparent;border-top-color:var(--ci360-timeline-tooltip-bg)}.cloudimage-360-hotspot-timeline-tooltip.visible{opacity:1;visibility:visible}@media (max-width: 480px){.cloudimage-360-hotspot-timeline{padding:14px 16px}}.cloudimage-360--fullscreen .cloudimage-360-hotspot-timeline{bottom:0}.cloudimage-360--fullscreen .cloudimage-360-hints-overlay{padding-bottom:32px}.cloudimage-360--fullscreen .cloudimage-360-zoom-controls[data-position^=bottom]{bottom:38px}.cloudimage-360--fullscreen .cloudimage-360-inner-box.has-hotspot-timeline .cloudimage-360-hints-overlay{padding-bottom:72px}.cloudimage-360--fullscreen .cloudimage-360-inner-box.has-hotspot-timeline .cloudimage-360-zoom-controls[data-position^=bottom]{bottom:72px}.cloudimage-360-hotspot-container{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:20}.cloudimage-360-hotspot{display:inline-block;position:absolute;top:0;right:0;bottom:0;left:0;transform:translate(-50%,-50%);background:var(--ci360-hotspot-marker-bg);border:var(--ci360-hotspot-marker-border);border-radius:50%;height:var(--ci360-hotspot-marker-size);width:var(--ci360-hotspot-marker-size);box-shadow:var(--ci360-hotspot-marker-shadow);opacity:0;transition:transform .2s ease,box-shadow .2s ease;padding:0;cursor:pointer;font:inherit;outline:none}.cloudimage-360-hotspot:not(.cloudimage-360-hotspot--navigate):after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:8px;height:8px;border-radius:50%;background:var(--ci360-hotspot-marker-color);opacity:.45;pointer-events:none}.cloudimage-360-hotspot:focus-visible{outline:2px solid var(--ci360-focus-color, #0066cc);outline-offset:2px}.cloudimage-360-hotspot--pulse{overflow:visible}.cloudimage-360-hotspot--pulse:before{content:"";position:absolute;top:50%;left:50%;width:var(--ci360-hotspot-pulse-size);height:var(--ci360-hotspot-pulse-size);border-radius:50%;background:var(--ci360-hotspot-pulse-color);transform:translate(-50%,-50%) scale(1);animation:ci360-pulse-ring var(--ci360-hotspot-pulse-duration) ease-out infinite;pointer-events:none}@keyframes ci360-pulse-ring{0%{transform:translate(-50%,-50%) scale(1);opacity:1}to{transform:translate(-50%,-50%) scale(1.8);opacity:0}}.cloudimage-360-hotspot--pulse{animation:ci360-breathe 2.4s ease-in-out infinite}@keyframes ci360-breathe{0%,to{transform:translate(-50%,-50%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.15)}}.cloudimage-360-hotspot--pulse:hover,.cloudimage-360-hotspot--pulse:focus-visible{animation:none}.cloudimage-360-hotspot--dot-label{animation:none}.cloudimage-360-hotspot-label{position:absolute;left:calc(50% + var(--ci360-hotspot-marker-size) / 2 + 4px);top:50%;transform:translateY(-50%);padding:3px 10px;font-size:11px;font-weight:600;white-space:nowrap;color:var(--ci360-hotspot-marker-color);background:var(--ci360-hotspot-marker-bg);border:var(--ci360-hotspot-marker-border);border-radius:100px;box-shadow:var(--ci360-hotspot-marker-shadow);pointer-events:none}.cloudimage-360-hotspot--navigate{display:inline-flex;align-items:center;justify-content:center;background:var(--ci360-hotspot-navigate-bg, #6366f1);border-color:var(--ci360-hotspot-navigate-border-color, rgba(255, 255, 255, .9))}.ci360-navigate-icon{width:14px;height:14px;color:#fff;pointer-events:none}.cloudimage-360-hotspot--navigate.cloudimage-360-hotspot--pulse{animation:none}.cloudimage-360-hotspot--navigate:hover,.cloudimage-360-hotspot--navigate:focus-visible{transform:translate(-50%,-50%) scale(1.15);box-shadow:0 0 0 3px #6366f166}.cloudimage-360-hotspot--dot-label:hover{transform:translate(-50%,-50%);box-shadow:0 4px 12px #0006}.cloudimage-360-hotspot:hover{transform:translate(-50%,-50%) scale(1.2);box-shadow:0 4px 12px #0006}@media (prefers-reduced-motion: reduce){.cloudimage-360-hotspot--pulse{animation:none}.cloudimage-360-hotspot--pulse:before{animation:none}}.cloudimage-360-popper{background:var(--ci360-popper-bg);color:var(--ci360-popper-color);border:var(--ci360-popper-border);padding:var(--ci360-popper-padding);border-radius:var(--ci360-popper-border-radius);box-shadow:var(--ci360-popper-shadow);font-family:system-ui,-apple-system,sans-serif;font-size:var(--ci360-popper-font-size);line-height:var(--ci360-popper-line-height);max-width:var(--ci360-popper-max-width);z-index:9999;text-align:left;transition:opacity .2s ease;opacity:0}.cloudimage-360-popper[data-show]{opacity:1}.ci360-popper-image-wrapper{aspect-ratio:16 / 9;overflow:hidden;border-radius:calc(var(--ci360-popper-border-radius) - 4px) calc(var(--ci360-popper-border-radius) - 4px) 0 0;margin:calc(var(--ci360-popper-padding) * -1);margin-bottom:12px;width:calc(100% + var(--ci360-popper-padding) * 2)}.ci360-popper-image{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.ci360-popper-body{line-height:1.5;text-align:left}.ci360-popper-title{margin:0 0 4px;font-size:var(--ci360-popper-title-font-size);font-weight:var(--ci360-popper-title-font-weight);color:var(--ci360-popper-title-color);line-height:1.3}.ci360-popper-price-row{display:inline-flex;align-items:baseline;gap:6px;margin-bottom:8px;flex-wrap:wrap}.ci360-popper-price{font-size:var(--ci360-popper-price-font-size);font-weight:var(--ci360-popper-price-font-weight);color:var(--ci360-popper-price-color)}.ci360-popper-price-row .ci360-popper-price{margin-bottom:0}.ci360-popper-original-price{font-size:calc(var(--ci360-popper-price-font-size) - 2px);font-weight:500;color:var(--ci360-popper-original-price-color);text-decoration:line-through}.ci360-popper-description{margin:0 0 12px;color:var(--ci360-popper-description-color)}.ci360-popper-cta{display:inline-block;padding:var(--ci360-popper-cta-padding);background:var(--ci360-popper-cta-bg);color:var(--ci360-popper-cta-color);border-radius:var(--ci360-popper-cta-border-radius);text-decoration:none;font-weight:600;font-size:14px;transition:opacity .2s ease}.ci360-popper-cta:hover{opacity:.9}button.ci360-popper-cta{cursor:pointer;border:none;font:inherit;width:100%}.ci360-popper-cta:focus-visible{outline:3px solid var(--ci360-focus-color, #0066cc);outline-offset:2px}

