﻿.deposit_options_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}

.deposit_options_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.deposit_options {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.deposit_options_body {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.deposit_options_card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8PX;
    background-color: var(--surface-1);
    border-radius: 8px;
}

.deposit_options_card_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-blue);
}

.deposit_options_card_icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

    .deposit_options_card_icon img {
        width: 24px;
        height: auto;
        display: block;
    }

.deposit_options_card_body {
    width: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px;
}

.deposit_options_card_grouped_image {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.deposit_options_card_image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .deposit_options_card_image img {
        width: 100%;
        max-width: 180px;
        height: auto;
        display: block;
        padding: 4px;
        border-radius: 8px;
    }

.deposit_options_card_grouped_image img {
    width: 50%;
}

.deposit_options_card_description {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.deposit_options_card_description_text {
    text-align: center;
}

.deposit_options_card_footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.deposit_options_card_actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.deposit_options_action_link {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 48px;
}

    .deposit_options_action_link:focus,
    .deposit_options_action_link:active,
    .deposit_options_action_link:hover {
        background-color: var(--primary-green-hover);
    }

    @media only screen and (min-width: 680px) {
        .deposit_options_card {
        width: calc(50% - 8px);
    }
}

@media only screen and (min-width: 1360px) {
    .deposit_options_card {
        width: calc(33% - 8px);
    }
}
