/*Mayor Dashboard Page Styles*/
/*Collapse Subnav to Mobile Style*/
.page{
    overflow:hidden;
    display: grid;
    grid:
    "subNav ." 3em
    "subNav content" 1fr / [c1] 1fr
    [c2] minmax(0, 1fr);
}
.subNav{
    justify-content: flex-end;
    flex-direction: row-reverse;
    float: left;
    max-width: 100%;
    height: fit-content;
}
.subNav > input{
    width: 145px;
    height: 3em;
    flex-direction: row-reverse;
    flex-shrink: 0;
    padding: 0;
    justify-content: space-evenly;
}
.subNav > :is(input, input:checked):after {
    content: ' ';
    display: inline-block;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 12px;
    width: 12px;
    transition: transform .3s;
}
.subNav > input:after{
    transform: rotate(135deg) translateX(-2px) translateY(-2px);
}
.subNav > input:before {
    color: white;
    width: 75px;
    content: 'Navigation';
    padding-top: 1px;
}
.subnavBackgroundGradient{
    display:none;
}
.subNavList.nestedLinkList--d1.nestedLinkList--d1.nestedLinkList__manualDropDown:not(:checked){
    position: absolute;
    height:3em;
}
.subNavList.nestedLinkList--d1.nestedLinkList--d1.nestedLinkList__manualDropDown:checked{
    position: relative;
    animation: slideOut 0.3s 1 ease-out;
    height:3em;
}
.subNavList.nestedLinkList--d1.nestedLinkList--d1.nestedLinkList__manualDropDown:checked ~ .subNavList{
    translate: 0;
    position: relative;
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1{
    display: flex;
    opacity: 1;
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked{
    height:3em;
    width: 3em;
}
.subNavList.nestedLinkList--d1.nestedLinkList--d1.nestedLinkList__manualDropDown:not(:checked) ~ .subNavList{
    translate: -100%;
    position: absolute;
    animation: KeepRel 0.3s;
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked:before, .subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked:after{
    position: absolute;
    width: 36px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.6s;
    cursor: pointer;
    content: '';
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked:after{
    transform: rotate(-45deg);
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked:before{
    transform: rotate(45deg);
}
@keyframes slideOut {
    from {left: calc(-100%);}
    to {left: 0;}
}
@keyframes KeepRel {
    from {position: relative;}
    to {position: relative;}
}
.page__content-wrapper{
    padding-top:15px;
}
/*Dashboard Link Styles - These are two column link boxes with centered text*/
.content-boxes-group.mayor-dashboard-links .content-boxes-group__title{
    margin-bottom:0px;
}
.content-boxes-group.mayor-dashboard-links .contentBox a, .content-boxes-group.mayor-dashboard-links .contentBox a:active, .content-boxes-group.mayor-dashboard-links .contentBox a:visited{
    display:inline-block;
    text-align:center;
    width:100%;
    color: #30567d;
    text-decoration:none;
}
.content-boxes-group.mayor-dashboard-links .content-boxes--cols-two{
    grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width:720px){
    .content-boxes-group.mayor-dashboard-links .content-boxes--cols-two{
        grid-template-columns: repeat(1, 1fr);
    }
}
.content-boxes-group.mayor-dashboard-links .contentBox a:hover{
    color:black;
    text-decoration:underline;
}
.content-boxes-group.mayor-dashboard-links .contentBox a img{
    margin:0px;
    float:none;
}
/*Dashboard iFrame Styles*/
.mayor-separator{
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(122, 175, 217, 1) 20%, rgba(122, 175, 217, 1) 80%, rgba(255, 255, 255, 1) 100%);
    margin-bottom: 30px;
    margin-top: 0px;
}
.content-boxes-group.dashboard .dashboard-container{
    position: relative; 
    width: 100%; 
    padding-top: calc(56.25% + 60px); 
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 1); 
    border-radius: 10px; 
    overflow: hidden;
}
.content-boxes-group.dashboard iframe{
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}