/********************
    Tables 
********************/

th {
    white-space: nowrap;
}

tr.inactive {
    color: #DDDDDD;
}

/********************
    Headings
********************/

.eptic-page-heading {
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

.eptic-subsection-heading, .eptic-page-heading {
    font-family: "Trebuchet MS";
    font-weight: bold;
    color: #069;
    border-bottom: 2px solid #069;
    width: max-content;
    margin-bottom: 0.5em;
    text-align: center;
    padding: 0em 1em 0em 0em;
}

.eptic-subsection-heading {
    margin-top: 2em;
}

.eptic-hr {
    border-width: 5px;
    border-color: #069;
}

/********************
    Forms and Buttons
********************/

.eptic-form-label {
    margin-top: 1em;
    font-weight: bold;
}

.eptic-btn-download {
    
}

.eptic-btn-add {
    color: #007BFF;
}

.eptic-btn-add, .eptic-btn-view, .eptic-btn-edit, .eptic-btn-delete {
    text-shadow: 2px 2px 4px #AAAAAA;
}

.eptic-btn-add:after{
    font-family: "Font Awesome 5 Free";
    content: "\f15c";
    margin-left: 6px;
}

.eptic-btn-work:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0ad";
    margin-right: 6px;    
}

.eptic-btn-view:before {
    font-family: "Font Awesome 5 Free";
    content: "\f06e";
    margin-right: 6px;
}

.eptic-btn-view {
    color: #218838;
}

.eptic-btn-edit:before {
    font-family: "Font Awesome 5 Free";
    content: "\f044";
    margin-right: 6px;
}

.eptic-btn-edit {
    color: orange;
}

.eptic-btn-delete:before {
    font-family: "Font Awesome 5 Free";
    content: "\f2ed";
    margin-right: 6px;
}

.eptic-btn-delete {
    color: red;
}


.eptic-form-button {
    width: 10em;
}

.eptic-save-button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0c7";
    margin-right: 6px;
}

.eptic-cancel-button:before {
    font-family: "Font Awesome 5 Free";
    content: "\f410";
    margin-right: 6px;    
}

.eptic-btn-align-view {
    color: #218838;    
}

.eptic-btn-align-undefined {
    color: #007BFF;
}

.eptic-btn-align-unavailable, .eptic-btn-align-notapplicable  {
    font-size: 1em;
    padding: 0.125em;
}

.eptic-btn-align-notapplicable {
    color: #AAAAAA;
    background-color: transparent;
}

.eptic-btn-align-unavailable {
    color: #AAAAAA;
    background-color: transparent;
}

/********************
Boxes
*********************/

.eptic-topmenu {
    background-color: whitesmoke;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
/*    margin: -10px 0px 20px 0px;
    padding: 5px;*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);    
}

.eptic-box-lighter {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    margin: 10px 0px 10px 0px;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.eptic-box-alert, .eptic-box-success {
    text-align: center;
    font-weight: bold;
    border: 1px solid black;
    border-radius: 10px;
    margin: 1em 0em 1em 0em;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);    
}

.eptic-box-alert {
    background-color: #FF6666;
}

.eptic-box-success {
    background-color: #CCFDCC;
}

.eptic-admin-details {
    background-color: #ccffcc;
    border-radius: 10px;
    margin-top: 1em;
}

.eptic-text-heading {
    font-size: x-large;
    font-weight: bold;
    background-color: white;
    margin: 2em 25% 2em 25%;
    border: solid #236699 1px;
    color: #236699;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);    
}

.eptic-xml-file {
    font-family: monospace;
}

/********************
Backgrounds
*********************/

.eptic-background-lighter {
    background-color: #EEEEEE;
}

/********************
Flash class and keyframe animation
*********************/

.message:before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    margin-right: 6px;
}

.message{
    color: white;
    font-weight: bold;
    background-color: #9c6;
    text-align: center;
    font-size: x-large;
    
    -webkit-animation: flash linear 1s;
	animation: flash linear 1s;
}
@-webkit-keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}
@keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}

/********************
Texts
*********************/

.eptic-text-title {
    font-weight: bold;
}

.eptic-text-language {
/*    background-color: #069;*/
    color: black;
    font-weight: bold;
    text-transform: uppercase;
}

.eptic-text-box {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    padding: 1em;
    background-color: #F8F9FA;
    margin-bottom: 1em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.eptic-text-unavailable {
    color: #AAAAAA;
    background-color: #DDDDDD;
}

.eptic-text-status-icon-missing, .eptic-text-status-icon-draft, .eptic-text-status-icon-submitted,
    .eptic-text-status-icon-approved, .eptic-text-status-icon-published {
        
    font-size: xx-large;
}

.eptic-text-status-icon-missing {
    text-shadow: 3px 3px 4px #EEEEEE;
}

.eptic-text-status-icon-draft {
    text-shadow: 3px 3px 4px #edb4b4;
}

.eptic-text-status-icon-submitted {
    text-shadow: 3px 3px 4px #f9dfc0;
}

.eptic-text-status-icon-approved {
    text-shadow: 3px 3px 4px #e5f9e5;
}

.eptic-text-status-icon-published {
    text-shadow: 3px 3px 4px #7aa6ff;
}

.eptic-text-status-missing, .eptic-text-status-draft,
    .eptic-text-status-submitted, .eptic-text-status-approved,
    .eptic-text-status-published  {
    
    font-size: medium;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.eptic-text-status-missing {
    background-color: #DDDDDD;
}

.eptic-text-status-draft {
    background-color: #ff6666;
    color: whitesmoke;
}

.eptic-text-status-submitted {
    background-color: #ffcc99;
}

.eptic-text-status-approved {
    background-color: #ccffcc;
}

.eptic-text-status-published {
    background-color: #387BFF;
    color: whitesmoke;
}

/********************
Alignments
*********************/

.eptic-alignments-list {
    display: none;
}

/********************
Buttons
*********************/

.eptic-button-toggle {
    cursor: pointer;
    font-size: small;
    font-weight: bold;
}

.eptic-button-toggle:hover {
    color: #236699;
}


/*********************
Effects
*********************/

.flash {
  -moz-animation: flash 1s ease-out;
  -moz-animation-iteration-count: 1;

  -webkit-animation: flash 1s ease-out;
  -webkit-animation-iteration-count: 1;

  -ms-animation: flash 1s ease-out;
  -ms-animation-iteration-count: 1;
}
