.gui-type {
    bottom: 0;
    height: 25vh;
    width: 100%;
    background-color: white;
    border-top: 4px #0077ba solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gui-type-label{
    position: absolute;
    bottom: calc(25vh - 4px);
    left: calc(20vw);
    padding: 5px 15px;
    background-color: #004F79;
    border: 4px #0077ba solid;
    color: white;
    font-size: larger;
}

.type-choice {
    margin-top: 7px;
    width: 100%;
    text-align: center;
}

.type-choice button {
    border: none;
    border-radius: 4px;
    padding: 3px 5px;
    color: white;
    margin: 0;
}

.type-choice button:nth-child(1) {
    background-color:#005687;
}
.type-choice button:nth-child(2) {
    background-color:#005687;
}
.type-choice button:nth-child(3) {
    background-color:#005687;
}

.type-images {
    height: 100%;
    padding: 5px;
    width: 100%;
    overflow-x: auto;
    display: flex;
}



.type-images img {
    height: 100%;
    margin: 0;
    transition: all 0.15s ease-in-out;
}

.type-images img:hover,
.type-images img.activeType {
    filter: blur(1px) opacity(0.3);
}



.gui-type .closeBtn {
    left: 75%;
    transform: translate(-50%);
    bottom: calc(25vh + 5px);
}



@media (max-width: 767.98px) { 
    .gui-type-label{
        position: relative;
        bottom: initial;
        left: initial;
        padding: 5px 15px;
        background-color: #004F79;
        border: none;
        color: white;
        font-size: small;
    }
    .gui-type .closeBtn {
        right: 5px;
        left:initial;
        transform: none;
        bottom: calc(25vh + 5px);
    }
}