﻿/*-------------------------------------------------------------------------------------------------------------------*/
#menu {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 15px;
}
/*-----------------------------------------------------------------------*/
#content {
    display: block;
}
/*-----------------------------------------------------------------------*/
.contentTitle {
    position: relative;
    display: block;
    min-height: 55px;
    color: var(--color-primary);
    font-family: var(--font-main);
    text-align: center;
    font-size: 24px;
    line-height: 2em;
    padding: 5px 0;
}
/*-----------------------------------------------------------------------*/
.siteSubText{
    display: block;
    color: var(--color-text);
    font-family: var(--font-main);
    text-align: justify;
    font-size: 18px;
    font-weight: normal;
}
/*-----------------------------------------------------------------------*/
.contentText {
    display: block;
    text-align: justify;
    color: var(--color-text);
    line-height: 1.6;
}
/*-----------------------------------------------------------------------*/
.contentText p {
    display: block;
    text-align: justify;
    line-height: 2em;
    text-indent: 20px;
    letter-spacing: 0.2px;
}
/*-----------------------------------------------------------------------*/
.contentText h3 {
    margin: 1em 0 0.5em;
}
/*-----------------------------------------------------------------------*/
.contentText h4 {
    margin: 0.6em 0 0.3em;
    font-size: 1em;
    padding-left: 20px;
}
/*-------------------------------------------------------------------------------------------------------------------*/
dl {
    text-indent: 20px
}
/*-----------------------------------------------------------------------*/
dt {
    /*margin-top: 1em;*/
    margin-bottom: 1em;
}
/*-----------------------------------------------------------------------*/
dd {
    margin-top: 1em;
    margin-bottom: 1em;
}
/*-----------------------------------------------------------------------*/
ol {
    margin-top: 0;
    margin-bottom: 0;
}
/*-----------------------------------------------------------------------*/
li {
    line-height: 2em;;
}
/*-----------------------------------------------------------------------*/
/* PDF посилання ---------------------------------------------------------*/
a[href$=".pdf"] {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}
a[href$=".pdf"]::after {
    content: "PDF";
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font: bold 10px/14px Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}
a[href$=".pdf"] span {
    display: none;
}
a[href$=".pdf"]:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
/*-----------------------------------------------------------------------*/