html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Lato', sans-serif;
}

.cancel_process{
	color: blue;
}
.cancel_process:hover{
	color: red;
	cursor: pointer;
}

.errorText {
	color:red;
}

.job_batch{
	text-align:center;
	background-color:white;
	color:black;
	width:500px;
	border:1px solid black;
	opacity:1;
	padding-bottom: 1%;
	overflow-y: auto;
	padding : 1%;
    /* max-height: 84%; */
	/* max-height: 100px; */
}

.uploaded_text {
	text-align : right;
}

.file_count {
	text-align : left;
}
 
.modal-width {
	max-width : 850px;
}

.progress-div{
	display: flex;
}

.files_count{
	display: inline;
}

.my_progress{
height:100%;
margin-top: 0px;
width: 100%;

}

.uploaded{
	display: inline;
}

.navbar, .page-footer, .page-footer input, .box-header, .btn-download {
    background-color: #8F001C;
    border-radius: 0;
}

h1 {
  /* font-size: 30px !important; */
  padding-bottom: 15px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 20px;
}

p {
  font-size: 14px;
  line-height: 18px;
}

.box-form, .boxform a, .edit a {
  font-size: 12px !important;
  line-height: 16px;
  text-align: left;
  color: #636363;
}

.logo {
  margin-bottom: 30px;
}

.navbar {
  display: initial;
  min-height: 25px !important;
  margin-bottom: 20px;
  padding: 0 0;

}

.page-footer {
  flex-shrink: 0;
  margin-top: 50px;
  color: #fff !important;
  text-align: right;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-top: 30px;
}

.page-footer input {
  border: 1px solid #fff;
  padding: 6px;
  margin-left: 40px;
  outline: none;
}

.page-footer input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

.btn-footer {
  background-color: #fff;
  color: #000;
  border-radius: 0px;
  vertical-align: bottom;
  margin-left: 10px;
}

.btn:focus,.btn:active:focus,.btn.active:focus,
.btn.focus,.btn:active.focus,.btn.active.focus {
    outline: none;
    box-shadow: none;
}

.notifications {
  padding: 30px 0;
  margin-bottom: 20px;
}

.copyright {
  padding: 5px 0;
  font-size: 11px;
}

.no-spacing {
	white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
  padding: 0 0 0 0 !important;
  margin: 0 0 0 0 !important;
}

.file-info {
	word-wrap: break-word;
  padding: 0 0 0 0 !important;
  margin: 0 0 0 0 !important;
}

/* Individual Page CSS */

.box {
  width: 100%;
}

.box-header {
    width: 100%;
    padding: 5px 0px 5px 15px;
    position: relative;
    color: #FFF;
    margin-top: 10px;
}

.list li {
  width: 50%;
  list-style: none;
  float: left;
  text-align: center;
  padding: 40px 0px;
  background-color: #f2f2f2;
  border-bottom: 10px solid #fff;
  /* border-right: 10px solid #fff; */
}

.list a {
  color: #000;
  text-decoration: none;
}

.list li:nth-child(2n) {
  border-right: none;
}

.list li:last-child {
  border-bottom: none;
}

.list img {
  margin-bottom: 20px;
}

.list {
  margin-bottom: 0px;
  width: 100%;
}

.download {
  text-align: center;
}

.download-email {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 6px;
  outline: none;
  width: 100%;
}

.btn-download {
  color: #fff;
  border-radius: 0px;
  vertical-align: bottom;
  width: 100%;
  margin-top: 10px;
}

.btn-delete {
  background-color: #636363;
}


/*Page 2*/
.breadcrumbs{
  --cssuiBreadcrumbsTextColor: var(--breadcrumbsTextColor);
  --cssuiBreadcrumbsTextColorActive: var(--breadcrumbsTextColorActive);
  --cssuiBreadcrumbsDivider: var(--breadcrumbsDivider);
  --cssuiBreadcrumbsDividerColor: var(--breadcrumbsDividerColor, inherit);
  --cssuiBreadcrumbsDividerSize: var(--breadcrumbsDividerSize, 16px);
  --cssuiBreadcrumbsIndent:  var(--breadcrumbsIndent, 8px);
  
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;

  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs__item{
  display: inline-block;
  position: relative;
 
  padding-right: calc(var(--cssuiBreadcrumbsDividerSize) + var(--cssuiBreadcrumbsIndent));
  margin-right: var(--cssuiBreadcrumbsIndent);
  
  color: var(--cssuiBreadcrumbsTextColor);
}

.breadcrumbs__item:after{
  content: var(--cssuiBreadcrumbsDivider);
  width: var(--cssuiBreadcrumbsDividerSize);
  height: var(--cssuiBreadcrumbsDividerSize);

  line-height: 1;
  text-align: center;
  
  font-family: inherit;
  font-size: var(--cssuiBreadcrumbsDividerSize);
  color: var(--cssuiBreadcrumbsDividerColor);

  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.breadcrumbs__item_active{
  margin-right: 0;
  padding-right: 0;
  color: var(--cssuiBreadcrumbsTextColorActive);
}

.breadcrumbs__item_active:after{
  display: none;
}
.breadcrumbs__element{
  color: inherit;
}


.breadcrumbs_type5{
  --breadcrumbsDivider: "›";
  --breadcrumbsDividerSize: 20px;
}

.nav_section {
  margin-bottom: 15px;
  width: 100%;
}

.new_tag{
	position: absolute;
top: 0px;
right: 1px;
}

/* list of image boxes */
.collections-list {
  display: -webkit-flex; /* Safari */
  display:flex;
  flex-direction: row;
  flex-flow:row wrap;
  justify-content:space-around;
}

.collection-content {
  /*width: 20%;*/
  /* padding: 8px 8px 8px 0px; */
  vertical-align: top;
  line-height: 1.6em;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  position: relative;
  padding-bottom: 5px;
    padding-right: 2px;
}

.box-form {
  background-color: #f5f5f5;
  padding: 12px;
}

.box-form img {
  display: block;
  width: 100%;
}

.box-form > .checkbox {
  padding-bottom: 10px;
}

.download-select label, .download-select input[type="checkbox"], .upload-select label, .upload-select input[type="checkbox"] {
  font-size: 14px;
  margin-right:0 !important;
}

/* Sidebar checkbox */
.checkbox {
  width: 25px;
  margin-top: 10px;
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

/* Create the box for the sidebar checkbox */
.checkbox label {
    cursor: pointer;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    background: #eee;
    border:1px solid #bbb;
}

/* Display the tick inside the sidebar checkbox */
.checkbox label:after {
    opacity: 0;   /* set to 0.1 to work like earlier */
    content: '';
    position: absolute;
    width: 11px;
    height: 7px;
    background: transparent;
    top: 6px;
    left: 6px;
    border: 2px solid #333;
    border-top: none;
    border-right: none;

    transform: rotate(-45deg);
}

/* Create the hover event of the tick,*/
.checkbox label:hover::after {
    opacity: 0.5;
}

/* Create the checkbox state for the tick */
.checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.box-form > .checkbox, .box-form > .checkbox label {
    display: block;
    margin: 0;
    margin-bottom: 10px;
}

.complete label {
    border:1px solid green;
}

.complete label:after {
      opacity: 0.1;
    content: '';
    position: absolute;
    width: 11px;
    height: 7px;
    background: transparent;
    top: 6px;
    left: 6px;
    border: 2px solid green;
    border-top: none;
    border-right: none;

    transform: rotate(-45deg);
}

.pending label {
    border:1px solid orange;
}

.pending label:after {
      opacity: 0.1;
    content: '';
    position: absolute;
    width: 11px;
    height: 7px;
    background: transparent;
    top: 6px;
    left: 6px;
    border: 2px solid orange;
    border-top: none;
    border-right: none;

    transform: rotate(-45deg);
}

.box-form input[type="radio"]{
  margin: 0px 5px 0px 5px;
}

.form-group {
  margin-top: 10px;
}

.download-select p, .upload-select p {
  margin: 20px 0px 0px;
}

.download-select label:first-child, .upload-select label:first-child {
  margin-bottom: 10px;
}

.download-select label, .download-select input[type="checkbox"], .upload-select label, .upload-select input[type="checkbox"] {
  margin-right: 5px;
}

.email {
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}

.selected-photos {
  margin-top: 10px !important;
}

.secret-child {
    width:20%; /*the width of the images in this example*/
    height:0; /*Important! for the divs to collapse should they fall in a new row*/
}

.list img {
  max-width: 120px;
  min-height: 120px;
}




/* Page 3: Upload */
.delete {
  transform: rotate(-45deg);
  max-width: 15px;
  margin-left: auto;
  margin-bottom: 10px;
  opacity: 0.5;
  margin-top: 10px;
}

.edit {
    text-align: center !important;
    margin-bottom: 5 px;
}

.edit a{
  text-decoration: underline;
  color: #212529;
}

.file-upload {
  border: 0px solid gray;
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.file-upload img {
    width: 100%;
    height: 80px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.3;
}

.upload {
  text-decoration: underline;
  color: #212529;
}

.upload-select > .email {
  margin-bottom: 0;
}

.details {
  margin-top: 30px;
  font-size: 16px !important;
  line-height: 24px;
}

.order-status {
  margin-left: 45px;
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 11px;
}

.checked {
  margin: 0 !important;
}

.checked:before {
  content: '✓ ';
}

.existing-bg li {
  margin-left: 10px;
}

.existing-bg {
  padding: 0;
  list-style-type: none;
  text-align: left;
  margin-bottom: 5px;
}

.bg-upload img {
    max-height: 75px;
    margin-top: 10px;
}

.bg-upload-row .box-form {
    height: 90%;
}
