.examples-container{
    position: relative;
}

.example-block{
    display: grid;
    grid-template-columns: 50% 50%;
    border-bottom: 1px dashed lightgray;
}
.example-block span{
    font-weight: bold;
    background-color: #e9f4e3;
    cursor: pointer;
}
.word-example-group.hover{
    border-bottom: 1px solid #38991d !important;
    background-color: #eff9ed;
    color: #38991d !important;
}
.example-block .example{
    padding: 1em;
}
.example-block .example a{
    color: #517946;
    border-bottom: 1px dashed #e6eae4;
}
.example-block .example a:hover{
    color: initial;
}

.example-block .example .aim-example-word{
    font-weight: bold;
}

.block-examples-show-more{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, #fff 0%, #fff0 100%) !important;
    z-index: 0;
}
button.examples-show-more {
    z-index: 0;
    position: relative;
    border: 2px solid #5dc53b;
    background: transparent !important;
    color: #5dc43c;
    text-shadow: none !important;
    margin: 0 auto;
    display: block;
}


@media only screen and (max-width: 700px){
    .morphology-row:not(:first-child) .morphology-subrow-body .morphology-subrow .morphology-head-column {
        display: block !important;
    }
    .example-block .example{
        padding: 0.5em;
    }
    .example-block{
        grid-template-columns: 100% !important;
        background-color: white;
        box-shadow: none;
        border-radius: 5px;
        margin: 1em 0;
        border: 1px solid lightgray !important;
    }
    .example-block .example.source-example{
        border-bottom: 1px solid lightgray;
        padding: 1.4em 1.4em 1em 1.4em;
    }
    .example-block .example.referent-example{
        padding: 1em 1.4em 1.4em 1.4em;
    }
}