﻿.deposit_options_wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.deposit_options_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px;
}

.deposit_options {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.deposit_options_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.deposit_options_header_title_text {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.deposit_options_header_description_text {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

    .deposit_options_header_description_text img {
        width: 100%;
        max-width: 24px;
        height: auto;
    }

.deposit_options_body {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.deposit_options_card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--dark);
    border-radius: 8px;
}

.deposit_options_card_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.deposit_options_card_header_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
}

.deposit_options_card_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .deposit_options_card_icon img {
        width: 100%;
        max-width: 36px;
        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;
    background-color: var(--light);
    border-radius: 4px;
}

.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;
        background-color: var(--light);
        border: 2px solid var(--grey);
        border-radius: 48px;
    }

.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 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: var(--dark);
}

.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-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--primary-green);
    border: 2px solid transparent;
    border-radius: 4px;
}

    .deposit_options_action_link:focus,
    .deposit_options_action_link:active {
        background-color: var(--light);
        border-color: var(--primary-green);
        transition: background-color 0.2s ease-out;
    }

@media only screen and (min-width: 680px) {
    .deposit_options_card {
        width: calc(50% - 4px);
    }
}

@media only screen and (min-width: 1200px) {
    .deposit_options_action_link:hover {
        background-color: var(--light);
        border-color: var(--primary-green);
        transition: 0.2s ease-in-out;
    }
}

@media only screen and (min-width: 1360px) {
    .deposit_options_card {
        width: calc(33% - 2px);
    }
}