
:root{
    --text-primary-color: #828d9f;
    --text-header-color: #5d6778;

    --primary-color: #007388;

    --lp-fade-color: #D1E3E7;
    --lp-line-color: #e5e7ee;

    --button-primary-color-hover: #004f5d;
    
    --text-primary-link-color: #007388;
    --text-primary-link-hover-color: #1e3f79;

    --button-secondary-color: #EB8201;
    --button-secondary-color-hover: #fd981d;

    /* --primary-nav-bgcolor: #efd385;
    --primary-nav-bgcolor-active: #E6B935;
    --primary-nav-bgcolor-hover: #ad8a1e; */
    
    --primary-nav-bgcolor: #004f5d;
    --primary-nav-bgcolor-active: #007388;
    --primary-nav-bgcolor-hover: #006274; 


}

*{box-sizing: border-box; } 
html, body {margin: 0px; }
body{ 
    border: 0; 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: system-ui, sans-serif;
    font-size: 14px; 
    font-weight: 400; 
    width: 100%;
    background-color: #f7f7f7;
    min-height: 100vh;
    color:#1f2123;
    overflow-x: hidden;
}

a.nolink{ text-decoration: none; }

a.menulink{ color: #000; text-decoration: none;}

a.pagelink{ 
    color: var(--text-primary-link-color);
    text-decoration: none;
}
a.pagelink:hover{
    color: var(--text-primary-link-hover-color);
}

a.negativelink{
    color: #b80000;
}

a.negativelink:hover{
    color: #ff2828;
}

/* TOP */

.top-wrapper-spacer{
    width: 50px;
    height: 60px;
}

.top-wrapper{
    height: 60px;
    width: 100%;
    background-color: var(--primary-color);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 75;
}

.top-menu-burger{
    position: absolute;
    left: 20px;
    height: 100%;
    line-height: 70px;
    color: #fff;
    cursor: pointer;
}

.top-user-holder{
    position: absolute;
    right: 10px;
    width: 70px;
    height: 100%;
}

.top-faq-holder{
    position: absolute;
    right: 60px;
    width: 70px;
    height: 100%;
}

.user-dropdown-holder{
    cursor: pointer;
}

.user-dropdown{
    position: absolute;
    left: -130px;
    top: 60px;
    background-color: var(--primary-color);
    width: 200px;
    min-height: 100px;
    border: 0px solid gray;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-bottom: 10px;
    z-index: 70;
    display: none;
    overflow: hidden;
}

.user-dropdown-item{
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    height: 40px;
    border: 0px solid red;
    display: flex;
    flex-wrap: nowrap;
    background-color: var(--button-secondary-color);
    padding-left: 10px;
    border-radius: 5px;
    color: white;
}

.user-dropdown-item:hover{
    background-color: var(--button-secondary-color-hover);
}

.user-dropdown-icon{
    width: 40px;
    height: 100%;
    line-height: 40px;
}
.user-dropdown-label{
    height: 100%;
    line-height: 40px;
}

/* MAIN FLOW */

.content-wrapper{
    margin-left: 250px;
    margin-right: auto;
    min-height: 300px;
    padding: 1rem;
    padding-right: 3rem;
}

.main-flexcontainer-dashboard{
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
    row-gap: 0.5em;
}

.main-flexcontainer{
    display: flex;
    flex-wrap: wrap;
}

.box-container-dashboard{
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 5px;
    /* margin: 1em; */
    background-color: white;
    padding: 20px;
    padding-top: 15px;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.box-container-dashboard-warning{
    border: 1px solid #ff1010;
}

.box-container{
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 5px;
    margin: 1em;
    background-color: white;
    padding: 20px;
    padding-top: 15px;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.box-container.box-container-transparant{
    background-color: transparent;
    box-shadow: none;
    padding: 0px 20px 0px 0px;
}
.box-container-dashboard.box-container-transparant{
    background-color: transparent;
    box-shadow: none;
    padding: 0px 10px 0px 0px;
}

.box-50{
    width: 48% !important;
}

.box-nav-tree{
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 8px solid var(--primary-color);
}

.box-box{
    padding: 15px;
}

.box-label{
    font-size: 16px;
    color: #828d9f;
    margin-bottom: 10px;
}
.box-content-size-b{
    font-size: 25px;
    margin-top: auto;
}
.fb{ 
    flex-basis: 100%;
    height: 0px;
}

.overflow-scroll-x{
    overflow-x: auto;
}
/*  INNER FLOW */
.box-inner-content-nav{
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-left: 15px;
    margin-right: 15px;
    cursor: pointer;
}

.box-inner-content-nav-item{
    flex: 1 1 0px;
    line-height: 2rem;
    background-color: var(--primary-nav-bgcolor);
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.box-inner-content-nav-item:hover{
    background-color: var(--primary-nav-bgcolor-hover);
}

.box-inner-content-nav-item-active{
    background-color: var(--primary-nav-bgcolor-active);
}

.box-inner-content-searchfields{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.box-inner-content{
    display: flex;
    flex-wrap: wrap;
}

.box-inner-content-item{
    flex: 1 1 0px;
    line-height: 2rem;
}

.box-inner-content-item-noflex{
    line-height: 2rem;
}

.box-inner-content-item-header{
    width: 200px;
    font-weight: 500;
}

.dft_table{
    border-collapse: collapse;
}

.dft_table td, .dft_table th { 
    height: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
}

.dft_table tr:not(.nohover):hover td:not(.table_header){
    background-color: #e5fbff;
}

.dft_table tr:not(:last-child) td, .dft_table tr:not(:last-child) th { 
    border-bottom: 1px solid rgb(195, 223, 232);
}

.dft_table tr:has(+ .dash-sep) td,
.dft_table tr:has(+ .dash-sep) th {
  border-bottom: 1px dashed rgb(227 227 227);
}


.dft_table th{
    height: 40px;
}

.td-align-right{
    text-align: right;
    padding-right: 10px;
}
.td-align-center{
    text-align: center;
    padding-right: 10px;
}

.table_header{
    font-weight: 500;
    color: var(--text-header-color);
    align-content: end;
}

.table_header.sorting{
    padding-right: 25px;
}

tr.tr-no-border td {
  border-bottom: none !important;
}

/* LEFT PANEL */

.left-panel{ 
    width: 250px;
    position: fixed;
    height: 100vh;
    background-color: white;
    border-right: 1px solid #e7e9ed;
    top: 0px;
    z-index: 85;
}

.left-panel-open-fade{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 80;
    background-color: rgba(0, 0, 0, 0.3);;
    display: none;
}
.logo-holder{
    text-align: center;
    padding-top: 15px;
    height: 80px;
    width: 100%;
}

.lp-menuitem{
    width: 100%;
    height: 40px;
    display: flex;
    flex-wrap: nowrap;
    background-color: #fff;
}
.lp-menuitem:hover .lp-menuicon-subcategory {
    border-right: 2px solid #a5d3db;
}

.lp-menuitem .lp-menuicon-subcategory-selected {
    border-right: 2px solid #005c6d;
}

.lp-menuitem-start{
    background-color: #D1E3E7;
}
.lp-menuitem-settings{
    
    border-top: 1px solid var(--lp-line-color);
    position: absolute;
    bottom: 0;
    left: 0;
}
.lp-menuitem-settings-selected{
    background-color: var(--lp-fade-color);
}


.lp-menuicon{
    width: 30px;
    height: 100%;
    padding-left: 10px;
    padding-right: 0px;
    font-size: 20px;
    line-height: 40px;
}
.lp-menuicon-subcategory{
    border-right: 2px solid var(--lp-line-color);
}
.lp-menulabel{
    height: 40px;
    padding-left: 10px;
    line-height: 40px;
    color: rgb(37, 41, 48);
    font-size: 14px;
}

.lp-mainlabel{
    font-weight: 400;
    color: #000;
}

.lp-menulabel-selected{
    color: var(--primary-color);
}


.left-panel-close{
    position: absolute;
    left: 270px;
    top: 20px;
    color: #fff;
    display: none;
    font-size: 20px;
}
.left-panel-close:hover{
    cursor: pointer;
    color: var(--lp-fade-color);
}

.left-panel.show, .left-panel-open-fade.show, .left-panel-close.show{
    display: block;
}
.left-panel.hide, .left-panel-open-fade.hide, .left-panel-close.hide{
    display: none;
}

/* RIGHT PANEL */

.right-panel-quick-menu{
    position: fixed;
    right: 0px;
    top: 100px;
}

.rqm-box{
    position: absolute;
    width: 300px;
    background-color: #fff;
    min-height: 350px;
    left: 30px;
    margin-top: -120px;
    border: 2px solid var(--lp-line-color);
    border-top-left-radius: 5px;;
    border-bottom-left-radius: 5px;
    box-shadow: -5px 5px 0.25rem rgba(0, 0, 0, 0.075) !important;
    padding: 10px;
    cursor: default;
}

.rqm-box-tag{
    position: relative;
    width: 30px;
    background-color: var(--button-secondary-color);
    min-height: 100px;
    margin-top: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-top: 10px;
    cursor: pointer;
    transition: 0.5s ease;
    z-index: 50;
    
}

.rqm-box-tag:hover{
    background-color: var(--button-secondary-color-hover);
}

.rqm-box-opened{
    transform: translateX(-300px);
    z-index: 100;
}

.rqm-box-tag-searchcase{
    height: 100px;
}

.rqm-box-searchcase{
    top: 100px;
}

.rqm-box-tag-contactinfo{
    height: 140px;
}

.rqm-box-contactinfo{
    top: -25px;
}


.rqm-box-tag-label{
    color: #fff;
    transform: rotate(90deg);
    transform-origin: left;
    white-space: nowrap; 
    margin-left: 17px;
    font-weight: 600;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 12px;
}

.rqm-box-close{
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}
.rqm-box-close:hover{
    color: var(--lp-fade-color);
}

.rqm-box-content-title{ float: left; height: 30px; width: auto; padding-top: 5px; font-size: 16px; color: var(--text-primary-color);}
.rqm-box-close-holder{ float: right; height: 30px; width: 20px; text-align: right; }

/* MAIN CASE */

.maincase-tab-header{
    background-color: var(--primary-nav-bgcolor);
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px;
    padding-left: 10px;
    color: #fff;
    cursor: pointer;
}

.maincase-tab-header-active{
    background-color: var(--primary-nav-bgcolor-active)
}
.maincase-tab-header:hover{
    background-color: var(--primary-nav-bgcolor-hover)
}


.dp-fb{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flex-item{
    flex: 1 1 0px;
}

/* POPUP */
.PopupDivBlocker {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
    background-color: #000;
    opacity: 0.2;
    z-index: 90;
}

.PopupDiv {
    display: none;
    position: fixed;
    width: 75%;
    max-height: 80%;
    background-color: white;
    top: 80px;
    left: 50%;
    margin-left: -37%;
    border: 2px solid #818d9d;
    border-radius: 10px;
    z-index: 100;
    box-shadow: 0px 0px 50px #000;
    overflow-y: auto;
    overflow-x: hidden;
}

.popupDiv-medium{
    max-width: 800px;
    margin-left: -400px;
    height: auto;
    min-height: 200px;
}

.popupDiv-small{
    max-width: 500px;
    margin-left: -250px;
    height: auto;
    min-height: 200px;
}

.popupDivContentHolder{
    padding: 30px; 
    max-height: calc(100vh - 130px); 
    /* overflow-y: auto; */
}

.contact_header{
    font-weight: 500;
    font-size: 1.3em;
    line-height: 40px;
}

/* NEW CASE */

.newcase_progressbar{
    display: flex;
    background-color: #dcebef;
    border-radius: 6px;
    overflow: hidden;
    margin: 0px 10px 0px 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 8px;
}

.newcase_progressbar_step{
    flex: 1 1 16%;
    min-width: 150px;
    padding: 8px 20px;
    color: var(--primary-color);
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
}

.newcase_progressbar_step.newcase_progressbar_step_done, .newcase_progressbar_step.newcase_progressbar_step_active {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    cursor: pointer;
}

.newcase_progressbar_step.newcase_progressbar_step_done::after, .newcase_progressbar_step.newcase_progressbar_step_active::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 15px solid var(--primary-color);
}

.newcase_box {
    box-sizing: border-box;
    min-height: 5px;
    margin: 1em;
    background-color: white;
    padding: 20px;
    padding-top: 15px;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.newcase_box1{
    /* width: calc(60% - 2em); */
    flex: 1 1 calc(60% - 2em);;
}

.newcase_box2{
    flex: 1 1 calc(40% - 2em);;
    /* width: calc(40% - 2em); */
}

.newcase_error-holder{
    margin-bottom: 20px;
}
.newcase_error-item{
    padding: 5px; 
    border: 2px solid red; 
    background-color:rgb(250 132 132);
    border-radius: 5px;
    margin-bottom: 2px;
}

.newcase_summary_buttonholder{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.display-fb{
    display: flex;
}

/* POWER BI */

.powerbiholder_div{
    max-width: 1700px; 
    height: 1000px;
}

.powerbiholder_div iframe {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* MISC */

.spinner-loading-div{
    text-align: center;
    margin-top: 50px;
    position:relative;
}

.spinner-brand-span{
    position: absolute;
    top: 20px; 
    left: 50%; 
    margin-left: -12px; 
    color: #007388; 
    font-size: 15pt;
}

.spinner-loading-icon{
    background: -webkit-linear-gradient(#eee, #007388); 
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-duration: 2500ms !important;
    animation-iteration-count: infinite !important;
}

.label-header{
    font-weight: bold;
}

.bordertop_sum{
    border-top: 2px solid var(--text-header-color);
}

.fa-outline{
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}
.fa-outline_white{
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}

.arrow-expand-holder{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.arrow-div{
    width: 20px;
    height: 20px;
    overflow: hidden;
    transition-duration: 0.8s;
    transition-property: transform;
    text-align: center;
}
.arrow-div-open{
    transform: rotate(180deg);
}

.clear{
    clear: both;
}

.padding20{ padding: 20px;}

.mgtop-10{ margin-top: 10px; }
.mgtop-20{ margin-top: 20px; }
.mgtop-30{ margin-top: 30px; }
.mgtop-50{ margin-top: 50px; }

.mgbottom-5{ margin-bottom: 5px; }
.mgbottom-10{ margin-bottom: 10px; }
.mgbottom-20{ margin-bottom: 20px; }

.fb-singlecol{ flex: 0 0 25%; }

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px;
}

.two-column label {
    display: block;
}

input[type="text"], input[type="password"], input[type="date"] {
    /* display: block;
    width: 100%; */
    padding: 0.375rem 0.375rem 0.375rem 0.375rem;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    appearance: none;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
} 

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select-multiple {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #212529;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.width-50{ width: 50%; }
.width-100{ width: 100%; }
.width-xsmall{ width: 100px; }
.width-small{ width: 150px; }
.width-medium{ width: 200px; }

.radio-wrapper {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.radio-wrapper input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-radio {
    position: absolute;
    top: 2px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: white;
    border: 2px solid var(--button-secondary-color);
    border-radius: 50%;
    box-sizing: border-box;
}

.radio-wrapper input:checked ~ .custom-radio {
    background-color: white;
}

.radio-wrapper input:checked ~ .custom-radio::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--button-secondary-color);
}

.btn {
    display: inline-block;
    line-height: 1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-width: 1px;
    border-style: solid;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid;
    border-radius: 5px;
}


.btn-primary {
    color: #fff;
    background-color: #007388;
    border-color: #007388;
}
.btn-primary:hover{
    background-color: #006274;
    border-color: #005c6d;
}

.btn-positive {
    color: #fff;
    background-color: #00a40e;
    border-color: #00984c;
}
.btn-positive:hover{
    background-color: #007a1c;
    border-color: #006d2c;
} 
.btn-negative {
    color: #fff;
    background-color: #b80000;
    border-color: #ab0000;
}
.btn-negative:hover{
    background-color: #ff2828;
    border-color: #ff2b2b;
}

.btn-neutral {
    color: #005c6d;
    background-color: none;
    border-color: #005c6d;
}
.btn-neutral:hover{
    color: #fff;
    background-color: #006274;
    border-color: #005c6d;
}
.btn-close {
    color: #fff;
    background-color: #4a5759;
    border-color: #475254;
}
.btn-close:hover{
    background-color: #4d5152;
    border-color: #005c6d;
}

.btn:disabled{
    background-color: gray;
    border-color: gray;
}

.field-expand-search{
    font-size: 14px;
    padding-right: 20px;
    white-space:nowrap;
    line-height: 30px;
    cursor: pointer;
    color: var(--text-primary-link-color);
}

.field-expand-search:hover{
    color: var(--text-primary-link-hover-color);
}
.sorting{
    position: relative;
}

.sorting:before {
    position: absolute;
    right: 8px;
    top: 45%;
    content: "▼";
    content: "▼"/"";
    color: rgb(219, 219, 219);
    font-size: 12px;
    cursor: pointer;
}

.sorting:after {
    position: absolute;
    right: 8px;
    bottom: 45%;
    content: "▲";
    content: "▲"/"";
    color: rgb(219, 219, 219);
    font-size: 12px;
    cursor: pointer;
}

.sorting.sorting_asc:before, .sorting.sorting_desc:after{
    color: #000;
}

.pager-nav{
    margin-left: 15px;
    margin-right: 15px;
}
.pager-first{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 1px solid #c6dadf;
}
.pager-last{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #c6dadf;
}

.pager-pagenum{
    float: left;
    min-width: 25px;
    min-height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #c6dadf;
    color: #006274;
}

.pager-pagenum-select{
    min-height: 32px;
}

.pager-pagenum:hover{
    background-color: #006274;
    color: #fff;
}

.pager-pagenum-active{
    background-color: #007388;
    color: #fff;
}

.nowrap{
    white-space:nowrap;
}

.upload-area {
    border: 2px dashed #999;
    border-radius: 10px;
    background: white;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
}

.upload-area.dragover {
    border-color: #333;
    background-color: #f0f0f0;
}

input.upload-inp[type="file"] {
    display: none;
}

.upload-file-names {
    margin-top: 15px;
    font-size: 14px;
    color: #444;
    text-align: left;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* RESPONSIVE */

.dmt, .dmm{ display: none; }

.left-panel-inner-menu-container{
    height: calc(100vh - 120px);
    overflow-y: auto;
}

@media only screen and (max-width: 1200px){
	.left-panel{
		display: none;  
	}
    .left-panel-open-fade.show, .left-panel.show, .left-panel-close.show{
        display: block !important;
    }
    .content-wrapper{
        margin-left: 0px;
    }

}

@media only screen and (max-width: 1000px){
	/* display-max-tablet */
    .dmt{
		display: block;
	}
    .fb-singlecol{ flex: 0 0 50%; }

	.PopupDiv{	
		top: 20px; 
		min-height: 200px;
		width: 70%; 
		margin-left: -35%; 
	}
	.popupDiv-small{	
		top: 20px; 
		min-height: 200px;
		width: 70%; 
		margin-left: -35%; 
	}
    .newcase_box1, .newcase_box2{
        width: 100%;
    }
}

@media only screen and (max-width: 700px){
	/* display-max-mobile */
    .dmm{ 
		display: block;
	}
    .dp-mb-100{
        width: 100%;
    }
    .fb-singlecol{ flex: 1 1 0px; }

    .box-container.box-container-transparant{
        padding: 0px 0px 0px 0px;
    }
	.PopupDiv{	
		top: 20px; 
		min-height: 200px;
		width: 90%; 
		margin-left: -45%; 
	}
	.popupDiv-small{	
		top: 20px; 
		min-height: 200px;
		width: 90%; 
		margin-left: -45%; 
	}
}