/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/

.standard-logo {
    margin-top: 35px;
    font-weight: bold;
    display: block !important;
    margin-bottom: 25px;
}

#logo {
    float: none !important;
}
#logo img{
    margin: 0 auto !important;
}

.top-advert {
    font-size: 16px;
}

#page-title .container p {
    margin: 0;
}

.category-1 #page-title h1 {
    color: yellow;
}


/* icons */


/* underline text */
#content p{
    text-decoration: underline;
}
a.short{
margin: 0px 0px 10px 0px !important;
padding: 0px;
}

/* navbar */

/* modal */
.modal-window {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.25);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
.modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.modal-window > div {
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    background: rgb(255, 255, 255);
    box-shadow: 2px 2px 2px gray;
}
.modal-window header {
    font-weight: bold;
}
.modal-window h1 {
    font-size: 150%;
    margin: 0 0 15px;
}
.modal-close {
    color: #aaa;
    line-height: 50px;
    font-size: 80%;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
}
.modal-close:hover {
    color: black;
}

#top-search a{
    float: right !important;
    margin-bottom: 20px;
    transition: 0.5s;
}
#top-search a:hover,#top-search a:focus{
 font-size: 14px;
 color: black;
}

/* focus */

.dark #top-social li a:focus{
background-color: rgb(255, 255, 255);
color: black;
}

/* navbar */
i:focus,.fas i:focus-visible{
border: 2px solid black !important;
}