@charset "UTF-8";
::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #00a6eb;
}

::-webkit-scrollbar-thumb {
    background: #3979b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    outline: none !important;
    /*border: 0px solid #719ECE;*/
    box-shadow: 0 0 10px #719ECE;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -0px 0 #ddd;
}
.section-divider {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 60px;
    height: 3px;
    background-color: #00b9cd;
    border-radius: 0px;
}
.giftCard-searchBar .overlay {
    background-color: #f8faf9;
    padding-top: 12px;
    padding-bottom: 0px;
    border-bottom: 1px solid #ecefed;
}
/*----* Component: List View* -----------------*/
.listview {
    display: block;
    padding: 0;
    margin: 0;
    color: #27173e;
    background: #fff;
    border-top: 1px solid #dcdce9;
    border-bottom: 1px solid #dcdce9;
    line-height: 1.3em;
}

    .listview > li {
        padding: 11px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        min-height: 50px;
    }

        .listview > li:after {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: #dcdce9;
        }

        .listview > li:last-child:after {
            display: none;
        }

    .listview.no-space > li {
        padding-left: 0;
        padding-right: 0;
    }

    .listview.flush {
        border-top: 0;
        border-bottom: 0;
    }

    .listview.transparent {
        background: transparent;
    }
/*----* Component: Form* -----------------*/

.form-control, .form-select {
    border-radius: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--para-color);    
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.0);
}

    .form-control, .form-select, .input-group-text {
        border-color: #e3e3e3;
    }
.form-floating > label{
    font-size:16px;
    line-height:23px;
}

.bg-light-grey {
    background-color: #f8faf9;
}
/*----* Component: List* -----------------*/
.list ul {

}
.list ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
/*----* Cookie:Alert* -----------------*/
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
}

    .cookiealert.show {
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }

    .cookiealert a {
        text-decoration: underline
    }

    .cookiealert .acceptcookies {
        margin-left: 10px;
        vertical-align: baseline;
    }
/*------OR-------*/
.or {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.or::after, .or::before {
        position: absolute;
        content: "";
        background: #e1e1e1;
        height: 1px;
        width: 40%;
}
.or::after {
        left: 0;
}
.or::before {
        right: 0;
}
/*----* Component: Button* -----------------*/
.btn {
    /*-webkit-box-shadow: 0 0.5rem 1rem 0 rgb(115 89 150 / 15%);
    box-shadow: 0 0.5rem 1rem 0 rgb(115 89 150 / 15%);
    -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(115,89,150,.15);
    box-shadow: 0 0.5rem 1rem 0 rgba(115,89,150,.15);*/
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: .5px;
    border-radius: 0px;
    font-weight: 400;
}
    /*.btn-success,.btn-warning,.btn-danger{
    box-shadow:0 -2px 0 rgba(0, 0, 0, 0.25) inset;
    }*/
    .btn.uppercase {
        text-transform: uppercase;
    }

    .btn.btn-flat {
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-width: 1px;
    }

    .btn:active {
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    .btn:focus {
        outline: none;
    }

    .btn.btn-file {
        position: relative;
        overflow: hidden;
    }

        .btn.btn-file > input[type='file'] {
            position: absolute;
            top: 0;
            right: 0;
            min-width: 100%;
            min-height: 100%;
            font-size: 100px;
            text-align: right;
            opacity: 0;
            filter: alpha(opacity=0);
            outline: none;
            background: white;
            cursor: inherit;
            display: block;
        }

    .btn.btn-shadow {
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .16);
        box-shadow: 0 0 20px rgba(0, 0, 0, .16);
    }

.btn-curved {
    border-radius: 10px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: 0;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

    .btn-outline-white:hover,
    .btn-outline-white:focus {
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color);
        color: #fff;
    }

.btn-theme {
    background-color: var(--primary-color);
    color: #fff;
}

    .btn-theme:focus,
    .btn-theme.focus {
        background-color: var(--secondary-color);
        color: #fff;
    }

    .btn-theme:hover {
        color: #fff;
        background-color: var(--secondary-color);
    }

    .btn-theme:active,
    .btn-theme.active,
    .open > .dropdown-toggle.btn-theme {
        color: #fff;
        background-color: #2b61ab;
    }

        .btn-theme:active:hover,
        .btn-theme.active:hover,
        .open > .dropdown-toggle.btn-theme:hover,
        .btn-theme:active:focus,
        .btn-theme.active:focus,
        .open > .dropdown-toggle.btn-theme:focus,
        .btn-theme:active.focus,
        .btn-theme.active.focus,
        .open > .dropdown-toggle.btn-theme.focus {
            color: #fff;
            background-color: #2b61ab;
        }

    .btn-theme:active,
    .btn-theme.active,
    .open > .dropdown-toggle.btn-theme {
        background-image: none;
    }

    .btn-theme.disabled:hover,
    .btn-theme[disabled]:hover,
    fieldset[disabled] .btn-theme:hover,
    .btn-theme.disabled:focus,
    .btn-theme[disabled]:focus,
    fieldset[disabled] .btn-theme:focus,
    .btn-theme.disabled.focus,
    .btn-theme[disabled].focus,
    fieldset[disabled] .btn-theme.focus {
        background-color: #777;
    }

    .btn-theme .badge {
        color: #111;
        background-color: #fff;
    }


.btn-default {
    background-color: #f4f4f4;
    color: #444;
    border-color: #ddd;
}

    .btn-default:hover,
    .btn-default:active,
    .btn-default.hover {
        background-color: #e7e7e7 !important;
    }

.btn-primary {
    background-color: var(--themePinkDark-color);
    border: transparent;
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary.hover {
        background-color: var(--themeTurqDark-color);
        border: transparent;
    }

.btn-success {
    background-color: #2b61ab;
    border-color: #2b61ab;
}

    .btn-success:hover,
    .btn-success:active,
    .btn-success.hover {
        background-color: #0e1b71;
        border-color: #0e1b71;
    }

.btn-info {
    background-color: #00acd6;
    border-color: #00acd6;
}

    .btn-info:hover,
    .btn-info:active,
    .btn-info.hover {
        background-color: #00acd6;
        border-color: #00acd6;
    }

.btn-danger{
    background-color: #dd4b39;
    border-color: #d73925;
    color:#fff;
}

    .btn-danger:hover,
    .btn-danger:active,
    .btn-danger.hover {
        background-color: #d73925;
        border-color: #d73925;
    }

.btn-warning {
    background-color: #ff7800;
    border-color: #e08e0b;
}

    .btn-warning:hover,
    .btn-warning:active,
    .btn-warning.hover {
        background-color: #e08e0b;
    }

.btn-outline {
    border: 2px solid #0b0b0b;
    background: transparent;
    color: #0b0b0b;
}

    .btn-outline:hover,
    .btn-outline:focus,
    .btn-outline:active {
        color: #ffffff;
        border-color: #0b0b0b);
        background: #0b0b0b;
    }

.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #2b61ab;
    text-decoration:none;
}

    .btn-link:hover {
        color: #cf5700;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-decoration: none;
    }

.btn[class*='bg-']:hover {
    -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.btn-app {
    border-radius: 3px;
    position: relative;
    padding: 15px 5px;
    margin: 0 0 10px 10px;
    min-width: 80px;
    height: 60px;
    text-align: center;
    color: #666;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    font-size: 12px;
}

    .btn-app > .fa,
    .btn-app > .glyphicon,
    .btn-app > .ion {
        font-size: 20px;
        display: block;
    }

    .btn-app:hover {
        background: #f4f4f4;
        color: #444;
        border-color: #aaa;
    }

    .btn-app:active,
    .btn-app:focus {
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    .btn-app > .badge {
        position: absolute;
        top: -3px;
        right: -10px;
        font-size: 10px;
        font-weight: 400;
    }

.btn-icon {
    position: relative;
}

    .btn-icon input,
    .btn-icon a {
        padding: 0px 5px 0px 25px !important;
    }

.btn-delete, .btn-cancel {
    color: #f44336;
}

    .btn-edit:before,
    .btn-delete:before,
    .btn-search:before,
    .btn-update:before,
    .btn-delete:before,
    .btn-cancel:before {
        font-family: FontAwesome;
        font-size: 14px;
        position: absolute;
        /*right: 20px;*/
        left: 10px;
        top: 0px;
        pointer-events: none;
    }

    .btn-update:before,
    .btn-delete:before,
    .btn-cancel:before {
        font-family: FontAwesome;
        font-size: 14px;
        position: absolute;
        /*right: 20px;*/
        left: 10px;
        top: 0px;
        pointer-events: none;
    }

.btn-search:before {
    content: "\f040";
}

.btn-edit:before {
    content: "\f040";
}

.btn-cancel:before {
    content: "\f00d";
    color: #f44336;
}

.btn-delete:before {
    content: "\f014";
    color: #f44336;
}

.btn-update:before {
    content: "\f00c";
    color: #2b61ab;
}

.btn-search:before {
    content: "\f002";
    color: #2b61ab;
}

/*----* Component: Status* -----------------*/
.completed, .success{
    color: #ffffff;
    background-color: #28a745 !important;
}
.pending {
    color: #1f2d3d !important;
    background-color: #ffc107 !important;
}
.canceled, .failed {
    color: #ffffff;
    background-color: #dc3545 !important;
}
.processing {
    color: #fff !important;
    background-color: #007bff !important;
}
.pending, .processing, .completed, .canceled {
    display: inline-block;
    padding: 0px 10px;    
    font-size:11px;
    line-height: 2;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 20px;    
}

.bor-bo {
    border-bottom: 1px dotted #ddd;
}
.bor-to {
    border-top: 1px dotted #ddd;
}

.vertical-center {
    align-items: center;
    display: flex;
}
.vertical-bottom {
    align-self: flex-end !important;
}
.required-field{
    color: #dd4b39;
}
.error-msg {
    color: #dd4b39;
    font-size: 14px;
}
.cancelled{
    color: #dd4b39;    
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    /*font-family: 'Avenir LT Std 65 Medium', sans-serif;*/
}

    .section-heading.padding {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading .title {
        margin: 0;
        font-size:20px;
        letter-spacing: -0.01em;
        line-height: 1em;
        padding-right: 16px;
    }

    .section-heading .link {
        /*color: rgba(98, 54, 255, 0.5);*/
        color: #3979b9;
        font-size: 13px;
        font-weight: 600;
    }
/*------Transactions---------*/

.transactions .item {
    background: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.09);
    border-radius: 8px;
    padding: 15px 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
    line-height:normal;
    text-decoration: none;
    justify-content: space-between;
}

    .transactions .item:hover {
        background: #f4f4f4;
    }

    .transactions .item:focus {
        background: #f4f4f4;
    }
.transactions .item strong{
    font-weight:500;
}
    .transactions .item:last-child {
        margin-bottom: 0;
    }

    .transactions .item p {
        font-size: 11px;
        margin: 0;
        color: #958d9e;
        font-weight: 500;
        line-height: 1.2em;
    }

    .transactions .item .detail {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        line-height: 1.2em;
    }



        .transactions .item .detail .image-block {
            margin-right: 16px;
        }

            .transactions .item .detail .image-block.imaged {
                border-radius: 8px;
            }

        .transactions .item .detail strong {
            display: block;
            font-weight: 500;
            color: #27173e;
            margin-bottom: 3px;            
        }

    .transactions .item .right {
        padding-left: 10px;
    }

        .transactions .item .right .price {
            font-weight: 700;
            color: #27173e;
            letter-spacing: -0.03em;
        }

    .transactions .item .badge {
        min-width: 16px;
        height: 16px;
        line-height: 10px !important;
        font-size: 10px;
        padding: 2px 4px !important;
        position: absolute;
        left: -10px;
        /*top:0px;*/
    }

/*-------
    ---Image Size------*/

.imaged {
    height: auto;
    border-radius: 5px;
}

    .imaged.w16 {
        width: 16px !important;
    }

    .imaged.w24 {
        width: 24px !important;
    }

    .imaged.w32 {
        width: 32px !important;
    }

    .imaged.w36 {
        width: 36px !important;
    }

    .imaged.w48 {
        width: 48px !important;
    }

    .imaged.w64 {
        width: 64px !important;
    }

    .imaged.w76 {
        width: 76px !important;
    }

    .imaged.w86 {
        width: 86px !important;
    }

    .imaged.w100 {
        width: 100px !important;
    }

    .imaged.w120 {
        width: 120px !important;
    }

    .imaged.w140 {
        width: 140px !important;
    }

    .imaged.w160 {
        width: 160px !important;
    }

    .imaged.w180 {
        width: 180px !important;
    }

    .imaged.w200 {
        width: 200px !important;
    }

    .imaged.img-fluid {
        width: 100%;
    }

    .imaged.rounded {
        border-radius: 100% !important;
    }

    .imaged.radius {
        border-radius: 10px !important;
    }

    .imaged.square {
        border-radius: 0 !important;
    }

/*----Icon Size------*/

.fs-9 {
    font-size: 9px !important;
    line-height: 21px !important;
}

.fs-10 {
    font-size: 10px !important;
    line-height: 22px !important;
}

.fs-11 {
    font-size: 11px !important;
    line-height: 23px !important;
}

.fs-12 {
    font-size: 12px !important;
    line-height: 24px !important;
}

.fs-13 {
    font-size: 13px !important;
    line-height: 25px !important;
}

.fs-14 {
    font-size: 14px !important;
    line-height: 26px !important;
}

.fs-16 {
    font-size: 16px !important;
    line-height: 28px !important;
}

.fs-18 {
    font-size: 18px !important;
    line-height: 30px !important;
}

.fs-20 {
    font-size: 20px !important;
    line-height: 32px !important;
}

.fs-22 {
    font-size: 22px !important;
    line-height: 34px !important;
}

.fs-24 {
    font-size: 24px !important;
    line-height: 36px !important;
}

.fs-28 {
    font-size: 28px !important;
    line-height: 40px !important;
}

.fs-32 {
    font-size: 32px !important;
    line-height: 44px !important;
}

.fs-36 {
    font-size: 36px !important;
    line-height: 48px !important;
}

.fs-38 {
    font-size: 38px !important;
    line-height: 50px !important;
}

.fs-40 {
    font-size: 40px !important;
    line-height: 52px !important;
}

.fs-42 {
    font-size: 42px !important;
    line-height: 54px !important;
}

.fs-48 {
    font-size: 48px !important;
    line-height: 60px !important;
}

.fs-50 {
    font-size: 50px !important;
    line-height: 62px !important;
}

.fs-54 {
    font-size: 54px !important;
    line-height: 66px !important;
}

.fs-60 {
    font-size: 60px !important;
    line-height: 72px !important;
}

@media (max-width: 767px) {
    .section .container {
        /*padding-left: 0px;
            padding-right: 0px;*/
    }    
        .appHeader .pageTitle h2 {
            margin-bottom: 0px;
            font-weight: 600;
            font-size: 17px;
        }
    .appHeader .left i,
    .appHeader .right i {
        font-size: 26px;
    }
}