@charset "utf-8";

/* ======================================
Technical Information
====================================== */
.tech-info-anchor-links {
    margin-bottom: 2rem;
}
.tech-info-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.tech-info-list__item {
    width: 48%;
    margin: 1.5rem 0 1.5rem;
}
.tech-info-list__img {
    height: 210px;
    background: #EDEEEE;
}
.tech-info-list__img img {
    width: auto;
    max-height: 130px;
    box-shadow: 3px 3px 6px rgba(0,0,0,.4);
}
.tech-info-list__ttl {
    margin: 1.4rem 0 0;
    color: #50555A;
    line-height: 1.4;
    padding: 0 1rem;
    word-break: break-word;
}
.tech-info-list__desc {
    margin: 1rem 0 0;
    line-height: 1.4;
    padding: 0 2rem;
    font-size: 1.4rem;
}
.tech-info-list__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 3rem;
    width: 100%;
    height: 100%;
}
.tech-info-list__item.pdf a::after, .tech-info-list__item.modal a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: .5rem;
    right: .5rem;
}
.tech-info-list__item.pdf a::after {
    width: 23px;
    height: 28px;
    background: url(/global/indonesia/resources/svg/icon_pdf.svg) no-repeat 0 0;
}
.tech-info-list__item.modal a::after {
    width: 28px;
    height: 29px;
    background: url(/global/indonesia/resources/svg/icon_zoom.svg) no-repeat 0 0;
}

@media screen and (min-width : 768px) {
    .tech-info-anchor-links {
        margin-bottom: 8rem;
    }
    .tech-info-headline {
        text-align: left;
    }
    .tech-info-blk {
        margin: 0 auto;
        max-width: 1200px;
    }
    .tech-info-list {
        justify-content: flex-start;
        margin-top: -2rem;
        margin-right: -2.2%;
    }
    .tech-info-list__item {
        width: calc(100% / 3);
        max-width: 320px;
        margin: 2.5rem 2% 3.5rem 0;
    }
    .tech-info-list__img {
        min-height: 308px;
    }
    .tech-info-list__img img {
        width: auto;
        max-height: 220px;
        max-width: 160px;
    }
    .tech-info-list__ttl {
        margin: 1.8rem 0 0;
        line-height: 1.4;
        padding: 0;
        font-size: 1.8rem;
    }
    .tech-info-list__desc {
        padding: 0;
        font-size: 1.6rem;
    }
    .tech-info-list__item a {
        padding: 4rem;
    }
    .tech-info-list__item.pdf a::after, .tech-info-list__item.modal a::after {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .tech-info-list__item a {
        position: relative;
        z-index: 0;
    }
    .tech-info-list__item a img {
        position: relative;
        z-index: 0;
        transition: .4s ease;
    }
    .tech-info-list__item a:hover {
        box-shadow: 3px 3px 6px rgba(0,0,0,.6);
    }
    .tech-info-list__item a:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.6);
        opacity: 0;
        z-index: -1;
        transition: opacity .4s ease, z-index .4s ease;
    }
    .tech-info-list__item a:hover:before {
        opacity: 1;
        z-index: 90;
        transition: opacity .4s ease, z-index .4s ease;
    }
}

/* 2020.02
---------------------------------------------*/
.tech-link {
    margin: 2rem auto 1.5rem;
    width: 100%;
    padding: 5px 12px 4px;
    border: solid 1px #fff;
    font-size:1.8rem;
    color:#50555a;
    text-align-last: left;
    background: #EDEEEE;
}
.tech-link.blank {
    position: relative;
    width: 80%;
    max-width: 240px;
    text-align: left;
}
.blank-icon svg {
    display: block;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 17px;
    height: 14px;
    fill:#50555a;
    transition: .2s ease;
}
.tech-link:hover {
    border: solid 1px #006994;
    color:#006994;
    text-decoration: none;
}
.tech-link.blank:hover .blank-icon svg{
    fill:#006994;
}

@media screen and (min-width : 768px) {
    .tech-link {
        margin: .7rem 0 0;
    }
    .tech-link.blank {
        width: 240px;
    }
}