:root {
    --BackgroundColor: rgba(36, 36, 36, 0.95);
    --Color: #3DBFBB;
}

html {
  font-size: 14px;
}

html, body, *{
    margin: 0;
    padding: 0;
    color: white;
    border: none
}

body {
    background-color: var(--BackgroundColor);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
htnk{
    min-height: 100%
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

h1, h2, h3, h4{
    color: var(--Color);
}

main{
    height: 100%
}

a{
    text-decoration: none;
    color: var(--Color)
}

footer{
    position: relative !important;
    background-color: var(--Color) !important;
    padding: 2em;
}

.footer-logo{
    width: 50%;
}

img {
    background: url(~/img/web/Default.webp) no-repeat scroll 0 0;
}

footer a{
    display: block;
    color: var(--BackgroundColor) !important;
    line-height: normal;
}

.container {
    min-height: 100%;
    min-width: 100%;
    margin-bottom: 0em;
    min-height: 0;
    flex-grow: 1;
    background-color: var(--BackgroundColor)
}

header{
    background-color: var(--BackgroundColor) !important
}

nav{
    background-color: var(--BackgroundColor) !important;
    color: var(--Color);
    padding-inline: 3em;
}

.nav-link{
    padding: 1em 3em !important;
    color: white !important;
    border-bottom: solid 1px transparent !important;
}

.nav-link:hover{
    color: white !important;
    border-bottom: solid 1px var(--Color) !important;
}

.border-top{
    color: var(--Color);
}

.border-bottom{
    color: var(--Color) !important;
}

.logo{
    height: 2em;
}

.nav-item{
    padding: .5em .5em!important;
}

.new-art{
    width: 80%;
}

form{
        padding: 1em;
        width: 50%
}

.text-justify{
    text-align: justify;
    hyphens: auto;
}
.card{
    padding-inline: 1.5em;
}
.card h2{
}

input:focus{
    outline: none !important;
}

form.search{
    width: 100%;
}
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -1px 0 #2987ff !important;
}


/* Cookie Banner */
@media screen and (max-width: 960px) {
    .form-link {
        margin-bottom: .8em !important;
        font-size: 1.1em !important;
    }

    .cookie-banner {
        position: fixed;
        width: calc(100% - 2em);
        bottom: 0;
        left: 0;
        text-align: left;
        padding: 0.5em;
        word-break: break-word;
    }

        .cookie-banner p {
            grid-column: 1 / span 2;
        }

    .agree-section {
        display: flex;
        flex-direction: column;
        margin-top: .8em;
        justify-content: center;
        align-items: center;
    }

    .cookie-image {
        grid-column: 1 / span 2;
    }

    .agree-section-button {
        display: grid;
        width: 100%;
    }

    #agree-button {
        border-bottom-left-radius: .75em !important;
        border-bottom-right-radius: .75em !important;
    }

    #disagree-button {
        border-top-left-radius: .75em !important;
        border-top-right-radius: .75em !important;
    }
}

@media screen and (min-width: 1200px) {
    .cookie-banner {
        width: 40%;
        font-size: 1em;
        padding: 2em;
        position: fixed;
        left: 1em;
        bottom: 1em;
        box-shadow: 5px 5px #00000019;
        border-radius: 1em;
    }

    .agree-section-button {
        display: grid;
        grid-template-columns: 2fr 3fr;
        grid-row: 2;
        grid-column: 1 / span 2;
    }

    .cookie-image {
        grid-row: 1 / span 2;
    }

    .agree-section {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1em;
        grid-template-rows: 2fr 1fr;
        margin-top: .8em;
    }

    #agree-button {
        border-bottom-right-radius: .75em;
        border-top-right-radius: .75em;
    }

    #disagree-button {
        border-bottom-left-radius: .75em;
        border-top-left-radius: .75em;
    }
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
    .cookie-banner {
        width: 50%;
        position: fixed;
        left: 1em;
        bottom: 1em;
        box-shadow: 5px 5px #00000019;
        border-radius: 1em;
    }


    .agree-section-button {
        display: grid;
        width: 100%;
    }

    #agree-button {
        border-bottom-left-radius: .75em !important;
        border-bottom-right-radius: .75em !important;
    }

    #disagree-button {
        border-top-left-radius: .75em !important;
        border-top-right-radius: .75em !important;
    }
}

.cookie-banner {
    background: var(--Color);
    padding: 1em 2em;
    border: var(--Background) 1px solid;
    z-index: 2;
    display: none;
}

.cookie-banner span {
    font-size: 1.6em;
    color: var(--BackgroundColor);
}
.cookie-banner a{
    color: white !important;
}

.cookie-banner p {
    color: var(--BackgroundColor);
    font-size: 1em;
    margin-bottom: 1em;
    word-break: normal;
}
#agree-button {
    color: white;
    background-color: var(--BackgroundColor);
    border: var(--BackgroundColor) 2px solid;
}

#disagree-button {
    color: var(--BackgroundColor);
    background-color: var(--Color);
    border: var(--BackgroundColor) 2px solid;
}

#agree-button:hover {
    color: var(--Main);
    background-color: #1d1d1d;
    border: 2px var(--Background) solid;
}

#disagree-button:hover {
    color: white;
    background-color: var(--BackgroundColor);
    border: 2px var(--Background) solid;
}

#agree-button, #disagree-button {
    padding: 0.5em 1em;
}

.footer-link-group{
    margin-bottom: 1.2em;
}
.nav-item-active{
    background-color: var(--Color) !important;
    color: var(--BackgroundColor) !important;
}
td, th{
    padding: .5em;
}

.btn-close{
    color: var(--bs-danger) !important;
}

.text-gray{
    color: #808080
}

.fs-7{
    font-size: 0.75rem;
}

.naving{
    margin-top: 0px !important
}

.nav-item-nav-bar{
    padding-inline: 0em !important;
}

.sklenka_medu{
    font-size: 0px !important;
    color: transparent !important;
    display: none;
}