@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');


:root {
    --modal-duration: 1s;
    /* --primary-color now comes from tokens.css (old rgba value here was invalid) */
    --text-color: #F8F9FA;
    --secondary-color: #005CFF;
    --third-color: #9AB8F2;
}

* {
    box-sizing: border-box;
    overscroll-behavior-y: none;
}

.body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    height: 100%;
    padding: 0;
    transition: transform 0.3s ease;
    overflow: hidden;
    overscroll-behavior-y: none;
}

.TopNav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginDiv {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 130%;
    position: relative;
    padding: 10px 5px;
    text-align: center;
    width: 300px;
    border-radius: 25px;
}

.loginDiv h1 {
    margin: 0;
}

.loginDiv img {
    height: 20vh;
}

.loginDiv img:hover {
    transform: scale(1.2);
}

.loginDiv p {
    margin: 10px 0;
}

.buttonContainer {
    display: flex;
    flex-direction: column;
}

.BottomNav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newDiv {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 130%;
    position: relative;
    padding: 10px 5px;
    text-align: center;
    width: 300px;
    border-radius: 25px;
}

.newDiv h1 {
    margin: 0;
}

.newDiv img {
    height: 20vh;
}

.newDiv img:hover {
    transform: scale(1.2);
}

.newDiv p {
    margin: 10px 0;
}


.WrapAll {

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-width: 400px;
    position: relative;
    background-color: var(--bg-deep-1);
    background-image: var(--bg-gradient);

}

.square{
    background-color: var(--grid-rest);
    box-shadow: inset 0 0 0 1px var(--grid-edge);
    height: 16px;
    width: 16px;
    margin: 2px;
    transition: background-color var(--glow-fade) var(--ease-out),
                box-shadow var(--glow-fade) var(--ease-out);
    border-radius: 3px;
    z-index: 1;
}

.square:hover {
    transition-duration: 0s;
}

.WrapAll h2,p {
    text-align: center;
}

button,
input[type='submit'] {
    background-color: var(--secondary-color);
    border: 0;
    border-radius: 15px;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
    padding: 16px 24px;
    margin-bottom: 10px;
    box-shadow: 2px 3px 2px rgba(16, 22, 25, 0.3);
}

button:focus {
    outline: none;
}

button:hover,
input[type='submit']:hover {
    transform: scale(1.01);
    box-shadow: 3px 3px 3px rgba(174, 234, 255, 0.5);
}

.cta-btn {
    padding: 15px 20px;
    color: var(--text-color);
    font-size: 20px;
    margin: 20px 20px;
    background-color: var(--glass-fill-2);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    box-shadow: var(--glass-shadow);
    pointer-events: auto;
    transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.cta-btn:hover {
    transform: scale(1.02);
    border-color: var(--glow-blue-2);
}

/* Make "Login" the primary action: the one saturated button */
#openLogin {
    background: linear-gradient(to bottom, #2b7cff, #005efe);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 94, 254, 0.35);
}

.MiddleWrap {

    text-align: center;
    background-color: transparent;
    border-radius: 5px;
    width: 400px; /* Adjust the minimum width as needed */
    min-height: 150px; /* Adjust the minimum height as needed */
    box-shadow: 3px 4px 3px rgba(16, 22, 25, 0.3);
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

.SendWrap {
    position: absolute;
    text-align: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 20px;
    min-width: 300px; /* Adjust the minimum width as needed */
    height: 75vh; /* Adjust the minimum height as needed */
    max-height: 100%;
    box-shadow: 4px 4px 4px rgba(174, 234, 255, 0.5);
    padding: 10px;
    display: none;
}

.upup {
    width: 420px;
    background-color: rgb(0, 0, 0);
    height: 75vh;
    z-index: 10;
    margin: 0 auto; /* Center the element horizontally */
}


.upup.active{
    display: flex;
}

.upup h1 {
    position: absolute;
    text-align: center;
    z-index: 11;
}

.SendWrap.active {
    display: block !important;
    margin: 20px auto;
}


.SendWrap h1 {
    top: 75px;
    margin: 25px;
    color: #ffffff;
    font-size: clamp(14px, 2rem, 4rem);
}

.SendWrap h4 {
    color: #ffffff;
}

.methodElements {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    margin-bottom: 25px;
    padding: 10px;
}

.methodElements label {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.methodElements input {
    background-color: #ffffff;
    width: 300px;
    height: 80px;
    padding: 1rem;
    margin-bottom: 25px;
}



.MyBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #9AB8F2;
    height: 80px;
    border-radius: 20px;
    z-index: 1;
    margin: 20px;
    box-shadow: 2px 2px 2px rgba(174, 234, 255, 0.5);
}

.depositConfirmGP {
   position: relative;
    right: 0;
    z-index: 4;
}

.MyBox:hover {
    transform: scale(0.9);
    cursor: pointer;
}

.MyBox-btn {
    background-color: #9AB8F2;
    height: 80px;
    border-radius: 20px;
    z-index: 1;
    margin: 20px 20px;
    box-shadow: 2px 2px 2px rgba(174, 234, 255, 0.5);
}

.MyBox img {
    height: 80%;
}

.deposit {
    color: #ffffff;
}

.snd-btn-container {
    margin-top: 30px;
    height: 90%;
    display: flex;
    flex-direction: column;
}

#PayWithStripe, #PayWithStripeDirect {
    display: flex;
    flex-direction: row;
}

.selectForm {

}

.redeemableForm {
    font-family: 'Lato', sans-serif;
    width: 100%;
    max-height: 90%;
    position: relative;
    bottom: 0;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    overflow-y: scroll;
}

.redeemableForm > label,
.redeemableForm > input,
.redeemableForm > button {
    margin-bottom: 15px;
    color: white;
}


input[type="text"], input[type="email"], input[type="number"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #0c0c0c;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}

.search {
    background-color: rgba(84, 111, 152, 0.2);;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    padding: 1.5rem 2rem;
    margin-top: 15px;
    width: 90%;
    color: #fff;
}

.search::placeholder {
    color: var(--secondary-color);
}

.search:focus {
    outline: none;
    background-color: var(--primary-color);
}

.FupyIcon {
    display: block;
}

.modal-container {
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
}

.modal-container.show-modal {
    display: block;
}

.modal {
    font-family: 'Lato', sans-serif;
    background-color: var(--glass-fill-2);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: #eaf1ff;
    border-radius: var(--radius-card);
    box-shadow: var(--glass-shadow);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 98vw;
    width: 400px;
    overflow: hidden;
    animation-name: modalopen;
    animation-duration: var(--modal-duration);
}

.modal-header {
    position: relative;
    background: rgba(0, 94, 254, 0.18);
    border-bottom: 1px solid var(--glass-border);
    color: #fff;
    padding: 15px;
}

.modal-header h3 {
    margin: 0;
}

.modal-content {
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.modal-form div {
    margin: 15px 0;
}

.modal-form label {
    color: #c7d6f5;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

.modal-form a,p {
    margin: 0;
}

.modal-form .form-input {
    background-color: rgba(255, 255, 255, 0.96);
    color: #0c0c0c;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 10px;
    width: 100%;
}

.modal-form .form-input:focus {
    outline: none;
    border-color: var(--glow-blue-2);
}

.modal-form .submit-btn {
    margin: 10px auto 10px auto;
}

.close-btn {
    background:  red;
    font-size: 15px;
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 10px 14px;
    border-radius: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.reg-container {
    background-color: rgba(0, 0, 0, 0.6);
    color: #0c0c0c;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.regContent {
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    color: #0c0c0c;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 400px;
    text-align: center;
}

.reg-header {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
}

.reg-header h3 {
    margin: 0;
    border-bottom: 1px solid #333;
}

.reg-content {
    padding: 20px;
}

.reg-form div {
    margin: 15px 0;
}

.reg-form label {
    color: #0c0c0c;
    display: block;
    margin-bottom: 5px;
    margin-left: 10px;
}

.reg-form .form-input {
    color: #0c0c0c;
    border: rgba(16, 22, 25, 0.3) solid 1px;
    border-radius: 2px;
    padding: 8px;
    width: 96%;
    margin-left: 5px;
}

.reg-form .submit-btn {
    margin: 10px auto 10px auto;
}


.WrapContent {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 50%;
}

.contentQuestions {
    display: none;

}

.contentDiv {
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 400px;
    text-align: center;
}

.payBoxContainer {
    display: flex;
    background-color: #ffffff;
    color: var(--secondary-color);
    font-size: 75px;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    border-radius: 5px;
}


.payBox {
    border-radius: 5px;
    font-size: clamp(25px, 75px, 80px);
    height: 75px;
    width: 90%;
    border: 1px solid #eee;
    margin: 1%;
    text-align: center;
    font-weight: 300;
    -moz-appearance: textfield;
    flex-shrink: 5;
}


.user-list {
    background-color: white;
    list-style-type: none;
    margin: 5px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 5px;
}

.user-list li {
    position: relative;
    left: -20px;
    display: flex;
    padding: 20px;
    border-radius: 5px;
}

.user-list li:hover {
    background-color: #acc6ca;
}

.user-list img {
    border-radius: 50%;
    object-fit: cover;
    height: 50px;
    width: 50px;
}

.user-list .user-info {
    margin: 10px;
}

.user-list .user-info h4 {
    font-size: 16px;
    color: #181818;
}

.user-list li:not(:last-of-type) {
    border-bottom: 1px solid #eee;
}

.user-list li.hide {
    display: none;
}

.userCard {
    display: flex;
    margin: 25px;
    flex-direction: row;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    height: 250px;
    flex-grow: 2;
}

.userCardMini {
    display: flex;
    margin: 5px;
    flex-direction: row;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    min-height: 5vh;
    flex-grow: 2;
    color: #eee;
}

.userCard img {
    width: 240px;
    flex-shrink: 2;
    margin: 10px 10px 10px 10px;
    border-radius: 50%;
}

.userCard h4 {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 75px;
    font-size: 20px;
}

.userCard h3 {
    margin-left: 50px;
    margin-right: 50px;
    font-size: 18px;
    color: #eee;
}

.userCard h5 {
    margin-left: 50px;
    margin-right: 50px;
    font-size: 16px;
    color: #eee;
}


.send-btn-container {
    position: absolute;
    margin: auto auto;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.iconSmall {
    display: flex;
    align-items: center; /* Center horizontally */
    margin-top: -40px;
    margin-bottom: 5px; /* Adjust as needed */
    justify-content: center; /* Center horizontally */
    font-family: 'Lato', sans-serif;
    color: white;
}

.el {
    width: 60px;
    height: 60px;
    filter: drop-shadow(-2px -1px 1px rgba(113, 95, 24, 0.24));
}


@media only screen and (orientation: portrait)
{
    .SendWrap {
        width: 94vw; !important;
    }

    .payBoxContainer {
        width: 100%;
        margin: 20px auto 5px auto;
    }

    .upup {
        width: 98vw;
    }


    .userCard {
        display: flex;
        margin: 10px auto 25px auto;
        flex-direction: column;
        border: 1px solid var(--secondary-color);
        border-radius: 5px;
        width: 90%;
        height: 30%;
        padding-bottom: 10px;
    }

    .userCard img {
        max-width: 75px;
        margin: 10px auto 0 auto;
        border-radius: 50%;
    }

    .userCard h4 {
        font-size: 20px;
        margin: 10px;
    }

    .userCard h3 {
        font-size: 18px;
        color: #eee;
        margin: 10px;
    }

    .userCard h5 {
        font-size: 18px;
        color: #eee;
        margin: 10px;
    }

    .userCardMini {
        position: relative;
        display: flex;
        margin: 0 auto 35px auto;
        flex-direction: row;
        justify-content: center;
        border: 1px solid var(--secondary-color);
        border-radius: 5px;
        width: 95%;
        height: 16vh;
    }

    .userCardMini img {
        position: absolute;
        height: 50px;
        margin-top: 1vh;
        margin-bottom: 1vh;
        left: 10px;
        border-radius: 50%;
    }

    .userCardMini .user-info {
       position: absolute;
        right: 10px;
    }

    .userCardMini h4 {
        font-size: 20px;
        margin: 20px;
    }

    .userCardMini h3 {
        flex-shrink: 5;
        font-size: 18px;
        color: #eee;
        margin: 20px;
    }



}

@keyframes modalopen {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}