.uniblock_item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.uniblock_item_content {
    position: static;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: auto;
    min-width: 60%;
    padding: 1rem;
}

.uniblock_item_info_top {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 1rem;
}

.uniblock_item_icon {
    width: 1.5rem;
    min-width: 1.5rem;
    line-height: 1;
    margin-right: 0.5rem;
}

.uniblock_item_icon img {
    width: 100%;
}

.uniblock_item_subtitle {
    font-size: 0.8rem;
    line-height: 1.2;
    color: inherit;
    opacity: 0.5;
}

.uniblock_item_title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
    margin-bottom: 1rem;
}

.uniblock_item_desc {
    font-size: 0.8rem;
    line-height: 1.2;
    color: inherit;
    margin-bottom: 1rem;
}

.uniblock_item_link_wrap {
    position: relative;
}

.uniblock_item_link {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    color: var(--theme-skit-color) !important;
    padding: 0;
    border: none;
    background: transparent;
}

.uniblock_item_link.item_bg_colored {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5em;
}

.uniblock_item_link_text {
    position: relative;
    color: inherit;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.uniblock_item_link_text:after {
    position: absolute;
    content: '';
    bottom: -2px;
    left: 50%;
    width: 0;
    border-bottom: 1px solid currentColor;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.uniblock_item_link:hover .uniblock_item_link_text:after {
    left: 0;
    width: 100%;
}

.uniblock_item_img {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: end;
    -webkit-justify-content: flex-end;
    justify-content: end;
    width: 40%;
    min-width: 40%;
}

/*img left*/
.uniblock_item.img_pos_left {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.img_pos_left .uniblock_item_img {
    -webkit-align-items: flex-end;
    align-items: end;
    -webkit-justify-content: flex-start;
    justify-content: start;
}

/*img bottom*/
.uniblock_item.img_pos_bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
}

.img_pos_bottom .uniblock_item_img {
    -webkit-align-items: flex-start;
    align-items: start;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}

.img_pos_bottom .uniblock_item_link_wrap {
    position: absolute;
    left: 0;
    bottom: 2rem;
    width: 100%;
    text-align: center;
}

.img_pos_bottom .uniblock_item_link {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5em;
    background: #fff;
}

/*img top*/
.uniblock_item.img_pos_top {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.img_pos_top .uniblock_item_img {
    -webkit-align-items: flex-start;
    align-items: start;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
}

/*tabs*/
.uniblock_tabs .nav-link {
    font-size: 1rem;
    line-height: 1.2;
    color: inherit;
    margin: 0 0.5rem 0.5rem 0;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.5em;
}

.uniblock_tabs .nav-link:hover {
    color: var(--theme-skit-color);
    border-color: var(--theme-skit-color);
}

.uniblock_tabs .nav-link.active {
    color: #fff;
    background: var(--theme-skit-color);
    border-color: var(--theme-skit-color);
}

.list_vertical .uniblock_tabs .nav-tabs {
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
}

.list_vertical .uniblock_tabs .nav-link {
    margin-right: 0;
}