.button__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    grid-gap: 21px;
}

.button__container--column {
    display: flex;
    flex-direction: column;
    gap: 41px;
    margin-top: 41px;
    margin-bottom: 30px;
}

.button__selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.button__selector-label {
    font-size: 18px;
    font-weight: bold;
    width: 100%;
}

.btn {
    background-color: unset;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
    box-shadow: unset;
    outline: none;
    text-decoration: none !important;
    color: unset !important;
    padding: unset;
    font-family: Roboto;

    img {
        margin: 0;
    }
}

.btn-primary {
    background-color: var(--navy-color);
    color: white !important;
    cursor: pointer;

    padding: 43px 34px;
    border-radius: 14px;

    font-weight: normal;

    span {
        font-size: 24px;
        font-weight: bold;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }

    .button-img-container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        width: 36px;
        background-color: white;
        border-radius: 50%;

    }
}

.btn-secondary {
    background-color: var(--secondary-button-background);
    color: black;
    border-radius: 14px;
    padding: 20px 20px 20px 20px;
    gap: 15px;

    & > div {
        display: flex;
        align-items: center;
        gap: 20px;
        min-height: 80px;
        justify-content: center;
    }

    span {
        color: black;
        font-size: 16px;
        font-weight: bold;
        line-height: 130%;
    }

    img {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 425px) {
    .btn-secondary {
        img {
            width: auto;
            height: auto;
        }
    }
}

.btn-tertiary {
    color: black;
    gap: 13px;
    justify-content: unset;

    span {
        font-size: 18px;
        font-weight: Normal;
        line-height: 150%;
    }
}

.btn-selector {
    background-color: #fff;
    color: #000;
    border: 1px solid var(--gray-border);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.btn-selector-selected {
    background-color: black;
    color: white;
    border: 1px solid black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.btn-selector:hover {
    background-color: black;
    color: white;
}

@media (min-width: 349px) {
    .btn-primary {
        span {
            font-size: 32px;
        }
    }
}

@media (min-width: 768px) {
    .button__container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 21px;
    }

    .button__selector-label {
        width: unset;
    }
}

@media (min-width: 1024px) {
    .button__container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }

    .btn-secondary {
        padding: 17px 40px 23px 40px;
        gap: 30px;

        & > div {
            gap: 31px;
        }

        span {
            font-size: 20px;
        }
    }
}
