@media print {
    * {
        -webkit-print-color-adjust: exact !important; /* Chrome, Safari, Edge */
        color-adjust: exact !important; /*Firefox*/
    }

    input[type=submit], #ceu-vue-app input[type=button], #ceu-vue-app button {
        display: none;
    }


    .ceu-button-tag {
        display: none;
    }

    input[type=submit]:hover, input[type=button]:hover, button:hover {
        display: none;
    }

    .document-logo {
        display: block !important;
    }

    @page {
        size: Letter landscape;
    }

    #calculatorForm {
        display: none;
    }

    .modal {
        display: none;
    }
}

/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/***************For side by side forms*******************/
#ceu-vue-app .flex-container {
    display: flex;
    /*background-color: DodgerBlue;*/
}

#ceu-vue-app .flex-container > div {
    border: 3px solid #dbdbdb;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 8px #d4d4d4;
    /*background-color: #f1f1f1;*/
    margin: 10px;
    /*padding: 40px;*/
    /*font-size: 30px;*/
}

/***************For styling of individual form*******************/

#ceu-vue-app input[type=text], #ceu-vue-app select, #ceu-vue-app textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

#ceu-vue-app label {
    /*padding: 12px 12px 12px 0;*/
    display: inline-block;
}

#ceu-vue-app input[type=submit], #ceu-vue-app input[type=button], #ceu-vue-app button {
    background: #2b5e7c;
    color: #fff;
    font-size: 18px;

    padding: 12px 20px;
    border: none;
    border-radius: 4px !important;
    cursor: pointer;
    margin-top: 10px;
}

#ceu-vue-app .button-stack {
    width: 40%;
}


#ceu-vue-app .a-button {
    background: #2b5e7c;
    color: #fff;
    font-size: 18px;
    height: 60px;
    width: 60%;

    /*background-color: #4CAF50;*/
    /*color: white;*/
    padding: 12px 20px;
    border: none;
    border-radius: 4px !important;
    cursor: pointer;
    /*float: right;*/
    margin: 10px;
}

#ceu-vue-app .button-tag {
    font-size: 10px;
    margin: 10px !important;
}

#ceu-vue-app .p-tag {
    font-size: 10px;
}

#ceu-vue-app input[type=submit]:hover, #ceu-vue-app input[type=button]:hover, #ceu-vue-app button:hover {
    background-color: #45a049;
}

#ceu-vue-app .input-label {
    margin-right: 5px;
}

#ceu-vue-app .groupbox {
    /*border-radius: 5px;*/
    /*background-color: #f9f9f9;*/
    /*padding: 20px;*/

    border: 3px solid #dbdbdb;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 8px #d4d4d4;
    /*background-color: #f1f1f1;*/
    margin: 1%;
}

#ceu-vue-app .col-50 {
    float: left;
    width: 50%;
    margin-top: 6px;
}


#ceu-vue-app .col-48 {
    float: left;
    width: 48%;
    margin-top: 6px;
}

#ceu-vue-app .col-30 {
    float: left;
    width: 30%;
    margin: 10px;
}

#ceu-vue-app .col-25 {
    float: left;
    width: 23%;
    margin: 10px;
}

#ceu-vue-app .col-20 {
    float: left;
    width: 20%;
    margin-top: 6px;
    text-align-last: end;
    padding-right: 20px;
    font-weight: bold;
}

#ceu-vue-app .col-80 {
    float: left;
    width: 80%;
    margin-top: 6px;
}


/* Clear floats after the columns */
#ceu-vue-app .ceu-row:after {
    content: "";
    display: table;
    clear: both;
}

#ceu-vue-app .form-heading {
    font-weight: bold;
}

#ceu-vue-app .output {
    margin: 10px 10px 10px 30px !important;
}

#ceu-vue-app .form-internal-heading {
    font-weight: bold;
    margin: 10px !important;
}

#ceu-vue-app .label-tag {
    font-size: 10px;
    margin-bottom: 0px !important;
}


/*.output-contents*/
/*{*/
/*    min-width: 500px;*/
/*}*/


#ceu-vue-app .document-logo {
    display: none;
}

#ceu-vue-app .calculateBtn {
    margin: 10px 10px 0px 10px;
    width: 200px;
}


/*
Generic Styling, for Desktops/Laptops
*/
#ceu-vue-app .responsive-table-input-matrix {
    width: 100%;
    border-collapse: collapse;
    text-align-last: center;
}

/* Zebra striping */
#ceu-vue-app .responsive-table-input-matrix > tr:nth-of-type(odd) {
    background: #eee;
}

#ceu-vue-app .responsive-table-input-matrix th, #ceu-vue-app .responsive-table-input-matrix .th {
    background: #428bca;

    color: white;
    font-weight: bold;
    font-size: 18px;
}

#ceu-vue-app .responsive-table-input-matrix td, #ceu-vue-app .responsive-table-input-matrix th {
    padding: 6px;
    border: 1px solid #ccc;
    text-align: left;
    font-weight: bold;
}


/*
Jquery Loader
 */
/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.ajax-loader-ceu {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .8) url('../icons/loading-gif.gif') /*url('http://i.stack.imgur.com/FhHRx.gif')*/ 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .ajax-loader-ceu {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .ajax-loader-ceu {
    display: block;
}


/***********Tool tip works*************/

#ceu-vue-app .ceutooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: pointer;
}

#ceu-vue-app .ceutooltip .ceutooltiptext {
    visibility: hidden;
    width: max-content;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    left: -50px;
    top: 20px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    font-family: "Helvetica", Verdana, Arial, sans-serif;
}

#ceu-vue-app .ceutooltip:hover .ceutooltiptext {
    visibility: visible;
}


/*********Modal CSS**************/
/* The Modal (background) */
#ceu-vue-app .ceumodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 150px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* ceumodal Content */
#ceu-vue-app .ceumodal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
#ceu-vue-app .ceumodalclose {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#ceu-vue-app .ceumodalclose:hover,
#ceu-vue-app .ceumodalclose:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#ceu-vue-app .ceumodal-header {
    padding: 2px 16px;
    background-color: #428bca;
    color: white;
}

#ceu-vue-app .ceumodal-body {
    padding: 2px 16px;
}

#ceu-vue-app .ceumodal-footer {
    padding: 2px 16px;
    background-color: #428bca;
    color: white;
}

#ceu-vue-app .ceutooltiptext th {
    font-size: 12px;
    writing-mode: horizontal-tb !important;
}

#ceu-vue-app .ceutooltiptext {
    font-size: 12px;
}

#ceu-vue-app .ceu-right {
    text-align: right;
}

#ceu-vue-app .ml15 {
    margin-left: 15px;
}

@media only screen and (max-width: 1800px) {
    #ceu-vue-app .ceutooltip .ceutooltiptext {
        right: 0px;
        left: unset;

    }
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    #ceu-vue-app .col-20, #ceu-vue-app .col-80, #ceu-vue-app .col-50, #ceu-vue-app .col-48, #ceu-vue-app .col-30, #ceu-vue-app .col-25, #ceu-vue-app .button-stack {
        width: 100%;
        /*margin-top: 0;*/
    }

    #ceu-vue-app .responsive-table-input-matrix th {
        -webkit-writing-mode: vertical-lr;
    }


    #ceu-vue-app .ceutooltip .ceutooltiptext {
        right: -95px;
        left: unset;
        font-size: 8px;
    }

    #ceu-vue-app .ceu-right {
        text-align: inherit;
    }
}

