#formSubmitRegister .label-require:after {
    content: " *";
    color: red;
}

#formSubmitRegister input:placeholder-shown+label {
    display: block;
    margin-bottom: 0;
}

.box-custom.box-left {
    border: 1px solid #EDE8E8;
    box-shadow: 0px 0px 4px transparent;
}

.box-custom.box-left:hover,
.box-custom.box-left.active,
.box-custom.box-left:focus,
.box-custom.box-left:active {
    border: 1px solid #EDE8E8;
    box-shadow: 0px 1px 5px 0px #0000001A;
}

.payment-method--box::after {
    transition: 0.15s all ease-in-out;
    content: "";
    font-family: 'Font Awesome 5 Pro';
    color: #219653;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    right: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #505050;
    border-radius: 50%;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 1.2rem;
}

.payment-method--box.active::before,
.payment-method--box:hover::before {
    border: 5px solid #2496FF;
}

.check-c {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default checkbox */

.check-c input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #88A4C8;
    border-radius: 4px;
    color: #334D6E;
    font-size: 14px;
    line-height: 21px;
}


/* On mouse-over, add a grey background color */

.check-c:hover input~.checkmark {
    background-color: #efefef;
}


/* When the checkbox is checked, add a blue background */

.check-c input:checked~.checkmark {}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.check-c input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.check-c .checkmark:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f00c';
    width: 20px;
    height: 20px;
    text-align: center;
    color: #0a9151;
}

.arrow-pointer {
    position: relative;
    background: #e9e9e9;
}

.payment-method--checkbox {
    position: relative;
    height: 20px;
}

@media (min-width: 768px) {
    .payment-method--mg {
        margin-left: calc(46px + 1rem);
    }
    .payment-method--checkbox {
        position: absolute;
        left: calc(-20px - 1.5rem);
        top: 50%;
        transform: translate(0, -50%);
    }
}

.payment-method--btn {
    display: none;
}

.payment-method--btn.active {
    display: block;
}

.payment-method--show {
    display: none;
}

.payment-method--show.active {
    display: block;
}

.label-required {
    padding: 0.375rem 0.75rem;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
    pointer-events: none;
    color: #757575;
    font-size: 1rem;
    font-family: system-ui;
}

.label-required:after {
    content: " *";
    color: red;
}

input:placeholder-shown+label {
    display: block;
}

.hide-in-register {
    display: none;
}

.buymore:before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #0066cc;
    border-left: 1px solid #0066cc;
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px 2px 0;
    transform: rotate(-45deg);
}

@media (min-width: 992px) {
    #page-content-wrapper {
        background: #f0f0f0;
    }
    .cart {
        box-shadow: 0 0 18px rgba(0, 0, 0, .12);
        border-radius: 8px;
    }
}

input {
    display: block;
    overflow: hidden;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    padding: 10px;
    color: #333;
    box-sizing: border-box;
    width: 100%;
}

input:disabled~.form-label,
input:focus~.form-label,
input:valid:not(:placeholder-shown)~.form-label {
    top: -8px;
    background: #fff;
    padding: 0 5px;
    line-height: 18px;
    /* font-size: 10px; */
}

.form-label {
    /* position: absolute; */
    top: 6px;
    left: 0.75rem;
    transition: all .2s;
    cursor: text!important;
}