@font-face {
    font-family: palanquin-regular;
    src: url(../fonts/palanquin-regular.ttf)
}

@font-face {
    font-family: palanquindark-regular;
    src: url(../fonts/palanquindark-regular.ttf)
}

  :root {
    --mainbgcolor: #fafafa;
    --bubble1: #edf2f8;
    --bubble2: #f3ecec;
    --sidebarbgcolor: rgb(28, 45, 56);
    --sidebartextcolor: #fff;
    --sidebarheadertextcolor: #1c2d38;
    --table2headerbgcolor: #dbb6b6;
    --table2bgcolor: #ffe1e1;
    --table2altbgcolor: #ffd5d5;
    --table2tdtextcolor: #1c2d38;
    --sidebarsubbgcolor: #263c4b;
    --paragraphtextcolor: #4b4b4b;
    --sidebarhovertextcolor: #0e171d;
    --sidebarhamburgercolor: #d4d1d1;
    --sidebarh6textcolor1: rgb(3, 26, 48);
  }



body {
    font-family: palanquin-regular;
    background: var(--mainbgcolor);
    -webkit-overflow-scrolling: touch;
}




p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: var(--paragraphtextcolor);
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all .1s
}

a.aext {
    color: rgb(0, 100, 150);
    text-decoration: none;
    font-weight: bold;
}
a.aext:hover {
    color: rgb(34, 0, 0);
    text-decoration: underline;
    font-weight: bold;
}

.px1 {
    text-align: left;
}

h1 {
    font-weight: bold;
}

p.sub {
    padding-left: 30px;
}

h6.sub {
    font-size: 25px;
    padding-left: 30px;
    padding-top: 30px;
    font-weight: bold;
}

h1.subl {
    color: rgb(43, 22, 22);
}

h6.subl {
    color: rgb(43, 22, 22);
    font-size: 25px;
    padding-left: 30px;
    padding-top: 30px;
    font-weight: bold;
}

.navbar {
    padding: 15px 10px;
    background: var(--sidebartextcolor);
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    
}

.navbar-btn {
    outline: none!important;
    border: none;
    background: var(--sidebarbgcolor);
    position: fixed;
    z-index: 10;
}


.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: var(--sidebarbgcolor);
    color: var(--sidebartextcolor);
    transition: all .1s;
    transition-delay: 0.1s;
    z-index: 9;
}

#sidebar.active {
    margin-left: -250px;
    transform: rotateY(0deg);
    z-index: 9;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: var(--sidebarheadertextcolor);
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 0px;
}

#sidebar ul p {
    color: var(--sidebartextcolor);
    padding: 10px
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block
}

#sidebar ul li a:hover {
    color: var(--sidebarhovertextcolor);;
    background: var(--sidebartextcolor);
}

#sidebar ul li.active>a,
a[aria-expanded=true] {
    color: var(--sidebartextcolor);
    background: var(--sidebarheadertextcolor);
}

a[data-toggle=collapse] {
    position: relative
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%)
}

ul ul a {
    font-size: .9em!important;
    padding-left: 30px!important;
    background: var(--sidebarsubbgcolor);
}

ul.CTAs {
    padding: 20px
}

ul.CTAs a {
    text-align: center;
    font-size: .9em!important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px
}

a.download {
    background: var(--sidebartextcolor);
    color: #7386d5
}

a.article,
a.article:hover {
    background: #6d7fcc!important;
    color: var(--sidebartextcolor) !important;
}

#content {
    width: calc(100% - 250px);
    min-height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    transition: all 0.3s cubic-bezier(.81, -.33, .345, 1.375);
}

#content.active {
    width: 100%;
    transition: all 0.3s cubic-bezier(.81, -.33, .345, 1.375);
}

#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: var(--sidebarbgcolor);
    left: 250px;
    top: 0px;
    cursor: pointer;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    transition: all .1s;
    transition-delay: 0.1s;
}



#sidebarCollapse.active {

    left:0px;
    transition: all .1s;
    transition-delay: 0.1s;

}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: var(--sidebarhamburgercolor);
}

#sidebarCollapse span:first-of-type {
    transform: rotate(180deg) translate(0px,-8px);
    transition: all 0.5s;
    transition-delay: 0.2s;
}

#sidebarCollapse span:nth-of-type(2) {
    opacity: 100;
}

#sidebarCollapse span:last-of-type {
    transform: rotate(-180deg) translate(0px, 8px);
    transition: all 0.5s;
    transition-delay: 0.2s;
}

#sidebarCollapse.active span:first-of-type {
    transform: rotate(-180deg) translate(0px,  -8px);
    transition: all 0.5s;
    transition-delay: 0.2s;
}

#sidebarCollapse.active span:nth-of-type(2) {
    opacity: 100;
}

#sidebarCollapse.active span:last-of-type {
    transform: rotate(180deg) translate(0px, 8px);
    transition: all 0.5s;
    transition-delay: 0.2s;
}




.maincontentsub {
    background: var(--bubble1);
    border-radius: 20px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.maincontentsub.intro {
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
}

.maincontentsubl {
    background: var(--bubble2);
    border-radius: 20px;
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.card {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.card-header2 {
    border-top-left-radius: 10px;
    background: black;
    text-align: left;
    height: 100px;
}

.accordion .card:last-of-type {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

div#collapsesch {
    padding: 15px;
}

button.toptest,
button.toptest:hover {
    color: var(--sidebarbgcolor);
    text-decoration: none;
    background: #a0c4db;
}

h6.colscpop {
    color: var(--sidebarh6textcolor1);
    font-size: 18px;
    font-weight: bold;
}

p.colscpop {
    color: var(--sidebarh6textcolor1);
    font-size: 14px;
    padding: 20px;
}

.skryty {
    display: none;
}

a.menuitemx {
    cursor: pointer;
}



.separador100 {
    height: 100px;
}

.maincontentsub.aktif {
    background: #d6e9ff;
}

.maincontentsubl.aktif {
    background: #ffe1e1;
}

::-webkit-scrollbar {
    width: 2px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

.px1 a{
    font-weight: bold;
    text-decoration: underline;
}





.zavazne_tabulka{
    color:var(--sidebarheadertextcolor);
    border:none;
    padding: 5px;
    width: 80%;
}



tr.st1:nth-child(odd), tr.st2:nth-child(odd){
    background-color: var(--table2bgcolor);
    
}

tr.st1:nth-child(even), tr.st2:nth-child(even){
    background-color: var(--table2altbgcolor);
    
}

.warnink{
    color: var(--paragraphtextcolor);
    font-size: 10px;
    text-align: center;
}


th.st1, th.st2{
background-color: var(--table2headerbgcolor);
}

td.st1{
    padding-left: 20px;
    padding-right: 20px;
}

td.st1o{
    padding-left: 50px;
    padding-right: 20px;
}



td.st2{
    padding-left: 10px;
    padding-right: 20px;
    color: var(--table2tdtextcolor);
    text-align: right;
}

.centertab{
    
    padding-left: 50px;
    padding-bottom: 50px;
}

#topbar{
    display: none;  
}

#copywrong{
    color: var(--sidebartextcoloralt);
    text-align: center;
    font-size: 10px;
    vertical-align: bottom;
}

@media  (max-width:768px) {



    .separador100 {
        height: 20px;
    }

    #sidebar {
        margin-left: -250px;
        overflow: auto;
        position:absolute;
        opacity: 0.98;
        
    }
    #sidebar.active {
        margin-left: 0;
        overflow:auto;
        position:fixed;
    }
    #content {
        width: 100%;
        padding: 10px;
        padding-top: 40px;
        
    }
    #sidebarCollapse {
        margin-left: -250px;
        transition: all .2s cubic-bezier(.81, -.33, .345, 1.375);
        transition-delay: 0ms; 
        z-index:10;  
        position:fixed;
    }

    #sidebarCollapse.active {
        margin-left: -40px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 0px;
        background: #324e5f;
        transition: all .2s cubic-bezier(.81, -.33, .345, 1.375);
        z-index:10;
        left: 250px;
        position:fixed;
    }

    #topbar{

        height: 40px;
        background: var(--sidebarbgcolor);
        width: 100%;
        z-index: 8;
        position:fixed;
        font-size: 22px;
        text-align: center;
        color: white;
        display:block;

        
    }


    #sidebarCollapse span:first-of-type {
        transform: rotate(0deg) translate(0px,-6px);
        transition: none;
        transition-delay: 0s;
    }
    
    #sidebarCollapse span:nth-of-type(2) {
        opacity: 100;
    }
    
    #sidebarCollapse span:last-of-type {
        transform: rotate(0deg) translate(0px, 6px);
        transition: none;
        transition-delay: 0s;
    }
    
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(0deg) translate(0px,-6px);
        transition: none;
        transition-delay: 0s;
    }
    
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 100;
    }
    
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(0deg) translate(0px, 6px);
        transition: none;
        transition-delay: 0s;
    }
    


    .maincontentsub {
        background: var(--bubble1);
        border-radius: 3px;
        padding: 2%;
        margin: 5px;
    }


 
}
