.home {
    max-width: 980px;
}

.home .general-tile {
    min-width: 180px;
    height: 90px;
    display: inline-block;
    margin: 5px;
    position: relative;
    background-color: #DBEAF9;
    background-position: center top 20px;
    background-repeat: no-repeat;
    background-size: 32px 32px;
    color: #103070;
    padding: 2px;
    border: transparent solid 1px;
}

.home .general-tile:hover,
.home .general-tile:focus {
    border: 1px #AECCF1 solid;
    background-color: #F9FAFD;
}

.home .general-tile:active {
    border: 1px #AECCF1 solid;
    background-color: #F1F5FB;
}

.home .general-tile__caption {
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    margin-left: 3px;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
}

.home .group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 980px;
    width: calc(100vw - 80px);
}

@media only screen and (max-width: 1068px) {
    .home .group {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width: 882px) {
    .home .group {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 696px) {
    .home .group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 510px) {
    .home .group {
        grid-template-columns: repeat(1, 1fr);
    }
}

#left_toolbar .home .group {
    display: inline-block;
    width: auto;
}

.home .label {
    border-bottom: 2px solid #aBbAc9;
    margin: 0 5px;
    padding: 5px 0;
    text-align: left;
}

.home .fav .label {
    font-weight: bold;
}

.home .general-tile.dashboard-add {
    background-color: #f0f0f0;
    border: 1px dashed #000;
    opacity: 0.2;
    transition: all ease 0.3s;
}

.home .general-tile.dashboard-add:hover {
    opacity: 1
}

.iframe-full {
    height: calc(100vh - 38px);
    width: calc(100vw - 70px);
    margin: -15px;
    border: none;
}