/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


/* Provide sufficient contrast against white background */

/* Sticky footer styles
-------------------------------------------------- */


@media(min-width: 768px)
{
    html {
        font-size: 16px;
    }
}

footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}
 

/* CARD LAYOUT */
.vertical-card-layout
{
}

    .vertical-card-layout .top-items 
    {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .vertical-card-layout .bottom-items 
    {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }


.horizontal-card-layout {
}

    .horizontal-card-layout .top-items {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .horizontal-card-layout .bottom-items {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }



.horizontal-card-layout {
}



a {
    color: #0366d6;
}

.form-control {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: .5rem .9rem;
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    background-color: white;
    background-clip: padding-box;
    border: 1px solid gray;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}



.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid black;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.modal-root {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}


    .modal-root > .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
    }

        .modal-root > .modal-content > .modal-header {
            display: flex;
            flex-direction: row;
            display: flex;
            flex-shrink: 0;
            align-items: center;
            justify-content: space-between;
            padding: 3px;
            border-bottom: 1px solid silver;
        }

.modal-popup {
    position: relative;
    width: auto;
    margin: auto;
    background-color: white;
    opacity: 1.0;
    padding: 10px;
}



html {
    font-size: 14px;
}


.expandable-image {
    width: 100%;
    max-width: 300px; /* Initial size */
    transition: transform 0.3s ease, width 0.3s ease;
    cursor: pointer;
}

.expandable-image.expanded {
    transform: scale(2); /* Enlarges the image */
    z-index: 10;
}




/* ALERT MESSAGE LAYOUT*/
.alert-message .message {
    border-radius: 5px;
    box-shadow: #000000AF,5px,5px inset;
    padding-left: 20px;
    padding-right: 20px;
}

.alert-message {
    top: 10;
    width: auto;
    height: auto;
    line-height: 1.8;
    cursor: pointer;
    display: table;
    margin: 0 auto;
    font-size: 16px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .alert-message ul {
        list-style-type: none;
        padding:0px;
    }

    .alert-message .close-button {
        float: right;
        padding: 2px;
        border-radius: 3px;
        margin: 3px;
        font-size: 10px;
        border: 5px double grey;
    }




/* TAB BEHAVIOUR */
.tab-container-behaviour {
}

    .tab-container-behaviour .header> div{
        display: inline-block;
    }

    .tab-container-behaviour .content > div.selected {
        display: block;
    }

    .tab-container-behaviour .content > div:not(.selected) {
        display: none;
    }


/* ACCORDION BEHAVIOUR */
.accordion-behaviour 
{
}

    .accordion-behaviour>.accordion-block.selected>.header  .open-button {
        display:none;
    }

    .accordion-behaviour > .accordion-block:not(.selected) > .header .open-button {
        display: inline-block;
    }

    .accordion-behaviour > .accordion-block.selected > .header .close-button {
        display: inline-block;
    }

    .accordion-behaviour > .accordion-block:not(.selected) > .header .close-button {
        display: none;
    }

    .accordion-behaviour > .accordion-block > .content {
        transition: max-height 0.5s;
        max-height: 0px;
        overflow: hidden;
    }

    .accordion-behaviour > .accordion-block > .header{
        padding:0px;
        margin:0px;
    }



/*MENU BEHAVIOUR*/


.topnav-menu {
    list-style: none;
    overflow: hidden;
}


    .topnav-menu li {
        background-color: inherit;
        display: block;
    }

    .topnav-menu a {
        color: inherit;
        background-color: inherit;
        text-decoration: none;
        font: inherit;
    }

    .topnav-menu span {
        color: inherit;
        background-color: inherit;
        font: inherit;
    }

    .topnav-menu .mobile-header {
        display: none;
    }

    .topnav-menu .expand-icon {
        display: none;
    }

    .topnav-menu .close-icon {
        display: none;
    }


    .topnav-menu .dropdown-menu ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }


@media screen and (min-width: 601px) {
    .topnav-menu  > li {
        float: left;
    }

    .topnav-menu .mobile-header {
        display: none;
    }

    .topnav-menu .dropdown-menu > ul {
        display: none;
    }

    .topnav-menu .dropdown-menu:hover > ul {
        display: block;
        position: absolute;
    }
}

@media screen and (max-width: 600px) {
    .topnav-menu .dropdown-menu:not(.selected) .expand-icon {
        display: inline;
        float: right;
    }

    .topnav-menu > .mobile-header {
        display: block;
    }

    .topnav-menu .dropdown-menu.selected .close-icon {
        display: inline;
        float: right;
    }

    .topnav-menu:not(.visible) > li:not(.mobile-header)
    {
        display: none;
    }

    .topnav-menu.visible > li:not(.mobile-header) 
    {
        display: block;
    }

    .topnav-menu .dropdown-menu:not(.selected) > ul {
        display: none;
    }

    .topnav-menu .dropdown-menu.selected > ul {
        display: block;
    }
}


/* ACTION TOOLBAR BEHAVIOUR */
.action-toolbar-behaviour {
    display: inline-block;
}

    .action-toolbar-behaviour > .content {
        display: none;
        background-color: white;
        padding: 10px;
        border: 1px solid Black;
        list-style-type: none;
    }

        .action-toolbar-behaviour > .content .btn {
            width: 100%;
        }

        .action-toolbar-behaviour > .content > li {
            padding: 2px;
        }

    .action-toolbar-behaviour:hover > .content {
        display: block;
        position: absolute;
    }

    .action-toolbar-behaviour > .header > .expand-icon {
        display: inline-block;
    }

    .action-toolbar-behaviour > .header > .expanded-icon {
        display: none;
    }

    .action-toolbar-behaviour:hover > .header > .expand-icon {
        display: none;
    }

    .action-toolbar-behaviour:hover > .header > .expanded-icon {
        display: inline-block;
    }



.ActionToolbarStyle{
font-weight:bold;
font-size:12;
font-style:italic;
color:#000000;
text-align:Left;
border:1px Solid #C0C0C0;
padding:5px;
background-color:#00FF00;
vertical-align:Top;
}


.Style{
text-align:Left;
width:100%;
vertical-align:Top;
}


.SectionTitle{
color:#FFFFFF;
text-align:Left;
background-color:#000000;
vertical-align:Top;
}




