.dihcategoryblock {
    margin: 20px auto;
    width: 100%;
    display: block;
}

.dihcategoryblock .row {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
}

.dihcategoryblock__block {
    display: flex;
}

.dihcategoryblock__heading {
    margin-bottom: 20px;
    font-weight: bold;
    color: inherit;
}

.dihcategoryblock__header .dihcategoryblock__heading--h3,
.dihcategoryblock__header h3 {
    margin-bottom: 0;
}

.dihcategoryblock__card {
    border: 1px solid #e6e6e6;
    background-color: white;
    padding: 15px;
    position: relative;
    width: 100%;
}

.dihcategoryblock__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dihcategoryblock__list {
    transition: max-height .3s;
    max-height: 0;
    overflow: hidden;
    padding-left: 20px;
    position: relative;
    list-style: none;
}

.dihcategoryblock__block.is-active .dihcategoryblock__list,
.dihcategoryblock__block--hover:hover .dihcategoryblock__list {
    max-height: unset;
}

.dihcategoryblock__item {
    margin-bottom: 15px;
    position: relative;
}

.dihcategoryblock__list .dihcategoryblock__item:before {
    display: block;
    float: left;
    margin-right: 10px;
    font-size: .8em;
}

.dihcategoryblock__list--type-none .dihcategoryblock__item:before {
    display: none;
}

.dihcategoryblock__list--type-default .dihcategoryblock__item:before {
    content: '-';
}

.dihcategoryblock__list--type-numeric .dihcategoryblock__item:before {
    content: '→';
}

.dihcategoryblock__list--type-circle .dihcategoryblock__item:before {
    content: '●';
}

.dihcategoryblock__list--type-square .dihcategoryblock__item:before {
    content: '■';
}

.dihcategoryblock__list--type-arrow .dihcategoryblock__item:before {
    content: '→'
}

@media screen and (max-width: 768px) {
    .dihcategoryblock__list--mobile-type-none .dihcategoryblock__item:before {
        display: none;
    }

    .dihcategoryblock__list--mobile-type-default .dihcategoryblock__item:before {
        content: '-';
    }

    .dihcategoryblock__list--mobile-type-numeric .dihcategoryblock__item:before {
        content: '→';
    }

    .dihcategoryblock__list--mobile-type-circle .dihcategoryblock__item:before {
        content: '●';
    }

    .dihcategoryblock__list--mobile-type-square .dihcategoryblock__item:before {
        content: '■';
    }

    .dihcategoryblock__list--mobile-type-arrow .dihcategoryblock__item:before {
        content: '→';
    }

    .dihcategoryblock__list--mobile-type-double_arrow .dihcategoryblock__item:before {
        content: '>>'
    }
}

.dihcategoryblock__link {
    color: inherit;
}

.dihcategoryblock__link:hover {
    color: #2fb5d2;
    text-decoration: underline;
}

.dihcategoryblock__item:before {
    content: '-';
    position: absolute;
    display: block;
    margin-left: -20px;
}

.dihcategoryblock__image {
    object-fit: scale-down;
    max-width: 100%;
    height: auto;
}

.dihcategoryblock__button {
    display: block;
    padding: 10px;
    text-align: center;
}

.dihcategoryblock__button--icon {
    border: 0;
    background: transparent;
    padding: 0;
    transform: rotate(90deg);
    transition: all .3s;
}

.dihcategoryblock__block.is-active .dihcategoryblock__button--icon {
    transform: rotate(-90deg);
}

.dihcategoryblock__button--more {
    width: 100%;
    height: 40px;
    background-color: #2fb5d2;
    color: white;
}

a.dihcategoryblock__button--more {
    color: white;
}

@media screen and (max-width: 767px) {
    .dihcategoryblock__block.is-active .dihcategoryblock__header,
    .dihcategoryblock__block--hover:hover .dihcategoryblock__header {
        padding-bottom: 20px;
    }

    .dihcategoryblock__body .dihcategoryblock-show-more,
    .dihcategoryblock__block--theme-image .dihcategoryblock__image,
    .dihcategoryblock__block--theme-text_image .dihcategoryblock__image {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .dihcategoryblock__block--theme-image .dihcategoryblock__heading span{
        display: none;
    }

    .dihcategoryblock__block {
        min-height: 150px;
        margin-bottom: 20px;
    }

    .dihcategoryblock__card {
        padding: 30px 20px 20px;
    }

    .dihcategoryblock__header {
        padding-bottom: 20px;
    }

    .dihcategoryblock__header .dihcategoryblock__button--icon {
        display: none;
    }

    .dihcategoryblock__list {
        max-height: unset;
        position: unset;
    }

    .dihcategoryblock__unvisible-content {
        position: absolute;
        left: -1px;
        right: -1px;
        transition: max-height .3s;
        max-height: 0;
        overflow: hidden;
        background-color: white;
        padding-left: 40px;
        z-index: 2;
    }

    .dihcategoryblock__block.is-active .dihcategoryblock__unvisible-content,
    .dihcategoryblock__block--hover:hover .dihcategoryblock__unvisible-content {
        max-height: unset;
        min-height: 100px;
        border: 1px solid #e6e6e6;
        border-top: 0;
    }
}