#quoteIcon{
    width:100%;
    height:100%;
    background-size:100%;
    background-repeat: no-repeat;
    background-image: url("/resources/shared/components/Citation/images/citation-circle-solid-cs.png");
}
#citationButton:hover #quoteIcon, #citationButton:focus #quoteIcon{
    background-image: url("/resources/shared/components/Citation/images/citation-circle-cs.png");
}
.headerText{
    margin:0px;
    margin-right:10px;

}

#citethispagespan{
    display:none;
    background-color: #4392bf;
    color: white;
    position: relative;
    bottom: 21px;
    width: 100px;
    right: -22px;
    border-radius: 3px;
    z-index: 10000;
}
#quoteIcon:hover>#citethispagespan, #citationButton:focus>#quoteIcon>#citethispagespan{
    display:block;
}

#quoteIcon>#citethispagespan:hover{
    display:none;
}

.citeCop{
    border-radius: 7px;
    font-size: 25px;
    padding:5px;
    padding-top:5px;
}

.citeCop:hover, .copyButtons:focus{
    background-color: rgba(200 , 200, 200, 1.0);
    cursor: pointer;
}


#citationButton{
    margin-top:auto; 
    margin-left:auto;
    height:32px; 
    float:right;
    border:0px;
    background-color:transparent;
    padding:0px;
  
    width: 32px;
}

#titleHR{
margin-top: 0px;
    margin-bottom: 5px;
     border: 0;
    border-top: 1px solid #4392bf;
}

#page_title{
    padding:0px;
    display: flex;
    flex-wrap: wrap;
}
.dnntitle{
    padding:0px;
    display: flex;
    flex-wrap: wrap;
}
#titleLabel{
    float:left;
    padding:0px;
}
#citationBlockClose{
    padding:5px;
    padding-top:0px;
    padding-bottom:0px;
    border-radius: 100%;
}    

#citationBlockClose:hover, #citationBlockClose:focus{
    cursor: pointer;
    color:black;
    background: #c4c4c4;
}

#citationTitle{
    text-align:center;
   /* margin: 30px 0px 5px 0px; */
    }
#citePopClose{
    padding:0px;
    padding-top:10px;
    width:5%;
}
#citePopLayer{
    z-index: 10001;
    position: fixed;
    display: none;
    padding:0;
    margin:0;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(200, 200, 200, 0.5);
    -webkit-animation: fadein .50s;
    animation: fadein .50s;
}
.copyButtons{
    background:none;
    border:none;
    padding:0px;
}

#closeCiteButton{
    background:none;
    border:none;
}

#closeCiteButton:focus{
    cursor: pointer;
    color:black;
    background: #c4c4c4;
}
#citePop{
    position:fixed;
    font-size:14px;
    min-width: 300px ;
    z-index: 10002;
    left:25%;
    top:30%;
    width:57%;
    display:flex;
    flex-wrap:nowrap;

    border:1px solid rgba(200, 200, 200, 1.0);
    background: rgba(255, 255, 255, 1.0); 
    border-radius: 6px;
    box-shadow: 5px 5px 5px grey;
}

#innerPopDiv{
    margin-bottom:0;
    padding-left:40px;
    padding-bottom: 10px;
    width:95%;
}
#citeArticleButton{
    padding-left: 5px;
    padding-right: 5px;
}

#endNoteDiv{
    padding-top: 10px;
    text-align: center;
}

#endNoteLink{
    font-size: 16px;
    border-radius:5px;
    font-weight:bold;
    padding-left:20px;
    padding-right:20px;
    color:white;
    background:#105386; 
}

#endNoteLink:hover, #endNoteLink:focus{
    cursor:pointer;
    color:white;
    background: #4392bf;
}

/* https://www.w3schools.com/howto/howto_js_snackbar.asp - snackbar temporary outline */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #105386;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 10003;
    left: 50%;
    bottom: 100px;
    font-size: 15px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 1.0s 2.5s;
    animation: fadein 0.5s, fadeout 1.0s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 100px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 100px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 100px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 100px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@media only screen and (max-width: 1338px) {
    /* For mobile phones: */
    div#citePop {
        top:10%;
        left:15%;
        width: 80%;
        word-wrap:break-word;
    }
    #citethispagespan{
        bottom: -27px;
        right: 88px;
    }
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    div#citePop {
        width: 100%;
        left:15px;
        top:0px;
        word-wrap:break-word;
    }
    h2#citationTitle{
        padding:0px;
        margin:0px;
    }
    span#citationBlockClose{
        padding:0px;
    }
}