﻿
.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%;
    /* 
			width: 100%;
			height: 400px;
			*/
}


.inputs-height-adjustment {
    padding-top: 50px;
}


.table-height {
    height: 60vh;
}


.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;
}

/*.a
    ccordion-button:not(.collapsed)::after {
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
/* transform: rotate(-180deg); 
}*/

@media screen and (max-width: 1300px) { /*(max-width: 991px) {*/
    .displayrow-positions {
        display: flex;
        flex-direction: column;
        align-content: space-evenly;
    }

    .table-height {
        height: 30vh;
    }

    .display-screen {
        display: flex;
        flex-direction: column; /*change this to switch map from right side to bottom*/
        justify-content: space-between;
    }

    .display-screen-child {
        flex: 1;
        padding: 5px;
        height: fit-content;
        width: 100%;
    }

    #map {
        display: flex;
        height: 700px;
        width: 100%;
    }


    .inputs-height-adjustment {
        padding-top: 20px;
    }


    .top_padding {
        padding-top: 0px;
    }
}

/*
.parent {
    max-height: auto;
    width: 200px;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
}

.sibling {
    border: 1px solid red;
    flex: 0 0 auto;
}

.child {
    overflow-y: auto;
    border: 1px solid blue;
    flex: 0 1 auto;
}
*/

