@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

* {
    font-family: "Poppins", sans-serif;
    transition: color, background-color, height, width 0.3s ease-in-out;
}

.d-flex {
    display: flex !important;
}

.v-hidden {
    visibility: hidden !important;
}

.space-btw {
    justify-content: space-between !important;
}

.w-100 {
    width: 100% !important;
}

.w-95 {
    width: 95% !important;
}

.w-475 {
    width: 47.5% !important;
}

.t-left {
    text-align: left !important;
}

.t-center {
    text-align: center !important;
}

.fd-row {
    flex-direction: row !important;
}

.fd-column {
    flex-direction: column !important;
}

.m-left-2-5 {
    margin: 0 0 0 2.5% !important;
}

.is-invalid {
    border-color: #d83c3e !important;
}

.swal2-container * {
    transition: all 0.3s ease-in-out;
}

.swal2-container p {
    margin: 0;
}

.swal2-container .swal2-popup {
    border-radius: 1rem;
}

.swal2-container .swal2-popup .swal2-timer-progress-bar {
    margin: 0 6px;
}

.swal2-container .swal2-popup .swal2-confirm, .swal2-container .swal2-popup .bg-gradient-success, .swal2-container .swal2-popup .bg-gradient-danger {
    outline: 0;
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    color: white;
}

.swal2-container .swal2-popup button {
    display: flex;
    justify-content: center;
    margin: 0 10px 0 10px;
    min-height: 48px;
    outline: none;
    border: none;
    border-radius: 5px;
    width: fit-content;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    align-items: center;
    font-weight: 700;
}

.swal2-container .swal2-popup button p {
    margin: 0 0 0 10px;
}

.bg-gradient-confirm {
    background-image: linear-gradient(310deg, #2152ff, #21d4fd) !important;
}

.bg-gradient-success {
    background-image: linear-gradient(310deg, #2dce89, #2dcecc) !important;
}

.bg-gradient-danger {
    background-image: linear-gradient(310deg, #f5365c, #f56036) !important;
}

.swal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 22px !important;
    min-width: 22px !important;
    outline: none !important;
    border: none !important;
}

.swal-close::before {
    content: "";
}

.swal-close:focus {
    outline: none !important;
    box-shadow: none !important;
    color: #f27474 !important;
}

.btn-purple {
    position: relative;
    background: #4b56d2 !important;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    color: white;
    border-radius: 8px;
}

.btn-purple:hover {
    transform: translateY(-3px);
}

.btn-purple::before {
    content: "";
    background-image: linear-gradient(30deg, rgba(22, 107, 173, 0) 70%, #8b3eff);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

.bg-gradient-info {
    position: relative;
    background: rgb(22, 107, 173) !important;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    color: white;
    border-radius: 8px;
}

.bg-gradient-info:hover {
    transform: translateY(-3px);
}

.bg-gradient-info::before {
    content: "";
    background-image: linear-gradient(30deg, rgba(22, 107, 173, 0) 70%, rgb(33, 212, 253));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    align-items: center;
}

.form-group.checkbox {
    margin-bottom: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
    margin-left: 8px;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgb(52, 71, 103);
}

.form-group input {
    min-height: 35px;
    padding: 8px 12px;
    border: 1px solid rgb(210, 214, 218);
    border-radius: 8px;
    outline: none;
    color: rgb(103, 116, 142);
}

#address-popup input::placeholder {
    color: rgb(190, 198, 216);
}

#address-popup input {
    color: black;
}

#addressChoices {
    z-index: 8;
}

.addressChoice:first-of-type {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.addressChoice {
    display: flex;
    flex-direction: column;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.addressChoice:hover {
    background-color: #f5f5f5;
}

.contextMenu {
    --menu-border: rgba(255, 255, 255, 0.08);
    --menu-bg: linear-gradient(
            45deg,
            rgba(10, 20, 28, 0.2) 0%,
            rgba(10, 20, 28, 0.7) 100%
    );
    --item-border: rgba(255, 255, 255, 0.1);
    --item-color: #fff;
    --item-bg-hover: rgba(255, 255, 255, 0.1);
    height: 0;
    overflow: hidden;
    background: var(--menu-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: var(--top);
    left: var(--left);
    animation: menuAnimation 0.4s 0s both;
    transform-origin: left;
    list-style: none;
    margin: 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    z-index: 999999999;
    box-shadow: 0 0 0 1px var(--menu-border), 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.04), 0 10px 8px rgba(0, 0, 0, 0.05), 0 15px 15px rgba(0, 0, 0, 0.06), 0 30px 30px rgba(0, 0, 0, 0.07), 0 70px 65px rgba(0, 0, 0, 0.09);
}

.contextMenu-item {
    padding: 4px;
}

.contextMenu-item[data-divider=top] {
    border-top: 1px solid;
}

.contextMenu-item[data-divider=bottom] {
    border-bottom: 1px solid;
}

.contextMenu-item[data-divider=top-bottom] {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.contextMenu-item[data-divider] {
    border-color: var(--item-border);
}

.contextMenu-button {
    color: var(--item-color);
    background: 0;
    border: 0;
    white-space: nowrap;
    width: 100%;
    border-radius: 4px;
    padding: 6px 24px 6px 7px;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 14px;
    animation: menuItemAnimation 0.2s 0s both;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.contextMenu-button:hover {
    background-color: var(--item-bg-hover);
}

.contextMenu[data-theme=light] {
    --menu-bg: linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.45) 0%,
            rgba(255, 255, 255, 0.85) 100%
    );
    --menu-border: rgba(0, 0, 0, 0.08);
    --item-border: rgba(0, 0, 0, 0.1);
    --item-color: rgb(10, 20, 28);
    --item-bg-hover: rgba(10, 20, 28, 0.09);
}

.contextMenu i {
    height: 13px !important;
    width: 13px !important;
    font-size: 13px !important;
    margin-right: 4px !important;
}

@keyframes menuAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        height: var(--height);
        opacity: 1;
        border-radius: 8px;
        transform: scale(1);
    }
}

@keyframes menuItemAnimation {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    border: 0;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    user-select: none;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    outline: none;
    box-sizing: border-box;
}

.popup-container {
    display: grid;
    grid-auto-flow: column;
    padding: 16px;
    gap: 16px;
}

.popup-container .row {
    display: grid;
    grid-auto-flow: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.popup-container .row .btn {
    padding: 8px 16px;
}

.popup-container {
    display: grid;
    grid-auto-flow: row;
}

.popup-container .row {
    display: grid;
    grid-auto-flow: column;
    grid-template: 1fr/1fr 1fr;
    align-items: end;
    margin: 0 0 10px 0;
}

.popup-container .row input {
    width: 100%;
    height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 14px;
    color: #45505b;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.popup-container .row input:focus {
    border-color: #11CDEF;
}

.popup-container .field {
    width: 100%;
    margin: 0 12px 0 0;
    display: flex;
    flex-direction: column;
}

.popup-container .field label {
    font-size: 14px;
    font-weight: 600;
}

.popup-container .field #proof_button {
    cursor: pointer;
}

.popup-container .field:nth-child(3), .popup-container .field:nth-child(4) {
    margin-top: 24px;
}

/*# sourceMappingURL=default.css.map */
