/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/
/*Scrollbar setup*/
::-webkit-scrollbar {
    width: 1.3rem;
}

::-webkit-scrollbar-track {
   /* background: rgb(255, 200, 246);*/
    margin-block: 0.25rem;
    border-radius: 100vw;
}


::-webkit-scrollbar-thumb {
    background: rgb(145, 158, 173);
    border-radius: 100vw;
    /*border: .25rem solid rgb(255, 200, 246);*/
}

/*General Styles*/
/*body {
    background: rgb(255, 184, 243) url(https://raw.githubusercontent.com/codeSTACKr/glassmorphism-credit-card/3b0562ab457f2ca260d49ac5ff271dc4fc33870b/img/bg.svg) center/cover;
    font-family: 'Lato', sans-serif;
}*/

#paymentModal .container {
    width: 100%;
    /*max-width: 1000px;*/
    /*padding: 40px 20px;*/

    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Card General Styles */
#paymentModal .card {
    width: 100%;
    max-width: 550px;
    position: absolute;
    top: -250px;
    color: #fff;
    transition: .3s ease all;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    cursor: pointer;
    z-index: 2;
    border-radius: 1.5rem;
}

    #paymentModal .card.active {
        transform: rotateY(180deg);
    }

    #paymentModal .card > div {
        padding: 30px;
        border-radius: 15px;
        min-height: 315px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 10px 10px 10px rgba(0, 60, 134, 0.3);
    }

    /* Front Card */
    #paymentModal .card .front {
        width: 100%;
        background: linear-gradient( to bottom right, rgba(255, 255, 255, 0.2), #8a6d3b );
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5), -1 -1 2px #aaa, 1 1 2px #555;
        backdrop-filter: blur(0.65rem);
        -webkit-backdrop-filter: blur(0.65rem);
    }

.front .brand-logo {
    text-align: right;
    min-height: 50px;
}

.front .brand-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 80px;
    }

.front .chip {
    width: 100%;
    max-width: 50px;
    margin-bottom: 20px;
}

.front .group .label {
    font-size: 16px;
    color: #5d6872;
    -webkit-text-stroke: 0.15px #000;
    margin-bottom: 5px;
}

.front .group .number,
.front .group .name,
.front .group .expiration {
    color: #000;
    font-size: 22px;
    text-transform: uppercase;
}

.front .flexbox {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* ---------- Back Card ----------*/
.back {
    background: linear-gradient( to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) );
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5), -1 -1 2px #aaa, 1 1 2px #555;
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
    position: absolute;
    top: 0;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

    .back .magnetic-bar {
        height: 40px;
        background: #000;
        width: 100%;
        position: absolute;
        top: 30px;
        left: 0;
    }

    .back .details {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
    }

        .back .details p {
            margin-bottom: 5px;
        }

        .back .details #signature {
            width: 70%;
            color: #000;
        }

            .back .details #signature .signature {
                height: 40px;
                background: repeating-linear-gradient(skyblue 0, skyblue 5px, orange 5px, orange 10px);
            }

                .back .details #signature .signature p {
                    line-height: 40px;
                    font-family: 'Liu Jian Mao Cao', cursive;
                    color: #000;
                    font-size: 30px;
                    padding: 0 10px;
                    text-transform: capitalize;
                }

        .back .details #ccv {
            width: 20%;
            color: #000;
        }

            .back .details #ccv .ccv {
                background: #fff;
                height: 40px;
                color: #000;
                padding: 10px;
                text-align: center;
            }

    .back .legend {
        font-size: 14px;
        line-height: 24px;
        color: black;
    }

    .back .bank-link {
        font-size: 14px;
        color: #000;
    }

/* ---------- Contenedor Boton ----------*/
.container-btn .btn-open-form {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 20px;
    background: #2364d2;
    color: #fff;
    position: relative;
    top: -25px;
    z-index: 3;
    border-radius: 100%;
    box-shadow: -5px 4px 8px rgba(24,56,182,0.4);
    padding: 5px;
    transition: all .2s ease;
    border: none;
    cursor: pointer;
}

    .container-btn .btn-open-form:hover {
        background: #1850b1;
    }

    .container-btn .btn-open-form.active {
        transform: rotate(45deg);
    }


/* ---------- Card Form ----------*/
.card-form {
    background: rgba(255, 255, 255, 0.4);
    width: 100%;
    /*max-width: 700px;*/
    padding: 30px 30px 30px 30px;
    border-radius: 10px;
    position: relative;
    /*top: -150px;*/
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path .3s ease-out;
}

    .card-form.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    /*.card-form label {
        display: block;
        color: #3b3e41;
        -webkit-text-stroke: 0.1px #6e7881;
        margin-bottom: 5px;
        font-size: 16px;
    }*/

    /*.card-form input,
    .card-form select,
    .btn-submit {
        border: 2px solid #CED6E0;
        font-size: 18px;
        height: 50px;
        width: 100%;
        padding: 5px 12px;
        transition: .3s ease all;
        border-radius: 5px;
    }*/

        .card-form input:hover,
        .card-form select:hover {
            border: 2px solid #93BDED;
        }

        .card-form input:focus,
        .card-form select:focus {
            outline: rgb(4,4,4);
            box-shadow: 1px 7px 10px -5px rgba(90,116,148,0.3);
        }

    .card-form #state {
        text-transform: uppercase;
    }

    .card-form .form-group {
        margin-bottom:0px;
    }

    .card-form .flexbox {
        display: flex;
        justify-content: space-between;
    }

    .card-form .expire {
        width: 100%;
    }

    .card-form .ccv {
        min-width: 100px;
    }

    .card-form .group-select {
        width: 100%;
        margin-right: 15px;
        position: relative;
    }

    .card-form select {
        -webkit-appearance: none;
    }

    .card-form .group-select i {
        position: absolute;
        color: #CED6E0;
        top: 18px;
        right: 15px;
        transition: .3s ease all;
    }

    .card-form .group-select:hover i {
        color: #93bfed;
    }

    .card-form .btn-submit {
        border: none;
        padding: 10px;
        font-size: 22px;
        color: #fff;
        background: #2364d2;
        box-shadow: 2px 2px 10px 0px rgba(0,85,212,0.4);
        cursor: pointer;
    }

.card-form .btn-submit:hover {
    background: #1850b1;
}

.modal-dialog {
    width: 850px !important;
}

.modal-content {
    border-radius: 10px;
}

.card-body.w-border {
    border: 1px solid #aab3bb;
    border-radius: 10px;
    margin:5px;
}

.row h4{
    margin:0px;
}

.modal-header {
    background-color: #337AB7;
    padding-bottom:0px !important;
    border-radius:5px;
}


.modal-header img {
    margin-top: 15px;
}

.modal-header .p-lr-25 {
    padding-left: 25px;
    padding-right: 25px;
    background-color: #fff;
    padding-top:25px;
}
    

.control-label {
    text-align: right;
    padding: 0px;
    margin: 0px;
}

.payment-cart-logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.payment-cart-title {
    margin: 20px 0 20px 0;
}

hr {
    border-top: 1px solid #000;
}

.hr-p25 {
    padding-left: 25px;
    padding-right: 25px;
    margin-top:0px;
}

.input-disabled {
    border-width: 0px 0px 2px 0px !important;
    border-radius:0px !important;
    background-color:#fff;
}

.detail-label {
    font-size: 20px;
    margin-bottom: 25px;
}

.text-center{
    text-align:center;
}

.p-0{
    padding:0px;
}

.p-l-0{
    padding-left:0px;
}

.chosen-select {
    width: 100%;
}

.state-ticket-modal-text-xxs, .state-ticket-text-xxs,
.state-ticket-modal-text-xs40, .state-ticket-text-xs40,
.state-ticket-modal-text-xs, .state-ticket-text-xs,
.state-ticket-modal-text-xssm, .state-ticket-text-xssm,
.state-ticket-modal-text-sm, .state-ticket-text-sm,
.state-ticket-modal-text-smmd, .state-ticket-text-smmd,
.state-ticket-modal-text-md, .state-ticket-text-md,
.state-ticket-modal-text-lg, .state-ticket-text-lg,
.state-ticket-modal-text-xlg, .state-ticket-text-xlg,
.state-ticket-modal-text-full, .state-ticket-text-full,
.state-ticket-padding-exp-month,
.officerNoteAutopopNotes {
    
    height: 28px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 500 !important; /* JS - 4/8/15 - added to make more readable */
}

.input-group-text-field {
    position: relative;
    /*display: block;*/
    border: 1px solid #b3b2b2;
    -webkit-border-radius: 4px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 4px;
    -moz-border-radius-topleft: 0;
    border-radius: 4px !important;
    border-top-left-radius: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}

.chosen-container {
    width: 100% !important;
    zoom: 1.0;
    display: block !important;
    text-transform: uppercase;
    height: 28px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
}

.chosen-single{
    height:28px !important;
}

.form-control{
    height:28px !important;
}

.front .label{
    padding:0px !important;
}

.checkboxBetterPos {
    font-size: 20px !important;
    font-family: "Lato" !important;
    font-weight: 400 !important;
    padding-top: 0px !important;
    margin-right: 0 !important;
    padding-right: 5px !important;
}

.checkboxBetterPos:checked {
    background-color: #428bca !important;
    font: 600 !important;
}



.btn-checkboxPrimary.disabled,
.btn-checkboxPrimary[disabled],
fieldset[disabled] .btn-checkboxPrimary,
.btn-checkboxPrimary.disabled:hover,
.btn-checkboxPrimary[disabled]:hover,
fieldset[disabled] .btn-checkboxPrimary:hover,
.btn-checkboxPrimary.disabled:focus,
.btn-checkboxPrimary[disabled]:focus,
fieldset[disabled] .btn-checkboxPrimary:focus,
.btn-checkboxPrimary.disabled:active,
.btn-checkboxPrimary[disabled]:active,
fieldset[disabled] .btn-checkboxPrimary:active,
.btn-checkboxPrimary.disabled.active,
.btn-checkboxPrimary[disabled].active,
fieldset[disabled] .btn-checkboxPrimary.active {
    background-color: #428bca !important;
    border-color: red !important;
}

.btn-checkboxPrimary {
    color: #555;
    background-color: #DEDEDE;
    border-color: #3071a9;
    padding: 3px;
    font-size: 16px;
    font-weight: 600;
}

    .btn-checkboxPrimary:hover, /*used for hovering*/
    .btn-checkboxPrimary:focus,
    .btn-checkboxPrimary.active {
        color: #000;
        background-color: #59AFFB;
        border-color: #3E91DB;
    }

    .btn-checkboxPrimary .badge {
        color: #428bca;
        background-color: #ffffff;
    }
/*Smaller styling below -xs*/
.btn-checkboxPrimary-xs.disabled,
.btn-checkboxPrimary-xs[disabled],
fieldset[disabled] .btn-checkboxPrimary-xs,
.btn-checkboxPrimary-xs.disabled:hover,
.btn-checkboxPrimary-xs[disabled]:hover,
fieldset[disabled] .btn-checkboxPrimary-xs:hover,
.btn-checkboxPrimary-xs.disabled:focus,
.btn-checkboxPrimary-xs[disabled]:focus,
fieldset[disabled] .btn-checkboxPrimary-xs:focus,
.btn-checkboxPrimary-xs.disabled:active,
.btn-checkboxPrimary-xs[disabled]:active,
fieldset[disabled] .btn-checkboxPrimary-xs:active,
.btn-checkboxPrimary-xs.disabled.active,
.btn-checkboxPrimary-xs[disabled].active,
fieldset[disabled] .btn-checkboxPrimary-xs.active {
    background-color: #428bca !important;
    border-color: red !important;
}

.btn-checkboxPrimary-xs {
    color: #555;
    background-color: #DEDEDE;
    border-radius: 3px;
    border-color: #3071a9;
    padding: 1px 5px !important;
    font-size: 12px;
    line-height: 1.5 !important;
    font-weight: 600;
    margin-top: 3px;
}

    .btn-checkboxPrimary-xs.pull-left {
        margin-left: 5px;
    }

    .btn-checkboxPrimary-xs:hover, /*used for hovering*/
    .btn-checkboxPrimary-xs:focus,
    .btn-checkboxPrimary-xs.active {
        color: #000;
        background-color: #59AFFB;
        border-color: #3E91DB;
    }

    .btn-checkboxPrimary-xs.badge {
        color: #428bca;
        background-color: #ffffff;
    }

.ticketWarningCheckBoxStyling {
    border-top-left-radius: 0 !important;
}

.evidenceCompleteCheckBoxStyle {
    border-top-right-radius: 5px !important;
}

.checkboxPositioningCentered {
    width: 13px !important;
    height: 13px !important;
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: middle !important;
    margin-bottom: 2px !important;
    *overflow: hidden !important;
}

.checkbox-btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: central;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 6px 6px 6px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.modal-header .close{
    color:white !important;
    text-shadow:unset !important;
    opacity:unset !important;
}

.p-r-0{
    padding-right:0px !important;
}

.m-0 {
    margin: 0px !important;
}

.chosen-single.has-error {
    border-color: #a94442 !important;
}


#autocomplete {
    position: relative;
    z-index: 9999;
}

.pac-container {
    z-index: 1051 !important;
}

@media (max-width: 576px) {
    .modal-dialog {
        max-width: 90%;
        margin: 1rem auto;
    }

    .payment-cart-title{
        font-size:20px !important;
    }

    .payment-header{
        padding:0px;
    }
}
