/*Mayor Transparency Styles*/
/*Pizza Slices*/
svg.pizzaSVG:not(:root){
    overflow:visible;
}
.pizza {
    width: 96%;
    margin: auto;
    margin-bottom: 30px;
    margin-top: 50px;
    position:relative;
}
@media screen and (max-width:800px){
    .pizza {
        width: 88%;
        margin: auto;
        margin-bottom: 30px;
    } 
}
svg.pizzaSVG {
    width: 100%;
    height: auto;
}
/* Smooth zoom animation */
image.pizzaImage {
    transition: transform 0.8s ease;
    transform-origin: center;
}
image.pizzaOverlay {
    transition: transform 0.8s ease;
    transform-origin: center;
}
a:hover image.pizzaImage {
    transform: scale(1.12); /* 12% zoom */
}
a:hover image.pizzaOverlay {
    transform: scale(2.5); /* 150% zoom */
}
.sliceSeal{
    width: 34%;
    height: 34%;
    pointer-events: none;
}
.sliceLabelsDesktop{
    width: 115%;
    height: 115%;
    pointer-events: none;
    opacity:1;
}
@media screen and (max-width:800px){
    .sliceLabelsDesktop{
        opacity:0;
    }
}
.sliceLabelsMobile{
    width: 115%;
    height: 115%;
    pointer-events: none;
    opacity:0;
}
@media screen and (max-width:800px){
    .sliceLabelsMobile{
        opacity:1;
    }
}
.pizzaCover {
    position: absolute;
    width: 26%;
    height: 27%;
    border-radius: 64%;
    left: 36.5%;
    top: 36%;
}
/*Transparency List Styles*/
.mayor-opening-paragraph P:first-of-type{
    margin-top:0px;
}
.mayor-listitems{
    margin-top:10px;
    display:none;
}
.mayor-listitems.show{
    display:block;
}
.mayor-listitems .contentBox{
    display:inline-block;
    margin-bottom:30px;
}
@media screen and (max-width:1280px){
    .mayor-listitems .contentBox{
        margin-bottom:15px;
    }
}
.mayor-listitems .contentBox p{
    margin-top:0px;
}
.mayor-listitems .contentBox:last-of-type{
    margin-bottom:0px;
}
.mayor-listitems .contentBoxTitle{
    font-size: 18px;
    line-height: 1.2em;
    margin-top: 0px;
    margin-bottom: 5px;
    font-weight:bold;
}
.mayor-listitems a.contentBoxLink, .mayor-listitems a.contentBoxLink:visited, .mayor-listitems a.contentBoxLink:active{
    text-decoration:none;
    color:#30567d;
}
.mayor-listitems a.contentBoxLink:hover{
    text-decoration:underline;
    color:black;
}
.mayor-listitems .noLink a.contentBoxLink, .mayor-listitems .noLink a.contentBoxLink:visited, .mayor-listitems .noLink a.contentBoxLink:active{
    text-decoration:none;
    color:black;
}
.mayor-listitems .noLink a.contentBoxLink:hover{
    text-decoration:none;
    color:black;
}
.mayor-listitems .contentBoxBG{
    width: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    float: left;
    margin-right: 15px;
    box-shadow: 0px 0px 0px 1px #84beee;
}
@media screen and (max-width: 1024px) {
    .mayor-listitems .contentBoxBG{
        width: 34.17vw;
    }
}
@media screen and (max-width: 480px) {
    .mayor-listitems .contentBoxBG{
        float: none;
        margin-bottom: 15px;
        width: 100%;
        max-width: 350px;
    }
}
.mayor-listitems .contentBoxCorner{
    padding-top: 56.25%;
}
/*Popup Styles*/
.popupContainer{
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
    position: absolute;
    top: 408px;
    z-index: 1;
}
@media screen and (max-width:800px){
    .popupContainer{
        top:50vw;
    }
}
@media screen and (max-width:280px){
    .popupContainer{
        top: 140px;
    }
}
.popupDimensions{
    display:none;
    margin-left:auto;
    margin-right:auto;
}
.popupDimensions.show{
    display:block;
    animation-name: popupDimensions;
    animation-duration: 1.6s;
}
@keyframes popupDimensions{
    0%{ 
        opacity:0; 
        margin-top:-100px;
    }
    50%{ 
        opacity:0; 
        margin-top:-100px;
    }
    100%{ 
        opacity:1; 
        margin-top:0px; 
    }
}
.popupTitle{
    background-color: #0e82b5;
    background:linear-gradient(270deg, rgba(14,130,181,1) 0%, rgb(70 137 190) 100%);
    background-size: 100%;
    background-position: top right;
    height: auto;
    position: relative;
    padding: 15px;
    padding-top: 10px;
    padding-bottom: 8px;
    padding-right:50px;
    box-shadow: 0px 0px 0px 1.5px white;
    border-radius: 10px 10px 0px 0px;
    color: white;
    font-size: 22px;
    line-height: 1.4em;
    min-height: 31px;
}
.closePopup{
    position: absolute;
    top: 5px;
    right: 5px;
    color: rgba(0,0,0,0) !important;
    width: 40px;
    height: 40px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-image:url('/Content/Images/mayor/transparency/closeX.png');
}
.closePopupBackground{
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
}
.popupContent{
    box-shadow: 0px 0px 0px 1.5px white, 10px 10px 20px rgba(0, 0, 0, 0.43);
    border-radius: 0px 0px 10px 10px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(230,246,255,1) 100%);
    padding: 15px;
}
.popupContent p:first-of-type{
    margin-top:0px;
}
.popupContent p:last-of-type{
    margin-bottom:0px;
}
.popupImageContainer{
    margin-bottom:-15px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    line-height:0px;
    font-size:0px;
}
.popupImageContainer .popupImage{
    margin-left:auto;
    margin-right:auto;
    max-width:100%;
}
/*Popup Button Style*/
.page__content a.popupButton, .page__content a.popupButton:link, .page__content a.popupButton:active, .page__content a.popupButton:visited{
    display: inline-block;
    padding: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 10px;
    background-color:rgba(255, 255, 255, 1);
    transition:background-color 0.4s;
    box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.42);
    color: black !important;
    text-decoration: none;
}
.page__content a.popupButton:hover{
    background-color:rgb(200, 240, 255);
    text-decoration: none;
}