.content,
.page-search-query {
    width: 100%;
}

.content {
    height: 100%;
}

.app-content {
    padding-top: calc(var(--header-height) + 40px);
}

.main-content {
    padding-top: var(--header-height);
    padding-left: var(--sidebar-width);
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}

.page-search {
    position: relative;
    margin-bottom: 20px;
}

.page-search.icon-search:before {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    opacity: .2;
}

.page-search-query {
    border: 1px solid #ddd;
    height: 40px;
    border-radius: 5px;
}

.page-search.icon-search .page-search-query {
    padding-left: 40px;
}

.section-title {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 7px;
    font-weight: 500;
}

.section-description {
    font-size: .8rem;
    color: #777;
    line-height: 1.2;
    
    margin-bottom: 15px;
}


/* Box */
.box {
    box-shadow: 0 2px 3px rgba(0,0,0,0.12);
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    margin-bottom: 25px;
}

.box-header {
    margin: 25px 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.box-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #777;
}

/* Box Info */
.box-info {
    padding: 0;
}

.box-info.last-update-theme {
    order: -1;
}

.box-info.last-update-theme .box-header {
    padding-right: 90px;
}

.box-info.last-update-theme .box-header:after {
    content: 'Newest';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: inline-block;
    border: 1px solid var(--theme-color);
    padding: 5px;
    font-size: .8rem;
    color: var(--theme-color);
    border-radius: 4px;
    pointer-events: none;
}

.box-info .box-content,
.box-info .box-footer {
    padding: 20px 15px;
}

.box-info .box-header {
    display: flex;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    height: 60px;
    align-items: center;
    padding: 0 15px;
}

.box-info .box-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.box-buttons-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.box-info .table-col {
    padding-top: 3px;
    padding-bottom: 3px;
}

.box-info .box-content {
    min-height: 140px;
}

.box-info .box-no-min-height {
    min-height: 100%;
}

.box-info .box-no-padding {
    padding: 0 15px;
}

.info-label {
    font-weight: bold;
}

.info-label,
.info-value {
    font-size: .85em;
}


.draft-themes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box-info-half {
    width: 49%;
}

.main-theme .box-info {
    width: 100%;
}

.box-info .box-footer {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    min-height: 80px;
}


.logout-content {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 10px;
    text-align: center;
}

.logout-content .sub-headline {
    margin: 4% 0 7%;
}


@media (max-width: 767px) {
    .box-mobile-full {
        width: 100%;
    }

    .box-info .box-title {
        font-size: .9rem;
    }
}