﻿.nav-howto {
    position: absolute;
    right: 0;
}

.display-screen {
    display: flex;
    flex-direction: row; /*change this to switch map from right side to bottom*/
    justify-content: space-between;
    height: 90vh;
}

.display-screen-child {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 5px;
    height: inherit; /*100%*/
    width: 50%;
}

#map {
    display: flex;
    height: inherit; /*700px*/
    width: 100%;
}


.inputs-height-adjustment {
    padding-top: 50px;
}


.table-height {
    height: 71vh;
}


.activeRow {
    background-color: rgba(0,0,0,.075);
}


accordion-button::after {
    background-image: none !important;
}


.accordion-button:not(.collapsed)::after {
    background-image: none;
}


.top_padding {
    padding-top: 30px;
}


@media screen and (max-width: 1290px) {
    .displayrow-positions {
        display: flex;
        flex-direction: column;
        align-content: space-evenly;
    }

    .display-screen {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column; /*change this to switch map from right side to bottom*/
        justify-content: space-between;
    }

    #map {
        display: flex;
        height: 700px;
        width: 100%;
    }

    .display-screen-child {
        flex: 1;
        padding: 5px;
        height: 100%;
        width: 100%;
    }


    .nav-howto {
        position: absolute;
        right: 0;
    }

    .inputs-height-adjustment {
        padding-top: 20px;
    }

    .table-height {
        height: 30vh;
    }


    .top_padding {
        padding-top: 0px;
    }

}



@media screen and (max-width: 992px) {

    .nav-howto {
        position: unset !important;
        right: unset !important;
    }
}

    /*
@media screen and (max-width: 767px) {
    .accordion-body {
        width: 100%;
        overflow: hidden;
        height: 300px;
        transition: max-height 0.2s;
        overflow: scroll;
        overflow-x: scroll;
    }


    .table-height {
        height: 30vh;
    }


}
*/