div.detailContentContainer {
    transition: max-height 0.15s ease-out;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
}

div.detailContentContainerVisible {
    transition: max-height 0.25s ease-in;
    width: 100%;
    max-height: 1000px;
    overflow: hidden;
}

div.detailsProjectInfo {
    width: 47%;
    float: left;
    font-family: "aleo";
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
}

div.detailsTechnologies {
    width: 50%;
    float: left;
}

@media only screen and (max-width: 1110px) {
    /* For mobile phones: */
    div.detailsTechnologies {
        width: 100%;
    }
    div.detailsProjectInfo {
        width: 100%;
    }
}

div.moreInfo {
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Firefox */
            -ms-user-select: none; /* Internet Explorer/Edge */
                user-select: none;
}

tr.detailsInformationRow > td {
    padding-bottom: 10px;
}

td.detailsInformationHeader {
    padding-right: 50px;
    font-family: "aleo-bold";
}

div.detailsTechnologiesHeader {
    width: 100%;
    text-align: left;
    font: "aleo-bold";
    font-size: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
}
div.detailsTechInfo {
    width: 4em;
    height: 4em;
    position: relative;
    cursor: default;
}

div.detailsTechImage {
    opacity: 0;
    border: 4px solid black;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.detailsTechImageVisible {
    transition: opacity 0.25s ease-in;
    opacity: 1;
}

img.detailsTechImageScale {
    width: 100%;
}

div.detailsTechImageCenter {
    position: absolute;
    top: 0.2em;
    bottom: 0px;
    left: 0.3em;
    right: 0px;
    width: 100%;
    text-align: center;
    height: 38%;
    margin: auto;
}

div.detailsTechnologiesList {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2em;
    row-gap: 1em;
    margin-bottom: 10px;
}

div.detailsTechDetailContainer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
    background: transparent;
}

div.detailsTechDetailContainerText {
    transition: opacity 250ms ease-out;
    display: inline-block;
    opacity: 0;
    pointer-events: none;
    background: transparent;
}

div.detailsTechDetailContainerTextVisible {
    transition: opacity 250ms ease-in;
    display: inline-block;
    opacity: 1;
    pointer-events: none;
    background: transparent;
}