/* BLOCKS CUSTOM CSS */

.accordion-child-boards > .accordion-item > .accordion-header > .accordion-button::after {
    background-image: url("../img/chevron-down-solid-white.svg");
}

.accordion-child-boards .accordion-button:not(.collapsed)::after {
    /* background-image: url("../img/chevron-down-solid-white.svg"); */
    transform: var(--bs-accordion-btn-icon-transform);
}

#categoryDropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: auto;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    right: 10px;
    top: 25px;
}

* {
    transition: all 0.3s ease-out;
}

.service-line {
    display: block;
    top: 0px;
    position: relative;  
    background-color: #f6f9ff;
    border-radius: 4px;
    padding: 16px 12px;  
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #899bbd;

    &:hover {
        border: 1px solid #4b49ac;
        box-shadow: 0px 0px 999px 999px rgba(255, 255, 255, 0.5);
        z-index: 500;
    }
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: #4848a9;
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.service-line:hover {
    p{color: #4b49ac}
    .go-corner {
        transition: opactiy 0.3s linear;
        opacity: 1;
    }
}

.workflow {
    display: block;
    top: 0px;
    position: relative;
    background-color: #f6f9ff;
    border-radius: 4px;
    padding: 16px 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    border: 1px solid #cccccc;

    &:hover {
        transition: all 0.2s ease-out;
        /* box-shadow: 0px 2px 4px rgba(38, 38, 38, 0.1); */
        top: -4px;
        border: 1px solid #cccccc;
        background-color: white;
    }

    &:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -16px;
        right: -16px;
        background: #4848a9;
        height: 32px;
        width: 32px;
        border-radius: 32px;
        transform: scale(2);
        transform-origin: 50% 50%;
        transition: transform 0.15s ease-out;
    }

    &:hover:before {
        transform: scale(2.15);
    }
}