.transactions.btns-container {
    position: relative;
    width: 100%;
}

.transactions.btns-container .btn {}

.info-modal-background {
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.info-modal-background .info-modal {
    width: 400px;
    background: white;
    border-radius: 2px;
    margin: auto;
    margin-top: 50px;
    padding: 20px 20px;
    margin-bottom: 30px;
}

.info-modal-background .info-modal .icon-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.info-modal-background .info-modal .icon-container .icon {
    width: 100px;
    height: auto;
}

.info-modal-background .info-modal .close-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.info-modal-background .info-modal .close-btn-container .close-btn {
    padding: 10px 30px;
    background: #b113b4;
    color: white;
    border-radius: 3px;
    text-decoration: none;
}


/*************************** start of  smaller screen*******************/

@media only screen and (max-width: 918px) {
    .info-modal-background {
        overflow-y: auto;
    }
    .info-modal-background .info-modal {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 50px;
        padding: 20px 20px;
    }
}


/** ********************end of smaller screen********************** **/

.centered-div {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

button,
input,
textarea {
    outline: none !important;
}