#account-menu {
    z-index: 999;
    cursor: pointer;
    position: fixed;
    bottom: 5%;
    right: -132px;
    background: #C6C6C6;
    width: 200px;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    margin: 0;
    border-radius: 10px;
}

#account-menu.login {
    right: -232px;
    width: 300px;
}

#account-menu .nav-icon {
    font-size: 32px;
}

#account-menu ul {
    display: table;
    margin: 0;
    padding: 0;
}

#account-menu ul li {
    display: table-cell;
    margin: 0;
    padding: 0 0 0 20px;
}

#account-menu ul li:first-child {
    padding: 0 10px 0 10px;
}

#account-menu a {
    color: #fff;
    font-weight: bold;
}

#account-menu a:hover {
    text-decoration-line: underline;
}

/**
 * Payment stripe
 */
.modal.modal-payment-stripe #card-element {
    padding: 10px;
    border: 1px solid #ccc;
}
.modal.modal-payment-stripe .error {
    color: red;
    margin-top: 10px;
}
.modal.modal-payment-stripe .input-wrapper {
    padding: 8px 10px;
    box-shadow: inset 0 1px 1px rgba(124, 124, 127, 0.1), 0 1px 0 rgba(255, 255, 255, 0), 0 0 4px rgba(86, 149, 219, 0);
    border-bottom-color: #e4e4e4;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    border-bottom-right-radius: 0;
    padding-left: 30px;
    position: relative;
}
.modal.modal-payment-stripe .input-wrapper:before{
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background-size: contain;
    left: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/payment/stripe-card-number.svg);
}
.modal.modal-payment-stripe .input-wrapper.input-wrapper-expiry:before{
    background-image: url(../images/payment/stripe-card-date.svg);
}
.modal.modal-payment-stripe .input-wrapper.input-wrapper-cvc:before{
    background-image: url(../images/payment/stripe-card-lock.svg);
}
.modal.modal-payment-stripe .input-wrapper-expiry,
.modal.modal-payment-stripe .input-wrapper-cvc{
    width: 50%;
    float: left;
}
.modal.modal-payment-stripe .input-wrapper.input-wrapper-number {
    border-radius: 4px 4px 0 0;
}
.modal.modal-payment-stripe .input-wrapper.input-wrapper-expiry {
    border-radius: 0 0 0 4px;
    border-top: 0;
}
.modal.modal-payment-stripe .input-wrapper.input-wrapper-cvc {
    border-radius: 0 0 4px 0;
    border-top: 0;
    border-left: 0;
}
.modal.modal-payment-stripe .modal-dialog {
    width: 300px;
    height: 100vh;
}
.modal.modal-payment-stripe .modal-title {
    color: #000;
    font-size: 17px;
    font-weight: bold;
    height: 22px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    text-transform: none;
}
.modal.modal-payment-stripe .close{
    opacity: 1;
}
.modal.modal-payment-stripe .close span {
    top: 7px;
    left: 8px;
    width: 22px;
    height: 23px;
    background-size: contain;
    cursor: pointer;
    background-image: url('../images/payment/stripe-close.png');
    position: absolute;
}
.modal.modal-payment-stripe .modal-header {
    padding: 15px 15px 10px;
    text-align: center;
}
.modal.modal-payment-stripe .loggedBarContent {
    text-align: center;
    margin-bottom: 10px;
    margin-top: -8px;
}
.modal.modal-payment-stripe span.prefilledEmail {
    font-size: 13px;
    font-weight: bold;
    color: #5b5b65;
}
.modal.modal-payment-stripe button[type="submit"] {
    margin-top: 20px;
    background: #45b1e8;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
.modal.modal-payment-stripe .modal-body {
    padding: 15px 0;
}
.modal.modal-payment-stripe.modal.in .modal-dialog {
    -webkit-transform: translate(0, 20%);
    -ms-transform: translate(0, 20%);
    -o-transform: translate(0, 20%);
    transform: translate(0, 20%);
}
#lwaProgressModal span.fa.fa-spinner.fa-pulse.fa-3x {
    font-family: 'FontAwesome';
}