#some_widget{
	margin-top: -30px;
  	margin-bottom: 50px;
}

.manufacturers-blocks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.show-more-btn-section.show-more-btn-section {
    flex: 0 0 calc(25% - 16px* 3 / 4);
    max-width: calc(25% - 16px* 3 / 4);
    width: 100%;
    align-items: flex-end;
}

button.show-more-btn {
    background: #FFFFFF;
    border-radius: 48px;
    display: inline-flex;
    align-items: center;
    line-height: 37px;
    padding: 1px 16px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #EF4A3D !important;
    white-space: nowrap;
    border: none;
    box-shadow: none;
    outline: none !important;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

button.show-more-btn > span {
    text-decoration: none;
}

button.show-more-btn > i.fa {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 24px;
}

button.show-more-btn:hover > span {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .show-more-btn-section.show-more-btn-section {
        max-width: calc(50% - 16px* 3 / 4);
        flex-basis: calc(50% - 16px* 3 / 4);
    }
}

@media (max-width: 360px) {
    .show-more-btn-section.show-more-btn-section {
        max-width: 100%;
        flex-basis: 100%;
    }
}