@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
.wishpo-btn {
    display: none;
    height: 53px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: 2px solid #c00d53;
    border-radius: 8px;
    background: transparent;
    width: 100%;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    color: #c00d53;
}

.wishpo-btn span {
    display: flex;
    align-items: center;
    gap: 0.3em;
}

#wishpo-btn-handler {
    display: none;
    font-size: 12px;
    text-align: center;
    color: red;
    margin-top: 10px;
}

.wishpo-btn span {
    color: inherit;
    font-size: inherit;
    font-weight: 500;
}

.show {
    visibility: visible;
}

.hide {
    padding: 0 !important;
    height: 0px;
    visibility: hidden;
}

.modal {
    display: none;
    position: fixed;
    overflow: hidden !important;
    z-index: 10000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
}

.modal-content {
    background-color: transparent;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.custom-notification {
    display: none !important;
    justify-content: space-between;
    gap: 16px;
    border-radius: 4px;
    overflow: hidden;
    background-color: white;
    max-width: 432px;
    position: fixed;
    top: 75px;
    right: 8px;
    box-shadow: 5px 6px 15px -1px rgba(0, 0, 0, 0.19);
    transition: all 0.5s ease-in-out;
    z-index: 999999999999999;
}

.custom-notification.open {
    display: flex;
    transform: translateX(0px);
    opacity: 1;
}
.custom-notification.close {
    display: none;
    transform: translateX(500px);
    opacity: 0;
}

.type-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 24px;
}

.type-icon.success {
    background-color: #00bc5d;
}
.type-icon.error {
    background-color: red;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0px;
}

.toast-content-heading,
.toast-content-main {
    font-size: 14px;
    line-height: 21px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.toast-content-heading {
    font-weight: 600;
}

.cancel-icon {
    padding: 16px 16px 16px 0px;
    cursor: pointer;
}

.spinner {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

#connectIframe #wishpo {
    overflow: auto;
}
