.transcash-button-wrapper button {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    padding: .75rem 1rem;
    border: 1px solid #17171570;
    /* box-shadow: 1px 1px 5px 0px rgba(66, 68, 90, 1); */
    box-shadow: 0px 0px 12px 0px #FCC71761;
    font-weight: 600;
}

.transcash-button-wrapper button.transcash-button-hidden {
    display: none;
}

.transcash-button-wrapper.transcash-button-wrapper-position-right-bottom {
    bottom: 3rem;
    right: 3rem;
}

.transcash-button-wrapper.transcash-button-wrapper-position-left-bottom {
    left: 3rem;
    bottom: 3rem;
}

.transcash-button-wrapper.transcash-button-wrapper-position-right-top {
    right: 3rem;
    top: 3rem;
}

.transcash-button-wrapper.transcash-button-wrapper-position-left-top {
    left: 3rem;
    top: 3rem;
}

.transcash-button-wrapper {
    position: fixed;
    z-index: 99998;
}




  

.transcash-wrapper {
    position: fixed;
    width: 100%;
    height: 773px;
    max-height: 773px;
    top: 0;
    left: 0;    
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    transition: all 200ms;
    z-index: 99999;
}


@media all and (min-width: 1100px) {
    .transcash-wrapper {
        height: 1000px;
        max-height: 1000px;
    }
}

.transcash-wrapper.transcash-wrapper-hidden {
    transform: scale(0);
    transition: all 200ms;
}

.transcash-iframe-wrapper {
    height: 80%;
    width: 100%;
    max-width: 532px;
}

.transcash-iframe-wrapper iframe {
    height: 100%;
    width: 100%;
}

@media all and (max-width: 1400px) {
    .transcash-button-wrapper.transcash-button-wrapper-position-right-bottom {
        bottom: 2rem;
        right: 2rem;
    }

    .transcash-button-wrapper.transcash-button-wrapper-position-left-bottom {
        left: 2rem;
        bottom: 2rem;
    }

    .transcash-button-wrapper.transcash-button-wrapper-position-right-top {
        right: 2rem;
        top: 2rem;
    }

    .transcash-button-wrapper.transcash-button-wrapper-position-left-top {
        left: 2rem;
        top: 2rem;
    }
}

@media all and (max-width: 1000px) {
    .transcash-button-wrapper.transcash-button-wrapper-position-right-bottom {
        bottom: 16px;
        right: 16px;
    }

    .transcash-button-wrapper.transcash-button-wrapper-position-left-bottom {
        left: 16px;
        bottom: 16px;
    }

    .transcash-button-wrapper.transcash-button-wrapper-position-right-top {
        right: 16px;
        top: 16px;
    }

    .transcash-button-wrapper.transcash-button-wrapper-position-left-top {
        left: 16px;
        top: 16px;
    }
}

@media all and (max-width: 600px) {
    .transcash-iframe-wrapper {
        height: 100%;
        width: 100%;
        max-width: none;
    }
    .transcash-wrapper {
        bottom:0;
        top: unset;
    }
}