/**
 * All of the CSS for your common functionality should be
 * included in this file.
 */

/* Some css fixes */

.wps_wcb_body_template .wps_wcb_content_template .wallet-tabs ul {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.wps_wcb_body_template .wps_wcb_content_template .wallet-tabs ul li {
    margin: 0 0 15px;
    padding: 0;
    width: 100%;
    max-width: 200px;
    flex: 1 0 calc(50% - 70px);
}
.wps_wcb_content_template .wallet-tabs ul li.active a {
    background: #2196f3;
    box-shadow: 0 10px 30px rgb(33 150 243 / 50%), inset -5px -5px 15px rgb(25 113 182 / 50%), inset 6px 8px 20px hsl(0deg 0% 100% / 40%);
}

.wps_wcb_body_template .wps_wcb_content_template .wallet-tabs ul li a {
    border-radius: 10px;
    display: block;
    width: 130px;
    height: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.wps_wcb_body_template .wps_wcb_content_template .wallet-tabs ul li a svg {
    width: 40px;
    height: 40px;
    max-width: unset;
}

@media screen and (max-width: 420px) {
    .wps_wcb_body_template .wps_wcb_content_template .wallet-tabs ul li a {
        width: 100px;
        height: 100px;
    }

    .wps_wcb_body_template .wps_wcb_content_template .wallet-tabs ul li a svg {
        width: 32px;
        height: 32px;
    }
}