* {
    border: none;
}
.tab_nav {
    padding: 3px 2px 2px 2px;
}
img {
    border: 0px;
}
div.row {
    width: 100%;
}
div.row:not(:first-of-type) {
    clear: left;
}
div.column50 {
    width: 50%;
    float: left;
}

div.css_table {
    display: table;
    width: 100%;
}
div.css_table div.css_cell {
    display: table-cell;
    width: 50%;
}
fieldset {
    border: none;
    border-top: 2px solid #cccc99;
    margin: 8px;
    /*padding: 0px;*/
}
fieldset legend {
    font-weight: bold;
    font-size: 1.2em;
    background-color: #cccc99; 
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 5px 10px;
    color: #ffffff;
}
fieldset legend i {
    padding: 2px 5px;
    margin-right: 5px;
    background: #000099;
    color: #eaeded;
    display: inline-block;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    -moz-box-shadow: 0px 0px 2px #888;
    -webkit-box-shadow: 0px 0px 2px #888;
    box-shadow: 0px 0px 2px #888;
}
fieldset.popup {
    border: 1px solid #b5b5b5;
    margin: 8px;
    /*padding: 0px;*/
}
fieldset.popup legend {
    font-size: 0.95em;
    color: black;
    background-color: #eee; 
    padding: 5px 10px;
}
fieldset.popup table tbody tr {
	line-height: 22px;
}
div.grid50 {
    margin: 0px 8px;
}
.ripple-effect {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.ink {
    display: block;
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    background: #fff;
    opacity: 1;
}
.ink.animate {
    -webkit-animation: ripple .5s linear;
    -moz-animation: ripple .5s linear;
    -ms-animation: ripple .5s linear;
    -o-animation: ripple .5s linear;
    animation: ripple .5s linear;
}
@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
@-webkit-keyframes ripple {
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}
@-moz-keyframes ripple {
    100% {
        opacity: 0;
        -moz-transform: scale(2.5);
        transform: scale(2.5);
    }
}
@-ms-keyframes ripple {
    100% {
        opacity: 0;
        -ms-transform: scale(2.5);
        transform: scale(2.5);
    }
}
@-o-keyframes ripple {
    100% {
        opacity: 0;
        -o-transform: scale(2.5);
        transform: scale(2.5);
    }
}
/***FIRST STYLE THE BUTTON***/
button.cp_button {
    cursor: pointer; /*forces the cursor to change to a hand when the button is hovered*/
    padding: 3px 10px; /*add some padding to the inside of the button*/
    background: #003366; /*the colour of the button*/
    border: 1px solid #4b4e50; /*required or the default border for the browser will appear*/
    /*give the button curved corners, alter the size as required*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    /*give the button a drop shadow*/
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0, .85);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0, .85);
    box-shadow: 1px 1px 2px rgba(0,0,0, .85);
    /*style the text*/
    color: white;
    font-size: 11px;
    font-weight: 600;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
button.cp_button:hover, button.cp_button:focus {
    outline: none;
    background-color: #00004e; /*make the background a little darker*/
    /*reduce the drop shadow size to give a pushed button effect*/
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0, .85);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0, .85);
    box-shadow: 1px 1px 1px rgba(0,0,0, .85);
}
button.cp_button:disabled {
    opacity: 0.50; 
    cursor: not-allowed;
}
button.cp_button i.fa {
	padding-right: 4px;
}
button.inline_cp_button {
    position: relative;
    background-color: #e7e7e7;
}
button.inline_cp_button:hover, button.inline_cp_button:focus {
    outline: none;
    background-color: #c6c6c6 !important; /*make the background a little darker*/
    /*reduce the drop shadow size to give a pushed button effect*/
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0, .85);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0, .85);
    box-shadow: 1px 1px 1px rgba(0,0,0, .85);
}
button.inline_cp_button.badge:after {
    content: attr(data-count);
    position: absolute;
    height: 1rem;
    top: -0.5rem;
    right: -0.7rem;
    width: 1rem;
    text-align: center;
    line-height: 1rem;;
    font-size: 0.55rem;
    border-radius: 50%;
    color: white;
    background: rgba(0,0,255,1);
    border: 1px solid rgba(0,0,255,1);
}
button.link_cp_button {
    overflow: visible; /* Shrinkwrap the text in IE7- */
    margin: 0px;
    padding: 0px;
    border: 0px;
    color: #0000ff; /* Match your link colour */
    background: transparent;
    font: inherit; /* Inherit font settings (doesn’t work in IE7-) */
    line-height: normal; /* Override line-height to avoid spacing issues */
    cursor: pointer; /* Buttons don’t make the cursor change in all browsers */
    -moz-user-select: text; /* Make button text selectable in Gecko */
}
button.link_cp_button:hover {
    text-decoration: underline; /* Make it look linky */
}
button.link_cp_button:focus {
    outline: none;
}
/* Remove mystery padding in Gecko browsers.
 * See https://bugzilla.mozilla.org/show_bug.cgi?id=140562
 */
button.link_cp_button::-moz-focus-inner {
    padding: 0px;
    border: 0px;
}
table.inline_table {
	border-spacing: 0;
    border-collapse: collapse;
}
table.inline_table thead tr {
    background-image: linear-gradient(#f9f9f9,#e4e4e4);
}
table.inline_table tr {
    border-top: 1px solid #ccc;
    padding: 10px;
    margin: 0px;
}
table.inline_table th, table.inline_table td {
    padding: 8px;
}
table.inline_table tr:first-of-type {
    border-top: 0px solid #ccc;
}
table.inline_table tr:last-of-type {
    border-bottom: 1px solid #ccc;
}
table.inline_table tbody tr:nth-child(even) {
    background-color: #f3f6fa;
}
table.inline_table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
div.list_toolbar button {
    float: left;
    margin: 8px 8px 8px 0px;
}
div.toolbar button {
    margin: 8px 8px 8px 0px;
}
div.popup_toolbar button {
	float: right;
	margin: 0px 8px 0px 0px;
}
div.confirm_toolbar button {
    margin: 0px 4px;
}
ul.no_style_list {
    list-style-type: none;
    list-style-position: outside;
    padding: 0px;	
}
ul.no_style_list li {
    position: relative;
    display: inline-block;
    padding-left: 8px;
    margin-bottom: 0;
    vertical-align: middle;
    line-height: 2.75; 
}
label input[type="radio"], label input[type="checkbox"] {
    margin-right: 8px;
}
.error {
    color: red;
    font-weight: bold;
    font-size: 1.2em;
}
.hidden {
    display: none;
}
.left {
    float: left;
}
.right {
    float: right;
}
.passed {
    color: rgba(0,100,0,1);
}
.failed {
    color: rgba(255,0,0,1);
}
.w2ui-lock-msg {
    height: auto !important; /* for some reasons, we need to override height, otherwise too tall for lock message block */
    width: 400px !important; /* make it big enough for some long loading message */
    font-size: 11px; /* override the original font size from 13 to 11*/
}
.confirmBox {
	text-align: left;
}
.fixed_75 {
	width: 75px !important;
}
.fixed_90 {
	width: 90px !important;
}
.fixed_150 {
    width: 150px !important;
}
.multiselect_list_item {
    padding: 4px;
}
.truncate {
    width: 155px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="image"] {
    padding: 0px;
    border: 0px;
}

/***FIRST STYLE THE BUTTON***/
button.cp_button_fileupload {
    cursor: pointer; /*forces the cursor to change to a hand when the button is hovered*/
    padding: 3px 10px; /*add some padding to the inside of the button*/
    background: #feffff; /*the colour of the button*/
    border: 1px solid #c0c0c0; /*required or the default border for the browser will appear*/
    /*give the button curved corners, alter the size as required*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    /*give the button a drop shadow*/
    /*-webkit-box-shadow: 1px 1px 2px rgba(0,0,0, .85);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0, .85);
    box-shadow: 1px 1px 2px rgba(0,0,0, .85);*/
    /*style the text*/
    /*color: white;*/
    /*font-size: 11px;
    font-weight: 600;*/
}
button.cp_button_fileupload:disabled {
    opacity: 0.50; 
    cursor: not-allowed;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
button.cp_button_fileupload:hover, button.cp_button_fileupload:focus {
    outline: none;
    /*background-color: #00004e;*/ /*make the background a little darker*/
    /*reduce the drop shadow size to give a pushed button effect*/
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0, .85);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0, .85);
    box-shadow: 1px 1px 1px rgba(0,0,0, .85);
}
button.cp_button_fileupload i.fa {
	padding-right: 4px;
}

.select2-container .select2-selection--single .select2-selection__rendered{
	text-overflow: clip;
}

