/* 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;
}

/**
 * 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, 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");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)}}
