
/* CSS */
button, input[type=button], input[type=submit], .button {
    background-color: orange;
    border: 1px solid #d5d9d9;
    border-radius: 5px;
    box-shadow: rgb(213 217 217 / 50%) 3px 2px 3px 0px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: sans-serif!important;
    font-size: 12px!important;
    /*line-height: 30px!important;*/
    padding: 10px!important;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    width: 100%;
    /*margin-bottom: 1em!important;*/
}

.redButton{
    background-color: #f44336;
    color: yellow;
}

button:hover,input[type=button]:hover, input[type=submit]:hover, .button:hover, .redButton:hover {
    color:greenyellow;
}

button:focus,input[type=button]:focus, input[type=submit]:focus, .button:focus {
    /*border-color: #008296;
    box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
    outline: 0;
    */
}

button:disabled,input[type=button]:disabled, input[type=submit]:disabled, .button:disabled {
    background-color: gray;
    color: white;
}

button:active,input[type=button]:active, input[type=submit]:active, .button:active {
    color: limegreen;
}

.ptPanel{
    width: 170px;
    margin-right: 1em;
    margin-bottom: 1em;
    border-radius: 0.7em;
    height: 195px;
    background-color: white;
    box-shadow: 2px 2px #d5d9d9;
    text-align: center;
    display: inline-block;
}
.ptLabel{
    border-top-left-radius: 0.7em;
    border-top-right-radius: 0.7em;
    height: 45px;
    padding: 5px;
    vertical-align: middle;
    background-color: white;
    color: green;
    box-shadow: 0px 5px 9px 0px yellowgreen;
}
.pdPanel{
    width: 215px;
    max-width: 45%;
    margin-left: 0.5em;
    margin-right: 0.5em;
    margin-bottom: 1em;
    border-radius: 0.7em;
    height: auto;
    background-color: white;
    box-shadow: 2px 2px #d5d9d9;
    text-align: center;
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    font-family: sans-serif;
}
.popup{
    display: none;
    position: fixed;
    border: 3px solid #f1f1f1;
    z-index: 9;
    /*top: 50%*/
    top: 52px;
    left: 50%;
    /*transform: translate(-50%, -50%);*/
    transform: translate(-50%);
    width: 90%;
    max-width: 600px
}
select{
    width: 100%;
    padding: 10px;
    border-radius: 0.5em;
    background-color: white;
    margin-bottom: 1em!important;
    border: 1px solid orange;
    color: gray;
}
textarea{
    border-radius: 0.3em;
    border: 1px gray solid;
    margin-bottom: 1em!important;
    background-color: #eee;
    width: 100%;
}

.textarea{
    /*background-color: #eee;*/
    border: 1px solid #999;
    padding: 7px;
    border-radius: 5px;
    margin: 7px;
    margin-right: 0;
    width: 100%;
    /*box-shadow: 1px 1px 1px 1px #ddd;*/
}
input[type=text], input[type=number]{
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    /*color: limegreen;*/
    margin-bottom: 1em!important;
    border: 1px solid gray;
}
.cartIcon{
    position: fixed;
    top: 2px;
    right: 59px;
    width: 35px;
    height: 36px;
    background-color: white;
    border-radius: 20px;
    padding: 8px;
    z-index: 5;
    font-size: 16px;
    color: orange;
    border: 1px solid orange;
}
.shoppingcartQty{
    position: fixed;
    top: 5px;
    right: 7px;
    width: 80px;
    height: 30px;
    z-index: 4;
    text-align: right;
    font-size: 20px;
    background-color: white;
    font-weight: normal;
    border-radius: 10px;
    padding-top: 3px;
    font-family: fantasy;
    color: limegreen;
    padding-right: 15px;
    padding-bottom: 0px;
}
.destPanel{
    padding: 1em;
    border-radius: 0.7em;
    border: 1px solid lightgray;
}
.closeButton{
    position: fixed;
    right: 3px;
    top: 3px;
    text-align: center;
    border-radius: 2em;
    height: 35px;
    width: 35px;
    padding: 9px;
    background-color: red;
    color: greenyellow;
    font-weight: bold;
}

.hasError{
    color: white;
    background-color: red;
    margin-bottom: 16px;
    font-size: 10px;
    border-radius: 4px;
    padding: 5px;
    padding-bottom: 8px;
    clear: both;
    box-shadow: 3px 3px 1px 0px lightgray;
    padding-left: 15px;
    text-shadow:0px 0px #fff;
}

.hasNotice{
    color: white;
    background-color: #4CAF50;
    margin-bottom: 16px;
    font-size: 10px;
    border-radius: 4px;
    padding: 1em;
    padding-bottom: 8px;
    clear: both;
    padding-left: 15px;
    box-shadow: 3px 3px 1px 0px lightgray;
    text-shadow:0px 0px #fff;
}

.hasInfo{
    color: white;
    background-color: deepskyblue;
    margin-bottom: 16px;
    font-size: 10px;
    border-radius: 4px;
    padding: 1em;
    padding-bottom: 8px;
    clear: both;
    padding-left: 15px;
    box-shadow: 3px 3px 1px 0px lightgray;
    text-shadow:0px 0px #fff;
}

.hasAlert{
    color: darkorange;
    background-color: white;
    margin-bottom: 16px;
    font-size: 10px;
    font-style: italic;
    border-radius: 4px;
    padding: 5px;
    padding-bottom: 8px;
    clear: both;
    /*box-shadow: 3px 3px 1px 0px lightgray;*/
    padding-left: 15px;
    text-shadow:0px 0px #fff;
    border: 1px solid orangered;
}

.subTitle{
    /*color:#BB0A21;*/
    color:cadetblue;
}

.panelTitle1, .tableTitle{
    color: chocolate;
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.panelTitle2{
    color: chocolate;
    font-size: 14px;
    margin-top: 14px;
    margin-bottom: 10px;
}

.panelTitle3{
    color: chocolate;
    display: block;
    font-size: 10px;
}

.panelSection{
    color: darkorange;
    display: block;
    font-size: 12px;
    border-bottom: 1px solid darkorange;
    margin-bottom: 1em;
    margin-top: 1em;
}

.divWithContent{
    background-color: white;
    color: black;
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 0.01em 15px;
    border: 1px solid darkgray;
    font-size: 10px;
}

.divWithTable{
    background-color: white;
    color: black;
    border: 1px solid darkgray;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 10px;
    margin-bottom: 1em;
}

.logo{
    border-radius: 10px;
    box-shadow: 5px 5px 5px gray;
    border: 1px solid #eee;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    display: table;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 1em;
}

thead{
    background-color: cadetblue;
    color: white;
}

thead td{
    text-align: center;
    page-break-inside: avoid;
    vertical-align: middle;
}

tr{
    height: 20px;
}

td{
    padding: 8px 8px;
    display: table-cell;
    text-align: left;
    vertical-align: top;
}

tfoot{
    background-color: lightgray;
    font-weight: bold;
}

.tdTitle{
    color: cadetblue;
}

a{
    color: dodgerblue!important;
    text-decoration: none;
    /*font-size: 11px;*/
}

.stepLabel{
    display: block;
    padding: 5px 5px 5px 10px;
    clear: both;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 1em;
}

.msgalert{
    clear: both;
    text-align: center;
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: orange;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 15px;
    width: 75%;
    margin-right: auto;
    margin-left: auto;
}

.tagAdd:hover{
    color:limegreen;
}

.tagRemove:hover{
    color:red;
}

/* Dropdown Content (Hidden by Default) */
.sysCombobox {
    display: none;
    position: absolute;
    background-color: #f5fff2;
    min-width: 250px;
    border: 1px solid #ddd;
    z-index: 1;
    margin-top: -11px;
    margin-left: 0px;
}

/* Links inside the dropdown */
.sysCombobox label {
    color: black;
    padding: 5px 8px;
    text-decoration: none;
    display: block;
    font-size: 10px;
}

/* Change color of dropdown links on hover */
.sysCombobox label:hover {
    background-color: #f1f1f1
}

.show{
    display: block;
}

.hide{
    display: none;
}

.zoom {
    transition: transform .2s; /* Animation */
    transition-delay: 1s;
}

.zoom:hover {
    transform: scale(3) translate(25%, 0px); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    transition-delay: 1s;
    box-shadow: 0px 0px 10px 20px white;
    position: relative;
    z-index: 3;
}

.a4{
    width:210mm;
    /*height: 297mm;*/
    /*height: 100%;*/
    margin-left: auto;
    margin-right: auto;
}

.panelPortfolios, .panelPortfoliosCompany{
    margin-bottom: 1px;
    width: 100%;
    background-color: wheat;
    padding: 15px;
    padding-bottom: 5px;
    box-shadow: 1px 1px 5px #555 inset;
    border-radius: 5px;
}

.panelPortfolioAdd{
    /*float: left;*/
}

@media (max-width:600px){
    .panelPortfolios1{
        height: auto;
    }
    
    .expandRightSmall{
        margin-right: 0;
    }
}



img {
    pointer-events: none;
}

.portfolioImage, .portfolioPanelImage{
    padding: 5px;
    background-color:white;
    border-radius: 5px;
    box-shadow: 3px 3px goldenrod;

    float:left;
    margin-right: 15px;
    margin-bottom: 15px;

    height: auto;
}


.portfoliosList{
    width: calc(100% - 110px);
}

@media (min-width:700px){
    .portfolioImage1{
        float:left;
        margin-right: 5px;
        margin-bottom: 1em;


        float:left;
        margin-right: 1em;
    }

    .portfoliosList{
        width: 100%;
    }
}

.convTextBox{
    padding: 5px;
}

/*EnM Panels*/
.panelPortfoliosCompany{
    background-color: white;
    float: left;
    margin-bottom: 15px;
    margin-right: 15px;
    width: auto;
}

.portfolioPanelImage{
    margin-bottom: 15px;
    margin-right: 15px;
    border-radius: 5px;
    box-shadow: 3px 3px 5px 0px lightgray;
    border: 1px solid lightgray;
}