@charset "UTF-8";

body{
/*    font-family: var(--font-inter) !important;*/
}
/* ------------------------------------------------------------ */
/* loading css start*/
/* Fullscreen Loading Overlay */
.loading-overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    background: rgba(0, 0, 0, 0.20); *//* Darker background for a professional look */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Loader Container */
/* Centering Loader Properly */
.loader {
    display: flex;
    flex-direction: column; /* Stack spinner and text */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

/* Modern Spinner */
.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #172B5D; /* A professional blue color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

/* Loading Text */
.loading-text {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: pulse 1.5s infinite ease-in-out;
}

/* Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Text Pulsing Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Show Loading Effect */
.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}
/* Show the loading overlay when the hx-loading class is added */
.loading-overlay.hx-loading {
    opacity: 1;
    visibility: visible;
}
/*loading css end*/
/* ----------------------------------------------------------- */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
    max-width: 90%;
}

.toast-container>:not(:last-child) {
    margin-bottom: 0px !important;
}

.toast {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.4s ease-out forwards;
    position: relative;
    overflow: hidden;
    font-size: medium;
}

.toast.success { background-color: rgba(40, 167, 69, 0.9); }
.toast.error   { background-color: rgba(220, 53, 69, 0.9); }
.toast.info    { background-color: rgba(0, 123, 255, 0.9); }

.toast .close {
    position: absolute;
    top: 10px;
    right: 16px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    user-select: none;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@media (max-width: 500px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: auto;          /* Ensure left side is unset */
        bottom: auto;        /* Ensure bottom is unset */
        align-items: flex-end; /* Keep items aligned to the right */
        max-width: 90vw;     /* Allow some responsiveness */
        padding: 0 5px;
    }

    .toast {
        max-width: 320px;    /* Keep max width */
        width: 100%;         /* Full width inside container */
    }
}
/* ----------------------------------------------------------- */

.parsley-success {
    background-image: none !important;
}

.parsley-success::after {
    display: none !important;
}

.parsley-errors-list {
    margin: 0px 0 0 0;
    padding: 0;
    list-style-type: none;
    color: red; /* or your error color */
    font-size: 0.8em;
}

input.parsley-error, select.parsley-error, textarea.parsley-error {
    color: unset !important;
    background-color: unset !important;
   /* border: unset !important;*//*TODO: 03/07/2025 removed because normal field border is not visible and making design issue on frontend transaction summary as well admin side */
}
.parsley-errors-list li {
    margin-left: 2px !important;
    margin-bottom:2px !important;
}



/* ----------------------------------------------------------- */

/*------------- root -----------------*/


.ayo-card{
    border-radius: 8px;
    background-color: #fff;
    border: 0.5px solid #e7eaee;
    box-sizing: border-box;
    width: 100%;
    margin-top: 10px;
}

/* ---------------------------------------- */
.accordion-collapse {
    transition: height 0.4s ease;
    overflow: hidden;
}

.accordion-body {
    padding: 1rem;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.accordion-collapse.show .accordion-body {
    opacity: 1;
}

/* ------------------------------------------------*/
.modal-content .btn-close {
    position: absolute;
    top: 0.3rem;  /* dont remove*/
    right: 0.3rem; /* dont remove*/
    font-size: medium;
    z-index: 1055;
    padding: 0.5rem;
    filter: invert(24%) sepia(93%) saturate(7074%) hue-rotate(358deg) brightness(100%) contrast(113%);
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out;
}

.modal-content{
    min-height: 200px;
}

.json-document{
    padding: 2em 3em !important;
}

/*--------------------------------------------------------------------*/

input.parsley-success, select.parsley-success, textarea.parsley-success {
    color: inherit !important;
}
/*------------------------------------------------------------------------*/


        /*---------------- app var ------------------------------------------*/

body {
    margin: 0;
    line-height: normal;
}

:root {

/* Color */
    --color-gray-200: #1d1d1d;
    --color-gray-300: rgba(255, 255, 255, 0.5);
    --color-ghostwhite: #f1f4ff;
    --color-darkslateblue: #172b5d;
    --color-white: #fff;
    --color-gray-100: #757575;
    --color-gray: #1d1d1d;
    --color-mediumseagreen: #46af5c;
    --color-lightsteelblue: rgba(191, 211, 255, 0.2);
    --color-aliceblue-100: #f2f6ff;
    --color-aliceblue-200: rgba(242, 246, 255, 0.7);

    /* Gap */
    --gap-32: 2rem;
    --gap-10: 0.625rem;
    --gap-4: 0.25rem;
    --gap-24: 1.5rem;
    --gap-14: 0.875rem;
    --gap-8: 0.5rem;

    /* Padding */
    --padding-30: 1.875rem;
    --padding-10: 0.625rem;
    --padding-14: 0.875rem;
    --padding-24: 1.5rem;
    --padding-32: 2rem;

    /* BorderRadius */
    --br-10: 10px;
    --br-20: 20px;
    --br-100: 100px;
    --br-80: 80px;
    --br-2: 2px;
    --br-40: 40px;

    /* Font */
    --font-inter: Inter;

    /* FontSize */
    --font-size-18: 1.125rem;
    --font-size-24: 1.5rem;
    --font-size-14: 0.875rem;
    --font-size-32: 2rem;
    --font-size-36: 2.25rem;
    --font-size-16: 1rem;

}


@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/*----------------------------------------------------------------*/



/* For all scrollable elements */
* {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #172B5D #f0f0f0; /* Light gray thumb and track */
}

/* Webkit-based browsers (Chrome, Edge, Safari) */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px; /* For horizontal scrollbars */
}

/* Scrollbar track */
*::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

/* Scrollbar thumb */
*::-webkit-scrollbar-thumb {
    background: #b0b0b0; /* Light gray */
    border-radius: 20px; /* Fully rounded edges */
    border: 2px solid #f0f0f0; /* Adds spacing around thumb */
}

/* Hover effect */
*::-webkit-scrollbar-thumb:hover {
    background: #909090; /* Slightly darker gray on hover */
}

.unstyled-btn{
    all: unset;
    cursor: pointer; /* Optional: keeps pointer cursor for button feel */
}




.password-guidelines{
    background-color: #F8F9FD;
    color: dimgrey;
    padding: 10px;
    border-radius: 16px;
    margin-left: 5px;
    margin-right: 5px;
}

/* flags css*/
        /*------------------------------------------------------------*/
.flag {
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    width: 22px;
    height: 22px;
    border-radius: 50%; /* Makes it a circle */
    overflow: hidden; /* Ensures the image stays within the circle */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Softer shadow */
    border: 1px solid var(--color-border-neutral); /* More defined border */
    background-size: cover; /* Ensures full coverage */
    background-position: center; /* Centers the flag image */
    margin-right: 8px;
}

.flag-flat {
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    width: 20px;
    height: 15px;
    border-radius: 8%; /* Makes it a circle */
    overflow: hidden; /* Ensures the image stays within the circle */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Softer shadow */
    background-position: center; /* Centers the flag image */
    background-size: cover;
    margin-right: 5px;
    margin-left: 5px;
}

.flag-exchange-rate-option {
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    width: 26px;
    height: 18px;
    overflow: hidden; /* Ensures the image stays within the circle */
    /*	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); *//* Softer shadow */
    background-position: center; /* Centers the flag image */
    background-size: cover;
    margin-right: 5px;
    margin-left: 5px;
}

.flag-receiver {
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes it a circle */
    overflow: hidden; /* Ensures the image stays within the circle */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Softer shadow */
    background-position: center; /* Centers the flag image */
    background-size: cover;
    margin-right: 5px;
    margin-left: 5px;
}

.flag-contactUs {
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    width: 18px;
    height: 18px;
    border-radius: 50%; /* Makes it a circle */
    overflow: hidden; /* Ensures the image stays within the circle */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Softer shadow */
    background-position: center; /* Centers the flag image */
    background-size: cover;
    margin-right: 5px;
    margin-left: 5px;
}


.flag-receiver-receiving-mode {
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes it a circle */
    overflow: hidden; /* Ensures the image stays within the circle */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Softer shadow */
    background-position: center; /* Centers the flag image */
    background-size: cover;
}


.flag-GB {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/gb.svg)
}

.flag-AX {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/ax.svg)
}

.flag-NP {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/np.svg);
}

.flag-IN {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/in.svg)
}

.flag-KE {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/ke.svg)
}

.flag-FI {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/fi.svg)
}

.flag-LK {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/lk.svg)
}

.flag-AU {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/au.svg)
}

.flag-DE {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/de.svg)
}

.flag-FR {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/fr.svg)
}

.flag-IT {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/it.svg)
}

.flag-AT {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/at.svg)
}

.flag-BE {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/be.svg)
}

.flag-CY {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/cy.svg)
}

.flag-GR {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/gr.svg)
}

.flag-IE {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/ie.svg)
}

.flag-LV {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/lv.svg)
}

.flag-LT {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/lt.svg)
}

.flag-LU {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/lu.svg)
}

.flag-PT {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/pt.svg)
}

.flag-MT {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/mt.svg)
}

.flag-MC {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/mc.svg)
}

.flag-NL {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/nl.svg)
}

.flag-SM {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/sm.svg)
}

.flag-SK {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/sk.svg)
}

.flag-SI {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/si.svg)
}

.flag-ES {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/es.svg)
}

.flag-PH {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/ph.svg)
}

.flag-BD {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/bd.svg)
}

.flag-PK {
    background-image: url(https://ayoexternalvendor.b-cdn.net/assets/img/flags/pk.svg)
}

.active>.page-link, .page-link.active {
    background-color: #0E1A37 !important;
}

.cursor-pointer{
    cursor: pointer;
}

.alice-blue-onhover:hover{
    background: aliceblue;
}