.home-section#section-intro {
    background: url("/assets/img/discoursedl/bg/intro.png");
	min-height: auto;
}

.home-section.home-section-docs#section-intro {
    min-height: calc(100vh - 80px) !important;
    display: block;
}

.home-section#section-about {
    background: url("/assets/img/home/bg/intro.png");
	/*background: #2e3235;*/
    box-shadow: 0px 0px 8px 0px #000;
    display: inline-block;
    width: 100%;
    z-index: 10;
	min-height: auto;
}

.home-section#section-downloads {
    background: url("/assets/img/home/bg/resume.png");
	min-height: auto;
}

.home-section .box {
    backdrop-filter: blur(30px);
}

.home-section#section-intro h1 {
    text-shadow: 0px 2px 10px #0000008c;
}

.home-section#section-intro p {
    text-shadow: 0px 2px 5px #0000008c;
}

.home-section#section-intro .button {
    backdrop-filter: blur(15px);
}

img#discoursedl-logo {
    max-height: 200px;
}

.container-with-sidebar {
    display: flex;
    margin-top: 80px;
    max-width: 1400px;
}

.main-content {
    flex-grow: 1;
}

.sidebar {
    max-width: 25%;
    min-width: 25%;
}

.item-title .info-icon {
    font-size: 24px;
}

.button.button-docs-item {
    display: block;
}

.button-docs-item:not(:last-child) {
    margin-bottom: 10px;
}

.button-docs-item {
    text-align: left;
}

.button-docs-item.active {
    background: #fa323242;
    box-shadow: 0px 0px 6px 0px var(--accent-color);
}

.sidebar .item-title {
    margin-top: 0px;
}

.item-title.docs-title {
    text-align: left;
    margin-top: 0px;
}

.main-content hr.item-divider {
    margin-left: 0px;
    margin-top: 16px;
}

code {
    background: #f443363d;
    padding: 1px 2px;
    border-radius: 3px;
    color: #ff4d4d;
}

code.code_block {
    display: block;
    margin: 0px 8px;
    /* background: none; */
    color: silver;
    /* border: 1px inset gray; */
    /* border-radius: 0px; */
    padding: 6px 8px;
    background: #ffffff0f;
    box-shadow: 0px 2px 10px 0px #00000096;
    border-radius: 4px;
    border: 1px solid #ffffff1a;
}

.notice-box {
    display: block;
    margin: 0px 0px;
    color: silver;
    padding: 6px 8px;
    background: #ffffff0f;
    box-shadow: 0px 2px 10px 0px #00000096;
    border-radius: 4px;
    border: 1px solid #ffffff1a;
}

table {
    color: #fff;
    background: #397cd71a;
    border-radius: 8px;
    padding: 0px 0px;
    box-shadow: 0px 2px 8px 0px #000;
    border: 1px solid #ffffff1c;
    border-spacing: 0px;
}

th {
    border: none;
}

td {
    border: 0px;
    border-top: 1px solid #ffffff1a;
    padding: 4px 8px;
}

td:not(:last-child) {
    border-right: 1px solid #ffffff1a;
    transition: 0.2s;
}

tr {
    transition: 0.2s;
}

tr:hover/*, td:hover*/ {
    background: #ffffff10;
    transition: 0.2s;
    box-shadow: 0px 0px 8px 0px #ffffff40;
}

tr:last-child td {
    padding-bottom: 6px;
}

th:first-child {
    border-top-left-radius: 7px;
}

th:last-child {
    border-top-right-radius: 7px;
}

th {
    padding: 8px 12px;
    background: #ffffff14;
    text-shadow: 0px 0px 6px #ffffff5e, 0px 1px 4px #000;
}


@media screen and (max-width: 1150px)
{
    
    table {
        font-size: 10px
    }
}

@media screen and (max-width: 850px)
{
    .container-with-sidebar {
        flex-direction: column-reverse;
    }
    
    .sidebar {
        max-width: 100%;
        margin-bottom: 20px !important;
    }
}


