/* === GOOGLE-FONTS */

/* lato-italic - latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/lato-v16-latin-italic.eot');
    /* IE9 Compat Modes */
    src: local('Lato Italic'), local('Lato-Italic'),
        url('../fonts/lato-v16-latin-italic.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/lato-v16-latin-italic.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/lato-v16-latin-italic.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/lato-v16-latin-italic.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/lato-v16-latin-italic.svg#Lato') format('svg');
    /* Legacy iOS */
}

/* lato-regular - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v16-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local('Lato Regular'), local('Lato-Regular'),
        url('../fonts/lato-v16-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/lato-v16-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/lato-v16-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/lato-v16-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/lato-v16-latin-regular.svg#Lato') format('svg');
    /* Legacy iOS */
}

/* lato-700 - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v16-latin-700.eot');
    /* IE9 Compat Modes */
    src: local('Lato Bold'), local('Lato-Bold'),
        url('../fonts/lato-v16-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/lato-v16-latin-700.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/lato-v16-latin-700.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/lato-v16-latin-700.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/lato-v16-latin-700.svg#Lato') format('svg');
    /* Legacy iOS */
}

/* lato-700italic - latin */
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/lato-v16-latin-700italic.eot');
    /* IE9 Compat Modes */
    src: local('Lato Bold Italic'), local('Lato-BoldItalic'),
        url('../fonts/lato-v16-latin-700italic.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/lato-v16-latin-700italic.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/lato-v16-latin-700italic.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/lato-v16-latin-700italic.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/lato-v16-latin-700italic.svg#Lato') format('svg');
    /* Legacy iOS */
}

/* === ANIMATIONS=== */
@-webkit-keyframes bounce {
    0%   {top:0px;}
    25%  {top:1px;}
    50%  {top:2px;}
    75%  {top:3px;}
    100% {top:4px;}
    75% {top:3px;}
    50%  {top:2px;}
    25%  {top:1px;}
    0%  {top:0px;}
  }
@keyframes bounce {
    0%   {top:0px;}
    25%  {top:1px;}
    50%  {top:2px;}
    75%  {top:3px;}
    100% {top:4px;}
    75% {top:3px;}
    50%  {top:2px;}
    25%  {top:1px;}
    0%  {top:0px;}
  }

/* === GLOBALS === */

html {
    font-size: 16px;
    height: 100%;
}

body {
    font-family: "Lato";
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    overflow: scroll;
}

:focus {
    box-shadow: 1px 1px 0 grey;
}

* {
    outline: 1px aquamarine !important;
}

.btn_typ_1 {
    background-color: transparent;
    height: inherit;
    min-height: 20px;
    border: 1px solid black;
    font-size: 0.8rem;
    border-radius: 3px
}

.btn_typ_1:hover {
    background-color: #87CBC4;
    border: 1px solid #87CBC4;
    color: white;
    font-size: 0.8rem;
    border-radius: 3px
}

.btn_typ_1_active {
    background-color: #87CBC4;
    border: 1px solid #87CBC4;
    color: white;
    font-size: 0.8rem;
    border-radius: 3px
}

.btn_typ_3 {
    border: 0;
}

.btn_typ_4 {
    background-color: transparent;
    font-size: 0.8rem;
}

.btn_typ_4:hover {
    background-color: #87CBC4;
    color: white;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* TOOLTIP-BOUNCE */
.tooltip {
    position: relative;
    display: inline-block;
    opacity: unset;
    visibility: visible;
    z-index: 0;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: white;
    color: black;
    text-align: center;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 160%;
    margin-left: -60px;
    border: 1px solid black;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 47px;
    margin-left: -30px;
    border-width: 7px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* TOOLTIP-SHOW*/

.tooltip1 {
    position: relative;
    display: inline-block;
    opacity: unset;
    visibility: visible;
    z-index: 0;
}

.tooltip1 .tooltiptext1 {
    visibility: hidden;
    width: 140px;
    background-color: white;
    color: black;
    text-align: center;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 160%;
    margin-left: -60px;
    border: 1px solid black;
}

.tooltip1:hover  .tooltiptext1{
    visibility: visible;
}

.tooltiptext1::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 47px;
    margin-left: -30px;
    border-width: 7px;
    /* border-style: solid; */
    /* border-color: white transparent transparent transparent; */
}

.visible {
    visibility: visible;
}

.hidden {
    visibility: hidden;
}

/* === HEADER-BUTTON-AREA === */

#headerbutton_container {
    height: 10%;
    padding: 1.7% 20px 0 0;
    margin-left: 2%;
}


#btngr_header_left {
    background-color: white;
    display: inline-block;
    position: relative;
    width: 75%;
}

#btngr_header_left>img {
    margin: 0 3% 0 0.5%;
}

#btngr_header_left>button {
    height: 30px;
}

#btngr_header_left>button:nth-child(7),
#btngr_header_left>button:last-child {
    width: 40px;
    height: 30px;
    margin-left: 35px;
}

#btngr_header_left>button:nth-last-of-type(n+3) {
    width: 8rem;
}


#btngr_header_right {
    background-color: white;
    display: inline-block;
    position: absolute;
    padding-left: 4%;
    width: 25%;
}

#btngr_header_right>button {
    height: 30px;
    margin-left: 5px;
    left: 40%;
    width: 30px;
    position: relative;
}

#btngr_header_right > button:first-child{
    background: url("../img/icons_dashboard/vorschau.svg") no-repeat center;
    background-size: contain;
    border: 0;
    display: none;
}

#btngr_header_right > button:nth-child(2){
    background: url("../img/icons_dashboard/warenkorb.svg") no-repeat center;
    background-size: contain;
    border: 0;
}

#btngr_header_right > button:nth-child(3){
    background: url("../img/icons_dashboard/abbrechen.svg") no-repeat center;
    background-size: 80%;
    border: 0;
}



#btngr_header_left>button:nth-child(7),
#btngr_header_left>button:last-child,
#btn_optionalExtra {
    display: none;
}

/* === SIDEBAR === */
#sidebar_left_container {
    background-color: rgb(58, 58, 59);
    float: left;
    height: 90%;
    overflow-y: auto;
    text-align: center;
    width: 6%;
}

.sidebar_left_inner {
    margin-top: 6%;
    height: 1.77rem;
    clear: both;
    width: 100%;
    display: block;
    background: center;
    background-repeat: no-repeat;
}

.sidebar_left div p {
    font-size: 0.7rem;
    margin: 5% 5% 5% 5%;
    word-wrap: normal;
}

.sidebar_left {
    width: 100%;
    display: block;
    color: white;
    background-color: rgb(58, 58, 59);
    border: 0;
}

.sidebar_left_active {
    background-color: rgb(94, 94, 94);
}


/* === CONTAINER-LEFT-CHOICE ===*/

#container_left_choice {
    background-color: rgb(94, 94, 94);
    display: inline-block;
    height: 90%;
    min-width: 6rem;
    overflow-y: auto;
    overflow-x: hidden;
    width: 20%;
    padding-left: 4px;
}

#container_left_choice_options {
    width: 100%;
    position: relative;
    padding-top: 5%;
    display: block;
}

#container_left_choice_options>div:first-child {
    width: 100%;
    height: 50%;
    margin-bottom: 3%;
    margin-left: 1%;
    display: inline-block;
}

#container_left_choice_options>div:first-child>span {
    border: 1px solid white;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 80%;
    display: inline-block;

}

#container_left_choice_options>div:first-child>span:nth-child(1) {
    height: 33px;
    width: 80%;
    display: inline-block;

}

#container_left_choice_options>div:first-child>span>span>input {
    border-radius: 2px;
    background-color: blue;
    background: url("../img/icons_dashboard/Lupe_weiss.svg") no-repeat 5%;
    background-size: 20px 20px;
    box-shadow: 0;
    border: 0;
    color: #FFF;
    padding-left: 35px;
    position: relative;
    bottom: 25%;
    width: 80%;
    height: 100%;
    box-shadow: none;
    display: inline-block;
}

#container_left_choice_options>div:first-child>span>#btn_clear_searchfield {
    position: relative;
    top: 0px;
    width: 20%;
    height: 100%;
    text-align: right;
    display: inline-block;
    background: url("../img/icons_dashboard/X-Icon.svg") no-repeat center;
    background-size: 15px 15px;
    visibility: hidden;
    
    /* background-color: green; */
}

::-webkit-input-placeholder {
    color: white;
    opacity: 100%;
}

::-moz-placeholder {
    color: white;
    opacity: 100%;
}

:-ms-input-placeholder {
    color: white;
}

::-ms-input-placeholder {
    color: white;
    opacity: 100%;
}

::placeholder {
    color: white;
    opacity: 100%;
}

#container_left_choice_options>div:first-child {
    height: 20%;
    margin-bottom: 28px;
}

#container_left_choice_options>div:first-child>button {
    position: relative;
    border: 0;
    bottom: 15px;
    height: 33px;
    width: 33px;
    margin: 0;
    left: 2.5%;
    padding: 0;
    text-align: center;
    background-image: url("../img/icons_dashboard/filter_off.svg");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: none;
}

#container_left_choice_options>div:first-child>button:hover {
    background-image: url("../img/icons_dashboard/filter_on.svg");
}

#container_left_choice_options>div:nth-child(2) {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    display: none;
}

#btn_container_left_choice_options_onesided {
    /* background-color: rgb(94, 94, 94); */
    border-radius: 3px;
    border: 1px solid white;
    height: 50%;
    width: 45%;
    padding: 0 10px 0 10px;
    color: white;
    margin-left:2%;
}

#btn_container_left_choice_options_doublesided {
    border-radius: 3px;
    border: 1px solid white;
    position: relative;
    width: 45%;
    border-radius: 3px;
    height: 50%;
    left: 3%;
    color: white;
}

#btn_container_left_choice_options_onesided:hover,
#btn_container_left_choice_options_doublesided:hover {
    background-color: #87CBC4;
}

#container_left_choice_templates {
    width: 100%;
    height: 25%;
    display: block;
    margin-top: 5%;
}

#container_left_choice_templates>div {
    width: 100%;
    height: 100%;
    display: block;
}

#container_left_choice_templates>div>span{
    height: 100%;
    width: 100%;
    display: inline-block;
}

#container_left_choice_templates>div>span>.div_onesided {
    height: 90%;
    width: 33%;
    display: inline-block;
    padding: 3px;
    /* background-repeat: no-repeat; */
    /* background-attachment: fixed; */
    
    /* background-color: red; */
}

#container_left_choice_templates>div>span>.div_doublesided {
    height: 120%;
    width: 99%;
    margin-left: 1%;
    display: inline-block;
    /* background-image: url(""); */
    padding: 3px;
}

#container_left_choice_templates>div>span>.div_onesided>.imageElement_onesided{
    height: 100%;
    width: 100%;
    /* background-size: 100%; */
    background-repeat: no-repeat;
    background-size: cover;
    background-color: 0;
}

#container_left_choice_templates>div>span>.div_doublesided>.imageElement_doublesided{
    height: 100%;
    width: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#container_left_choice_templates>div>span .btn_left_choice_preview_onesided{
    height: 20px;
    width: 20px;
    background-image: url("../img/icons_dashboard/Vorschau_Icon_grau.svg"); 
    position: relative;
    /* top: 20%; */
    bottom: 18%;
    left:80%;
    background-color: white;
    visibility: hidden;
}


#container_left_choice_templates>div>span .btn_left_choice_preview_doublesided{
    height: 20px;
    width: 20px;
    background-image: url("../img/icons_dashboard/Vorschau_Icon_grau.svg"); 
    position: relative;
    /* top: 20%; */
    bottom: 13%;
    left:93%;
    background-color: white;
    visibility: hidden;
}



#container_left_choice_templates>div>span .btn_left_choice_preview_doublesided:hover,
#container_left_choice_templates>div>span .btn_left_choice_preview_onesided:hover{
    background-image: url("../img/icons_dashboard/Vorschau_Icon_gruen.svg"); 
}



#container_left_choice_templates>div>span>div>p {
    color: #FFF;
    font-size: 0.5rem;
    word-break: keep-all;
    overflow: hidden;
    width: 100%;
    height: 10%;
    padding:0;
    margin:0;
    text-align: center;
    /* overflow-x: hidden; */
}

/* === MAIN-FIELD-AREA === */
#container_main_field {
    overflow: hidden;
    height: 90%;
    width: 74%;
    min-width: 6rem;
    display: inline-block;
    margin-bottom: 5%;
    position: absolute;
    /* border: 1px solid black; */
}

#container_main_field>.row:first-child {
    height: 85%;
    /* border: 1px solid black; */
    margin: 0;

    width: 100%;
}

#container_main_field>.row>div:nth-child(1) {
    background-color: rgb(235, 235, 235);
    /* border-right:1px solid black; */
    margin-left: -15px;

}

#container_main_field>.row>div:nth-child(2) {
    background-color: rgb(235, 235, 235);
    display: inline-block;

}

#container_main_field>.row:first-child>div {
    padding: 2% 0% 2% 0%;

}

#container_main_field_left {
    border: 1px-solid-black;
    float: left;
    width: 49.0%;
    height: 101%;
    padding: 0;
    margin: 0 0.25% 0 0;
    background-color: white;
}

#container_main_field_left>div:first-child {
    background-color: rgb(235, 235, 235);
    float: left;
    height: 100%;
    margin-left: 2%;
    padding: 50% 0 0 0%;
    width: 15%;
    text-align: center;
}

#container_main_field_left>div:nth-child(2) {

    height: 90%;
    margin: 0 0 0 17%;
    padding: 0;
    background-color: z;
    background-size: 100% 100%;
    border: 1px dashed black;
    display: block;
}

/* Buttongroup and Sitecount left */
#container_mainfield_left_footer {
    display: inline-block;
    height: 10%;
    width: 83%;
    background-color: rgb(235, 235, 235);
}

#container_mainfield_left_footer>div:first-child {
    float: left;
    height: 100%;
    width: 55%;
    padding: 0;
    margin: 0;
    background-color: "rgb(235, 235, 235)";
}

#container_mainfield_left_footer>div:first-child>p {
    position: relative;
    height: 100%;
    width: 100%;
    top: 20%;
    min-height: 50%;
    min-width: 50%;
    text-align: left;
    font-size: 1rem;
    overflow-y: auto;
}

#container_mainfield_left_footer>div:nth-child(2) {
    display: inline-block;
    border: 0;
    height: 100%;
    width: 60%;
    padding: 0 0 0 5%;
    margin: 0;
}

#container_mainfield_left_footer>div:nth-child(2)>button:nth-child(1),
#container_mainfield_left_footer>div:nth-child(2)>button:nth-child(2),
#container_mainfield_left_footer>div:nth-child(2)>button:nth-child(3) {
    position: relative;
    top: 20%;
    height: 32%;
    width: 12%;
    background-color: transparent;
    box-shadow: none;
}

#container_mainfield_left_footer>div:nth-child(2)>button:nth-child(1) {
    background-image: url("../img/icons_dashboard/seitenleiste_suche.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

#container_mainfield_left_footer>div:nth-child(2)>button:nth-child(2) {
    background-image: url("../img/icons_dashboard/seitenleiste_dublizieren.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

#container_mainfield_left_footer>div:nth-child(2)>button:nth-child(3) {
    background-image: url("../img/icons_dashboard/seitenleiste_papierkorb.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Tooltips button container left */
#container_mainfield_left_footer_tooltip_duplicate>div {
    display: block;
    font-size: 0.7rem;
}

#container_mainfield_left_footer_tooltip_duplicate>div:nth-child(2) {
    display: inline-block;
}

#container_mainfield_left_footer_tooltip_duplicate>div:nth-child(2)>input {
    width: 15%;
    height: 20%;
    border: 0;
    border-bottom: 1px solid black;
    box-shadow: 0;
}

#container_mainfield_left_footer_tooltip_delete>div {
    display: block;
    font-size: 0.7rem;
    width: 100%;
    text-align: left;
    padding: 0 5px 0 5px;
}

#container_mainfield_left_footer_tooltip_delete>div:first-child>span {
    display: inline-block;
    width: 90%;
}

#container_mainfield_left_footer_tooltip_delete>div:first-child>span:first-child {
    text-align: left;
    width: 90%;
}

#container_mainfield_left_footer_tooltip_delete>div:first-child>span:nth-child(2) {
    text-align: right;
    width: 5%;
}

#container_mainfield_left_footer_tooltip_delete>div:nth-child(2) {
    display: inline-block;
    width: 100%;
}

#container_mainfield_left_footer_tooltip_delete>div:nth-child(2)>span {
    display: inline-block;
    width: 90%;
}

#container_mainfield_left_footer_tooltip_delete>div:nth-child(2)>span:first-child {
    text-align: left;
    width: 90%;
}

#container_mainfield_left_footer_tooltip_delete>div:nth-child(2)>span:nth-child(2) {
    text-align: right;
    width: 5%;
}


#container_main_field_right {
    border: 1px-solid-black;
    display: inline-block;
    padding: 0;
    width: 48%;
    height: 101%;
    margin-left: 0.25%;
    background-color: rgb(235, 235, 235);
}



#container_main_field_right>div:first-child {
    background-color: rgb(235, 235, 235);
    float: right;
    height: 100%;
    margin: 0;
    padding: 50% 0 0 0;
    text-align: center;
    width: 15%;
}

#container_main_field_right>div:nth-child(2) {

    height: 90%;
    margin: 0 15% 0 0;
    padding: 0;
    background-size: 100% 100%;
    background-position: right;
    border: 1px dashed black;
    display: block;
}

/* Buttongroup and Sitecount right */
#container_mainfield_right_footer {

    display: inline-block;
    height: 10%;
    width: 85%;
    background-color: rgb(235, 235, 235);
}



#container_mainfield_right_footer>div:nth-child(2) {
    float: left;
    position: relative;
    height: 100%;
    width: 30%;
    padding: 0;
    margin: 0;
    background-color: "rgb(235, 235, 235)";
    border: 0;
}

#container_mainfield_right_footer>div:nth-child(2)>p {
    position: relative;
    clear: both;
    height: 100%;
    width: 100%;
    top: 20%;
    min-height: 50%;
    min-width: 50%;
    font-size: 1rem;
}

#container_mainfield_right_footer>div:first-child {
    display: inline-block;
    border: 0;
    text-align: left;
    height: 100%;
    width: 70%;
    padding: 0 0 0 5%;
    margin: 0;
}

#container_mainfield_right_footer>div:first-child>button:nth-child(1),
#container_mainfield_right_footer>div:first-child>button:nth-child(2),
#container_mainfield_right_footer>div:first-child>button:nth-child(3) {
    position: relative;
    top: 20%;
    height: 32%;
    width: 12%;
    background-color: transparent;
    box-shadow: none;
}

.bounceAnimation:hover{
    -webkit-animation-name: bounce;
            animation-name: bounce;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    animation-direction: alternate-reverse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    width: 30px;
    height: 20px!important;
}


#container_mainfield_right_footer>div:first-child>button:nth-child(1) {
    background-image: url("../img/icons_dashboard/seitenleiste_suche.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

#container_mainfield_right_footer>div:first-child>button:nth-child(2) {
    background-image: url("../img/icons_dashboard/seitenleiste_dublizieren.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

#container_mainfield_right_footer>div:first-child>button:nth-child(3) {
    background-image: url("../img/icons_dashboard/seitenleiste_papierkorb.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

#container_main_field_left>div:first-child>button {
    background-image: url("../img/icons_dashboard/links_kasten.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

#container_main_field_right>div:first-child>button {
    background-image: url("../img/icons_dashboard/rechts_kasten.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

/* Tooltips button container right */
#container_mainfield_right_footer_tooltip_duplicate>div {
    display: block;
    font-size: 0.7rem;
}

#container_mainfield_right_footer_tooltip_duplicate>div:nth-child(2) {
    display: inline-block;
}


#container_mainfield_right_footer_tooltip_duplicate>div:nth-child(2)>input {
    width: 15%;
    height: 20%;
    border: 0;
    border-bottom: 1px solid black;
    box-shadow: 0;

}

#container_mainfield_right_footer_tooltip_delete>div {
    display: block;
    font-size: 0.7rem;
    width: 100%;
    text-align: left;
    padding: 0 5px 0 5px;
}

#container_mainfield_right_footer_tooltip_delete>div:first-child>span {
    display: inline-block;
    width: 90%;
}

#container_mainfield_right_footer_tooltip_delete>div:first-child>span:first-child {
    text-align: left;
    width: 90%;
}

#container_mainfield_right_footer_tooltip_delete>div:first-child>span:nth-child(2) {
    text-align: right;
    width: 5%;
}

#container_mainfield_right_footer_tooltip_delete>div:nth-child(2) {
    display: inline-block;
    width: 100%;
}

#container_mainfield_right_footer_tooltip_delete>div:nth-child(2)>span {
    display: inline-block;
    width: 90%;
}

#container_mainfield_right_footer_tooltip_delete>div:nth-child(2)>span:first-child {
    text-align: left;
    width: 90%;
}

#container_mainfield_right_footer_tooltip_delete>div:nth-child(2)>span:nth-child(2) {
    text-align: right;
    width: 5%;
}


.btn_typ_2 {
    height: 25px;
    width: 25px;
    border: 0;
}


.btn_typ_2:active {
    background-color: #87CBC4;
    color: white;
}

.btn_typ_2:hover {
    background-color: #87CBC4;
    border: 1px solid #87CBC4;
    color: white;
}

/* MAINFIELD-FOOTER-AREA */

#container_main_field>.row:nth-child(2) {

    display: inline-block;
    height: 15%;
    width: 100%;
}

#container_mainfield_footer {
    height: 100%;
    width: 100%;
    padding-left: 3%;
    background-color: white;
}

#container_mainfield_footer>.row {
    height: 100%;
    background-color: white;
}

#container_mainfield_footer>.row>div {
    height: 100%;
    background-color: white;
}

#container_mainfield_footer>.row>div:nth-last-child(n+2) {
    visibility: hidden;
}


#container_mainfield_footer>.row>div:nth-child(1),
#container_mainfield_footer>.row>div:nth-child(3) {
    height: 100%;
    text-align: center;
    position: relative;
    top: 33%;
}

#btn_container_mainfield_footer_left {
    background-color: white;
    border: 0;
    height: 15px;
    width: 15px;
    background-image: url("../img/icons_dashboard/links_pfeil.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

#btn_container_mainfield_footer_right {
    background-color: white;
    border: 0;
    height: 15px;
    width: 15px;
    background-image: url("../img/icons_dashboard/rechts_pfeil.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

#container_mainfield_footer_list,
#container_mainfield_footer_list>.row {
    height: 100%;
}

#container_mainfield_footer_list>.row>div {
    position: relative;
    height: 70%;
    width: 13%;
    margin: 0 1% 0 0;
    padding: 0;
    top: 18%;
    /* border: 1px solid green; */
}

#container_mainfield_footer_list>.row>div>div {
    height: 100%;
    border: 1px dotted black;
    text-align: center;
}

/* Mainfield-area-list-element-left */
#container_mainfield_footer_list>.row>div>div:nth-child(1) {
    height: 100%;
    width: 49%;
    display: inline-block;
    background-color: white;
    background-size: cover;
}

/* Mainfield-area-list-element-right */
#container_mainfield_footer_list>.row>div>div:nth-child(2) {
    height: 100%;
    width: 49%;
    display: inline-block;
    background-size: cover;
    margin-left: -2px;
    
    background-color: white;
    background-repeat: no-repeat;
    background-position: right;
    border-left: 0;
}

.additionalSitesButton {
    background-image: url("../img/icons_dashboard/Plus.svg");
    background-size: 50% !important;
    background-position: center !important;
    background-color: rgb(235, 235, 235);
}

.additionalSitesButton:hover {
    background-image: url("../img/icons_dashboard/Plus_on.svg");
    background-size: contain !important;
    background-color: #87CBC4 !important;
}

#container_mainfield_footer>.row>div:nth-child(4) {
    height: 100%;
   
    width:100%;
    position: relative;
    margin: 0;
    padding: 0;
    
}

#container_mainfield_footer>.row>div:nth-child(4)>div:nth-child(1) {
    border: 0;
    height: 60%;
    display: inline-block;
    width: 50%;
    height: 100%;
    /* background-color: black; */
}


#container_mainfield_footer>.row>div:nth-child(4)>div:nth-child(2) {
    border: 0;
    height: 80%;
    display: inline-block;
    width: 30%;
    background-image: url("../img/icons_dashboard/hilfemenue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    bottom:10%;
}

#container_mainfield_footer>.row>div:nth-child(4)>:nth-child(2)>div:nth-child(1) {
    
    height: 20px;
    bottom:110%;
    left: 80%;
    width: 60%;
    font-size: 10px;
}


/* === POPOVER === */


/* #preselection_modal:focus, #ready_modal:focus{
    outline: none;
    border: 0;
    box-shadow: none;
} */

.popover_preselection {
    /*display: none;*/
    z-index: 100%;
    background-color: grey;
    height: 100%;
}


.btn_preselection_popover {
    color: #87CBC4;
    border: 2px solid #87CBC4;
    border-radius: 3px;
    background-color: white;
    height: 40px;
    width: 60%;
}

.btn_preselection_popover:hover {
    color: white;
    border: 2px solid #87CBC4;
    border-radius: 3px;
    background-color: #87CBC4;
    height: 40px;
    width: 60%;
}

.popover_preselection_options select {
    width: 80%;
    height: 40px;
    color: gray;
    margin-bottom: 5%;
    border-radius: 3px;
    border: 2px solid black;
}

.modal-content h6 {
    width: 100%;
    color: #87CBC4;
    font-size: 11px;
    text-align: center;
}

.modal-content h3 {
    width: 100%;
    font-size: 22px;
    text-align: center;
}

.modal-content {
    padding: 5% 15%;
}

#helpdesk_modal > div {
   position: relative;
   left: 20%;
   top: 55%;
}

/* === INFOFIELD === */

#container_infofield {
    overflow: hidden;
    height: 90%;
    background-color: white;
    padding: 0.5rem;
}

#container_infofield h6 {
    width: 100%;
    color: #87CBC4;
    font-size: 0.7rem;
    padding-top: 10%;
    text-align: center;
}

#container_infofield>h3 {
    width: 100%;
    font-size: 1rem;
    text-align: center;
}

#container_infofield_body {
    overflow-y: auto;
    overflow-x: hidden;
    height: 40%;
    width: 100%;
    z-index: 1;
    position: absolute;
}

#container_infofield_body>p {
    width: 100%;
    height: 5px;
    padding-left: 15%;
    font-size: 0.8rem;

}

#container_infofield_footer {
    position: absolute;
    padding: 30% 5% 0 15%;
    height: 20%;
    top: 45%;
    width: 100%;
    flex-shrink: 0.5;
}

#container_infofield_footer>.row:first-child>span:nth-child(2) {
    font-weight: bold;
    margin: 0 0 3% 0;
}

#container_infofield_footer>div:nth-child(1) span {
    position: relative;
    width: 50%;
}

#container_infofield_footer>div:nth-child(1)>span:nth-child(1) {
    color: #87CBC4;
    position: relative;
    padding-top: 3%;
}

#container_infofield_footer>div:nth-child(1)>span:nth-child(2) {
    left: 1.5rem;
    font-size: 130%;
}

#container_infofield_footer>div:nth-child(2)>span {
    position: relative;
    width: 100%;
    margin-bottom: 5%;
    padding: 2% 5% 0 0;
    font-size: 0.8rem;
}

#container_infofield_footer>div:nth-child(2)>span>p:first-child,
#container_infofield_footer>div:nth-child(2)>span>p:nth-child(2) {
    display: inline-block;
    width: 47%;
}

#container_infofield_footer>div:nth-child(2)>span>p:first-child {
    font-weight: bold;
}

#container_infofield_footer>div:nth-child(2)>span>p:nth-child(2) {
    text-align: right;
    padding-right: 10%;
}

#container_infofield_footer>div:nth-child(3)>span>p {
    font-size: 0.7rem;
    padding: 2% 5% 0 0;
}

/* POPOVER-READY */

#popover_ready_input h6 {
    width: 65%;
    height: 20%;
    color: gray;
    margin-left: 20%;
    margin-bottom: 5%;
    border-radius: 5%;
}

.btn_ready_popover {
    color: #87CBC4;
    border: 1px solid #87CBC4;
    border-radius: 5%;
    background-color: white;
    width: 50%;
    font-size: 15px;
}

.btn_ready_popover:focus {
    color: white;
    border: 1px solid #87CBC4;
    border-radius: 5%;
    background-color: #87CBC4;
    width: 50%;
    font-size: 15px;
}

/* POPOVER-ZOOM */

#zoom_modal_vertical,
#zoom_modal_horizontal {
    height: 100%;
    width: 100%;
}

#zoom_modal_vertical div {
    height: 95%;
    width: 60%;
    position: relative;
    left: 7%;
    z-index: 10;
}

#image_area_vertical {
    position: absolute;
    height: 100%;
    width: 100;
    background-size: 100% 100%;
    background-color: rgb(255, 255, 255);
    z-index: 10;
}

#zoom_modal_horizontal div {
    height: 90%;
    width: 120%;
    position: relative;
    top: 2%;
    right: 2%;
}

#image_area_horizontal {
    height: 90%;
    width: 120;
    background-size: 100% 100%;
    background-position: center;
    background-color: white;
}

.hoverzoom {
    /* IE 9 */
    /* Safari 3-8 */
    transform: scale(3.0);
}


.btn_off {
    display: none;
}


.btn_on{
    display: "";
}


/* MEDIA-QUERIES */
@media(max-width: 1200px){
    #container_left_choice_templates>div>span .btn_left_choice_preview_doublesided{
        bottom: 18%;
        left:90%;
        visibility: hidden;
    }

    #container_left_choice_templates>div>span .btn_left_choice_preview_onesided{
        bottom: 18%;
        left:0%;
        visibility: hidden;
    }

    #container_mainfield_footer>.row>div:nth-child(4)>:first-child>div:nth-child(1) {
        height: 220%;
        bottom:100%;
        left: -250%;
        width:240%;
        font-size: 0.3rem;
        padding: 10%;
        text-align: left;
    }
}

@media(max-width: 1600px){
    #container_left_choice_templates>div>span .btn_left_choice_preview_doublesided{
        bottom: 18%;
        left:90%;
        visibility: hidden;
    }

    #container_left_choice_templates>div>span .btn_left_choice_preview_onesided{
        bottom: 23%;
        left:73%;
        visibility: hidden;
    }

    #container_mainfield_footer>.row>div:nth-child(4)>:first-child>div:nth-child(1) {
        height: 265%;
        bottom:138%;
        left: -250%;
        width:240%;
        font-size: 0.5rem;
        padding: 10%;
        text-align: left;
    }

    #helpdesk_modal > div {
        position: relative;
        left: 20%;
        top: 45%;
     }
}