﻿
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.card-solid {
    box-shadow: 0 2px 2px 0px rgb(0 0 0 / 25%), 0 3px 1px -2px rgb(0 0 0 / 25%), 0 1px 5px 0px rgb(0 0 0 / 25%) !important;
}

    .card-solid .card-body .title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .card-solid .card-body .reminder {
        color: #78909c;
        font-size: 14px;
    }

    .card-solid .card-body .btn-group {
        margin-bottom: 32px;
    }

    .card-solid .card-body .btn {
        padding: 4px 12px;
        height: auto;
    }

.order-details, .fpx-details {
    padding: 16px;
    margin-bottom: 20px;
}

    .order-details div .sub-title, .fpx-details div .sub-title {
        font-size: 15px;
        font-weight: 600;
        color: #3c3939cf;
        margin: 4px 7px 15px;
    }

    .order-details div.description {
        color: #757575;
        margin: 0 0 8px !important;
    }

        .order-details div.description .detail {
            text-align: right;
        }

        .order-details div.description.total {
            padding-top: 10px;
            margin-top: 10px;
            border-top: 1px solid #eceff1;
            /*font-size: 18px;*/
            color: #424242;
        }

    .fpx-details ul {
        margin-bottom: 4px;
    }

        .fpx-details ul > li.pymt-list {
            border: 1px solid #cfd8dc;
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4px 12px;
            min-height: 56px;
            max-height: 56px;
        }

            .fpx-details ul > li.pymt-list:not(:last-child) {
                margin-bottom: 8px;
            }

            .fpx-details ul > li.pymt-list .info {
                font-size: 12px;
            }

                .fpx-details ul > li.pymt-list .info img {
                    max-width: 44px;
                    padding-right: 8px;
                }

            .fpx-details ul > li.pymt-list .is-tick {
                text-align: right;
            }

            .fpx-details ul > li.pymt-list i.fa-circle {
                color: #eceff1;
            }

            .fpx-details ul > li.pymt-list:disabled, .fpx-details ul > li.pymt-list.disabled {
                background: #fafafa;
                cursor: not-allowed;
            }

            .fpx-details ul > li.pymt-list:not(.disabled):hover, .fpx-details ul > li.pymt-list:not(.disabled):focus, .fpx-details ul > li.pymt-list:not(.disabled):active, .fpx-details ul > li.pymt-list:not(.disabled).active {
                background: #e8eaf6;
                border: 1px solid #3f51b5;
            }

                .fpx-details ul > li.pymt-list:not(.disabled):hover .is-tick i.fa-regular,
                .fpx-details ul > li.pymt-list:not(.disabled):focus .is-tick i.fa-regular,
                .fpx-details ul > li.pymt-list:not(.disabled):active .is-tick i.fa-regular, 
                .fpx-details ul > li.pymt-list:not(.disabled).active .is-tick i.fa-regular {
                    color: #3f51b5;
                }

    .fpx-details .sp-reminder {
        color: #757575;
        font-size: 12px;
        text-align: right;
        margin: 35px 0 0;
    }

        .fpx-details .sp-reminder i {
            color: #66bb6a;
            font-size: 14px;
        }

.header-reminder {
    background: #c6d1da47;
}

    .header-reminder .inner {
        color: #1a75c5;
        display: flex;
        padding: 12px;
    }

    .header-reminder .icon {
        margin: 9px 5px 5px 0px;
    }

    .header-reminder .rText {
        font-size: 12px;
        font-weight: 500;
    }

.fpx-img-bank{
    max-width: 27px !important;
}

.footer-reminder {
    background: #71879908;
}

.footer-reminder .inner {
    color: #1a75c5;
    display: flex;
    padding: 2px 5px;
    justify-content: space-evenly;
}

.footer-reminder .inner .footer-img {
    margin-right: 3px;
    max-width: 55px;
}

#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}