label.required:after, legend.required:after {
    content: " *";
    color: #f00;
}

body {
    overflow-x: hidden;
}

.hsubpage-header {
    margin-left: 15px;
}

.wallet-button {
    display: inline-flex;
    align-items: center;
    border-radius: 40px;
    background-color: #333;
    min-height: 32px;
    padding: 5px 25px;
    margin-right: 15px;
    min-width: 150px;
}

.wallet-button-google {
    background-color: rgb(255, 255, 255, 0.0) !important;
    display: inline-flex;
    align-items: center;
    border-radius: 40px;
    /* background-color: #333; */
    min-height: 32px;
    padding: 5px 5px;
    margin-right: 15px;
    min-width: 150px;
}

.wallet-name {
    font-family: antonio-medium, arial;
    font-weight: 500;
    font-size: 17px;
    text-align: right;
    color: #fff;
    line-height: 17px;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.wallet-icon {
    background-size: 95% auto;
    background-repeat: no-repeat;
    background-position: left center;
    height: 40px;
    width: 40px;
}

.wallet-icon--apple {
    background-image: url(/static/img/wallet/apple.svg);
    margin-right: 5px;
}

.wallet-icon--google {
    background-image: url(/static/img/wallet/google.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    height: 50px;
    width: 176px;
}
@media only screen and (min-width: 768px) {
    .wallet-icon--google {
        transform: translateY(5px);
    }
}


.wallet-icon--digital-card {
    background-image: url(/static/img/wallet/anchor.svg);
    background-size: auto 30px;
    margin-right: 3px;
}


.card-area {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-area svg {
    max-width: 200px;
    height: auto;
}

.card-area span {
    font-size: 20px;
}

.card-area a {
    align-self: flex-start;
}

.wallet-area label {
    align-self: flex-start;
    padding: 0px !important;
    margin: 0px !important;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .customer-index .text-align-right {
        text-align: right;
    }
}

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

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

.newsletter-form-area .radio label::after {
    content: none;
}

.form-inline {
    display: flex;
}

.gauge {
    width: 300px;
    height: 170px;
    margin: auto;
}

.background-inner, .background-outer {
    position: relative;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
}

.background-outer {
    width: 300px;
    height: 150px;
    background-color: #e5e5e5;
}

.background-inner {
    width: 240px;
    height: 120px;
    background-color: #f5f5f5;
}

.percentage-inner, .percentage-outer {
    position: absolute;
    left: 0;
    transform-origin: top center;
}

.percentage-outer {
    top: 150px;
    width: 300px;
    height: 150px;
    background-color: #263845;
}

.percentage-inner {
    top: 120px;
    width: 240px;
    height: 120px;
    background-color: #73B2C9;
}

.mask-inner, .mask-outer {
    position: absolute;
    left: 20px;
    bottom: 0;
    background-color: white;
    border-radius: 150px 150px 0 0;
}

.mask-outer {
    height: 130px;
    width: 260px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.mask-inner {
    height: 100px;
    width: 200px;
}

.legend-unordered-list {
    list-style: none;
}

.legend-list {
    position: relative;
    padding-left: 25px;
}

.legend-list::before {
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 6px;
    content: '';
    border-radius: 2px;
}

.color-inner-gauge::before {
    background-color: #73B2C9;
}

.color-outer-gauge::before {
    background-color: #263845;
}

.m-t-5 {
    margin-top: 3rem;
    padding: 0;
}

.status-current-level {
    float: left;
}

.status-next-level {
    float: right;
}

@media only screen and (max-width: 767px) {
    .gauge {
        margin: 0 auto 0 0;
    }
}

.icon-button {
    margin-top: 0;
    padding: 6px 10px !important;
    font-size: 16px;
}

.receipt-booking input {
    max-width: none !important;
}

.checkbox-size-l {
    transform: scale(1.2);
}


.tool {
    cursor: help;
    position: relative;
}

.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: 100;
}


.tool::before {
    border-color: #333 transparent transparent transparent;
    border-style: solid;
    border-width: 1em 0.75em 0 0.75em;
    bottom: 100%;
    content: "";
    margin-left: -0.5em;
    transform: scale(.6) translateY(-90%);
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26), opacity .65s .5s;
}

.tool:hover::before,
.tool:focus::before {
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
}

.tool::after {
    background: #333;
    border-radius: .25em;
    bottom: 180%;
    color: #fff;
    content: attr(data-tip);
    font-size: 12px;
    margin-left: -8.75em;
    padding: 1em;
    transform: scale(.6) translateY(50%);
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
    width: 200px;
}

.tool:hover::after,
.tool:focus::after {
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26);
}

@media (max-width: 760px) {
    .tool::after {
        font-size: .75em;
        margin-left: -5em;
        width: 10em;
    }
}

.checkbox-widget input {
    margin-right: 5px;
}

.checkbox-widget p {
    margin: 0 !important;
    color: #fff !important;
    font-size: 1.5rem !important;
}

 .row-striped-support:nth-of-type(4n+3) {
     background-color: #d9e2f3; // #73b2c9;
     padding-top: 0.4em;
 }

.row-striped-support:nth-of-type(4n+1) {
    background-color: #fdfdfd;
}

.row-striped:nth-of-type(4n+0) {
     background-color: #d9e2f3; // #73b2c9;
     padding-top: 0.4em;
 }

.row-striped:nth-of-type(4n+2) {
    background-color: #fdfdfd;
}

.bon-heading .collapsemarker:after {
    content: '-';
}
.bon-heading.collapsed .collapsemarker:after {
    content: '+';
}

.blog .listing-date {
    background-color: #71b2c8;
    top: 130px;
    font-size: 15px;
    font-weight: 700;
    height: 65px;
    left: 30px;
    line-height: 18px;
    padding: 12px;
    position: absolute;
    text-align: center;
    width: 65px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    transform: translate(0,50%);
    -webkit-transform: translate(0,50%);
}

.blog .listing-date-number {
    font-size: 20px;
}

.blog-image-listing  {
    min-height: 200px;
    max-height: 200px;
    width: auto;
}

.blog-image-detail  {
    min-height: 400px;
    max-height: 400px;
    width: auto;
}

.blog-title {
    margin-top: 4rem;
    font-size: 28px;
}

/* remove with bootstrap 4 */
.mt-2 {
    margin-top: 2rem;
}

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

.mb-2 {
    margin-bottom: 2rem;
}
.mb-3 {
    margin-bottom: 3rem;
}

.borderless {
    border: none !important;
}

.alert-error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-error hr {
  border-top-color: #e4b9c0;
}
.alert-error .alert-link {
  color: #843534;
}

