﻿@import url("//fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Roboto:wght@400;700&display=swap");
/*------------------------------------*\
  ABSTRACT
\*------------------------------------*/
/*------------------------------------*\
  VARIABLES
\*------------------------------------*/
:root {
  --bg-body: #ececec;
  --text-body: #303030;
  --font-family-roboto: "Roboto", sans-serif;
  --font-family-pt-sans: "PT Sans", sans-serif;
  /* Font Sizes */
  --font-base: 16px;
  --font-medium: 14px;
  --font-small: 12px;
  /* Colours */
  --white: #fff;
  --black: #000;
  --red: #d50000;
  --green: #4caf50;
  --grey: #747474;
  --grey2: #767676;
  --grey3: #787878;
  --grey4: #333;
  --grey5: #303030;
  --grey6: #b2b2b2;
  --blue: #1a73e8;
  /* Form */
  --bg-form: #fff;
  --bg-form-input: #ededed;
  --form-width: 686px;
  --form-width-lg: 930px;
  --form-wrapper-radius: 3px;
  --form-input-height: 56px;
  --form-label-color: rgba(0, 0, 0, .6);
  --form-hint-color: rgba(0, 0, 0, .5);
  --form-input-border-radius: 4px;
  --checkbox-size: 18px;
  /* Z Index */
  --zindex-label: 10;
  --zindex-dropdown: 20;
  --zindex-tooltip: 30;
  /* Misc */
  --button-line-height: 1.5;
  --svg-color: var(--grey2);
  --shadow-color: rgba(0, 0, 51, .2);
  --info-text: rgba(0, 0, 0, .12);
  --bg-info-text: #f8f8f8;
}

/*------------------------------------*\
  VENDOR
\*------------------------------------*/
/*!
* Selectr 2.4.13
* http://mobius.ovh/docs/selectr
*
* Released under the MIT license
*/
.selectr-container {
  position: relative;
}
.selectr-container li {
  list-style: none;
}
.selectr-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0 none;
}
.selectr-visible {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 11;
}

.selectr-desktop.multiple .selectr-visible {
  display: none;
}

.selectr-desktop.multiple.native-open .selectr-visible {
  top: 100%;
  min-height: 200px !important;
  height: auto;
  opacity: 1;
  display: block;
}

.selectr-container.multiple.selectr-mobile .selectr-selected {
  z-index: 0;
}

.selectr-selected {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  padding: 7px 28px 7px 14px;
  cursor: pointer;
  border: 1px solid #999;
  border-radius: 3px;
  background-color: #fff;
}
.selectr-selected::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  content: "";
  -o-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  -ms-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  -moz-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  transform: rotate(0deg) translate3d(0px, -50%, 0px);
  border-width: 4px 4px 0 4px;
  border-style: solid;
  border-color: #6c7a86 transparent transparent;
}

/*.selectr-container.open .selectr-selected::before,
.selectr-container.native-open .selectr-selected::before {
    border-width: 0 4px 4px 4px;
    border-style: solid;
    border-color: transparent transparent #6c7a86;
}*/
.selectr-label {
  display: none;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.selectr-placeholder {
  color: #6c7a86;
}

.selectr-tags {
  margin: 0;
  padding: 0;
  white-space: normal;
}

.has-selected .selectr-tags {
  margin: 0 0 -2px;
}

.selectr-tag {
  list-style: none;
  position: relative;
  float: left;
  padding: 2px 25px 2px 8px;
  margin: 0 2px 2px 0;
  cursor: default;
  color: #fff;
  border: medium none;
  border-radius: 10px;
  background: #acb7bf none repeat scroll 0 0;
}

.selectr-container.multiple.has-selected .selectr-selected {
  padding: 5px 28px 5px 5px;
}

.selectr-options-container {
  position: absolute;
  z-index: 10000;
  top: calc(100% - 1px);
  left: 0;
  display: none;
  box-sizing: border-box;
  width: 100%;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: transparent #999 #999;
  border-radius: 0 0 3px 3px;
  background-color: #fff;
}

.selectr-container.open .selectr-options-container {
  display: block;
}

.selectr-input-container {
  position: relative;
  display: none;
}

.selectr-clear,
.selectr-input-clear,
.selectr-tag-remove {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  -o-transform: translate3d(0px, -50%, 0px);
  -ms-transform: translate3d(0px, -50%, 0px);
  -moz-transform: translate3d(0px, -50%, 0px);
  -webkit-transform: translate3d(0px, -50%, 0px);
  transform: translate3d(0px, -50%, 0px);
  border: medium none;
  background-color: transparent;
  z-index: 11;
}

.selectr-clear,
.selectr-input-clear {
  display: none;
}

.selectr-container.has-selected .selectr-clear,
.selectr-input-container.active .selectr-input-clear {
  display: block;
}

.selectr-selected .selectr-tag-remove {
  right: 2px;
}

.selectr-clear::before,
.selectr-clear::after,
.selectr-input-clear::before,
.selectr-input-clear::after,
.selectr-tag-remove::before,
.selectr-tag-remove::after {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  content: " ";
  background-color: #6c7a86;
}

.selectr-tag-remove::before,
.selectr-tag-remove::after {
  top: 4px;
  width: 3px;
  height: 12px;
  background-color: #fff;
}

.selectr-clear:before,
.selectr-input-clear::before,
.selectr-tag-remove::before {
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.selectr-clear:after,
.selectr-input-clear::after,
.selectr-tag-remove::after {
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.selectr-input-container.active,
.selectr-input-container.active .selectr-clear {
  display: block;
}

.selectr-input {
  top: 5px;
  left: 5px;
  box-sizing: border-box;
  width: calc(100% - 30px);
  margin: 10px 15px;
  padding: 7px 30px 7px 9px;
  border: 1px solid #999;
  border-radius: 3px;
}

.selectr-notice {
  display: none;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 16px;
  border-top: 1px solid #999;
  border-radius: 0 0 3px 3px;
  background-color: #fff;
}

.selectr-container.notice .selectr-notice {
  display: block;
}

.selectr-container.notice .selectr-selected {
  border-radius: 3px 3px 0 0;
}

.selectr-options {
  position: relative;
  top: calc(100% + 2px);
  display: none;
  overflow-x: auto;
  overflow-y: scroll;
  max-height: 200px;
  margin: 0;
  padding: 0;
}

.selectr-container.open .selectr-options,
.selectr-container.open .selectr-input-container,
.selectr-container.notice .selectr-options-container {
  display: block;
}

.selectr-option {
  position: relative;
  display: block;
  padding: 5px 20px;
  list-style: outside none none;
  cursor: pointer;
  font-weight: normal;
}

.selectr-options.optgroups > .selectr-option {
  padding-left: 25px;
}

.selectr-optgroup {
  font-weight: bold;
  padding: 0;
}

.selectr-optgroup--label {
  font-weight: bold;
  margin-top: 10px;
  padding: 5px 15px;
}

.selectr-match {
  text-decoration: underline;
}

.selectr-option.selected {
  background-color: #ddd;
}

.selectr-option.active {
  color: #fff;
  background-color: #5897fb;
}

.selectr-option.disabled {
  opacity: 0.4;
}

.selectr-option.excluded {
  display: none;
}

.selectr-container.open .selectr-selected {
  border-color: #999 #999 transparent #999;
  border-radius: 3px 3px 0 0;
}

.selectr-container.open .selectr-selected::after {
  -o-transform: rotate(180deg) translate3d(0px, 50%, 0px);
  -ms-transform: rotate(180deg) translate3d(0px, 50%, 0px);
  -moz-transform: rotate(180deg) translate3d(0px, 50%, 0px);
  -webkit-transform: rotate(180deg) translate3d(0px, 50%, 0px);
  transform: rotate(180deg) translate3d(0px, 50%, 0px);
}

.selectr-disabled {
  opacity: 0.6;
}

.selectr-empty,
.has-selected .selectr-placeholder {
  display: none;
}

.has-selected .selectr-label {
  display: block;
}

/* TAGGABLE */
.taggable .selectr-selected {
  padding: 4px 28px 4px 4px;
}

.taggable .selectr-selected::after {
  display: table;
  content: " ";
  clear: both;
}

.taggable .selectr-label {
  width: auto;
}

.taggable .selectr-tags {
  float: left;
  display: block;
}

.taggable .selectr-placeholder {
  display: none;
}

.input-tag {
  float: left;
  min-width: 90px;
  width: auto;
}

.selectr-tag-input {
  border: medium none;
  padding: 3px 10px;
  width: 100%;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.selectr-input-container.loading::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  content: "";
  -o-transform: translate3d(0px, -50%, 0px);
  -ms-transform: translate3d(0px, -50%, 0px);
  -moz-transform: translate3d(0px, -50%, 0px);
  -webkit-transform: translate3d(0px, -50%, 0px);
  transform: translate3d(0px, -50%, 0px);
  -o-transform-origin: 50% 0 0;
  -ms-transform-origin: 50% 0 0;
  -moz-transform-origin: 50% 0 0;
  -webkit-transform-origin: 50% 0 0;
  transform-origin: 50% 0 0;
  -moz-animation: 500ms linear 0s normal forwards infinite running spin;
  -webkit-animation: 500ms linear 0s normal forwards infinite running spin;
  animation: 500ms linear 0s normal forwards infinite running spin;
  border-width: 3px;
  border-style: solid;
  border-color: #aaa #ddd #ddd;
  border-radius: 50%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
    transform: rotate(0deg) translate3d(0px, -50%, 0px);
  }
  100% {
    -webkit-transform: rotate(360deg) translate3d(0px, -50%, 0px);
    transform: rotate(360deg) translate3d(0px, -50%, 0px);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
    transform: rotate(0deg) translate3d(0px, -50%, 0px);
  }
  100% {
    -webkit-transform: rotate(360deg) translate3d(0px, -50%, 0px);
    transform: rotate(360deg) translate3d(0px, -50%, 0px);
  }
}
.selectr-container.open.inverted .selectr-selected {
  border-color: transparent #999 #999;
  border-radius: 0 0 3px 3px;
}

.selectr-container.inverted .selectr-options-container {
  border-width: 1px 1px 0;
  border-color: #999 #999 transparent;
  border-radius: 3px 3px 0 0;
  background-color: #fff;
}

.selectr-container.inverted .selectr-options-container {
  top: auto;
  bottom: calc(100% - 1px);
}

.selectr-container ::-webkit-input-placeholder {
  color: #6c7a86;
  opacity: 1;
}

.selectr-container ::-moz-placeholder {
  color: #6c7a86;
  opacity: 1;
}

.selectr-container :-ms-input-placeholder {
  color: #6c7a86;
  opacity: 1;
}

.selectr-container ::placeholder {
  color: #6c7a86;
  opacity: 1;
}

/*------------------------------------*\
  DIRECTION
\*------------------------------------*/
[dir=rtl] .form-label {
  right: 0;
  left: auto;
}
[dir=rtl] .form-error {
  text-align: right;
}
[dir=rtl] .form-input-wrapper {
  text-align: right;
}
[dir=rtl] .form-input--required {
  margin-right: 0.3em;
  margin-left: 0;
}
[dir=rtl] .form-group-checkbox .form-error {
  margin: 0 2.5em 0 2.5em;
}
[dir=rtl] .floating__input__filled .form-floating-label {
  transform: translate(-0.25em, -1.25em) scale(1);
}
[dir=rtl] .svg-icon-wrapper {
  left: 0;
  right: auto;
}
[dir=rtl] .text-left {
  text-align: right;
}
[dir=rtl] .text-center {
  text-align: center;
}
[dir=rtl] .checkbox > span .checkbox__tick {
  margin: 0 0 0 1em;
  justify-content: flex-end;
}
[dir=rtl] .selectr-selected::before {
  left: 0.25em;
  right: auto;
}
[dir=rtl] .flag-icon {
  margin-right: 0;
  margin-left: 0.8em;
}
[dir=rtl] [data-tooltip],
[dir=rtl] .form-hint,
[dir=rtl] .alert__message,
[dir=rtl] .deactivated-account-filename,
[dir=rtl] .form-input-narrow-wrapper {
  text-align: right;
}
[dir=rtl] .tooltip--bottom-right {
  right: auto;
  left: 10%;
}
[dir=rtl] .custom-dial-code .selectr-options-container {
  right: 0;
}
[dir=rtl] .deactivated-account-title-sub, [dir=rtl] .deactivated-account-ul {
  text-align: right;
}
[dir=rtl] .upload-submit-cancel-icon-right {
  float: left;
  padding-left: 20px;
}
[dir=rtl] .popup-inline-header-bar {
  text-align: right;
}
[dir=rtl] .popup-inline-header-bar-title {
  padding-right: 20px;
}
[dir=rtl] .popup-inline-content-text {
  text-align: right;
}
[dir=rtl] .footer__live-chat-link-icon {
  margin-left: 0.5em;
}
@media screen and (min-width: 768px) {
  [dir=rtl] [data-tooltip] {
    left: 10%;
    right: auto;
  }
  [dir=rtl] .deactivated-account-ul {
    margin-right: 10%;
    margin-left: 0;
  }
}
[dir=rtl] #formInputReverse {
  direction: ltr;
}
[dir=rtl] #formInputReverse .narrow-wrapper-outer {
  direction: rtl;
}
[dir=rtl] #formInputReverse .medium-wrapper-outer .medium-wrapper-outer--mobile-number .floating__input__filled {
  direction: rtl;
}
[dir=rtl] #formInputReverse .narrow-wrapper-outer .selectr-selected .selectr-label .my-template {
  float: right;
  direction: ltr;
}

/*------------------------------------*\
  APP - YEET THESE ONES ONCE REFACTORED
\*------------------------------------*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: var(--brand-bg-color);
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea,
label {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.5; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
/*button,
html [type="button"],*/ /* 1 */
/*[type="reset"],
[type="submit"] {
  -webkit-appearance: button;*/ /* 2 */
/*}*/
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/*--------------------------------------------------------------
# Form Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Gradient Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Flexbox Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# SPIN CASINO BRAND STYLES 
--------------------------------------------------------------*/ /*--------------------------------------------------------------
# Form Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Gradient Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Flexbox Mixins
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  /*font-family: $brand-primary-font-family;*/
  /*background: linear-gradient($brand-body-color, $brand-primary-input-color);
  background: -moz-linear-gradient($brand-body-color, $brand-primary-input-color);
  background: -webkit-linear-gradient($brand-body-color, $brand-primary-input-color);*/
  height: 100vh;
}

body.mobile {
  background: #ececec;
}

label, p {
  color: #ececec;
}

input:focus {
  outline: none;
}
input:-ms-input-placeholder {
  color: transparent !important;
}
input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 0;
}

.mobile input::-moz-placeholder {
  opacity: 0 !important;
}

input::-ms-clear,
input::-ms-reveal {
  display: none !important;
}

svg {
  width: 2em;
  height: 2em;
}

button {
  border: none;
}

/*a, p, h1, h2, h3 {
    font-family: $brand-primary-font-family;
}*/
/*Spin Galaxy Blocked Pop*/
.button__live-chat {
  padding-top: 2em;
}
.button__live-chat-link {
  display: inline-flex;
  min-width: 20%;
  padding: 0.8em 3em;
  border: 1px solid white;
  border-radius: 0.7em;
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  color: #ececec;
  background-color: #ea234f;
  cursor: pointer;
}
.button__live-chat-link-icon {
  margin-right: 0.5em;
  fill: #ececec;
}

/*@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$=".svg"] {
    width: 100%; 
  }
}*/
/*--------------------------------------------------------------
# DUPLICATE ACCOUNT
--------------------------------------------------------------*/
.desktop .duplicate-account,
.mobile .duplicate-account {
  line-height: 1.5rem;
}
.desktop .duplicate-account h3,
.desktop .duplicate-account p,
.mobile .duplicate-account h3,
.mobile .duplicate-account p {
  color: #333333;
  word-wrap: break-word;
}
.desktop .duplicate-account div.login-Attemps-Container-Mobile,
.mobile .duplicate-account div.login-Attemps-Container-Mobile {
  margin-bottom: 0;
}
.desktop .duplicate-account a#Login_Forgot_Password.duplicate-account-forgot-password,
.mobile .duplicate-account a#Login_Forgot_Password.duplicate-account-forgot-password {
  color: #e81859;
  display: inline-block;
}
.desktop .duplicate-account p.duplicate-account-warning,
.mobile .duplicate-account p.duplicate-account-warning {
  font-size: smaller;
}

.mobile .duplicate-account__options {
  max-width: 100%;
  padding: 0 1rem;
  color: #333333;
}
.mobile .divider {
  width: 90%;
}
.mobile .w-40-centered {
  max-width: 90%;
}

.desktop .form-container.form-container__reg-duplicate .form-container__logo {
  max-width: 10vw;
  margin: 1rem auto -2rem;
}

/*--------------------------------------------------------------
# MIGRATION JOURNEY
--------------------------------------------------------------*/
.desktop .migration,
.mobile .migration {
  line-height: 1.5rem;
}
.desktop .migration h3,
.desktop .migration p,
.mobile .migration h3,
.mobile .migration p {
  color: #333333;
  word-wrap: break-word;
}
.desktop .migration__login-wrapper,
.mobile .migration__login-wrapper {
  padding: 1em 1em 2em;
  background-color: #f8f8f8;
}
.desktop .migration__username,
.mobile .migration__username {
  font-size: 1.25rem;
  font-weight: bold;
}
.desktop .migration a.migration-support,
.mobile .migration a.migration-support {
  color: #e81859;
  display: inline-block;
}
.desktop .migration-support__link,
.mobile .migration-support__link {
  display: inline-block;
}
.desktop .migration div.login-Attemps-Container-Mobile,
.mobile .migration div.login-Attemps-Container-Mobile {
  margin-bottom: 0;
}
.desktop .migration a#Login_Forgot_Password.migration-forgot-password,
.mobile .migration a#Login_Forgot_Password.migration-forgot-password {
  color: #e81859;
  display: inline-block;
}
.desktop .migration p.migration-warning,
.mobile .migration p.migration-warning {
  font-size: smaller;
}

/*--------------------------------------------------------------
# DE-ACTIVATED ACCOUNT JOURNEY
--------------------------------------------------------------*/
.deactivated-account p,
.deactivated-account pre,
.deactivated-account label {
  color: black;
}

.deactivated-account-title {
  font-weight: bold;
}

.deactivated-account-title-sub {
  font-weight: bold;
  text-align: left;
}

.deactivated-account-helptext {
  font-size: 14px;
  display: block;
  margin-top: 0px;
}

.deactivated-account-note-text {
  font-size: 14px;
  display: block;
}

.deactivated-account-ul {
  text-align: left;
  margin-left: 10%;
}

.file-upload-div {
  border: dashed 2px #ea234f;
  padding: 10px;
}

.highlight-dropzone {
  border: dashed 4px #ea234f;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.upload-submit {
  background-color: #ea234f;
  color: #ececec;
  cursor: pointer;
}

.divider-wide {
  width: 95%;
  box-shadow: 0 0 5px #d5d5d5;
  border: solid 0.5px rgb(213, 213, 213);
}

.deactivated-account-totalsize {
  padding-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.deactivated-account-filesize-valid,
.deactivated-account-filesize-invalid {
  color: black;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.deactivated-account-filesize-invalid {
  color: #e75247;
}

.deactivated-account-filesize-valid {
  color: #7bd976;
}

.deactivated-account-filesize-nofiles {
  color: inherit;
}

.deactivated-account-fileupload-groupleft {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: calc(100% - 130px);
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.deactivated-account-fileupload-groupright {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 120px;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cls-1 {
  fill: none;
}

.cls-2,
.cls-3 {
  fill: #ea234f;
}

.cls-white {
  fill: white;
}

.cls-black {
  fill: black;
}

.cls-green {
  fill: #7bd976;
}

.cls-red {
  fill: #e75247;
}

/* CHANGE - $brand-primary-btn-color */
svg.icon-upload, svg.icon-photo {
  width: 50px;
  height: 50px;
  fill: #ea234f;
  cursor: pointer;
}
svg.icon-right, svg.icon-wrong {
  width: 50px;
  height: 50px;
}
svg.icon-right {
  fill: #7bd976;
}
svg.icon-wrong {
  fill: #e75247;
}
svg.icon-right-sml, svg.icon-wrong-sml {
  width: 25px;
  height: 25px;
  padding-left: 3px;
  padding-right: 3px;
}
svg.icon-right-sml {
  fill: #7bd976;
}
svg.icon-wrong-sml {
  fill: #e75247;
}
svg.icon-info {
  width: 1em !important;
  height: 1em !important;
  font-size: 20px;
  vertical-align: middle;
}
svg.icon-remove {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.icon-text {
  color: #b21e4f; /* CHANGE - $brand-primary-btn-color */
  float: none;
  font-weight: bold;
  cursor: pointer;
}

.deactivated-account-choosefile,
.deactivated-account-choosefile.mobile {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  display: inline-block;
  cursor: pointer;
}

.footer {
  max-width: inherit;
  margin: 4rem auto 0;
}

.progress-bar-alluploads-wrapper {
  margin-top: 25px;
}

progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 45%;
  height: 5px;
  vertical-align: text-top;
  margin-left: 10px;
  margin-right: 10px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

progress[value]::-webkit-progress-bar {
  background-color: rgb(237, 237, 237);
  color: rgb(237, 237, 237);
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

progress[value]::-webkit-progress-value {
  border-radius: 2px;
  color: #e81859;
  background-color: #e81859;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

progress[value].deactivated-account-fileupload-progress-all {
  /* Reset the default appearance */
  -webkit-appearance: none;
  appearance: none;
  width: 60%;
  height: 10px;
  vertical-align: text-top;
  margin-left: 10px;
  margin-right: 10px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.progress-bar-alluploads-percent {
  font-size: smaller;
  font-weight: bold;
  vertical-align: super;
  color: #ea234f;
}

.image-uploaded {
  max-width: 42px;
  max-height: 42px;
  min-height: 42px;
  min-width: 42px;
  margin-right: 10px;
}

.upload-submit-container {
  display: inline-block;
  height: 50px;
  width: 50%;
  margin: 0px;
  position: relative;
  text-decoration: none;
  -webkit-appearance: none;
}

.upload-submit {
  border-radius: 3px;
  display: inline-block;
  font-size: 18px;
  line-height: 50px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  height: 50px;
  width: 100%;
  background-color: #e81859;
  color: #fff;
  margin: 0;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
}
.upload-submit:hover {
  background-color: #ef4927;
}

.upload-submit.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.upload-submit-cancel {
  display: inline-block;
  font-size: 18px;
  line-height: 50px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  color: #e81859;
}
.upload-submit-cancel:hover {
  color: #ef4927;
}

.deactivated-account-fileupload-fileinfo {
  width: 99%;
  border-radius: 5px;
  padding: 15px 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  background-color: white;
  margin-bottom: 15px;
  margin-top: 5px;
  font-size: 14px;
  text-decoration: none;
  -webkit-appearance: none;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.deactivated-account-filename {
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deactivated-account-filesize {
  color: black;
}

.deactivated-account-previewouter {
  color: black;
}

/*.deactivated-account-iconvalidation {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
}*/
preview {
  padding-left: 15px;
}

div.file-upload-validation-summary-wrapper {
  margin-bottom: 15px;
  margin-top: 15px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

div.file-upload-validation-summary {
  display: block;
  background: #ffc8c8;
  padding: 15px;
  border: 1px solid #b58c8c;
  border-radius: 3px;
  color: #815a5a;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

p.file-upload-validation-summary {
  text-align: center;
  font-style: italic;
  font-size: 13px;
  color: #815a5a;
  font-weight: bold;
  margin: 0;
}

/* deactivated logout pop */
.popup-inline-frame {
  color: black;
  padding-top: 0px;
  margin-top: 0px;
  box-shadow: black;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.3);
  padding-bottom: 1em;
}

.popup-inline-header-bar {
  text-align: left;
  background-color: hsl(0deg, 0%, 93%);
  margin-top: 0px;
}

.popup-inline-header-bar-title {
  display: inline-block;
  height: 50px;
  padding-left: 20px;
}

.popup-inline-header-bar-title-text {
  display: inline-block;
  padding-top: 14px;
  overflow: visible;
  font-size: 20px;
  font-weight: bold;
}

.popup-inline-content-text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
}

.deactivated-account-pop-header-icon {
  display: inline;
  width: 10%;
}

.upload-submit-cancel-icon-right {
  float: right;
  padding-right: 20px;
  padding-top: 9px;
}

.popup-inline-content-link {
  display: inline-block;
  font-size: 18px;
  width: 90%;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  color: #e81859;
  padding: 0.8em;
}
.popup-inline-content-link:hover {
  color: #ef4927;
}

.upload-submit-again {
  border-radius: 3px;
  display: inline-block;
  font-size: 18px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  height: 50px;
  width: 70%;
  min-width: 200px;
  margin: 0 auto 20px;
  background-color: #e81859;
  color: #fff;
  margin: 0;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  overflow: hidden;
  padding-top: 15px;
  text-wrap: none;
  margin-top: 10px;
}
.upload-submit-again:hover {
  background-color: #ef4927;
}

/*== start of code for tooltips ==*/
.tool {
  cursor: help;
  position: relative;
}

/*== common styles for both parts of tool tip ==*/
.tool::before,
.tool::after {
  left: 50%;
  opacity: 0;
  position: absolute;
  z-index: -100;
}

.tool:hover::before,
.tool:focus::before,
.tool:hover::after,
.tool:focus::after {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 10000;
}

/*== pointer tip ==*/
.tool::before {
  border-style: solid;
  border-width: 1em 0.75em 0 0.75em;
  border-color: #3E474F transparent transparent transparent;
  bottom: 100%;
  content: "";
  margin-left: -0.5em;
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26), opacity 0.65s 0.5s;
  transform: scale(0.6) translateY(-90%);
}

.tool:hover::before,
.tool:focus::before {
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
}

/*== speech bubble ==*/
.tool::after {
  background: #3E474F;
  border-radius: 0.25em;
  bottom: 180%;
  color: #EDEFF0;
  content: attr(data-tip);
  margin-left: -8.75em;
  padding: 1em;
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
  transform: scale(0.6) translateY(50%);
  width: 17.5em;
}

.tool:hover::after,
.tool:focus::after {
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26);
}

@media (max-width: 760px) {
  .tool::after {
    font-size: 0.85em;
    margin-left: -7em;
    width: 15em;
  }
}
/* EXTERNAL VERIFICATION */
.widget__iframe {
  width: 100%;
  height: 100vh;
  border: none;
}
.widget__iframe #agechecked-merchant-iframe-overlay {
  background: #fff;
}

.flag-icon {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.8em;
}

/* ROLLDATE */
.rolldate-container {
  font-size: 20px;
  color: #333;
  text-align: center;
}
.rolldate-container ul {
  margin: 0;
  padding: 0;
}
.rolldate-container li {
  list-style-type: none;
}
.rolldate-container header {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}
.rolldate-container .rolldate-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
  z-index: 999;
}
.rolldate-container .rolldate-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 273px;
  z-index: 1000;
  background: #fff;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  z-index: 9999;
}
.rolldate-container .rolldate-btn {
  height: 100%;
  padding: 0 15px;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.rolldate-container.wx .rolldate-btn {
  height: 150%;
}
.rolldate-container .rolldate-confirm {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 0;
  border-radius: 3px;
  line-height: 50px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  -webkit-appearance: none;
  color: #ececec;
  background-color: #e81859;
  cursor: pointer;
}
.rolldate-container .rolldate-content {
  position: relative;
  top: 20px;
}
.rolldate-container .rolldate-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.rolldate-container .rolldate-wrapper > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 173px;
  line-height: 36px;
  overflow: hidden;
  -webkit-flex-basis: -8e;
  -ms-flex-preferred-size: -8e;
  flex-basis: -8e;
  width: 1%;
}
.rolldate-container .rolldate-wrapper ul {
  margin-top: 68px;
}
.rolldate-container .rolldate-wrapper li {
  height: 36px;
}
.rolldate-container .rolldate-dim {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 68px;
  background: -webkit-gradient(linear, left bottom, left top, from(hsla(0deg, 0%, 100%, 0.4)), to(hsla(0deg, 0%, 100%, 0.8)));
  background: -webkit-linear-gradient(bottom, hsla(0deg, 0%, 100%, 0.4), hsla(0deg, 0%, 100%, 0.8));
  background: -o-linear-gradient(bottom, hsla(0deg, 0%, 100%, 0.4), hsla(0deg, 0%, 100%, 0.8));
  background: -webkit-gradient(linear, left bottom, left top, from(hsla(0deg, 0%, 100%, 0.4)), to(hsla(0deg, 0%, 100%, 0.8)));
  background: -webkit-linear-gradient(bottom, hsla(0deg, 0%, 100%, 0.4), hsla(0deg, 0%, 100%, 0.8));
  background: -o-linear-gradient(bottom, hsla(0deg, 0%, 100%, 0.4), hsla(0deg, 0%, 100%, 0.8));
  background: linear-gradient(0deg, hsla(0deg, 0%, 100%, 0.4), hsla(0deg, 0%, 100%, 0.8));
  pointer-events: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10;
}
.rolldate-container .mask-top {
  border-bottom: 1px solid #ebebeb;
}
.rolldate-container .mask-bottom {
  top: auto;
  bottom: 1px;
  border-top: 1px solid #ebebeb;
}
.rolldate-container .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.rolldate-container .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

/* Error Pages */
.error-container {
  width: 100%;
  height: 100%;
  display: block;
  padding: 15px;
}
.error-container p {
  color: #333;
}

.error-container-float-left {
  display: inline-block;
}

.error-container-float-right {
  display: inline-block;
}

.error-page {
  color: #333;
  font-family: "Open Sans", sans-serif !important;
}

.error_page__title {
  margin-bottom: 0.2em;
  margin-top: 0px;
  font-size: 50px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif !important;
}

.error_page__subtitle {
  margin-bottom: 1em;
  font-size: 24px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif !important;
}

.error_page__copy {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 16px;
  font-family: "Open Sans", sans-serif !important;
}

.error_page__errorcode {
  margin-top: 5px;
  font-size: 10px;
  font-weight: normal;
  font-family: "Open Sans", sans-serif !important;
  text-align: right;
  margin-right: 5px;
}

.error_footer__live-chat {
  padding-top: 0.5em;
  padding-bottom: 2em;
}

.error_footer__live-chat-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 20%;
  padding: 0.5em 1em;
  border-radius: 5em;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  color: #868686;
  background-color: #f4f4f4;
  font-family: "Open Sans", sans-serif !important;
  cursor: pointer;
}

/*.footer__live-chat-link-icon {
    fill: #868686;
}*/
.img-error-fluid {
  max-width: 100%;
  height: auto;
}

error-page label {
  color: #333 !important;
}

.external-verification-error-wrapper .heading, .external-verification-error-wrapper p {
  color: #575757;
}
.external-verification-error-wrapper .heading {
  margin: 0;
}
.external-verification-error-wrapper p {
  margin: 2em 0;
}
.external-verification-error-wrapper .subheading {
  margin-bottom: -1.5em;
}

@-webkit-keyframes fadeIn {
  0% {
    bottom: -273px;
  }
  to {
    bottom: 0;
  }
}
@keyframes fadeIn {
  0% {
    bottom: -273px;
  }
  to {
    bottom: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    bottom: 0;
  }
  to {
    bottom: -273px;
    display: none;
  }
}
@keyframes fadeOut {
  0% {
    bottom: 0;
  }
  to {
    bottom: -273px;
    display: none;
  }
}
@media screen and (max-width: 414px) {
  .rolldate-container {
    font-size: 18px;
  }
}
@media screen and (max-width: 320px) {
  .rolldate-container {
    font-size: 15px;
  }
}
/*------------------------------------*\
  VARIABLES
\*------------------------------------*/
/*------------------------------------*\
  MIXINS
\*------------------------------------*/
/*------------------------------------*\
  MAIN CONTAINER
\*------------------------------------*/
.desktop .form-container.form-container--reg-duplicate {
  height: auto;
  max-width: 950px !important;
  width: 100%;
  padding: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.desktop .form-container.form-container--reg-duplicate .duplicate-account {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 20px 0;
}
.desktop .form-container.form-container--reg-duplicate .form-container__logo {
  margin: 2rem 0 -3rem;
}
.desktop .form-container.form-container--reg-duplicate .footer {
  margin: 3rem 0;
}

.mobile .form-container.form-container--reg-duplicate {
  height: auto;
  max-width: 900px !important;
  width: 100%;
  padding: 0;
}
.mobile .form-container.form-container--reg-duplicate .form-container__logo {
  margin-top: 2rem;
}

.duplicate-account__options {
  color: #333;
}

.pop-container {
  display: block;
  width: auto;
  max-width: 95vw;
  max-height: 95vh;
  border-radius: 30px;
  text-align: center;
  background-color: #f4f4f4;
  overflow: auto;
  position: relative;
  left: -50%;
}
.pop-container__logo {
  max-width: 50%;
  margin: 1em auto;
}
.pop-container__logo-img {
  max-height: 10vh;
}
.pop-container__intro-text {
  padding: 0 0.5em 0;
}
.pop-container__carousel {
  user-select: none;
}
@media screen and (min-width: 768px) {
  .pop-container {
    max-width: 980px;
    height: auto;
    max-height: 80vh;
    padding: 1em 0 3em;
  }
  .pop-container__intro-text {
    padding: 0em 0em 1em;
    width: 75%;
    margin: 0 auto;
  }
  .pop-container__carousel {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pop-container--single {
    max-width: 480px;
  }
  .pop-container--single .slick-initialized .slick-track {
    min-width: 480px;
  }
}

/*------------------------------------*\
  CAROUSEL
\*------------------------------------*/
.carousel-slider {
  position: relative;
  min-width: 240px;
  padding: 1em;
  background-color: #fff;
  box-shadow: 0 0 0.5em 0.1em #dcdcdc;
  border-radius: 15px;
  color: #9a9a9a;
  opacity: 0.7;
}
.carousel-slider__ribbon {
  position: absolute;
  top: -1.5%;
  left: -2%;
}
.carousel-slider__ribbon-img {
  width: 90%;
}
.carousel-slider__ribbon-text {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  top: 25%;
  left: -15%;
  width: 100%;
  height: 25%;
  font-size: 13px;
  line-height: 0.9;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  color: #2f2f2f;
}
.carousel-slider__logo {
  min-height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.carousel-slider__logo-img {
  width: 180px;
  max-height: 70px;
  margin: 0.5rem auto 0;
}
.carousel-slider__bonus {
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: bold;
  line-height: 1;
  color: #454545;
}
.carousel-slider__bonus p {
  margin: 0;
  color: inherit;
}
.carousel-slider__bonus-amount {
  font-size: 4vmax;
}
.carousel-slider__bonus-pre-text, .carousel-slider__bonus-welcome-text {
  font-size: 2.5vmax;
  text-transform: uppercase;
  word-break: break-word;
}
.carousel-slider__list {
  list-style: none;
  padding: 0;
  overflow: hidden;
}
.carousel-slider__list-item {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}
.carousel-slider__list-item:last-child {
  border-bottom: 1px solid #f2f2f2;
}
.carousel-slider__cta {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-width: 80%;
  width: 100%;
  height: 4em;
  max-height: 100%;
  margin: -3rem auto 0;
  padding-top: 0;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: transparent no-repeat center/80%;
  background-image: none;
  background-size: 80% auto;
  background-size: contain;
  cursor: pointer;
}
.carousel-slider__cta-img {
  position: absolute;
}
.carousel-slider__cta-text {
  color: #fff;
  text-shadow: 0 1px 1px #000;
  z-index: 1;
}
.carousel-slider__cta--red {
  background-image: url("https://auth.jackpotcitycasino.com/Content/styles/images/ribbon-buttons/ribbon-btn-red.png");
}
.carousel-slider__cta--purple {
  background-image: url("https://auth.jackpotcitycasino.com/Content/styles/images/ribbon-buttons/ribbon-btn-purple.png");
}
.carousel-slider__cta--blue {
  background-image: url(https://auth.jackpotcitycasino.com/Content/styles/base/~/Content/styles/base/images/ribbon-buttons/ribbon-btn-blue.png);
}
.carousel-slider--active {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .carousel-slider {
    min-width: 260px;
    max-width: 260px;
    width: 50%;
    margin: 0 -0.5em;
    opacity: 1;
  }
  .carousel-slider__bonus-amount {
    font-size: 5vmin;
    line-height: 1;
  }
  .carousel-slider__bonus-pre-text, .carousel-slider__bonus-welcome-text {
    font-size: 2vmin;
  }
  .carousel-slider__list {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    height: auto;
  }
  .carousel-slider__cta {
    bottom: -1.2rem;
    left: 10%;
  }
}
@media screen and (min-width: 840px) {
  .carousel-slider {
    margin: 0 1em;
  }
}

/*------------------------------------*\
  UTILITIES
\*------------------------------------*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.w-40-centered,
.w-50-centered {
  margin: 0 auto !important;
}

.w-40-centered {
  max-width: 40%;
}

.w-50-centered {
  max-width: 75%;
}

.divider {
  width: 50%;
  border: 0.5px solid #ebebeb;
  box-shadow: 0px 0px 5px #ebebeb;
}

@media screen and (min-width: 768px) {
  .w-50-centered {
    max-width: 50%;
  }
}
/*------------------------------------*\
  OVERRIDES - SLICK CAROUSEL
\*------------------------------------*/
.slick-initialized .slick-track {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 40vw;
  max-height: 430px;
  height: 430px;
  padding: 1em 0 3em;
  justify-content: center;
  align-items: center;
}
.slick-initialized .slick-slide {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100vw;
  transform: scale(0.8);
}
.slick-initialized .slick-active.slick-current {
  position: relative;
  max-width: 260px !important;
  max-height: 100%;
  margin: 0 -8em;
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.slick-initialized .slick-active.slick-current .carousel-slider__logo {
  width: 80%;
  max-height: 70px;
  margin: 0 auto;
}
.slick-initialized .slick-active.slick-current .carousel-slider__logo-img {
  width: auto;
  height: auto;
}
.slick-initialized .slick-active.slick-current .carousel-slider__list {
  height: auto;
}
.slick-initialized .slick-active.slick-current .carousel-slider__cta {
  transition: all 500ms ease-in-out;
  border: 0;
  bottom: -1.2rem;
  left: 10%;
}
@media screen and (min-width: 768px) {
  .slick-initialized .slick-slide {
    max-width: 260px;
    transform: scale(1);
  }
  .slick-initialized .slick-track {
    min-width: 100vw;
    min-height: 100%;
    padding: 1em 0;
    height: auto;
  }
  .slick-initialized .slick-active.slick-current {
    max-width: 280px !important;
  }
}
@media screen and (min-width: 840px) {
  .slick-initialized .slick-track {
    min-width: 480px;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .pop-container__carousel.slick-initialized .slick-track {
    min-width: 100%;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .carousel-slider__logo {
    display: block;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .pop-container__carousel.slick-initialized .slick-track {
    min-width: 100%;
  }
}
.age-tutorial a {
  color: var(--brand-secondary-color);
  display: inline-block;
}
.age-tutorial a:hover, .age-tutorial a:focus {
  color: var(--brand-secondary-color);
  filter: brightness(120%);
  transition: 0.3s;
}
.age-tutorial__heading,
.age-tutorial p {
  font-family: "Roboto";
  color: #4c4c4c;
}
.age-tutorial__subheading {
  margin-bottom: 4em;
}
.age-tutorial__steps {
  position: relative;
  padding: 2em 1.5em 1em;
  margin-bottom: 2em;
  border: 1px solid #e0e0e0;
}
.age-tutorial__steps-fixed-img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30%;
  padding: 0.5em;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .age-tutorial__steps-fixed-img {
    width: 20%;
  }
}
.age-tutorial__steps p {
  color: #212121;
}
.age-tutorial__steps-subheading {
  font-size: 14px;
}
.age-tutorial__steps-list {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}
.age-tutorial__steps-list-item {
  padding: 0.5em 0;
  display: flex;
  align-items: center;
}
.age-tutorial__steps-list-icon {
  padding-right: 1.5em;
}
.age-tutorial__divider {
  margin: 1.5em 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}

/* UTILS */
.text-small {
  font-size: 14px;
}

/*--------------------------------------------------------------
# SELECT RESETS
    This file creates a cross browser select button
--------------------------------------------------------------*/
/*Hide selects*/
select::-ms-expand {
  display: none;
}

select {
  -moz-appearance: none;
}

/*Select-css*/
/* Container used for styling the custom select, the buttom class below adds the
 * bg gradient, corners, etc. */
.custom-select {
  position: relative;
  display: block;
}

/* This is the native select, we're making everything but the text invisible so
 * we can see the button styles in the wrapper */
.custom-select select {
  width: 100%;
  margin: 0;
  outline: none;
  /* Prefixed box-sizing rules necessary for older browsers */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* Font size must be 16px to prevent iOS page zoom on focus */
  font-size: 16px;
}

/* Custom arrow sits on top of the select - could be an image, SVG, icon font,
 * etc. or the arrow could just baked into the bg image on the select. */
.custom-select::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 0.6em;
  z-index: 2;
  /* These hacks make the select behind the arrow clickable in some browsers */
  pointer-events: none;
  display: none;
}

/* Firefox <= 34 has a false positive on @supports( -moz-appearance: none )
 * @supports ( mask-type: alpha ) is Firefox 35+
 */
@supports (-webkit-appearance: none) or (appearance: none) or ((-moz-appearance: none) and (mask-type: alpha)) {
  /* Show custom arrow */
  .custom-select::after {
    display: block;
  }
  /* Remove select styling */
  .custom-select select {
    padding-right: 2em; /* Match-01 */
    /* inside @supports so that iOS <= 8 display the native arrow */
    background: none; /* Match-04 */
    /* inside @supports so that Android <= 4.3 display the native arrow */
    border: 1px solid transparent; /* Match-05 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .custom-select select:focus {
    border-color: #aaa; /* Match-03 */
  }
}
/*Select Arrow*/
/*.custom-select::after {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 7px solid $text-primary-color;
	margin-top: -10px;
}*/
/*Select-css-compat*/
/* Adds Firefox < 35 support */
/* FIREFOX won't let us hide the native select arrow, so we have to make it wider than needed and clip it via overflow on the parent container. The percentage width is a fallback since FF 4+ supports calc() so we can just add a fixed amount of extra width to push the native arrow out of view. We're applying this hack across all FF versions because all the previous hacks were too fragile and complex. You might want to consider not using this hack and using the native select arrow in FF. Note this makes the menus wider than the select button because they display at the specified width and aren't clipped. Targeting hack via http://browserhacks.com/#hack-758bff81c5c32351b02e10480b5ed48e */
/* Show only the native arrow */
@-moz-document url-prefix() {
  /* Warning: this kills the focus outline style */
  .custom-select {
    overflow: hidden;
  }
  .custom-select::after {
    display: block;
  }
  /* Make the native select extra wide so the arrow is clipped. 1.5em seems to be enough to safely clip it */
  .custom-select select {
    overflow: -moz-hidden-unscrollable;
    padding-right: 0.4em;
    background: none; /* Match-04 */
    border: 1px solid transparent; /* Match-05 */
    /* Firefox < 4 */
    /*min-width: 6em;*/
    width: 130%;
    /* Firefox 4-15 */
    min-width: -moz-calc(0em);
    width: -moz-calc(100% + 2.4em);
    /* Firefox 16+ */
    min-width: 0em;
    width: calc(100% + 2.4em);
  }
  /* Firefox 35+ that supports hiding the native select can have a proper 100% width, no need for the overflow clip trick */
  @supports (mask-type: alpha) {
    .custom-select {
      overflow: visible;
    }
    .custom-select select {
      -moz-appearance: none;
      width: 100%;
      /*padding-right: 2em;*/ /* Match-01 padding-right */
    }
  }
}
/* Firefox focus has odd artifacts around the text, this kills that. See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring */
.custom-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #ececec;
}

/* IE 10/11+ - This hides native dropdown button arrow so it will have the custom appearance. Targeting media query hack via http://browserhacks.com/#hack-28f493d247a12ab654f6c3637f6978d5 - looking for better ways to achieve this targeting */
/* The second rule removes the odd blue bg color behind the text in the select button in IE 10/11 and sets the text color to match the focus style's - fix via http://stackoverflow.com/questions/17553300/change-ie-background-color-on-unopened-focused-select-box */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .custom-select select::-ms-expand {
    display: none;
  }
  .custom-select select:focus {
    border-color: #aaa; /* Match-03 */
  }
  select:focus::-ms-value,
  .custom-select select:focus::-ms-value {
    background: transparent;
    color: #9e9e9e;
    /*color: #222;  Match-02*/
  }
  .custom-select select {
    background: none; /* Match-04 */
    border: 1px solid transparent; /* Match-05 */
  }
  .custom-select::after {
    display: block;
  }
}
/*Microsoft Edge fix for the dropdown on selects*/
@supports (-ms-ime-align: auto) {
  .custom-select select::-ms-expand {
    display: none;
  }
  .custom-select select:focus {
    border-color: #aaa; /* Match-03 */
  }
  .custom-select select:focus::-ms-value {
    background: transparent;
    /*color: #222;  Match-02*/
  }
  .custom-select select {
    background: none; /* Match-04 */
    border: 1px solid transparent; /* Match-05 */
  }
  .custom-select::after {
    display: block;
  }
}
/*Select-Css-Theme*/
/* These are the "theme" styles for our button applied via separate button class, style as you like */
/* Set the background fallback to solid #fff so Firefox renders the <option> list readably. */
/*.custom-select {
	border: 1px solid #bbb;
	border-radius: .3em;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
}*/
.custom-select select {
  /* General select styles: change as needed */
  font-family: sans-serif;
  /*font-weight: 700;*/
  color: #444;
  line-height: 1.3;
  border-radius: 0.2em;
}

/* Hover style */
.custom-select:hover {
  /*border-color: #888;*/
}

/* Focus style */
.custom-select select:focus {
  /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
  /*box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;*/
  color: #ececec; /*Match-02*/
}

@supports (box-shadow: none) {
  .custom-select select:focus {
    outline: none;
  }
}
/* Set options to normal weight */
.custom-select option {
  font-weight: normal;
}

/*--------------------------------------------------------------
# MOBILE FORM STYLESHEET
--------------------------------------------------------------*/
.form-section__wrapper {
  position: relative;
  padding: 1em;
}
@media screen and (min-width: 576px) {
  .form-section__wrapper--bg {
    margin-left: 2em;
    margin-right: 2em;
  }
}
@media screen and (min-width: 768px) {
  .form-section__wrapper {
    padding: 2em 5.875em 1em;
  }
}
.form-section__heading {
  margin: 1em 0 1.5em;
  display: flex;
  font-size: 1.5rem;
  text-align: left;
  align-items: flex-start;
  justify-content: space-between;
}
.form-section__heading .svg-icon-wrapper {
  position: relative;
  font-size: 1rem;
  padding: 0.1em 0 0 1em;
  background-color: transparent;
}
.form-section__heading-hint {
  margin: -1.25em 0 1.5em;
  font-size: var(--font-small);
  text-align: left;
}
.form-section__heading--center {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.form-section__heading--sm {
  font-size: 1.3rem;
}
.form-section::after {
  content: "";
  display: block;
  border: 1px solid var(--black);
  opacity: 0.12;
}
.form-section:last-of-type::after {
  border: none;
}
.form-section--no-border::after {
  border: none;
}
.form-section.form-section--wizard::after {
  display: none;
}

.form-wrapper__header {
  max-width: 600px;
  margin: 0 auto;
  padding: 25px 50px 50px 50px;
}

.reg-form-error {
  display: none;
}

.form-label {
  position: absolute;
  left: 0;
  display: block;
  color: var(--form-label-color);
  z-index: var(--zindex-label);
}
.form-hint {
  position: absolute;
  margin: 0.5em 1.3em;
  font-size: var(--font-small);
  text-align: left;
  color: var(--form-hint-color);
}
.form-hint--select {
  margin-top: 0.2em;
}
.form-hint--on-focus {
  color: var(--black);
}
.form-hint--caps {
  position: relative;
}

.form-input {
  width: 100%;
}
.form-input--required {
  margin-left: 0.3em;
  color: var(--red);
  pointer-events: none;
}

.form-select--required {
  position: absolute;
  left: 0;
  z-index: 999;
  padding: 1em 1.2em;
}

.form-input::-webkit-input-placeholder {
  color: transparent;
}

.form-input.form__show__placeholder::-webkit-input-placeholder {
  color: #9e9e9e;
  padding-bottom: 5px;
}

.form-input.form__show__placeholder {
  margin-top: 14px;
  padding-top: 0.2em;
  padding-bottom: 1em;
}

.form-input-wrapper {
  width: 100%;
  height: var(--form-input-height);
  text-align: left;
}
.form-input-wrapper.promotions-wrapper, .form-input-wrapper.terms-wrapper {
  height: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 1em;
}
.form-input-wrapper.promotions-wrapper {
  margin-bottom: 1em;
}
.form-input-wrapper svg.icon.icon-cross,
.form-input-wrapper svg.icon.icon-checkmark {
  position: absolute;
  right: 0;
  bottom: 7px;
  opacity: 0;
}
.form-input-wrapper svg.icon.icon-cross.icon__bottom,
.form-input-wrapper svg.icon.icon-checkmark.icon__bottom {
  bottom: -30px;
}
.form-input-wrapper.select-wrapper svg.icon.icon-cross,
.form-input-wrapper.select-wrapper svg.icon.icon-checkmark {
  bottom: 17px;
}
.form-input-wrapper svg.icon.icon-cross {
  fill: var(--red);
}
.form-input-wrapper svg.icon.icon-checkmark {
  fill: #7bd976;
}
.form-input-wrapper svg.icon.icon-loading {
  stroke: #7bd976;
}

.form-input-narrow-wrapper {
  text-align: left;
  width: 100%;
}
.form-input-narrow-wrapper label {
  display: flex;
  gap: 0.3em;
  align-items: center;
  line-height: 1;
}
.form-input-narrow-wrapper.floating__input__filled label {
  transform: translate(0.25em, -1.2em) scale(1);
}
.form-input-narrow-wrapper.terms-wrapper {
  margin-bottom: 1em;
}
.form-input-narrow-wrapper.promotions-wrapper {
  margin-bottom: 1em;
}
.form-input-narrow-wrapper svg.icon.icon-cross,
.form-input-narrow-wrapper svg.icon.icon-checkmark {
  position: absolute;
  right: 0;
  bottom: 16px;
  opacity: 0;
}
.form-input-narrow-wrapper svg.icon.icon-cross.icon__bottom,
.form-input-narrow-wrapper svg.icon.icon-checkmark.icon__bottom {
  bottom: -30px;
}
.form-input-narrow-wrapper.select-wrapper {
  margin-bottom: 0.5em;
}
.form-input-narrow-wrapper.select-wrapper svg.icon.icon-cross,
.form-input-narrow-wrapper.select-wrapper svg.icon.icon-checkmark {
  bottom: 15px;
}
.form-input-narrow-wrapper svg.icon.icon-cross {
  fill: var(--red);
}
.form-input-narrow-wrapper svg.icon.icon-checkmark {
  fill: #7bd976;
}
.form-input-narrow-wrapper svg.icon.icon-loading {
  stroke: #7bd976;
}

.select-wrapper .svg-icon-wrapper {
  pointer-events: none;
}

.form__wrapper__relative {
  position: relative;
}
.form__wrapper__relative label {
  position: relative;
  top: -0.5em;
  display: block;
  padding: 0;
  text-align: left;
  color: #9e9e9e;
}
.form__wrapper__relative .form__error__modifier {
  margin-top: -40px;
}

.login-forgot-password {
  display: inline;
}
.login-forgot-password:hover {
  color: #ef4927;
}

.login-reg-btn:hover {
  background: #fafafa;
  cursor: pointer;
}

a#Login_Forgot_Password_mobile {
  position: relative;
  z-index: 99;
}

.login-Attemps-Container-Desktop {
  display: none;
}

.login-button-wrap {
  background-color: transparent;
  color: #e81859;
  text-align: center;
  height: 48px;
  line-height: 46px;
  border-radius: 3px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 45px;
  height: auto;
  min-height: 48px;
  line-height: normal;
}
.login-button-wrap a {
  color: #e81859;
  text-decoration: none;
}
.login-button-wrap a {
  display: block;
  padding: 15px 10px;
}

/*FRED - change the name of login-submit mixin*/
.form-button, .login-submit {
  border-radius: 3px;
  display: block;
  font-size: 18px;
  line-height: 50px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.5);
  height: 50px;
  width: 100%;
  margin: 0 auto 20px;
  background-color: #e81859;
  color: #ececec;
  /*display: inline;*/
  margin: 0;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  background-color: #e81859;
  text-decoration: none;
  -webkit-appearance: none;
}
.form-button:focus, .login-submit:focus {
  outline: none;
}
.form-button:hover, .login-submit:hover {
  background-color: #ef4927;
}

.login-submit {
  text-decoration: none;
}
.login-submit svg.icon {
  position: absolute;
  color: #ececec;
  display: inline-block;
  width: 2em;
  height: 100%;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  padding-left: 10px;
}

.form-sign-up a {
  /*color: $brand-secondary-btn-color;*/
  text-decoration: underline;
  padding-right: 20px;
}

.register-terms-link {
  color: #e81859;
  position: relative;
  z-index: 999;
}

.register-privacy-link {
  color: #e81859;
  position: relative;
  z-index: 999;
}

.form-checkbox-tc {
  width: 100%;
  height: 48px;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  border: none;
}
.form-checkbox-tc:checked + label:before {
  border: 2px solid #7bd976;
  background: url(https://auth.jackpotcitycasino.com/images/app/checkmark.svg) no-repeat top -2px left -2px;
  background-size: 20px;
}

.checkbox-remember-me-text-registration.notvalid .form-checkbox-border {
  border-color: var(--red) !important;
}

.checkbox-remember-me-text-registration {
  color: #ececec;
  font-size: 16px;
  margin-bottom: 36px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: left;
  color: #9e9e9e;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkbox-remember-me-text-registration .form-checkbox-border {
  width: 18px;
  height: 18px;
  border: 2px solid var(--text-body);
  border-radius: 3px;
  transition: border 0.2s;
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer !important;
}
.checkbox-remember-me-text-registration .checkbox-checkmark {
  width: 20px;
  height: 20px;
  margin-left: -2px;
  margin-top: -2px;
  border-radius: 3px;
  fill: var(--white);
  background-color: #7bd976;
}
.checkbox-remember-me-text-registration.notvalid .checkbox-checkmark {
  display: none !important;
}
.checkbox-remember-me-text-registration label {
  font-family: "PT Sans", sans-serif;
}

label#rememberMe-label-registration {
  color: #9e9e9e;
  position: relative;
  font-size: 14px;
  padding-left: 16px;
  cursor: pointer;
}

#Register_RememberMe_Label_Registration {
  padding-top: 0.5em;
}

.checkbox-remember-me-text {
  color: #ececec;
  font-size: 16px;
  margin-bottom: 20px;
  width: 100%;
  z-index: 10;
}
.checkbox-remember-me-text .form-checkbox-border {
  width: 18px;
  height: 18px;
  border: 2px solid var(--grey);
  border-radius: 3px;
  transition: border 0.2s;
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer !important;
}
.checkbox-remember-me-text .checkbox-checkmark {
  width: 20px;
  height: 20px;
  margin-left: -2px;
  margin-top: -2px;
  border-radius: 3px;
  fill: var(--white);
  background-color: var(--brand-primary-color);
}
.checkbox-remember-me-text.notvalid .checkbox-checkmark {
  display: none !important;
}

label#rememberMe-label {
  color: #333333;
  position: relative;
  /*z-index: -1;*/
}

.terms-wrapper .form-checkbox-wrapper {
  width: 100%;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  border: none;
}
.terms-wrapper .form-checkbox-wrapper .form-checkbox-border {
  width: 20px;
  height: 20px;
  border: 2px solid #7bd976;
  border-radius: 3px;
  transition: border 0.2s;
}
.terms-wrapper .form-checkbox-wrapper .form-checkbox-border .checkbox-checkmark {
  opacity: 1;
  margin: 0 auto;
  left: -3px;
  bottom: 5px;
  width: 1.4em;
  height: 1.6em;
  fill: #7bd976;
  z-index: -1;
  position: relative;
}
.terms-wrapper .form-checkbox-wrapper .notvalid {
  border-color: var(--red) !important;
}
.terms-wrapper .form-checkbox-wrapper .notvalid .checkbox-checkmark {
  opacity: 0;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .terms-wrapper .form-checkbox-wrapper {
    margin-top: -10px;
  }
}

#Register_TandC_Label {
  width: 100%;
}

#Register_TandC_Label {
  width: 100%;
}

.promotions-wrapper .promotions-checkbox-wrapper {
  width: 100%;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  border: none;
}
.promotions-wrapper .promotions-checkbox-wrapper .promotions-checkbox-border {
  width: 20px;
  height: 20px;
  border: 2px solid #7bd976;
  border-radius: 3px;
  transition: border 0.2s;
}
.promotions-wrapper .promotions-checkbox-wrapper .promotions-checkbox-border .checkbox-checkmark {
  opacity: 1;
  margin: 0 auto;
  left: -3px;
  bottom: 5px;
  width: 1.4em;
  height: 1.6em;
  fill: #7bd976;
  z-index: -1;
  position: relative;
}
.promotions-wrapper .promotions-checkbox-wrapper .notvalid {
  border-color: var(--red) !important;
}
.promotions-wrapper .promotions-checkbox-wrapper .notvalid .checkbox-checkmark {
  opacity: 0;
}

/* could be moved*/
.narrow-wrapper-outer {
  position: relative;
  /*Fred - investigate this width - what is causing 33.3 not to work?*/
  width: 32%;
  height: var(--form-input-height);
  display: inline-block;
  /*height: 56.8px;*/
}
.narrow-wrapper-outer.form__narrow__padding {
  padding-left: 5px;
  padding-right: 5px;
}
.narrow-wrapper-outer.form__narrow__margin {
  margin-left: 5px;
  margin-right: 5px;
}
.narrow-wrapper-outer .form-input-narrow-wrapper {
  height: var(--form-input-height);
}

.medium-wrapper-outer {
  width: 66%;
  display: inline-block;
}

.form-group {
  position: relative;
  margin-bottom: 2.5em;
}
.form-group.form-input-error {
  margin-bottom: 1.25em;
}
.form-group.form-input-success .form-input:focus .form-hint--caps {
  position: absolute;
}
.form-group--half-mb {
  margin-bottom: 1.25em;
}
.form-group .form-input-error > span .checkbox__tick {
  border-color: var(--red);
}
.form-group-checkbox {
  margin-bottom: 1em;
}
.form-group-checkbox .form-error {
  margin: 0 0 1.25em 3.5em;
}
.form-group-checkbox.form-input-error {
  margin-bottom: 0.5em;
}
.form-group-radio {
  display: flex;
  margin-bottom: 0.5em;
}
.form-group.agree-terms {
  margin-bottom: 12px;
}
.form-group.agree-terms .form-error {
  position: relative;
}
.form-group.promotional-offers {
  margin-bottom: 20px;
}
.form-group.promotional-offers .form-error {
  position: relative;
}

select {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #e5e5e5;
  border-radius: 0;
  outline: none;
  width: 100%;
  box-shadow: none;
  transition: all 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  -khtml-appearance: none;
  position: relative;
}
select.form__input__centre {
  text-align-last: center;
}

.error, .form-error {
  position: relative;
  display: none;
  margin: 0.5em 1.3em;
  font-size: var(--font-small);
  text-align: left;
  color: var(--red);
}

.form-error {
  background: transparent;
  box-shadow: none;
}
.form-error.form__error__mt {
  margin-top: -40px;
}

.form-logo-container {
  margin-bottom: 20px;
  position: relative;
}

.form-error-options {
  text-align: left;
  display: none;
  margin-top: 15px;
  border-radius: 3px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
}
.form-error-options .form-error-options-title {
  border-bottom: 2px solid var(--red);
}
.form-error-options .form-error-options-list {
  margin-top: -2px;
  padding: 1px 0px 1px 0px;
}
.form-error-options p {
  margin: 2px 0px 2px 0px;
  padding: 4px 4px 4px 9px;
  color: #ebebeb;
}
.form-error-options ul {
  margin: 8px 0px 8px 0px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  list-style-type: none;
  padding-left: 0px;
  height: 80px;
  overflow: hidden;
  overflow-y: scroll;
}
.form-error-options li {
  line-height: 135%;
  padding-left: 10px;
}
.form-error-options li:focus,
.form-error-options li li:hover,
.form-error-options li li:active {
  background-color: #ef4927;
}

/*--------------------------------------------------------------
    # FLOATING LABELS
--------------------------------------------------------------*/
.form-floating {
  position: relative;
  display: inline-block;
  /* Input & Select */
  /* Input */
}
.form-floating-input, .form-floating-select {
  padding: 1em 1em 0.3em;
  border: none;
  border-radius: var(--form-input-border-radius);
  background-color: var(--bg-form-input);
  cursor: text;
}
.form-floating-input:focus, .form-floating-select:focus {
  outline: none;
  border-bottom: 2px solid var(--black);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-floating-input {
  position: relative;
  height: 100%;
  border-radius: var(--form-input-border-radius);
}
@supports (-ms-ime-align: auto) {
  .form-floating-input {
    padding: 0;
  }
}

.form-floating-select {
  height: 100%;
  padding: 1em 1em 0.3em;
  color: var(--form-label-color);
}

.form-floating-input-input {
  border: none;
}

/* Validations */
.form-input {
  /* Error */
  /* Success */
}
.form-input-error svg.icon.icon-cross, .form-input-success svg.icon.icon-cross {
  opacity: 1;
}
.form-input-error .form-floating-input,
.form-input-error .form-floating-select, .form-input-success .form-floating-input,
.form-input-success .form-floating-select {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-input-error .form-floating-input, .form-input-error .form-floating-select {
  border-bottom: 2px solid var(--red);
}
.form-input-error .form-floating-input:focus, .form-input-error .form-floating-select:focus {
  border-bottom: 2px solid var(--red);
}
.form-input-error .form-label {
  color: var(--red);
}
.form-input-success .form-floating-input,
.form-input-success .form-floating-select {
  border-bottom: 2px solid var(--green);
  color: var(--grey4);
}
.form-input-success .form-floating-input:focus,
.form-input-success .form-floating-select:focus {
  border-bottom: 2px solid var(--green);
}
.form-input-success .form-floating-select-inactive {
  color: var(--grey4);
}

.form-input-inprogress svg.icon.icon-loading {
  opacity: 1;
}
.form-input-inprogress .form-floating-input, .form-input-inprogress .form-floating-select {
  border-bottom: 2px solid #7bd976;
}

.form-floating-label {
  display: inline-flex;
  height: var(--form-input-height);
  padding: 1em;
  align-items: center;
  transition: transform 0.3s, font-size 0.3s;
  line-height: 1;
  cursor: default;
  pointer-events: none;
}
.form-floating-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating__input__filled .form-floating-label {
  transform: translate(0.25em, -1.25em) scale(1);
  font-size: var(--font-small);
}

.floating__select__filled .form-floating-label {
  transform: translate(-0.25em, -1em) scale(0.9);
}

.floating__select__filled.form-floating-label-focus .form-floating-label {
  color: #333333;
}

/*--------------------------------------------------------------
    # END FLOATING LABELS
--------------------------------------------------------------*/
[data-divider-after-field]::after {
  content: "";
  display: block;
  margin: 1em 0;
  border-top: 1px solid var(--black);
  opacity: 0.12;
}

[data-divider-after-field=big]::after {
  margin: 3em 0 2em;
}

[data-header-big] {
  text-align: center;
  font-weight: bold;
}

.medium-wrapper-outer--mobile-number {
  float: right;
  margin-right: 2px;
}

.editable-override {
  display: flex;
  justify-content: space-between;
}

.editable-override > .narrow-wrapper-outer > .form-input-narrow-wrapper {
  position: relative;
}

.editable-override > .narrow-wrapper-outer {
  /*float: left;*/
  width: 30%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

@-moz-document url-prefix() {
  input[type=number] {
    -moz-appearance: textfield;
  }
}
.desktop select.form-floating-select.year-of-birth {
  background-position-x: 88%;
}

.desktop .form-input-narrow-wrapper.form-input-success select.form-floating-select.form__input__move,
.desktop .form-input-narrow-wrapper.form-input-error select.form-floating-select.form__input__move {
  background-position: 78% center;
}

.flex-col {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
@media screen and (max-width: 575px) {
  .flex-col--column {
    flex-direction: column;
    gap: 0;
  }
}
.flex-basis-35 {
  flex-basis: 35%;
}
.flex-basis-65 {
  flex-basis: 65%;
}

/*------------------------------------*\
  BASE
\*------------------------------------*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--font-family-roboto);
  background-color: var(--bg-body);
  color: var(--text-body);
}

.body-bg {
  background-position: bottom;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

a {
  display: inline-block;
}
a.link--branded {
  color: var(--brand-secondary-color);
}
a.link--branded:hover {
  color: var(--brand-secondary-color);
  filter: brightness(120%);
  transition: 0.3s;
}
a:hover {
  color: var(--brand-primary-color);
}
a.btn:hover {
  color: var(--text-primary-color);
}

.page-loader {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-body);
  border-top: 10px solid var(--brand-secondary-color);
  z-index: 99;
}

.container {
  height: 100vh;
  text-align: center;
  border-top: 10px solid var(--brand-secondary-color);
}

.wrapper {
  max-width: var(--form-width);
  margin: 2.625em auto 0;
}
.wrapper__header {
  margin: 0 auto 1em;
  background-color: transparent;
}
.wrapper__header-logo {
  margin-bottom: 0.5em;
}
.wrapper__header-logo-img {
  min-width: 8vw;
  width: 160px;
  max-height: 80px;
}
.wrapper__form {
  border-top-left-radius: var(--form-wrapper-radius);
  border-top-right-radius: var(--form-wrapper-radius);
  background-color: var(--bg-form);
}
.wrapper--lg, .wrapper--lg .footer {
  max-width: var(--form-width-lg);
}
@media screen and (min-width: 768px) {
  .wrapper__header {
    margin-bottom: 3em;
  }
  .wrapper__header-logo {
    margin-bottom: 1em;
  }
}

:-moz-ui-invalid {
  box-shadow: none;
}

button,
input,
optgroup,
select,
textarea,
label {
  font-family: var(--font-family-roboto);
}

use {
  pointer-events: none;
}

svg {
  width: 1.5em;
  height: 1.5em;
  color: var(--svg-color);
}
svg.svg-color {
  color: var(--green);
}

.svg-icon-wrapper {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  height: 100%;
  padding: 12px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  z-index: var(--zindex-label);
}

a, p, h1, h2, h3 {
  color: var(--text-body);
}

/*button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}*/
.form-input::-webkit-input-placeholder {
  color: transparent;
}

.desktop select.form-floating-select {
  /*background-image: $down-arrow;*/
  background-position: 96% center;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.desktop .form-input-wrapper.form-input-success select.form-floating-select, .desktop .form-input-wrapper.form-input-error select.form-floating-select {
  background-position: 93% center;
}

.desktop .form-input-narrow-wrapper.form-input-success select.form-floating-select.form__input__move, .desktop .form-input-narrow-wrapper.form-input-error select.form-floating-select.form__input__move {
  background-position: 78% center;
}

.login-text {
  display: none;
}

.desktop .form-input {
  width: 100%;
}

.desktop .form-floating {
  position: relative;
  display: inline-block;
}

.desktop .login-submit svg.icon {
  color: var(--text-primary-color);
  stroke: currentColor;
  fill: currentColor;
}

.desktop .login-button-wrap {
  background-color: transparent;
  color: var(--brand-secondary-btn-color);
  text-align: center;
  height: 48px;
  line-height: 46px;
  border-radius: 3px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 45px;
}

.desktop .form-input-wrapper svg.icon.icon-cross, .desktop .form-input-wrapper svg.icon.icon-checkmark {
  opacity: 0;
}

.login-Attemps-Wrapper, .icon icon-cross, .icon icon-checkmark, .form-error {
  display: none;
}

.desktop .login-forgot-password {
  color: var(--brand-bg-color);
}

.desktop .form-sign-up a {
  color: var(--brand-secondary-btn-color);
}

.windows-eye {
  fill: none;
  stroke: currentColor;
  stroke-width: 50;
  stroke-miterlimit: 10;
  stroke-opacity: 0.5;
}

.shadow-sm {
  box-shadow: 0 2px 6px var(--shadow-color);
}

/*------------------------------------*\
  COMPONENTS
\*------------------------------------*/
.alert {
  display: flex;
  padding: 0 1em;
  margin: 1em 0;
  border-radius: 4px;
  line-height: 1.5;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  border: 0.1em var(--info-text) solid;
  border-left-width: 0.4em;
}
.alert__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.alert__icon svg {
  font-size: 1.2rem;
}
.alert__icon--sm svg {
  font-size: 0.875rem;
}
.alert__message {
  margin: 0;
  font-size: 13px;
  text-align: left;
}
.alert__message-icon {
  margin-bottom: -0.5em;
  color: inherit;
}
.alert--error {
  border-color: var(--red);
  color: var(--text-body);
  fill: var(--red);
}
.alert--error .alert__icon svg {
  color: var(--red);
}
.alert--error-danger {
  font-size: var(--font-medium);
  color: var(--red);
  fill: var(--red);
  background-color: transparent;
}
.alert--info {
  border-color: var(--info-text);
  color: var(--bg-info-text);
  background-color: var(--bg-info-text);
}
.alert--info p {
  margin: 0;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--grey5);
}
.alert--info-primary {
  border-color: var(--blue);
  font-size: var(--font-medium);
  color: var(--text-body);
  fill: var(--blue);
  background-color: transparent;
}
.alert--no-left--border {
  border-left-width: 0.1em;
}

.login-Attemps-Container-Mobile .login-Country-Blocked-Wrapper {
  display: none;
}
.login-Attemps-Container-Mobile .login-Country-Blocked-Wrapper .Login-Attempts-Message-exceeded {
  display: none;
}
.login-Attemps-Container-Mobile .login-Hodor-Error-Wrapper {
  display: none;
}
.login-Attemps-Container-Mobile .login-Hodor-Error-Wrapper .Login-Attempts-Message-exceeded {
  display: none;
}
.login-Attemps-Container-Mobile .Login-Migration-Message {
  display: none;
}
.login-Attemps-Container-Mobile .Login-Migration-Message p {
  color: #000000;
}

.btn {
  display: inline-block;
  margin: 1em auto;
  padding: 0.75em 1.5em;
  line-height: var(--button-line-height);
  font-size: var(--font-medium);
  color: var(--text-body);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn--primary {
  color: var(--text-primary-color);
  background: var(--brand-button);
  background-color: var(--brand-secondary-color);
}
.btn--secondary {
  color: var(--brand-secondary-color);
  border: 1px solid var(--brand-secondary-color);
}
.btn--sm {
  max-width: 355px;
  width: 100%;
  padding: 0.675em 4em;
  font-size: var(--font-medium);
}
.btn--med {
  max-width: 70%;
  min-width: 325px;
}
.btn--full {
  width: 100%;
}
.btn:hover, .btn:focus {
  outline: none;
  filter: brightness(120%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 1.125rem;
    padding: 0.75em 4em;
  }
  .btn--sm {
    font-size: var(--font-medium);
  }
}

/*--------------------------------------------------------------
# Form Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Gradient Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Flexbox Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer {
  margin: 0 auto;
  max-width: var(--form-width);
  padding: 1em;
  text-align: center;
  font-family: var(--font-family-pt-sans);
  font-size: 1rem;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background: -webkit-linear-gradient(var(--footer-gradient-direction), var(--footer-gradient-color-stops));
  background: -moz-linear-gradient(var(--footer-gradient-direction), var(--footer-gradient-color-stops));
  background: -o-linear-gradient(var(--footer-gradient-direction), var(--footer-gradient-color-stops));
  background: linear-gradient(var(--footer-gradient-direction), var(--footer-gradient-color-stops));
  line-height: 17px;
  background-color: var(--footer-bg-color, var(--brand-primary-color));
}
.footer__promo-banner {
  width: 100vw;
  max-width: var(--form-width);
  padding: 0.5em 1em;
  margin: -1em -1em 2em;
  background-color: #2d2b37;
}
.footer__trust-queues {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__trust-queues-link {
  width: 100%;
  max-width: 33%;
}
.footer__trust-queues-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.footer__trust-queues-inactiveLink {
  pointer-events: none;
  cursor: default;
}
.footer__live-chat {
  padding-top: 1em;
}
.footer__live-chat-link {
  display: inline-flex;
  min-width: 20%;
  height: 50px;
  padding: 0.5em 2.175em;
  border: 2px solid var(--white);
  border-radius: var(--form-input-border-radius);
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-primary-color);
  cursor: pointer;
}
.footer__live-chat-link:hover {
  color: var(--text-primary-color);
}
.footer__live-chat-link-icon {
  margin-right: 0.5em;
  fill: var(--text-primary-color);
}
.footer__promo-title, .footer__promo-link, .footer__promo-copy {
  color: var(--white);
}
.footer__promo-title:hover, .footer__promo-link:hover, .footer__promo-copy:hover {
  color: var(--white);
}
.footer__promo-title {
  font-weight: bold;
}
.footer__promo-link {
  color: inherit;
  text-decoration: none;
}
.footer__promo-link:hover {
  text-decoration: underline;
}
.footer__promo-link::after {
  content: "|";
  margin-left: 0.5em;
  margin-right: 0.3em;
}
.footer__promo-link:last-child::after {
  content: none;
}
.footer__promo-copy {
  font-family: var(--font-family-roboto);
  font-size: var(--font-medium);
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 2em 1.875em;
  }
  .footer__promo-banner {
    width: auto;
    margin: -2em -1.875em 2em;
  }
}

/*.mobile .footer {
    margin: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    .footer {
        &__trust-queues {
            flex-wrap: wrap;

            &-link {
                @include flex-direction(column);
                @include flex-basis(33%);
            }
        }

        &__live-chat {
            padding-top: 1em;
        }
    }
}*/
.form-wrapper--register .footer {
  margin-top: 4em;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Brand Overrides */
@media screen and (max-width: 575px) {
  .JNL .footer__trust-queues,
  .JCL .footer__trust-queues {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .JNL .footer__trust-queues-link,
  .JCL .footer__trust-queues-link {
    max-width: 42%;
  }
}
/* Spinners */
.loader {
  position: relative;
  display: inline-block;
  font-size: 10px;
  margin: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-secondary-btn-color);
  background: linear-gradient(to right, var(--brand-secondary-color) 10%, rgba(115, 40, 48, 0) 42%);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader-container {
  display: none;
  width: 50px;
  height: 50px;
  margin: 1em auto;
}
.loader::before, .loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  border-radius: 80% 0 0 0;
}
.loader::after {
  right: 0;
  bottom: 0;
  width: 75%;
  height: 75%;
  margin: auto;
  border-radius: 50%;
  background-color: var(--bg-form);
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Tooltips */
[data-tooltip] {
  position: absolute;
  display: none;
  max-width: 335px;
  width: 88%;
  padding: 1.5em;
  align-items: center;
  justify-content: center;
  font-size: var(--font-small);
  animation-fill-mode: forwards;
  background-color: var(--grey3);
  border-radius: 2px;
  opacity: 0;
  text-align: left;
  box-shadow: 0 0.1em 0.3em var(--form-hint-color);
  transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1) transform 0s 75ms cubic-bezier(0, 0, 0.2, 1);
  will-change: opacity, transform;
  color: var(--white);
  line-height: 1.5;
  z-index: var(--zindex-tooltip);
}
@media screen and (min-width: 768px) {
  [data-tooltip] {
    right: 10%;
    max-width: 365px;
    width: inherit;
    padding: 1em 1.5em;
  }
}
[data-tooltip].tooltip--show {
  display: flex;
  opacity: 1;
  transition: opacity 150ms cubic-bezier(0, 0, 0.2, 1) transform 0s 150ms cubic-bezier(0, 0, 0.2, 1);
}
[data-tooltip]:focus {
  outline: none;
}
[data-tooltip]:hover::after {
  transition-delay: 0.2s;
}
[data-tooltip] svg {
  pointer-events: none;
}

.tooltip--bottom-right {
  width: inherit;
  top: 5em;
  right: -2%;
  margin: 1.5em;
}
@media screen and (min-width: 768px) {
  .tooltip--bottom-right {
    max-width: 404px;
    top: 6em;
    right: 10%;
  }
}
.tooltip-arrow {
  max-width: 100%;
  top: 0;
  right: 0;
  width: 100%;
  position: relative;
}
.tooltip-arrow--top::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 0.3em);
  top: -2em;
  width: 0;
  height: 0;
  border: 1em solid transparent;
  border-bottom-color: var(--grey3);
}

@keyframes tooltop-fade-in {
  from {
    transform: scale(0.9, 0.9) translateX(-50%);
    opacity: 0;
  }
  to {
    transform: scale(1, 1) translateX(-50%);
    opacity: 1;
  }
}
@keyframes tooltop-fade-out {
  to {
    transform: scale(1, 1) translateX(-50%);
    opacity: 0;
  }
}
.address-autocomplete__btn {
  height: 100%;
  bottom: 0;
  margin: 0 1.5em;
  padding: 0;
  transition: transform 0.3s, font-size 0.3s;
  cursor: pointer;
}
.address-autocomplete__btn--link {
  font-size: var(--font-medium);
  background-color: transparent;
  text-decoration: underline;
}
.address-autocomplete__btn--right {
  position: absolute;
  right: -20px;
  top: 90%;
}

.suggestion-list {
  position: absolute;
  width: 100%;
  padding-left: 0;
  margin: 0;
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  list-style: none;
  z-index: 1000;
}
.suggestion-list__item {
  padding: 0.8em 1em;
  border-bottom: 1px solid #e5e5e5;
  background-color: var(--bg-form);
  cursor: pointer;
}
.suggestion-list__item-link {
  color: inherit;
}
.suggestion-list__item:hover {
  background-color: var(--bg-form-input);
}
.suggestion-list__item:last-child {
  border-bottom: none;
  text-align: center;
  color: var(--brand-primary-color);
  border-radius: 0 0 4px 4px;
  cursor: default;
}

/*.floating__input__filled {
    .address-autocomplete {
        &__btn {
            transform: translate(0.3em, -1em) scale(1);
            font-size: var(--font-small);
        }
    }
}*/
/*------------------------------------*\
  FORM ELEMENTS
\*------------------------------------*/
/* NOTE : NEW FORM REBUILD
    HEY B - this is my version of the start validations in dark grey - prob wrong colour :)
    PS: the class '.form-input-start' is set /checked in .js (so beware of any refactoring implications..)
    */
/*OLD OUTER ELEMENT STATE*/
.form-input-wrapper.form-floating.form-input-start {
  /* not sure if we are deleting these ? not in the design.. */
  /* NEW mutivalidation messages */
  /* NEW mutivalidation mini icons */
}
.form-input-wrapper.form-floating.form-input-start svg.icon.icon-cross {
  opacity: 0;
}
.form-input-wrapper.form-floating.form-input-start svg.icon.icon-checkmark {
  opacity: 0;
}
.form-input-wrapper.form-floating.form-input-start .form-floating-input, .form-input-wrapper.form-floating.form-input-start .form-floating-select {
  border-bottom: 2px solid #2a2a2a !important; /* dark gray */
  color: #2a2a2a; /* dark gray */
}
.form-input-wrapper.form-floating.form-input-start .form-floating-select-inactive {
  color: #2a2a2a; /* dark gray */
}
.form-input-wrapper.form-floating.form-input-start .desktop.form-error-empty.errorTxt {
  color: #2a2a2a !important; /* dark gray */
}
.form-input-wrapper.form-floating.form-input-start svg.icon-right-sml, .form-input-wrapper.form-floating.form-input-start svg.icon-wrong-sml {
  opacity: 0;
}

/* NEW MULTI-VALIDATIONS DIV */
.form-error.form-input-start {
  /* not sure if we are deleting these ? not in the design.. */
  /* NEW mutivalidation messages */
  /* NEW mutivalidation mini icons */
}
.form-error.form-input-start svg.icon.icon-cross {
  opacity: 0;
}
.form-error.form-input-start svg.icon.icon-checkmark {
  opacity: 0;
}
.form-error.form-input-start .form-floating-input, .form-error.form-input-start .form-floating-select {
  border-bottom: 2px solid #2a2a2a !important; /* dark gray */
  color: #2a2a2a; /* dark gray */
}
.form-error.form-input-start .form-floating-select-inactive {
  color: #2a2a2a; /* dark gray */
}
.form-error.form-input-start .form-error-empty.errorTxt {
  color: #2a2a2a !important; /* dark gray */
}
.form-error.form-input-start svg.icon-right-sml, .form-error.form-input-start svg.icon-wrong-sml {
  opacity: 0;
}

/* ALL other mutivalidation UI elements */
.form-error__sentence {
  display: flex;
  margin: 0;
  align-items: center;
}
.form-error__sentence--error {
  color: var(--red);
}
.form-error__sentence--success {
  color: var(--green);
}
.form-error-message-iconvalidation {
  height: 20px;
  display: flex;
  align-items: center;
}
.form-error--inline {
  position: relative;
  margin: 0.5em 0.8em;
}
.form-error--pop-up {
  position: absolute;
  width: 100%;
  margin: 0;
  padding: 0 0.8em;
  font-size: var(--font-small);
  text-align: left;
  border-radius: 0 0 4px 4px;
  border: none;
  box-shadow: 0px 1px 3px rgba(0, 0, 51, 0.2);
  background-color: var(--white);
  z-index: var(--zindex-dropdown);
}

.form-error-username.block + .form-error--inline {
  margin-top: 2.5em;
}

.form-group .form-error--inline {
  margin-bottom: -2.5em;
}
.form-group.form-input-success .form-error--inline {
  margin-bottom: -2.5em;
}
.form-group.form-input-error .form-error--inline {
  margin-bottom: -0.8em;
}

svg .icon--right-sml {
  fill: var(--green);
}
svg .icon--wrong-sml {
  fill: var(--red);
}

/* ============== END NEW REBUILD mutivalidations CSS by Neil.M ======================== */
.checkbox {
  position: relative;
  display: inline-flex;
  margin: 0;
  color: rgba(0, 0, 0, 0.87);
  font-size: 16px;
  line-height: 1.5;
  align-items: center;
  z-index: 0;
  /* Input */
  /* Span */
}
.checkbox__wrapper {
  display: flex;
  align-items: center;
  font-size: var(--font-small);
  cursor: pointer;
}
.checkbox > input {
  position: absolute;
  left: -0.7em;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  box-shadow: none;
  outline: none;
  pointer-events: none;
  z-index: -1;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /* Checked, Indeterminate */
}
.checkbox > input:checked + span .checkbox__tick, .checkbox > input:indeterminate + span .checkbox__tick {
  border-color: var(--green);
  background-color: var(--white);
}
.checkbox > input:checked + span .checkbox__tick::after, .checkbox > input:indeterminate + span .checkbox__tick::after {
  border-color: var(--green);
}
.checkbox > input:checked + span .checkbox__tick--brand, .checkbox > input:indeterminate + span .checkbox__tick--brand {
  border-color: var(--brand-secondary-color);
  background-color: var(--brand-secondary-color);
}
.checkbox > input:checked + span .checkbox__tick--brand::after, .checkbox > input:indeterminate + span .checkbox__tick--brand::after {
  border-color: var(--white);
}
.checkbox > input:indeterminate + span .checkbox__tick::after {
  border-left: none;
}
.checkbox > span .checkbox__tick {
  display: flex;
  min-width: var(--checkbox-size);
  width: var(--checkbox-size);
  min-height: var(--checkbox-size);
  height: var(--checkbox-size);
  margin: 0 2em 0 0px;
  border: 2px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-color: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  vertical-align: middle;
  align-items: flex-start;
  justify-content: start;
  padding: 0;
  /* Checkmark */
}
.checkbox > span .checkbox__tick::after {
  content: "";
  position: absolute;
  display: block;
  top: 4px;
  left: 1px;
  width: 12px;
  height: 6px;
  border: 2px solid transparent;
  border-right: none;
  border-top: none;
  transform: translate(3px, 4px) rotate(-45deg);
  position: relative;
  display: block;
  top: -0.1em;
  left: -0.15em;
  width: 1em;
  height: 0.5em;
}
.checkbox--validation > span .checkbox__tick {
  border-color: var(--red);
}

/* Active */
.checkbox > input:checked:active + span .checkbox__tick {
  border-color: var(--green);
  background-color: transparent;
}
.checkbox > input:checked:active + span .checkbox__tick--brand {
  border-color: var(--brand-secondary-color);
  background-color: var(--brand-secondary-color);
}

.radio {
  position: relative;
  display: flex;
  margin: 0.3em 0;
  flex-grow: 1;
  color: rgba(0, 0, 0, 0.87);
  font-size: 16px;
  line-height: 1.5;
  z-index: 0;
  /* Input */
  /* Span */
  /* Hover and Focus */
}
.radio > input {
  position: absolute;
  display: block;
  top: -2px;
  left: -0.375em;
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  box-shadow: none;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  outline: none;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: -1;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /* Checked */
}
.radio > input:checked {
  background-color: var(--brand-secondary-color);
}
.radio > input:checked + span::before {
  border-color: var(--brand-secondary-color);
}
.radio > input:checked + span::after {
  transform: translate(5px, 5px) scale(1);
}
.radio > span {
  display: flex;
  width: auto;
  font-size: var(--font-small);
  align-items: center;
  cursor: pointer;
  /* Circle */
  /* Check */
}
.radio > span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  margin: 3px 12px 5px -1px;
  border: 2px solid;
  border-color: var(--grey2);
  border-radius: 50%;
  vertical-align: middle;
  transition: border-color 0.2s;
}
.radio > span::after {
  content: "";
  position: absolute;
  display: block;
  top: 3px;
  left: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand-secondary-color);
  transform: translate(5px, 5px) scale(0);
  transition: transform 0.2s;
}
.radio:hover > input {
  opacity: 0.4;
}
.radio:hover > input:focus {
  opacity: 0.16;
}
.radio > input:focus {
  opacity: 0.12;
}
.radio--full {
  width: 100%;
}

/* Active */
/*.checkbox {
    > input {
        &:active {
            opacity: 1;
            transform: scale(0);
            transition: transform 0s, opacity 0s;

            + span {
                &::before {
                    border-color: var(--brand-primary-color);
                }
            }
        }
    }
}
*/
.combobox input {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  scroll-margin: 1em;
  cursor: pointer;
}
.combobox-list {
  position: relative;
}
.combobox-list::before {
  position: absolute;
  top: 50%;
  right: 1.25em;
  width: 0;
  height: 0;
  content: "";
  -o-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  -ms-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  -moz-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  transform: rotate(0deg) translate3d(0px, -50%, 0px);
  border-color: #6c7a86 transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0;
  transition: 0.3s ease-out;
  transform-origin: center top;
  z-index: 1;
}
.combobox ul[role=listbox] {
  position: absolute;
  display: none;
  width: 100%;
  max-height: 350px;
  margin: 0;
  padding: 0;
  background-color: var(--bg-form);
  overflow: auto;
  overflow-x: hidden;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  list-style: none;
  z-index: 1000;
}
.combobox ul[role=listbox] li[role=option] {
  padding: 0.8em 1em;
  cursor: pointer;
}

/* focus and hover styling */
.combobox.focus::before {
  transform: rotate(180deg);
}
.combobox ul[role=listbox] [role=option]:hover, .combobox ul[role=listbox].focus [role=option][aria-selected=true] {
  color: var(--text-body);
  background-color: var(--bg-form-input);
}

[aria-expanded=true] ~ [role=listbox] {
  border: 1px solid #e5e5e5;
}

.wizard .form-wrapper {
  padding-bottom: 2em;
}
.wizard .form-wrapper .form-section__heading {
  text-align: center;
  justify-content: center;
}
.wizard .wrapper__header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wizard .wrapper__header-action {
  position: absolute;
  left: 1em;
  cursor: pointer;
}

/*------------------------------------*\
  UTILITIES
\*------------------------------------*/
/* Display */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

/* Visibility */
.hidden,
[data-display=hidden] {
  display: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* Disabled */
.disabled,
.selectr-disabled,
.combobox.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.disabled .selectr-selected,
.selectr-disabled .selectr-selected,
.combobox.disabled .selectr-selected {
  cursor: not-allowed;
}
.disabled .selectr-selected:active,
.selectr-disabled .selectr-selected:active,
.combobox.disabled .selectr-selected:active {
  pointer-events: none;
}
.disabled:active,
.selectr-disabled:active,
.combobox.disabled:active {
  pointer-events: none;
}

.combobox.disabled input {
  cursor: not-allowed;
}

.disabledExtra {
  opacity: 0.4;
  cursor: not-allowed;
}
.disabledExtra:active {
  pointer-events: none;
}

select.disabled {
  opacity: 0;
}

/* Position */
.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

/* Helpers */
@media screen and (max-width: 575px) {
  .text-divider span {
    display: block;
  }
}
@media screen and (min-width: 576px) {
  .text-divider span:first-of-type::after {
    content: "|";
    margin: 0 0.8em;
  }
}

/* Justify Content */
.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.justify-flex-start {
  justify-content: flex-start;
}

.justify-flex-end {
  justify-content: flex-end;
}

.justify-left {
  justify-content: left;
}

.justify-right {
  justify-content: right;
}

.justify-normal {
  justify-content: normal;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

.justify-space-evenly {
  justify-content: space-evenly;
}

.justify-stretch {
  justify-content: stretch;
}

.justify-inherit {
  justify-content: inherit;
}

.justify-initial {
  justify-content: initial;
}

.justify-revert {
  justify-content: revert;
}

.justify-unset {
  justify-content: unset;
}

@media screen and (max-width: 575px) {
  .sm--justify-start {
    justify-content: flex-start;
  }
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

.mt-0 {
  margin-top: 0em;
}

.pt-0 {
  padding-top: 0em;
}

.-mt-0 {
  margin-top: -0em;
}

.mr-0 {
  margin-right: 0em;
}

.pr-0 {
  padding-right: 0em;
}

.-mr-0 {
  margin-right: -0em;
}

.mb-0 {
  margin-bottom: 0em;
}

.pb-0 {
  padding-bottom: 0em;
}

.-mb-0 {
  margin-bottom: -0em;
}

.ml-0 {
  margin-left: 0em;
}

.pl-0 {
  padding-left: 0em;
}

.-ml-0 {
  margin-left: -0em;
}

.mt-1 {
  margin-top: 1em;
}

.pt-1 {
  padding-top: 1em;
}

.-mt-1 {
  margin-top: -1em;
}

.mr-1 {
  margin-right: 1em;
}

.pr-1 {
  padding-right: 1em;
}

.-mr-1 {
  margin-right: -1em;
}

.mb-1 {
  margin-bottom: 1em;
}

.pb-1 {
  padding-bottom: 1em;
}

.-mb-1 {
  margin-bottom: -1em;
}

.ml-1 {
  margin-left: 1em;
}

.pl-1 {
  padding-left: 1em;
}

.-ml-1 {
  margin-left: -1em;
}

.mt-15 {
  margin-top: 15em;
}

.pt-15 {
  padding-top: 15em;
}

.-mt-15 {
  margin-top: -15em;
}

.mr-15 {
  margin-right: 15em;
}

.pr-15 {
  padding-right: 15em;
}

.-mr-15 {
  margin-right: -15em;
}

.mb-15 {
  margin-bottom: 15em;
}

.pb-15 {
  padding-bottom: 15em;
}

.-mb-15 {
  margin-bottom: -15em;
}

.ml-15 {
  margin-left: 15em;
}

.pl-15 {
  padding-left: 15em;
}

.-ml-15 {
  margin-left: -15em;
}

.mt-2 {
  margin-top: 2em;
}

.pt-2 {
  padding-top: 2em;
}

.-mt-2 {
  margin-top: -2em;
}

.mr-2 {
  margin-right: 2em;
}

.pr-2 {
  padding-right: 2em;
}

.-mr-2 {
  margin-right: -2em;
}

.mb-2 {
  margin-bottom: 2em;
}

.pb-2 {
  padding-bottom: 2em;
}

.-mb-2 {
  margin-bottom: -2em;
}

.ml-2 {
  margin-left: 2em;
}

.pl-2 {
  padding-left: 2em;
}

.-ml-2 {
  margin-left: -2em;
}

.mt-25 {
  margin-top: 25em;
}

.pt-25 {
  padding-top: 25em;
}

.-mt-25 {
  margin-top: -25em;
}

.mr-25 {
  margin-right: 25em;
}

.pr-25 {
  padding-right: 25em;
}

.-mr-25 {
  margin-right: -25em;
}

.mb-25 {
  margin-bottom: 25em;
}

.pb-25 {
  padding-bottom: 25em;
}

.-mb-25 {
  margin-bottom: -25em;
}

.ml-25 {
  margin-left: 25em;
}

.pl-25 {
  padding-left: 25em;
}

.-ml-25 {
  margin-left: -25em;
}

.mt-3 {
  margin-top: 3em;
}

.pt-3 {
  padding-top: 3em;
}

.-mt-3 {
  margin-top: -3em;
}

.mr-3 {
  margin-right: 3em;
}

.pr-3 {
  padding-right: 3em;
}

.-mr-3 {
  margin-right: -3em;
}

.mb-3 {
  margin-bottom: 3em;
}

.pb-3 {
  padding-bottom: 3em;
}

.-mb-3 {
  margin-bottom: -3em;
}

.ml-3 {
  margin-left: 3em;
}

.pl-3 {
  padding-left: 3em;
}

.-ml-3 {
  margin-left: -3em;
}

.mt-35 {
  margin-top: 35em;
}

.pt-35 {
  padding-top: 35em;
}

.-mt-35 {
  margin-top: -35em;
}

.mr-35 {
  margin-right: 35em;
}

.pr-35 {
  padding-right: 35em;
}

.-mr-35 {
  margin-right: -35em;
}

.mb-35 {
  margin-bottom: 35em;
}

.pb-35 {
  padding-bottom: 35em;
}

.-mb-35 {
  margin-bottom: -35em;
}

.ml-35 {
  margin-left: 35em;
}

.pl-35 {
  padding-left: 35em;
}

.-ml-35 {
  margin-left: -35em;
}

.mt-4 {
  margin-top: 4em;
}

.pt-4 {
  padding-top: 4em;
}

.-mt-4 {
  margin-top: -4em;
}

.mr-4 {
  margin-right: 4em;
}

.pr-4 {
  padding-right: 4em;
}

.-mr-4 {
  margin-right: -4em;
}

.mb-4 {
  margin-bottom: 4em;
}

.pb-4 {
  padding-bottom: 4em;
}

.-mb-4 {
  margin-bottom: -4em;
}

.ml-4 {
  margin-left: 4em;
}

.pl-4 {
  padding-left: 4em;
}

.-ml-4 {
  margin-left: -4em;
}

.mt-45 {
  margin-top: 45em;
}

.pt-45 {
  padding-top: 45em;
}

.-mt-45 {
  margin-top: -45em;
}

.mr-45 {
  margin-right: 45em;
}

.pr-45 {
  padding-right: 45em;
}

.-mr-45 {
  margin-right: -45em;
}

.mb-45 {
  margin-bottom: 45em;
}

.pb-45 {
  padding-bottom: 45em;
}

.-mb-45 {
  margin-bottom: -45em;
}

.ml-45 {
  margin-left: 45em;
}

.pl-45 {
  padding-left: 45em;
}

.-ml-45 {
  margin-left: -45em;
}

.mt-5 {
  margin-top: 5em;
}

.pt-5 {
  padding-top: 5em;
}

.-mt-5 {
  margin-top: -5em;
}

.mr-5 {
  margin-right: 5em;
}

.pr-5 {
  padding-right: 5em;
}

.-mr-5 {
  margin-right: -5em;
}

.mb-5 {
  margin-bottom: 5em;
}

.pb-5 {
  padding-bottom: 5em;
}

.-mb-5 {
  margin-bottom: -5em;
}

.ml-5 {
  margin-left: 5em;
}

.pl-5 {
  padding-left: 5em;
}

.-ml-5 {
  margin-left: -5em;
}

/* Alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}

/* Sizing */
.text-sm {
  font-size: var(--font-small);
}
.text-md {
  font-size: var(--font-medium);
}

/* Casing */
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

/*------------------------------------*\
  OVERRIDES
\*------------------------------------*/
/* Selectr */
.selectr-container {
  height: 100%;
}
.selectr-container.open .selectr-selected::before {
  transform: rotate(180deg);
}
.selectr-container ::placeholder {
  color: var(--grey6) !important;
}
@media screen and (max-width: 575px) {
  .selectr-container.inverted .selectr-options-container {
    top: calc(100% - 1px);
    bottom: auto;
  }
}
.selectr-input {
  border-color: var(--grey6);
}
.selectr-selected {
  display: flex;
  height: 100%;
  padding: 0;
  align-items: center;
  border: none;
  background-color: var(--bg-form-input);
}
.selectr-selected:focus {
  outline: none;
}
.selectr-selected::before {
  top: 35%;
  right: 0.25em;
  border-width: 6px 5px 0;
  transition: 0.3s ease-out;
  transform-origin: center top;
}
.selectr-selected--no-arrow::before {
  display: none;
}
.selectr-label {
  pointer-events: none;
}
.selectr-placeholder {
  padding: 0.5em 0.1em;
}
.selectr-options {
  max-height: 380px;
  overflow-y: auto;
}
.selectr-options-container {
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 1px 3px rgba(0, 0, 51, 0.2);
  border: none;
}
.selectr-options li {
  padding: 0.8em 1em;
}
.selectr-options--condensed li {
  padding: 0.6em 1em;
}
.selectr-option {
  min-height: 2.75em;
}
.selectr-option.active {
  color: var(--text-body);
  background-color: var(--bg-form-input);
}

.my-template {
  display: flex;
  align-items: center;
}

.custom-dial-code .selectr-options-container {
  width: calc(100vw - 2.2em);
}
@media screen and (min-width: 768px) {
  .custom-dial-code .selectr-options-container {
    width: calc(var(--form-width) - 12em);
  }
}

/* assume a 'mobile first' responsive design ( saves the mobile browsers from having to load additional CSS styles.) */
/* ========================================================== */
.hidden,
[data-display=hidden] {
  visibility: hidden;
  display: none;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.visible {
  visibility: visible;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-only {
  visibility: visible;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.desktop-only {
  visibility: hidden;
  display: none;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/*not on mobile == wider than 768*/
/*@media screen and (min-width: 768px) {

}*/
@media (min-width: 1025px) {
  .mobile-only {
    visibility: hidden;
    display: none;
  }
  .desktop-only {
    visibility: visible;
    display: inline-block;
  }
}
/* Legacy code fixes - new approach - mobile first responsive */
/* ========================================================== */
/* form padding on mobile devices */
.desktop .form-wrapper.form-wrapper__login__size {
  padding: 10px 10px 10px 10px;
}

.deactivated-account-ul {
  margin-left: 2%;
}

.footer {
  /*margin-left: -10px;
  margin-right: -10px;*/
}

/* DESKTOP ONLY */
@media screen and (min-width: 768px) {
  /* form padding on desktop */
  /*.desktop .form-wrapper.form-wrapper__login__size {
      padding: 2rem 5rem;
  }*/
  .deactivated-account-ul {
    margin-left: 10%;
  }
  .footer {
    /*margin: 3em -50px -50px;*/
  }
}
/* ERROR PAGES (404, 500) - DESKTOP ONLY */
@media screen and (min-width: 1067px) {
  .error-container {
    padding: 80px;
  }
  .error-container-float-left {
    display: inline-block;
    max-width: 40%;
    min-width: 30%;
    padding-right: 20px;
    float: left;
  }
  .error-container-float-right {
    display: inline-block;
    max-width: 60%;
    min-width: 20%;
  }
  .error_page__title {
    margin-bottom: 0.2em;
    margin-top: 0px;
    font-size: 80px;
  }
  .error_page__subtitle {
    margin-bottom: 0.5em;
    font-size: 36px;
  }
  .error_page__copy {
    margin-top: 2em;
    font-size: 22px;
  }
  .img-error-fluid {
    max-width: 100%;
    height: auto;
  }
  .error_footer__live-chat {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
/* HACKS TO FIX responsive issues */
/*.login-logo-mobile {
    width: 160px;
    margin-bottom: 40px;
}*/
html {
  visibility: visible;
  opacity: 1;
}