/* === 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%   {rotate:0%;}
    25%  {rotate:50%;}
    50%  {rotate:100%;}
  }
@keyframes bounce {
    0%   {rotate:0%;}
    25%  {rotate:50%;}
    50%  {rotate:100%;}
  }

  @-webkit-keyframes appear {
    0%   {opacity: 0.2;visibility: visible;}
    40% {opacity: 0.4;}
    100% {opacity: 1;visibility: visible;}
  }

  @keyframes appear {
    0%   {opacity: 0.2;visibility: visible;}
    40% {opacity: 0.4;}
    100% {opacity: 1;visibility: visible;}
  }

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

.appearAnimation:hover{
    -webkit-animation-name: appear;
        animation-name: appear;
    -webkit-animation-duration: 1s;
        animation-duration: 0.2s;
        -webkit-animation-delay: 2s;
                animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
}

/* === GLOBALS === */

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

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

button:focus {
    outline: 0px solid #87CBC4; 
}

* {
    outline: 1px aquamarine;            
}

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

.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_3 {
    border: 0;
}

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

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

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

.btn_typ_5:hover{
    border: 1px solid #87CBC4;
}

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

.btn_typ_6 {
    color: white;
    border: 2px solid #87CBC4;
    border-radius: 3px;
    background-color: #87CBC4;
   
}

.btn_typ_6:hover {
    color: black;
    border: 1px solid black;
    border-radius: 3px;
    background-color: white;
   
} 

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


.visible {
    visibility: visible;
}

.hidden {
    visibility: hidden;
}

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

#headerbutton_container {
    height: 10%;
    width:100%;
    padding: 1.7% 20px 0 0;
    margin-left: 2%;
}
#headerbutton_container > div:first-child{
    height: 100%;
}

#headerbutton_container > div:first-child > div:first-child{
    height: 100%;
}

#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: 33px;
}

#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;
    right: 5%;
}

/* MARINA CONFIG POINT 1 */

#btngr_header_right>div {
    display: inline-block;
    height: 100%;
    margin-left: 18px;
    position: relative;
    /* background-color: #87CBC4; */
}

#btngr_header_right>div>p{
    font-size: 8px;
    height: 30%;
}

#btngr_header_right>div>button {
    
    /* background-color: black; */
    width: 100%;
    margin-bottom: 5%;
    height: 65%;
}

/* #btngr_header_right > div:nth-child(1) 
{
    visibility: hidden;
} */

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

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

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

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

#btngr_header_right > div>button:nth-child(5){
    background: url("../img/icons_dashboard/pdf-file.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: 60%;
    margin-bottom: 3%;
    margin-left: 1%;
    display: inline-block;
}

#container_left_choice_options>div:first-child>span {
    border: 1px solid white;
    border-radius: 4px;
    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: 97%;
    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 7% 0%;
    background-size: 12px 19px;
    box-shadow: 0;
    font-size: 13px;
    border: 0;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 35px;
    padding-top: -0px;
    position: relative;
    bottom: 35%;
    /* width: 80%; */
    /* height: 100%; */
    box-shadow: none;
    display: inline-block;
    /* margin-bottom: 50px; */
}

#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: 10px 10px;
    position: relative;
    visibility: hidden;
    left: 65px;
    /* background-color: green; */
}

::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#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;
    height: 50%;
    width: 47.25%;
    padding: 0 10px 0 10px;
    color: white;
    margin-left:1%;
}


#btn_container_left_choice_options_doublesided {
    border-radius: 3px;
    position: relative;
    width: 47.25%;
    border-radius: 3px;
    height: 50%;
    left: 2%;
    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"); 
    background-size: cover;
    position: relative;
    /* top: 20%; */
    bottom: 25px;
    left: 90px;
    border: 0px;
    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"); 
    background-size: cover;
    position: relative;
    border: 0px;
    /* 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-x: hidden;
    overflow-y: hidden;
    height: 90%;
    width: 75%;
    min-width: 6rem;
    display: inline-block;
    margin-bottom: 5%;
    position: absolute;
}



#container_main_field>.row:first-child {
    height: 85%;
    /* border: 1px solid black; */
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

#container_main_field> div:first-child >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: 48.5%;
    height: 101%;
    padding: 0;
    margin-right: 2px;
    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:first-child > Button{
    z-index: 10;
}

/* #btn_container_mainfield_left > .tooltiptext1{
    width: auto;
    height: auto;
    padding: 0px;
    font-size: 10px;
    position: absolute;
    left: -5px;
    bottom: 30px;
    
} */

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

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

#btn_container_mainfield_left > div, #btn_container_mainfield_right > div
{
    position: absolute;
    height: 25px;
    width: 60px;
    left: 42px;
}

/* 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: 8px;
    color: #707070;
    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: 19px;
    vertical-align: middle;
    height: 32%;
    width: 12%;
    background-color: transparent;
    box-shadow: none;
}

#container_mainfield_left_footer_duplicate{
    position: relative;
    top: 20%;
    height: 20%;
    width: 8%;
    background-color: transparent;
    box-shadow: none;
}

#container_mainfield_left_footer_delete{
    position: relative;
    top: 20%;
    height: 20%;
    width: 8%;
    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:nth-child(2)>input {
    width: 15%;
    height: 20%;
    border: 0;
    border-bottom: 1px solid black;
    box-shadow: 0;
    z-index: 5;
}


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

#container_mainfield_left_footer_tooltip_delete>div:first-child>span:first-child {
    text-align: center;
    width: 90%;
    z-index: 5;
}

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

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

#container_mainfield_left_footer_tooltip_delete>div:nth-child(2)>span {
    display: inline-block;
    text-align: center;
    width: 90%;
    z-index: 5;
}

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

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


#container_main_field_right {
    border: 1px-solid-black;
    display: inline-block;
    padding: 0;
    width: 49%;
    height: 101%;
    margin-left: 2px;
    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;
    outline: 1px dashed black;
    display: block;
}

/* #btn_container_mainfield_right > .tooltiptext1{
    width: auto;
    height: auto;
    padding: 2px;
    font-size: 10px;
    left: 45px;
    bottom: 30px;
    z-index: -1;
} */

/* 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)";
    color: #707070;
    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: 0.7rem;
}

#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: 19px;
    vertical-align: middle;
    height: 32%;
    width: 12%;
    background-color: transparent;
    box-shadow: none;
}

/* #btn_mainfield_right_footer_zoom > .tooltiptext1{
    width: 100px;
    height: auto;
    font-size: 10px;
    left: 15px;
    bottom: 30px;
} */

/* #btn_mainfield_right_footer_duplicate > .tooltiptext1, 
#btn_mainfield_right_footer_delete > .tooltiptext1{
    width: 100px;
    height: auto;
    font-size: 10px;
    left: 15px;
    bottom: 30px;
    z-index: -1;
} */


#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;
    margin-left: 8px;
}

#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:nth-child(2)>input {
    width: 15%;
    height: 20%;
    border: 0;
    border-bottom: 1px solid black;
    box-shadow: 0;
}

.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: 1%;
    background-color: white;
}

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

#container_mainfield_footer>.row>div {
    height: 100%;
    background-color: white;
    width:59%;
    margin-left: -2px;
}

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

#container_mainfield_footer>.row>div:nth-child(3){
    height: 100%;
    text-align: center;
    position: relative;
    width: 5%;
    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_left > .tooltiptext1{
    width:65px;
    position: absolute;
    font-size: 10px;
    right: 15px;
    margin-left: -50px;
    z-index: 1;
}

#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;
}

#btn_container_mainfield_footer_right > .tooltiptext1{
    width:65px;
    position: absolute;
    font-size: 10px;
    left:20px;
    margin-left: -50px;
    z-index: 1;
}

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

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

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

/* Mainfield-area-list-element-left */
#container_mainfield_footer_list>.row>div>div:nth-child(1) {
    height: 100%;
    width: 46%;
    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: 46%;
    display: inline-block;
    background-size: cover;
    
    background-color: white;
    background-repeat: no-repeat;
    background-position: right;
    border-left: 0;
}

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

.additionalSitesButton:hover {
    background-size: contain;
    opacity: 0.7;
    background-image: url("../img/icons_dashboard/Plus_on.svg");
}

#container_mainfield_footer> div > div:nth-child(4) {
    width:25%;
    height: 100%;
}

#container_mainfield_footer> div >div:nth-child(4) > div{
    height: 100%;
    width: 30%;
    left: 70%;
    background-image: url("../img/icons_dashboard/hilfemenue.svg");
    background-repeat: no-repeat;
    background-size: 80%;
    position: relative;
    background-position-x: right;
    background-position-y: center;
}

#container_mainfield_footer> div >div:nth-child(4) > div > div{
    top: -20px;
    left: 60px;
}

/* === POPOVER === */

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


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

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

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

.modal-content {
    padding: 35px;
}



.modal-content > div:first-child {
    width: 100%;
    font-size: 22px;
    text-align: center;
}


.modal-content > div:nth-child(2) {
    width: 100%;
    font-size: 12px;
    text-align: center;
    font-weight: lighter;
    color: #87CBC4;
}

.modal-content > div:nth-child(4){
    text-align: center;
    margin-bottom: 5px;
}

/* HELPDESK MODAL   */

.helpdesk_modal_container {
   position: relative;
   left: 35%;
   top: 64%;
}

.helpdesk_modal_container > div .popover_ready_content{
    color: rgba(0, 0, 0);
    font-weight: 200;
    font-size: 14px;
}

.helpdesk_modal_container > div .popover_ready_content b
{
    font-weight: 800;
}

#override_modal>div{
    position: relative;
    top: 30%;
}

#override_modal>div>.modal-content>div:first-child>p{
    font-size: 16px;
    color: black;
}

#override_modal>div>.modal-content>div:last-child>div>p{
   font-size: 14px;
   color: black;
}

/* #override_modal>div>.modal-content > div:first-child {
    width: 100%;
    font-size: 22px;
    padding-left: 75px;
} */


#btn_abort_override{
    width:40%;
    height:30px;
    margin: 5px;
}

#btn_override{
    width: 40%;
    height:30px;
    margin: 5px;
}

/* READY-MODAL */

.ready_modal_conatiner{
   width: 100%;
   height: 250px;
   /* padding: 5% 5%; */
   background-color: white;
}

.ready_modal_container > div{
    height: 25%;
}

.ready_modal_container > div:first-child{
  width: 100%;
  margin: 5px 0px;
}

.ready_modal_container > div:first-child > div:first-child {
    display: inline-block;
    width: 75%;
    font-size: 18px;
    color: rgba(0, 0, 0, 1);
    padding-left: 97px;
}
.ready_modal_container > div:first-child > div:nth-child(2){
    display: inline-block;
    text-align: end;
    width: 20%;
}

.ready_modal_container > div:nth-child(2){
   width: 100%;
   color: #87CBC4;
   text-align: center;
   font-size: 14px;
}

.ready_modal_container > div:nth-child(3){
    width: 100%;
    font-size: 14px;
    text-align: center;
}

.ready_modal_container > div:nth-child(4){
    width: 100%;
    text-align: center;
}

.ready_modal_container > div:nth-child(4)> button {
    margin: 2% 2%;
    padding: 1.5% 3.5%;
    /* height: 90%; */
    font-size: 13px;
}

/* ===ABORT-MODAL */
.abort_modal_container{
    width: 100%;
    /* padding: 5% 5%; */
    background-color: white;
 }
 
 .abort_modal_container > div{
     height: 25%;
 }
 
 .abort_modal_container > div:first-child{
   width: 100%;
   margin: 5px 0px;
 }
 
 .abort_modal_container > div:first-child > div:first-child {
    display: inline-block;
    width: 75%;
    /* text-align: end; */
    font-size: 18px;
    padding-left: 90px;
    color: rgba(0, 0, 0);
}
 
 .abort_modal_container > div:first-child > div:nth-child(2){
     display: inline-block;
     text-align: end;
     width: 20%;
 }
 
 .abort_modal_container > div:nth-child(2) {
    width: 100%;
    font-size: 14px;
    text-align: center;
    color: black;
}
 
 .abort_modal_container > div:nth-child(3){
     width: 100%;
     text-align: center;
 }
 
 .abort_modal_container > div:nth-child(3)> button{
     margin: 2% 2%;
     padding: 2% 8.5%;
     height: 80%;
 }

/* === INFOFIELD === */

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

#container_infofield > div:first-child{
   width: 100%;
}

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

#container_infofield > div:nth-child(2) > 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: relative;
}

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

#container_infofield_footer {
    position: relative;
    padding: 30% 20% 0 10%;
    height: 20%;
}

#container_infofield_footer>div:first-child>span:nth-child(2) {
    position: relative;
    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) {
    position: relative;
    left: 16%;
    left: 10px;
    font-size: 18px;
}

#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;
}



#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: left;
    padding-right: 10%;
    padding-left: 8px;
}

#container_infofield_footer>div:nth-child(3)>span>p {
    font-size: 9px;
    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);
}

/* === POPOVER-PREVIEW === */
.modal-open .modal
{
    overflow-y: hidden;

} 

#zoom_modal_preview > div {
    height: 100%;
    width: 100%;
    display: flex;
    pointer-events: visible;
}

.preview_modal_area{
    width: 120%;
    height: 105%;
    position: absolute;
    align-self: center;
    display: inline-block;
    /* background-color: white; */
    display: flex;
}

.preview_modal_area ~ div{
    padding: 0px;
}

.preview_modal_area > div:first-child{
    position: relative;
    float: left;
    width: 7%;
    align-self: center;
    text-align: start;
    border: 0px;
}

.preview_modal_area > div:nth-child(2){
    position: relative;
    float: left;
    width: 46%;
    height: 90%;
    margin: 5% 0%;

}

.preview_modal_area > div:nth-child(2) > div:first-child{
   
    background-color: #FFF;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-right: 5px;
    height: 85%;
} 

.preview_modal_area > div:nth-child(2) > div:nth-child(2){
    height: 10%;
    color: #FFF;
} 

.preview_modal_area > div:nth-child(3){
    position: relative;
    float: left;
    width: 46%;
    height: 90%;
    margin: 5% 0%;
}

.preview_modal_area > div:nth-child(3) > div:first-child{
    
    background-color: #FFF;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: 5px;
    height: 85%;
} 

.preview_modal_area > div:nth-child(3) > div:nth-child(2){
    height: 10%;
    margin-left: 5px;
    color: #FFF;
} 

.preview_modal_area > div:nth-child(4){
    position: relative;
    float: left;
    width: 7%;
    vertical-align: middle;
    align-self: center;
    text-align: end; 
    
}

.preview_modal_area > div:first-child > button{
    background-image: url("../img/icons_dashboard/links_kasten.svg");
    background-size: cover;
    background-color: white;
    border: 0px;
    z-index: 10;
    position: absolute;
}
.preview_modal_area > div:nth-child(4) > button{
    background-image: url("../img/icons_dashboard/rechts_kasten.svg");
    background-size: cover;
    background-color: white;
    border: 0px;
    position: absolute;
}

.preview_modal_area + div{
    background-color: transparent;
    border: 0;
    width: 50px;
    left: 118%;
    display: flex;
    top: 20px;
    height:50px;
}

.preview_modal_area + div > button{
    background-color: transparent; 
    border: 0;
    /* margin-top: 50px; */
    text-align: start;
}

.preview_modal_area + div > button > span{
    color: white;
    font-size: 20px;
}


.btn_off {
    display: none;
}


.btn_on{
    display: "";
}


/* MEDIA-QUERIES */


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

    #container_left_choice_templates>div>span .btn_left_choice_preview_onesided{
        bottom: 28px;
        left: 55px;
        visibility: hidden;
    }

    #container_infofield_footer {
        position: relative;
        padding: 15% 5% 0 15%;
        height: 20%;
    }
    

    #helpdesk_modal > div {
        position: relative;
        left: 30%;
        top: 47%;
     }
}

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

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

    #container_infofield_footer {
        position: relative;
        padding-bottom: 100%;
        height: 20%;
    }

    #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;
    }

    #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;
        font-size: 14px;
    }
    
    #container_infofield_footer>div:nth-child(1)>span:nth-child(2) {
        position: relative;
        left: 16%;
        font-size: 120%;
    }

   
}

@media(max-width: 1148px){
    #container_infofield_footer>div:nth-child(2)>span>p:nth-child(2) {
        text-align: left;
        padding: 0%;
    }

}

@media(max-width: 768px){

    #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: 20px; */
        font-size: 12px;
    }

    #helpdesk_modal > div {
        position: relative;
        left: 25%;
        top: 42%;
     }

     #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: 20px; */
        font-size: 12px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

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

@media(max-width: 768px){
    #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: 20px; */
        font-size: 8px;
    }

    #helpdesk_modal > div {
        position: relative;
        left: 15%;
        top: 37%;
     }

     #container_infofield_footer>div:nth-child(1)>span:nth-child(1) {
        color: #87CBC4;
        position: relative;
        font-size: 10px;
    }
    
    #container_infofield_footer>div:nth-child(1)>span:nth-child(2) {
        position: relative;
        left: 16%;
        font-size: 10px;
    }

     #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: 20px; */
        font-size: 9px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

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

}