/*---------
    Common CSS Style
    ------------*/
@import url('../vendor/bootstrap-icons/font/bootstrap-icons.min.css');
@import url("https://unpkg.com/ionicons@4.5.10-0/dist/css/ionicons.min.css");

:root {
    --body-font: 'Avenir LT Std 35 Light', sans-serif;
    --body-color: #fff;
    --heading-font: 'Avenir LT Std 85 Heavy';
    --primary-color: #5800bf;
    --secondary-color: #00a6eb;
    --head-color: #0c266c;
    --section-primary-color: #f2f3f9;
    --section-color: #f5f6fc;
    --para-color: #232323;
    --border-color: #868ea5;
    --hover-alt-color: #291b6b;
}

body {
    background-color: var(--body-color);
    color: #333333;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#launcher {
    bottom: 50px !important;
}

@media (min-width: 768px) {
    /*  body {
        background-color: #ffffff;
    }*/
}

::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

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;
}

body.dark-mode input:-webkit-autofill,
body.dark-mode input:-webkit-autofill:hover,
body.dark-mode input:-webkit-autofill:focus,
body.dark-mode input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #2d1f3b inset !important;
    /*border: 0px solid #719ECE;*/
    box-shadow: 0 0 10px #2d1f3b;
    color: #fff !important;
}

select.form-select:focus,
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: none;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* 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;
}

* {
    -webkit-touch-callout: none; /* Safari */
    -webkit-user-select: none; /* Chrome */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

#loading-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: .8;
}

a {
    color: #6236ff;
    text-decoration: none;
}

    a:hover {
        color: var(--secondary-color);
    }

strong, b {
    font-weight: 600;
}

.ajax-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px; /* -1 * image width / 2 */
    margin-top: -32px; /* -1 * image height / 2 */
    display: block;
    width: 80px;
}

.section-divider {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 60px;
    height: 3px;
    background-color:#fff;
    border-radius: 0px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/*----* Component: Form* -----------------*/
.select-box-arrow {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 0px;
}

    .select-box-arrow:before,
    .select-box-arrow-lg:before {
        content: '';
        position: absolute;
        /*background-color: #ffffff;*/
        pointer-events: none;
        border-radius: 4px;
    }

    .select-box-arrow:before {
        right: 1px;
        top: 1px;
        height: 31px;
        width: 30px;
    }

    .select-box-arrow:after,
    .select-box-arrow-lg:after {
        content: '\F282';
        position: absolute;
        pointer-events: none;
        font-family: 'bootstrap-icons';
        color: #174178;
    }

    .select-box-arrow:after {
        right: 10px;
        top: 6px;
        font-size: 14px;
    }

.select-box-arrow-lg:before {
    right: 16px;
    top: 1px;
    height: 44px;
    width: 30px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.select-box-arrow-lg:after {
    right: 24px;
    top: 13px;
    font-size: 14px;
    color: #174178;
    z-index: 111;
}

@media (min-width: 768px) {
    .select-box-arrow .form-control {
        padding-right: 30px;
    }

    .select-box-arrow:after {
        right: 10px;
        top: 6px;
    }

    .select-box-arrow-lg {
        position: relative;
        overflow: hidden;
        display: block;
        border-radius: 0px;
    }

        .select-box-arrow-lg:before {
            right: 2px;
            top: 2px;
            height: 43px;
            width: 30px;
        }

        .select-box-arrow-lg:after {
            right: 18px;
            top: 13px;
            pointer-events: none;
            font-size: 14px;
            z-index: 111;
        }
}

.form-control, .form-select, .text-box {
    background-color: #ffffff;
    border-color: var(--color-light);
    color: var(--color-body);
    border-radius: 10px;
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s;
    transition: border-color ease-in-out .15s;
}

    .form-control:focus {
        border-color: #111;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.form-control-b {
    background-color: #ff7800;
    color: #fff;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .form-control.input-otp {
        border-width: 0px 0px 2px 0px;
        background-color: transparent;
        border-radius: 0px;
    }

    .form-control:focus {
        border-color: var(--primary-color) !important;
        box-shadow: none;
    }

    .form-control:-moz-placeholder {
        color: #bbb;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #bbb;
    }

    .form-control:-webkit-input-placeholder {
        color: #bbb;
    }



.input-group-text {
    border-color: #e9e9e9;
}

.form-group.boxed .form-floating .form-control {
    padding-top: 16px;
    padding-left: 12px;
}

.form-floating > label {
    font-size: 16px;
    line-height: 23px;
}

.form-select {
    border: 1px solid #e9e9e9;
}

.form-control-lg, .form-select-lg {
    font-size: 15px !important;
    height:60px !important;
}

/* Input group */
.input-group .input-group-text {
    border-radius: 10px;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: 600;
}

.input-group .input-group-text {
    /*height: auto;*/
}

.text-theme {
    color: var(--primary-color);
}

.border-secondary {
    border: 1px solid #cccccc !important;
}

.bg-light-grey {
    background-color: #fbfbfb;
}

.bg-light-gray {
    background-color: #f7f7f7;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-theme {
    background-color: var(--color-black) !important;
}
.wallet-card-section:before {
    background-color: var(--color-black) !important;
}

#giftCardHomeCategoriesSlider.owl-carousel .owl-stage-outer,
#utility-categories.owl-carousel .owl-stage-outer {
    justify-items: center;
}
/*----* FAQs* -----------------*/
.faq-section .accordion .accordion-header .btn,
.faq-section .accordion .accordion-header .accordion-button {
    font-size: 24px;
    padding: 32px 50px 32px 16px;
}
/*----* 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;
    }
/*----* Component: Button* -----------------*/
.btn,
.input-group .btn{
    border-radius: 12px;
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    font-weight: 700;
    /*display: inline-block;*/
    padding: 16px 24px;
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

    .btn:before {
        content: "";
        height: 100%;
        width: 100%;
        border-radius: 12px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .btn:hover:before {
        transform: scale(1.1);
    }

    .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: 0px 10px 16px 0px rgba(77,91,237,0.2);
        box-shadow: 0px 10px 16px 0px rgba(77,91,237,0.2);*/
    }

    /*.btn-curved {*/
    /*border-radius:.375rem;*/
    /*border-radius: 45px;
}*/

    .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 {
    color: #fff !important;
    cursor: pointer;
}
a.btn.btn-theme i,
button.btn.btn-theme i {
    color: var(--color-white);
}
.btn-theme:before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    
}

    .btn-theme:focus:before,
    .btn-theme.focus:before {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

    .btn-theme:hover:before {
        color: #fff;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }


.btn-default {
    background-color: #f4f4f4;
    color: #444;
    border-color: #ddd;
}

    .btn-default:hover:before,
    .btn-default:active:before,
    .btn-default.hover:before {
        background-color: #e7e7e7 !important;
    }

.btn-primary {
    background-color:transparent;
    color: #fff !important;
    cursor: pointer;
}
    .btn-primary:before {
        background-color: #6236ff;
        border: transparent;
    }
    .btn-primary:focus:before,
    .btn-primary.focus:before {
        background-color: #6236ff;
        border-color: #6236ff;
        color: #fff;
    }

    .btn-primary:hover:before,
    .btn-primary:active:before,
    .btn-primary.hover:before {
        background-color: #4e1dff;
        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 {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

    .btn-info:hover,
    .btn-info:active,
    .btn-info.hover {
        color: #fff;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.btn-danger {
    color: #fff !important;
    cursor: pointer;
}
a.btn.btn-danger i,
button.btn.btn-danger i {
    color: var(--color-white);
}

    .btn-danger:before {
        background-color: var(--color-secondary);
        /*border-color: var(--color-secondary);    */
    }

    .btn-danger:focus:before,
    .btn-danger.focus:before {
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
        color: #fff;
    }

    .btn-danger:hover:before {
        color: #fff;
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }

.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: #00a6eb;
        -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-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;
}

.phone-input-container {
    display: flex;
    align-items: center;
    width: 100%;
}

/*.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}*/

.country-dropdown {
    flex: 0 0 auto;
    width: 150px;
}

    .country-dropdown button {
        width: 100%;
        text-align: left;
        justify-content: start;
    }

        .country-dropdown button .imgflag {
            margin-right: 10px;
        }

.dropdown.country-dropdown .dropdown-menu {
    min-width: 360px;
    max-width: 360px;
}

    .dropdown.country-dropdown .dropdown-menu .dropdown-item {
        padding-left: 6px;
    }

        .dropdown.country-dropdown .dropdown-menu .dropdown-item .imgflag {
            margin-right: 6px;
        }

.phone-number-input {
    flex: 1;
}


.form-group {
    position: relative;
}

#searchInput {
    cursor: pointer;
    background-color: #fff;
}

#imgflag, .imgflag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}
/*-----Social Buttons------*/

ul.social-buttons {
    margin-bottom: 0;
}

    ul.social-buttons li {
        display: inline-block !important;
        padding-left: 0px !important;
    }


        ul.social-buttons li a {
            display: block;
            width: 40px;
            height: 40px;
            border-radius: 50px;
            font-size: 20px;
            line-height: 22px;
            outline: 0;
            color: #fff !important;
            padding: 10px;
            background-color: var(--primary-color);
            cursor: pointer;
            text-align: center;
            -webkit-transition: all .3s;
            -moz-transition: all .3s;
            transition: all .3s;
        }

            ul.social-buttons li a:hover,
            ul.social-buttons li a:focus,
            ul.social-buttons li a:active {
                background-color: var(--secondary-color);
                color: #ffffff !important;
            }

.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;
}

.error-msg {
    color: #dd4b39;
}
/*-------General CSS---------*/

.text-light {
    font-weight: 300;
}

.text-normal {
    font-weight: 400;
}

.text-semibold {
    font-weight: 600;
}

.text-bold {
    font-weight: 600;
}

.ion-pad {
    padding-top: 23px;
}

.panel-bo {
    padding: 0px 15px 0 15px;
}
/*--------------------------------------------------------------
Utilities
--------------------------------------------------------------*/

ol.media-list {
    list-style-type: none;
}

.arrow-left {
    position: relative;
}

    .arrow-left::after {
        top: 10%;
        content: "\f105";
        position: absolute;
        right: 0;
        font-family: 'FontAwesome';
        font-size: 46px;
        font-weight: bold;
        color: #cdcdcd;
    }

.theme-text-color-light {
    color: #Fff;
    font-weight: 300;
}

.theme-text-color-dark {
    color: #039a4c;
}

.opaque {
    opacity: 0;
}

.completed, .processing, .canceled, .failed, .success, .cancelled, .refunded, .pending, .accept{
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 0px;
    /*height: 20px !important;*/
    padding: 2px 7px;
    font-size: 12px;
}

.completed {
    background-color: #b6e5b7;
}

.processing {
    background-color: #37bdd8;
}

.cancelled, .canceled {
    background-color: #dd4b39;
}

.failed {
    background-color: #d6111b;
}

.success {
    background-color: #039c4c;
}

.pending {
    color: #232323;
    background-color: #FFD700;
}

.accept {
    color: #232323;
    background-color: #FFD700;
}

.refunded {
    color: #232323;
    background-color: #D3D3D3;
    border-radius: 20px;
}
/*-----------------
 * Page: Mobile App
 * ----------------------
 */
/*--Animated Nan Link---*/
.navbar-sticky {
    background-color: #fff;
    -webkit-animation: fadeInDown 0.5s;
    animation: fadeInDown 0.5s;
    border-bottom: 1px solid var(--bs-gray-200);
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-toggle {
    border: none;
    background: transparent !important;
}

    .navbar-toggle:hover {
        background: transparent !important;
    }

    .navbar-toggle .icon-bar {
        width: 22px;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }
    /* Animated hamburger */
    .navbar-toggle.hamburger .icon-bar:nth-of-type(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 10% 10%;
        -ms-transform-origin: 10% 10%;
        transform-origin: 10% 10%;
    }

    .navbar-toggle.hamburger .icon-bar:nth-of-type(2) {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .navbar-toggle.hamburger .icon-bar:nth-of-type(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 10% 90%;
        -ms-transform-origin: 10% 90%;
        transform-origin: 10% 90%;
    }

    /* Animated hamburger Collapsed */
    .navbar-toggle.hamburger.collapsed .icon-bar:nth-of-type(1) {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-toggle.hamburger.collapsed .icon-bar:nth-of-type(2) {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .navbar-toggle.hamburger.collapsed .icon-bar:nth-of-type(3) {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
/*---End Animated hamburger----*/
.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 {
        font-family: 'Avenir LT Std 85 Heavy', sans-serif;
        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: var(--primary-color);
        font-size: 13px;
        font-weight: 600;
    }

.dropdown-toggle::after {
    content: none;
}


.dropdown-toggle .in::after {
    border: none !important;
    font-family: bootstrap-icons;
    content: "\F282" !important;
    position: relative;
    top: 3px;
    padding-left: 10px;
    font-size: 14px;
}

/*.form-group {
    position: relative;
}

#searchInput {
    cursor: pointer;
    background-color: #fff;
}*/


#dropdownContainer {
    /*position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
    display: none;
    z-index: 1000;*/
}

    #dropdownContainer.show {
        display: block;
    }

.dropdown-item {
    padding: 10px;
    /*cursor: pointer;*/
}

    .dropdown-item:hover {
        background-color: #f1f1f1;
    }


.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    z-index: 99;
}

    .dropdown-content.show {
        display: flex;
    }

        .dropdown-content.show select option {
            margin: 5px 0px;
        }

#productDropdown {
    width: 100%;
    border: none;
    outline: none;
    position: relative;
}

.select2.select2-container {
    width: 100% !important;
}

    .select2.select2-container .select2-selection {
        border: 1px solid #ccc;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        height: 52px;
        margin-bottom: 10px;
        outline: none !important;
        transition: all .15s ease-in-out;
    }

        .select2.select2-container .select2-selection .select2-selection__rendered {
            color: #333;
            line-height: 32px;
            padding-right: 33px;
        }

        .select2.select2-container .select2-selection .select2-selection__arrow {
            /*background: #f8f8f8;
            border-left: 1px solid #ccc;
            -webkit-border-radius: 0 3px 3px 0;
            -moz-border-radius: 0 3px 3px 0;*/
            border-radius: 10px;
            height: 32px;
            width: 33px;
        }

    .select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
        /*background: #f8f8f8;*/
        border-radius: 10px;
    }

        .select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
            -webkit-border-radius: 0 3px 0 0;
            -moz-border-radius: 0 3px 0 0;
            border-radius: 0 3px 0 0;
        }

    .select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
        border: 1px solid #34495e;
    }



.select2-container .select2-dropdown {
    background: transparent;
    border: none;
    margin-top: -5px;
}

    .select2-container .select2-dropdown .select2-search {
        padding: 0;
    }

        .select2-container .select2-dropdown .select2-search input {
            outline: none !important;
            border: 1px solid #34495e !important;
            border-bottom: none !important;
            padding: 4px 6px !important;
        }

    .select2-container .select2-dropdown .select2-results {
        padding: 0;
    }

        .select2-container .select2-dropdown .select2-results ul {
            background: #fff;
            border: 1px solid #34495e;
        }

            .select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
                background-color: #3498db;
            }

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 40px;
    font-size: 1.3em;
    padding: 4px 12px;
    height: 27px;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
}


/*------Transactions---------*/
.bill-box .img-wrapper img {
    margin: auto;
    height: 48px;
    max-height: 48px;
}

.bill-box {
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
}

    .bill-box:hover {
        box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.09);
    }

    .bill-box p {
        font-size: 13px;
        color: #333;
    }

        .bill-box p.biller-name {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            text-overflow: ellipsis;
        }

body.dark-mode .bill-box p {
    color: #8f82a5;
}

body.dark-mode .bg-white {
    background-color: #161129 !important;
}

.wallet-card .wallet-footer {
    border-top: 1px dotted #dcdcdc;
}

/*.listview {
        line-height: 1.6em;
    }*/

.searchbox .form-control,
.searchbox .form-select {
    height: 38px;
    padding-left: 52px;
    /*border-color: #e9e9e9;*/
}

.searchbox .input-icon {
    width: 52px;
    height: 58px;
    left: 4px;
}

.profileBox {
    position: relative;
    align-items: center;
    background: var(--secondary-color);
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 10%), 0 1px 3px 0 rgb(0 0 0 / 8%);
}

    .profileBox .image-wrapper {
        padding: 10px 0px;
        margin-right: 0px;
    }

        .profileBox .image-wrapper .imaged {
            width: 42px;
            height: 42px;
            border: 2px solid #FFF;
            box-shadow: 0 3px 6px 0 rgb(0 0 0 / 10%), 0 1px 3px 0 rgb(0 0 0 / 8%);
        }

.listed-detail .iconbox {
    background: #ffffff;
    border: 1px solid #f4f4f4;
    color: var(--primary-color);
}

    .listed-detail .iconbox img {
        max-height: 64px;
        max-width: 64px;
    }

.exchange-heading .group-label {
    font-weight: 600;
    font-size: 13px;
}

@media (max-width: 767px) {
    .section .container {
        /*padding-left: 0px;
            padding-right: 0px;*/
    }

    .appHeader {
        border-bottom-color: transparent;
    }

        .appHeader .left .headerButton, .appHeader .right .headerButton {
            color: #337ab7;
        }

        .appHeader .pageTitle {
            padding: 0 0px;
            position: absolute;
            left: 60px;
            top: 0px;
        }

            .appHeader .pageTitle h2 {
                font-family: var(--body-font);
                margin-top: 0px;
                margin-bottom: 0px;
                font-size: 19px;
                min-width: 36px;
                height: 56px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

        .appHeader .left i,
        .appHeader .right i {
            font-size: 26px;
        }
}
/*----------------------
Animation  
-----------------------*/
.post-scale {
    overflow: hidden;
}

    .post-scale img {
        transition: 0.5s;
    }

    .post-scale:hover img {
        transform: scale(1.1);
    }

@keyframes signalanimation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes customOne {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

@keyframes customTwo {
    0% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(100px, 0px);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.customOne {
    animation: customOne 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--color-primary);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
/* ------------------------
    Custom Animation 01 
----------------------------*/
@-webkit-keyframes headerSlideDown {
    0% {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes headerSlideDown {
    0% {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0);
    }
}
/*------------------------
	slidefadeinup
--------------------------*/
@-webkit-keyframes slideFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes slideFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.slideFadeInUp {
    -webkit-animation-name: slideFadeInUp;
    animation-name: slideFadeInUp;
}

/* -----------------------------------
    Custom Animation For All Page
---------------------------------------*/
@-webkit-keyframes moveVertical {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes moveVertical {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/*--------------------------------
Scroll Down Button Animation  
----------------------------------*/
@keyframes scrollDown {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

@keyframes btnIconSlide {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
        opacity: 0;
    }

    80% {
        transform: translateY(5px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes prevNavSlide {
    0% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(-5px);
        opacity: 0;
    }

    80% {
        transform: translateX(5px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes nextNavSlide {
    0% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(5px);
        opacity: 0;
    }

    80% {
        transform: translateX(-5px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
