img {
    overflow: hidden;
}
.b-button {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    height: 64px;
    justify-content: center;
    max-width: 100%;
    text-decoration: none;
    transition: cubic-bezier(0.3, 0.46, 0.45, 0.94) .4s;
    transition-property: background-size,color,border;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: top;
    white-space: nowrap;
    background: no-repeat linear-gradient(#6bbcb9, #6bbcb9),linear-gradient(#222222, #222222);
    background-size: 0 100%,100%;
    border-radius: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 0 20px
}

@media not all and (pointer: coarse) {
    .b-button:hover {
        background-size:100% 100%,0;
        color: #222;
        text-decoration: none
    }
}
.theme-bg--black.b-button:hover{
	background: no-repeat linear-gradient(#fff, #fff),linear-gradient(#000, #000);
	color: #000;
	background-size:100% 100%,0;
}

.b-button:focus-within {
    background-size: 0 100%,100%;
    color: #fff
}

.b-button.m-white {
    background: no-repeat linear-gradient(#6bbcb9, #6bbcb9),linear-gradient(#ffffff, #ffffff);
    background-size: 0 100%,100%;
    color: #222
}

@media not all and (pointer: coarse) {
    .b-button.m-white:hover {
        background-size:100% 100%,0
    }
}

.b-button.m-white:focus-within {
    background: no-repeat linear-gradient(#6bbcb9, #6bbcb9),linear-gradient(#222222, #222222);
    background-size: 0 100%,100%;
    color: #fff
}

.b-button:disabled,.b-button[disabled],.b-button.m-disabled {
    background: #caccd7;
    color: #6d6c6f;
    pointer-events: none
}

.b-button.m-width_full {
    width: 100%
}

.b-button.m-has-icon {
    justify-content: space-between
}

.b-button.m-has-icon svg {
    margin-left: 8px
}

.b-button.m-text_ellipsis {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.b-button.m-break_word {
    white-space: normal;
    word-break: break-word
}

.b-button-edit_cart {
    margin-top: 24px
}

.b-button-checkout.m-processing {
    cursor: wait
}

.b-button .m-unstyle {
    margin: 0 6px;
    text-transform: none
}

.b-load_more .b-button {
    font-size: 16px;
    white-space: inherit
}

.b-load_more .b-button svg {
    flex: 0 0 auto
}

.b-button_block {
    display: flex;
    justify-content: space-between;
    margin-top: 32px
}

@media screen and (max-width: 767px) {
    .b-button_block {
        flex-direction:column;
        margin-top: 20px
    }
}

@media screen and (min-width: 768px) {
    .b-button_block .b-button {
        width:calc(50% - 12px)
    }
}

@media screen and (max-width: 767px) {
    .b-button_block .b-button {
        width:100%
    }
}

@media screen and (max-width: 767px) {
    .b-button_block .b-button:last-child {
        margin-top:16px
    }
}