/* hint container overlay */
#ic-hint-container {
    font-family: Arial, Helvetica, sans-serif;
    width: 16rem;
    bottom: 2rem;
    right: -14rem;
    position: fixed;
    border-radius: 1rem 0 0 1rem;
    padding-bottom: 0.8rem;
    z-index: 10000;
}

#ic-hint-container:hover {
    right: 0;
    transition: width 2s ease-out;
}

.ic-hint-header {
    border-radius: 1rem 0 0 0;
    padding: 0.8rem;
    background-color: #006932;
    color: white;
    border-left: 1px solid white;
    border-top: 1px solid white;
}

.ic-hint-body {
    border-left: 1px solid #006932;
    padding: 0.8rem;
    background-color: snow;
    border-left: 1px solid white;
}

.ic-hint-toolbar {
    text-align: center;
    border-radius: 0 0 0 1rem;
    background-color: #006932;
    border-left: 1px solid white;
    border-bottom: 1px solid white;
}

.ic-hint-button {
    background: rgb(253, 203, 32);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.ic-hint-button:hover {
    background: rgb(255, 241, 70);
}

/* banner container overlay */
#ic-banner-container {
    font-family: Arial, Helvetica, sans-serif;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    bottom: 0;
    position: fixed;
    z-index: 10000;
    background-color: #006932;
    border-top: 2px solid white;
	font-size: 1.4rem;
}

#ic-banner-container:hover {
    right: 0;
    transition: width 2s ease-out;
}

.ic-banner-body {
    padding: 0.8rem;
    color: white;
	font-size: 1.4rem;
}

.ic-banner-toolbar {
    text-align: center;
    white-space: nowrap;
}

.ic-banner-button-accept-all {
    background: rgb(253, 203, 32);
}

.ic-banner-button-accept-required {
    background: white;
}

.ic-banner-button-show-configuration {
    background: lightgrey;
}

.ic-banner-button:hover {
    background: rgb(255, 241, 70);
}

.ic-banner-imprint-link {
    color : rgb(253, 203, 32) !important;
}

/* main css */
#ic-modal {
    font-family: Arial, Helvetica, sans-serif;
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

#ic-container {
    top: 2rem;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    background-color: white;
    border-radius: 1rem;
    padding-bottom: 0.8rem;
    overflow: hidden;
    max-height: 90%;
    overflow-y: auto;
    min-width: 268px;
}

.ic-container-header {
    text-align: center;
    color: white;
    font-size: 1.4rem;
    background-color: #006932;
    border-radius: 1rem 1rem 0 0;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.ic-container-description {
    font-size: 1rem;
    padding: 1rem;
}

.ic-container-imprint {
    font-size: 0.9rem;
    padding: 1rem;
}

.ic-container-imprint a {
    color: #006932 !important;
}

.ic-toolbar-top {
    text-align: right;
}

.ic-toolbar-bottom {
    text-align: right;
}

.ic-category {
    border-top: 0.1rem solid lightgrey;
    margin-top: 0.5rem;
    background-color: #B9DCA4;
}

.ic-category-header {
    display: flex;
    flex-direction: row;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.ic-category-header .ic-category-name {
    font-size: 1.1rem;
    font-weight: bold;
    padding-left: 1rem;
}

.ic-category-header div:nth-child(1) {
    width: 81%;
}

.ic-category-header div:nth-child(2) {

}

.ic-category-header div:nth-child(3) {
    margin-left: 1.2rem;
    margin-right: 0.4rem;
}

.ic-category-details {
    padding: 0.2rem;
}

.ic-category-details .ic-category-description {
    font-size: 1rem;
    font-weight: normal;
    padding-left: 1rem;
}

.ic-switch[type=checkbox] {
    display: inline-block;
    height: 0;
    width: 0;
    visibility: hidden;
}

.ic-switch-label {
    display: inline-block;
    cursor: pointer;
    text-indent: -9999px;
    width: 4rem;
    height: 2rem;
    background: lightgrey;
    border-radius: 2rem;
    position: relative;
}

.ic-switch-label:after {
    content: '';
    position: absolute;
    top: 0.4rem;
    left: 0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    background: white;
    border-radius: 1.2rem;
    transition: 0.3s;
}

.ic-switch:checked + .ic-switch-label {
    background: #006932;
}

.ic-switch:checked + .ic-switch-label:after {
    left: calc(100% - 0.3rem);
    transform: translateX(-100%);
}

.ic-switch-label:active:after {
    width: 2rem;
}

.ic-arrow {
    border: solid white;
    border-width: 0 0.2rem 0.2rem 0;
    display: inline-block;
    padding: 0.4rem;
    transition: 0.5s;
    margin-bottom: 0.4rem;
    cursor: pointer;
}

.ic-up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.ic-down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.ic-button {
    display: inline-block;
    text-align: center;
    padding: 0.5rem;
    margin: 0.2rem;
    cursor: pointer;
}

.ic-button:hover {
    opacity: 0.5;
}

.ic-button-select-all {
    margin-top: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    background: #006932;
    color: white;
}

.ic-button-unselect-all {
    margin-top: 1rem;
    background-color: lightgrey;
}

.ic-button-accept {
    margin-top: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    background: rgb(253, 203, 32);
}

.ic-button-accept:hover {
    background: rgb(255, 241, 70);
}

.ic-button-reject {
    margin-top: 1rem;
    background-color: lightgrey;
    display: none;
}

@media only screen and (max-width: 1024px) {
    .ic-container-header {
        font-size: 1.2rem;
    }

    .ic-container-description {
        font-size: 0.9rem;
    }

    .ic-container-imprint {
        font-size: 0.8rem;
    }

    .ic-category-header .ic-category-name {
        font-size: 0.9rem;
    }

    .ic-category-details .ic-category-description {
        font-size: 0.7rem;
    }
}

@media only screen and (max-width: 600px) {
    .ic-container-header {
        font-size: 0.8rem;
    }

    .ic-container-description {
        font-size: 0.7rem;
    }

    .ic-container-imprint {
        font-size: 0.6rem;
    }

    .ic-category-header .ic-category-name {
        font-size: 0.7rem;
    }

    .ic-category-details .ic-category-description {
        font-size: 0.4rem;
    }
}

.ic-dummy-iframe {
    max-width: 50%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 1rem;
    background-color: black;
    color: white;
}

.ic-dummy-img {
    max-width: 50%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 1rem;
    background-color: black;
    color: white;
}