
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.ttf');
}
body{
    font-family:'Verdana';
    padding:100px;
}
:focus {
    outline: none;
}
.row {
    margin-right: 0;
    margin-left: 0;
}


/*
    Sometimes the sub menus get too large for the page and prevent the menu from scrolling, limiting functionality
    A quick fix is to change .side-menu to

    -> position:absolute

    and uncomment the code below.
    You also need to uncomment

    -> <div class="absolute-wrapper"> </div> in the html file

    you also need to tweek the animation. Just uncomment the code in that section
    --------------------------------------------------------------------------------------------------------------------
    If you want to make it really neat i suggest you look into an alternative like http://areaaperta.com/nicescroll/
    This will allow the menu to say fixed on body scoll and scoll on the side bar if it get to large
*/
/*.absolute-wrapper{
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: #f8f8f8;
    border-right: 1px solid #e7e7e7;
}*/

.side-menu {
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: #f8f8f8;
    border-right: 1px solid #e7e7e7;
}
.side-menu .navbar {
    border: none;
}
.side-menu .navbar-header {
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
}
.side-menu .navbar-nav .active a {
    background-color: transparent;
    margin-right: -1px;
    border-right: 5px solid #e7e7e7;
}
.side-menu .navbar-nav li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
}
.side-menu .navbar-nav li a {
    padding: 15px;
}
.side-menu .navbar-nav li a .glyphicon {
    padding-right: 10px;
}
.side-menu #dropdown {
    border: 0;
    margin-bottom: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}
.side-menu #dropdown .caret {
    float: right;
    margin: 9px 5px 0;
}
.side-menu #dropdown .indicator {
    float: right;
}
.side-menu #dropdown > a {
    border-bottom: 1px solid #e7e7e7;
}
.side-menu #dropdown .panel-body {
    padding: 0;
    background-color: #f3f3f3;
}
.side-menu #dropdown .panel-body .navbar-nav {
    width: 100%;
}
.side-menu #dropdown .panel-body .navbar-nav li {
    padding-left: 15px;
    border-bottom: 1px solid #e7e7e7;
}
.side-menu #dropdown .panel-body .navbar-nav li:last-child {
    border-bottom: none;
}
.side-menu #dropdown .panel-body .panel > a {
    margin-left: -20px;
    padding-left: 35px;
}
.side-menu #dropdown .panel-body .panel-body {
    margin-left: -15px;
}
.side-menu #dropdown .panel-body .panel-body li {
    padding-left: 30px;
}
.side-menu #dropdown .panel-body .panel-body li:last-child {
    border-bottom: 1px solid #e7e7e7;
}
.side-menu #search-trigger {
    background-color: #f3f3f3;
    border: 0;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 18px;
}
.side-menu .brand-name-wrapper {
    min-height: 80px;
}
.side-menu .brand-name-wrapper .navbar-brand {
    display: block;
}
.side-menu #search {
    position: relative;
    z-index: 1000;
}
.side-menu #search .panel-body {
    padding: 0;
}
.side-menu #search .panel-body .navbar-form {
    padding: 0;
    padding-right: 50px;
    width: 100%;
    margin: 0;
    position: relative;
    border-top: 1px solid #e7e7e7;
}
.side-menu #search .panel-body .navbar-form .form-group {
    width: 100%;
    position: relative;
}
.side-menu #search .panel-body .navbar-form input {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: 50px;
}
.side-menu #search .panel-body .navbar-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    border-radius: 0;
    background-color: #f3f3f3;
    padding: 15px 18px;
}
/* Main body section */
.side-body {
}
/* small screen */
@media (max-width: 768px) {
    .side-menu {
        position: relative;
        width: 100%;
        height: 0;
        border-right: 0;
        border-bottom: 1px solid #e7e7e7;
    }
    .side-menu .brand-name-wrapper .navbar-brand {
        display: inline-block;
    }
    /* Slide in animation */
    @-moz-keyframes slidein {
        0% {
            left: -300px;
        }
        100% {
            left: 10px;
        }
    }
    @-webkit-keyframes slidein {
        0% {
            left: -300px;
        }
        100% {
            left: 10px;
        }
    }
    @keyframes slidein {
        0% {
            left: -300px;
        }
        100% {
            left: 10px;
        }
    }
    @-moz-keyframes slideout {
        0% {
            left: 0;
        }
        100% {
            left: -300px;
        }
    }
    @-webkit-keyframes slideout {
        0% {
            left: 0;
        }
        100% {
            left: -300px;
        }
    }
    @keyframes slideout {
        0% {
            left: 0;
        }
        100% {
            left: -300px;
        }
    }
    /* Slide side menu*/
    /* Add .absolute-wrapper.slide-in for scrollable menu -> see top comment */
    .side-menu-container > .navbar-nav.slide-in {
        -moz-animation: slidein 300ms forwards;
        -o-animation: slidein 300ms forwards;
        -webkit-animation: slidein 300ms forwards;
        animation: slidein 300ms forwards;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    .side-menu-container > .navbar-nav {
        /* Add position:absolute for scrollable menu -> see top comment */
        position: fixed;
        left: -300px;
        width: 300px;
        top: 43px;
        height: 100%;
        border-right: 1px solid #e7e7e7;
        background-color: #f8f8f8;
        -moz-animation: slideout 300ms forwards;
        -o-animation: slideout 300ms forwards;
        -webkit-animation: slideout 300ms forwards;
        animation: slideout 300ms forwards;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    /* Uncomment for scrollable menu -> see top comment */
    /*.absolute-wrapper{
          width:285px;
          -moz-animation: slideout 300ms forwards;
          -o-animation: slideout 300ms forwards;
          -webkit-animation: slideout 300ms forwards;
          animation: slideout 300ms forwards;
          -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
      }*/
    @-moz-keyframes bodyslidein {
        0% {
            left: 0;
        }
        100% {
            left: 300px;
        }
    }
    @-webkit-keyframes bodyslidein {
        0% {
            left: 0;
        }
        100% {
            left: 300px;
        }
    }
    @keyframes bodyslidein {
        0% {
            left: 0;
        }
        100% {
            left: 300px;
        }
    }
    @-moz-keyframes bodyslideout {
        0% {
            left: 300px;
        }
        100% {
            left: 0;
        }
    }
    @-webkit-keyframes bodyslideout {
        0% {
            left: 300px;
        }
        100% {
            left: 0;
        }
    }
    @keyframes bodyslideout {
        0% {
            left: 300px;
        }
        100% {
            left: 0;
        }
    }
    /* Slide side body*/
    .side-body {
        margin-left: 5px;
        margin-top: 70px;
        position: relative;
        -moz-animation: bodyslideout 300ms forwards;
        -o-animation: bodyslideout 300ms forwards;
        -webkit-animation: bodyslideout 300ms forwards;
        animation: bodyslideout 300ms forwards;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    .body-slide-in {
        -moz-animation: bodyslidein 300ms forwards;
        -o-animation: bodyslidein 300ms forwards;
        -webkit-animation: bodyslidein 300ms forwards;
        animation: bodyslidein 300ms forwards;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    /* Hamburger */
    .navbar-toggle {
        border: 0;
        float: left;
        padding: 18px;
        margin: 0;
        border-radius: 0;
        background-color: #f3f3f3;
    }
    /* Search */
    #search .panel-body .navbar-form {
        border-bottom: 0;
    }
    #search .panel-body .navbar-form .form-group {
        margin: 0;
    }
    .navbar-header {
        /* this is probably redundant */
        position: fixed;
        z-index: 3;
        background-color: #f8f8f8;
    }
    /* Dropdown tweek */
    #dropdown .panel-body .navbar-nav {
        margin: 0;
    }
}

.sortable {
    list-style-type: none;
    cursor: move;
}

.sortable > li {
    padding:10px;
}

.lefttd >tbody >tr > td{
    padding:10px;
}
.maindiv {
    color: #000000;
}

tr.disabled {
    color:black;
    text-decoration: line-through;
}

.center {
    bottom: 0; left: 0; top: 0; right: 0;
    margin: auto;
    position: absolute;
    width: 200px;
    height: 200px;
    opacity:0.95;
    background: #ffffff;
}

#ulist_wrapper{
    padding:10px;
}
#rlist td{
    color: #000000;
    background-color: white;
}

.table td{
    color: #000000;
}
body{
    background: #FFFFFF;
}
.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate{
    color:white !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button{
    background-color:white;
}
.dataTables_wrapper .dataTables_length select{
    color:black !important;
}
input[type=search] {
    color:black;
}
input[type=text] {
    color:black;
}
.invertnav, .navbar-nav>li.invertnav>a{
    color: white;
    background-color: darkgray;
}
.greencheck{
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: #FFFFFF;
    border:2px solid black;
    border-radius: 6px;
    box-sizing: border-box;
    position: relative;
    box-sizing: content-box ;
    width: 30px;
    height: 30px;
    transition: all .3s linear;
}
.greencheck:checked{
    background-color: #2ECC71;
}

#mainlogo{
    width:300px;
}
.navbar-inverse .navbar-nav>li>a {
    color: #FFFFFF;
    font-size: 20px;
    padding: 40px;
}
.navbar-nav>li.active {
    background-color: #23939a;
}


/*START CUSTOM CSS DK BUDGET RECHNER*/
.navbar-inverse{background-color:#00a3cc}
.navbar-header img{margin:1em}

.logopreview{max-width:200px;max-height:200px;object-fit:scale-down;}
.qpreview,.opreview{max-width:200px;max-height:200px;object-fit:scale-down;}
.inactive{color:#555;}
.button{background-color:#f2f2f2;padding:.5em;}
.grey{background-color:#f5f5f5;}

h2.stephead{}

#qimglabel{}
#qtitlelabel{}
#qsubtextlabel{}

#oimglabel{}
#otitlelabel{}
#osubtextlabel{}
#ocostlabel{}
#odependencieslabel{}
#dsonelabel{}
#dslinklabel{}
#dsuploadlabel{}

#stepperbox{display:flex;max-width:890px;}
.substep{flex:1;margin:auto;padding:.5em;border:1px solid #555;background-color:#f2f2f2;text-align:center}
.substep > a{color:#000;}
.stepactive{background-color:blue}
.stepactive > a{color:#fff;}

#jspreview{border:0px solid #000;width:100%;}

/*Start CSS des JS-Previews*/
.dk_budget_headwrap{display:flex}
.dk_budget_headleft{display:flex;flex-direction:column;flex:5}
.dk_budget_head{

    font-family: Neuropol;
    font-size: 22pt;
    line-height: 20pt;
    color: #00b5e2;
}

.dk_budget_subhead{}

.dk_budget_headright{flex:1;padding: 1em;}
.dk_budget_logo{width:100%}
.dk_budget_content{padding:0 0;}
.dk_budget_content_top{display:flex;flex-direction:column;}
.dk_budget_question_img{margin:1em auto}
.dk_budget_question{
    /*margin:1em 0;*/
    font-family: Verdana;
    font-weight: normal;
    font-size: 22pt;
    line-height: 20pt;
    color: #333333;
    margin-left: -1px;
}
.dk_budget_questionsub{
    font-family: Verdana;
    font-weight: normal;
    font-size: 13pt;
    line-height: 18pt;
    color: #666666;
    max-width: 800px;
    margin-bottom: 20px;

}

.dk_budget_questnum{
    font-family: Verdana;
    font-weight: bolder;
    font-size: 13pt;
    line-height: 18pt;
    color: #666666;

}
.dk_budget_line{width:100%;border-bottom:1px #666666 solid; margin-bottom: 10px;max-width:1420px;}
.dk_budget_content_options{display:flex;flex-flow:wrap;min-height: 140px;}
.dk_budget_content_options_tile{
    cursor: pointer;
    flex:1;
    max-width:165px;
    min-width: 165px;
    max-height:165px;
    min-height:165px;
    margin:1em 2em 1em 0;
    border:2px solid #999;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    border-radius:10px;
    display:flex;
    flex-direction:column;
    background-color: white;
}
.dk_budget_content_options_tile_subline{text-align:center;padding:4px;align-items: center;justify-content: center;display: flex;flex: 1;min-height: 25px;}
.dk_budget_content_options_tile_subline_poptrigger{
    font-weight: bold;
    color: #fff;
    background-color: red;
    border-radius: 40px 20px;
    width: 95px;
    min-height: 29px;
    display: flex;
    z-index: 50;
    position: relative;
    right: -112px;
    top: 5px;
    padding: 4px 12px;
}
.dk_budget_content_options_tile_icon{width: 68%;border-radius: 10px;margin: 5px auto 0px;}
.option_picked{border:2px solid #00b5e2;}
.budget_field{
    font-family: Verdana;
    font-weight: normal;
    font-size: 14pt;
    width: 350px;
    height: 40px;
    margin-right: 20px;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #666;
    background-color: #f7f7f7;
}
.budget_form{display: flex;justify-content: left;}
#budget_store{max-height:40px;border: 1px solid #666;background: #fff;padding: 6px 15px; border-radius: 5px;box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);}
#budget_time{
    font-family: Verdana;
    font-weight: normal;
    font-size: 14pt;
    padding:5px;
    height:40px;
    border-radius: 5px;
    border: 1px solid #666;
    float:right;
    margin-right: 20px;
    background-color: #f7f7f7;
}
.dk_budget_suboptions{
    height:32px;width:100%;margin-top:10px;
}
.dk_budget_skipper{
    cursor: pointer;
    float: left;
    background: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    border: 1px solid #666;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
.dk_budget_bar{
    display:flex;
    margin-top:2em;
    padding-bottom: 2em;

}
.dk_budget_bar_sub{

    flex-basis: content;
    text-align:left;
    font-family: Verdana;
    font-weight: normal;
    font-size: 16pt;
    line-height: 20pt;
    color: #666666;
    max-width: 300px;
}

#dk_wunsch.dk_budget_bar_sub{
    font-weight: bold;
    color: #333333;
    margin-left: 10px;
    margin-right: 30px;
}

#choiceprice.dk_budget_bar_sub{
    font-weight: bold;
    color: #00b5e2;
    margin-left: 10px;
    margin-right: 30px;
}

.dk_progress_bar{display:flex;flex-wrap:wrap;margin-top:2em; margin-bottom: 2em;}
.dk_progress_bar_tile{
    flex: 1;
    text-align: center;
    font-size: 12pt;
    font-weight: bold;
    height: 40px;
    border-radius: 5px;
    max-width: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 15px;
    margin: 0 10px 13px 0;
    border: 1px solid #666;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background-color: white;
}
.dk_progress_bar_tile_last{
    flex: 1;
    text-align: center;
    font-size: 13pt;
    font-weight: bold;
    height: 40px;
    border-radius: 5px;
    max-width: 120px;
    min-width: 60px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 15px 36px;
    margin: 0 5px;
    border: 1px solid #666;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background-color: white;
}
.dk_pbt_highlight{background-color:#00a3cc;color:#fff;font-weight:bold; border: 1px solid #00b5e2}
.dk_pbt_done{background-color:#666;color:#fff}


.dk_budget_result_options{display:flex;flex-direction:column;min-height: 500px;max-height: 500px;margin-bottom: 20px;
    overflow-y: auto;}

.dk_budget_resultline{
    border: 1px solid #cccccc;
    padding: .3em .7em .5em .7em;
    margin-bottom:.7em
}
.dk_budget_resultline_head{
    flex:1;
    font-family: Verdana;
    font-weight: normal;
    color: #666666;
    font-size: 14pt;
    line-height: 18pt;
    margin:5px 10px
}
.dk_budget_resultedit{
    float:right;
    font-family: Verdana;
    font-weight: normal;
    color: #666666;
    font-size: 12pt;
    text-decoration: underline;
    cursor: pointer;
}
.dk_budget_result_subline{
    min-height:22px;
    font-family: Verdana;
    font-weight: normal;
    color: #333333;
    font-size: 12pt;

    flex:1
}
.dk_budget_sendmail {
    cursor: pointer;
    float: right;
    border: 1px solid #666;
    height: 40px;
    border-radius: 5px;
    background: #fff;
    padding: 6px 15px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

#jspreview label{
    display: inline-block;
    max-width: 100%;
    margin-bottom: 10px;
    font-family: Verdana;
    font-weight: normal;
    font-size: 12pt;
}

#jspreview option{
    font-family: Verdana;
    font-weight: normal;
    font-size: 12pt;
    color: #666;
    min-height: 12px;
    line-height: 20pt;

}

#jspreview button{
    font-family: Verdana;
    font-weight: bold;
    font-size: 12pt;
    color: #666;
}
.dk_budget_toplogo{
    position:absolute;
    top:5px;
    left:115px;
}
.dk_budget_toplogo > .dk_budget_logo{
    max-height:50px;
    width:auto;
}
.dk_stripe{
    width:100%;
    position:absolute;
    height:60px;
    top:0px;
    left:0px;
    background-color:#00b5e2;
}
.dk_stripe.bottom{
   display:none;
}
#content{
    background-position: right;
    background-size: unset;
    background-repeat: no-repeat;
}
.dk_budget_lower{

   /* width: 84%;*/
}

.budget_modalback{display:none;position:fixed;width:100%;height:100%;opacity:.5;background:#555;top: 0;left: 0;z-index: 50;}
.budget_modalinner{display:none;background:#fff;width:90%;height:816px;min-height:700px;position:absolute;z-index:51;top: 60px;left: 5%;}
.budget_modalclose{font-size: 18px;font-weight: bold;width: 37px;padding: 6px 12px;right: 6px;position: absolute;top:7px;}
.budget_sethead{position: absolute;left: 198px;}
.budget_setwrapper{display:flex;justify-content: center;align-items: center}
.budget_setsingle{ flex: 1; max-width: 240px; flex-direction: column; display: flex; margin: 40px 0;}
.budget_setimg{margin:20px 10px;width:85%;object-fit:scale-down;min-height: 206px;max-height: 306px;}
.budget_setsubline{margin:0 0px;max-height: 400px;min-height: 400px;overflow-y: auto;width: 100%;}

/*start slotmachine classes*/

/*überschrift-button*/
.interliving_wheelbutton{top:128px;position:absolute;box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);}
/*überschrift zusatz-Geräte-Buttons*/
.interliving_wheelbutton_II{top:373px;position:absolute;box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);}

/*box, in der die Items gelistet sind*/
.slotwrap{
    width: 170px;
    padding-left: 5px;
    height: 420px;
    overflow: hidden;
    text-align: center;
    position: absolute;
    top:224px;
    z-index:2;
}
.slotwrap > .item{
    position: absolute;
    width: 87%;
    height: 60%;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    transform-origin: 50% 0;
    border: 0px solid gray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .5s ease-in-out;
}
.slotwrap > .item >img{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}


/*Preisberechnungs-Anzeige*/
.pricewrap{
    position:absolute;
    left:840px;
    top:959px;
    width: 103px;
    height: 33px;
    text-align: right;



}
#pricetag,#extratag,#totalpricetag{
    font-size:18px;
    top:967px;
    color:rgba(135, 30, 0, 0.9);
    font-weight:bold;
    /*background-color:#eaeaea;*/
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.extrawrap{
    position:absolute;
    left:1095px;
    top:959px;

}

.totalpricewrap{
    position:absolute;
    left:1770px;
    top:959px;
    text-align: right;
}

/*Info-Felder zum gewählten Gerät*/
.slotinfo{position:absolute;height:242px;width:160px;overflow:hidden;top:642px;padding:6px;font-size:12px;z-index:1}
.slotinfo ul{margin-left:-20px;}
.slotinfo0,.slotback0{left:60px}/*193 raster*/
.slotinfo1,.slotback1{left:240px}
.slotinfo2,.slotback2{left:420px}
.slotinfo3,.slotback3{left:600px}
.slotinfo4,.slotback4{left:780px}/*10 gap, 183 raster*/
.slotinfo5,.slotback5{left:980px}
.slotinfo6,.slotback6{left:1160px}
.slotinfo7,.slotback7{left:1340px}
.slotinfo8,.slotback8{left:1520px}
.slotinfo9,.slotback9{left:1700px}
.slotback{position:absolute;height:720px;width:160px;top:216px;background-color:#fff;box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);border:1px solid #555;z-index:0}
.interliving_divisionline{width:2px; height:875px;position:absolute;top:87px;left:959px;background:#555}

.vme_infohead{font-weight:bold;text-align: center;}
/*floating photo box*/
.photo{background-color:#fff}
/*floating photo box photo*/
.photo .mainimg{flex:1;object-fit:scale-down}
/*text in floating box*/
.floatcaption{width:500px;position:unset;flex:1;order:2;text-align:left;font-size:14px}
/*headline in floating box*/
.floatcaphead{font-weight:bold;margin-top:0}

#modal{background:rgb(0,0,0,0.4);display:none;justify-content: center;flex-direction:column;width:100%;height:100%;position:fixed;top:0;left:0;z-index:60}
#modalinner{background-color:#fff;border:2px solid #ff0000;width:90%;margin:auto;min-height:600px;padding:2em;max-height:800px;
    overflow: auto;}

#zoomer{zoom:.9}

/*addon 6-2020*/
#finalstep_web{display:none;}
fieldset{margin-top:10px;}
legend{margin-bottom:10px;}