@media(max-width: 600px) {
    .how-to {
        margin:1.5rem 0
    }
}

.how-to_title-center .how-to__description,.how-to_title-center .how-to__title {
    text-align: center
}

.how-to__title {
	padding: 8px 20px;
    border-radius: 15px 15px 0 0;
    background-color: var(--heading-bg-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

.how-to__title .how_to__icon {
	display: flex;
    height: 25px;
    margin-left: 5px;
    width: 25px;
}

.how-to__description {
	background-color: var(--block_bg);
    padding: 8px 20px;
	margin: 0!important;
}

@media(max-width: 600px) {
    .how-to .accent-button {
        text-align:center;
		white-space: normal;
    }
}

.how-to-vertical {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    margin: -10px;
    padding: 10px
}

.how-to-vertical .howto__step_title {
    font-size: 1.2rem
}

.how-to-vertical .howto__step_description,.how-to-vertical .howto__step_title {
    text-align: center
}

.how-to-vertical .howto__step_image {
    margin: 1rem 0;
    width: 100%
}

.how-to-vertical .col-1 {
    margin: 10px;
    width: calc(100% - 20px)
}

.how-to-vertical .col-2 {
    margin: 10px;
    width: calc(50% - 20px)
}

.how-to-vertical .col-3 {
    margin: 10px;
    width: calc(33.33333% - 20px)
}

.how-to-vertical .col-4 {
    margin: 10px;
    width: calc(25% - 20px)
}

@media(max-width: 1100px) {
    .how-to-vertical .col {
        width:calc(33.33333% - 20px)
    }
}

@media(max-width: 800px) {
    .how-to-vertical .col {
        width:calc(50% - 20px)
    }
}

@media(max-width: 550px) {
    .how-to-vertical .col {
        width:calc(100% - 20px);
    }
}

.how-to-steps {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
	background-color: var(--block_bg);
    padding: 8px 20px 32px;
	border-radius: 0 0 15px 15px;
}

.how-to__step {
    display: flex;
    width: 100%;
}

.how-to .how-to__step_count {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    background-color: var(--primary-color);
    color: var(--body-color-text);
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    text-transform: uppercase;
}

.how-to .how-to-step-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    padding: 16px;
    border: 1px solid var(--how-to-step-border-color);
}

@media (max-width: 760px) {
	.how-to .how-to-step-body {
    	gap: 12px;
    	padding: 12px;
    	-webkit-box-orient: vertical;
    	-webkit-box-direction: reverse;
    	-ms-flex-direction: column-reverse;
    	flex-direction: column-reverse;
	}
}

.how-to .how-to__step_title {
    color: var(--body-color-text);
    margin-bottom: 8px;
}

.how-to .how-to__step_description {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
	margin-bottom: 8px;
    color: var(--body-color-text);
}

.how-to__step_item {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.how-to .how-to__step_item {
    flex: 1 1
}

@media (max-width: 1000px) {
    .how-to .how-to__step_item {
        width: 100%
    }
}


.how-to__step_image {
    flex: unset;
    max-width: 50%;
}

@media (max-width: 1000px) {
	.how-to__step_image {
    	flex: 1 1;
    	max-width: unset;
	}
}

.how-to__step_button {
    display: inline-flex;
}

.how-to__step_button.align-left {
    justify-content: left;
}

.how-to__step_button.align-center {
    justify-content: center;
}

.how-to__step_button.align-right {
    justify-content: right;
}
