@font-face { font-family: "Inter"; font-style: normal; font-weight: bold;  src: url('../../fonts/Inter/Inter-Bold.woff2') format('woff2'); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 400;  src: url("../../fonts/Inter/Inter-Italic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500;  src: url("../../fonts/Inter/Inter-Medium.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600;  src: url("../../fonts/Inter/Inter-SemiBold.woff2") format("woff2"); }
@font-face {font-family: "Noto Sans TC"; src: url('../../fonts/Noto_Sans_TC/NotoSansTC.ttf') format('truetype'); font-weight: normal; font-style: normal; }

:root {
font-family: "Inter", "Noto Sans TC";
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}

/* Set root font size (1rem = ? px) */
html { font-size: 13px; }

body{min-width: 1540px; overflow: scroll;}

.content-container {
	margin-top: 10px;
	padding-left: 0px;
	padding-right: 10px;
}

/* Scroll bar for panel */
::-webkit-scrollbar {
    width: 8px;
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #a02337;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 8px;
}

::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}


/* Main Content Area */
.main-content {
  width: -webkit-fill-available;
  min-width: 950px;
/*   padding-right: 10px; */
/*   padding-left: 10px; */
/*   padding-bottom: 20px; */
  box-sizing: border-box;
	max-width: 100%;
	z-index: 3;
	overflow: visible;
}

#main-container {
	width: auto;
	display: grid; 
	max-width: 100%;
	grid-template-columns: 285px auto; 
	grid-template-rows: auto auto; /* Changed from 'auto 1fr' */
	gap: 1%;
	align-items: start;
	height: 100%; /* Changed from 100vh */
	min-height: 100vh; /* Changed from 1500px */
	margin: 0;
	padding: 0;
	z-index: 3;
	/* overflow: visible; */
}

.content-wrapper {
    margin-bottom: 20px;
    display: flex;
    gap: 1%;
    flex-direction: column; /* Changed from row to column */
    width: auto;
}

.enroll-info-wrapper {
	min-width: 1300px;
	width: auto;
	padding: 10px 10px 10px 10px;
  	position: relative;
  	box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.1), 0px 4px 6px -2px rgba(10, 13, 18, 0.05);
  	background-color: #fafafa;
  	height: auto;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	box-sizing: border-box;
  	gap: 16px;
  	text-align: left;
  	font-size: 1 rem;
  	color: #000;
  	z-index: 3;
  	overflow-x: auto; /* Allow horizontal scrolling if needed */
}

/* Info Block Styling */
.info-block {
	background: rgba(250, 250, 250, 0.95);
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 4px 6px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 3;
	text-align: left;
/* 	border-left: 4px solid #a02337; */
	line-height: 1.2rem;
	display: table;
	width: -webkit-fill-available;
	margin-left: 1%;
	margin-right: 2%;
	margin-top: 5px;
	margin-bottom: 20px;
}

.info-block h3 {
  color: #a02337;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0 0;
  padding-bottom: 8px;
  /* border-bottom: 2px solid #a02337; */
  position: relative;
  z-index: 20;
  text-align: left;
  background: rgba(250, 250, 250, 0.95);
}


.info-block div[style*="border-bottom:none"] {
  background: rgba(250, 250, 250, 0.95);
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 3px solid #a02337;
  font-style: italic;
  color: #666;
  position: relative;
  text-align: left;
}

/* Label Table inside Info Block */
.info-block .label-table {
  width: auto;;
  border-collapse: collapse;
  margin-top: 12px;
  background: rgba(250, 250, 250, 0.9);
  overflow: hidden;
  position: relative;
  z-index: 18;
/*   table-layout: fixed; ADD THIS */
}

.info-block .label-table colgroup col {
  border: none;
}

.info-block .label-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  text-align: left;
  line-height: 1.4;
  position: relative;
  z-index: 19;
  background: rgba(250, 250, 250, 0.9);
  word-wrap: break-word; /* ADD THIS */
  overflow-wrap: break-word; /* ADD THIS for modern browsers */
}

.info-block .label-table td:first-child {
  background-color: rgba(250, 250, 250, 0.9);
  color: #333;
  /* width: 25%; */
  position: relative;
  text-align: left;
}

.info-block .label-table tr:last-child td {
  border-bottom: none;
}


/* Edit Block Styling */
.edit-block {
  background: rgba(250, 250, 250, 0.95);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  text-align: left;
  line-height: 1.2rem;
  margin-left: 1%;
  margin-right: 2%;
  margin-top: 5px;
  margin-bottom: 20px;
}

.edit-block h3 {
  color: #a02337;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0 0;
  padding-bottom: 8px;
/*   border-bottom: 2px solid #a02337; */
  position: relative;
  z-index: 20;
  text-align: left;
  background: rgba(250, 250, 250, 0.95);
}

/* Space Table inside Edit Block */
.edit-block .space-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
  background: rgba(250, 250, 250, 0.9);
  overflow: hidden;
  position: relative;
  z-index: 18;
}

.space-table h4{
	line-height: 1rem;
	margin: 0;
}

.space-table ul{
	text-align: left;
  list-style: none;
  list-style-type: none;
  padding-bottom: 5px;
}

.space-table li{
  padding-bottom: 5px;
}

.space-table ul disc-list{
	line-width: 1rem;
}

.edit-block .space-table colgroup col {
  border: none;
}

.edit-block .space-table td {
  vertical-align: top;
  text-align: left;
  line-height: 1.5;
  position: relative;
  z-index: 19;
  background: rgba(250, 250, 250, 0.9);
  line-width: 1rem;
}

/* .edit-block .space-table td:first-child { */
/*   background-color: rgba(250, 250, 250, 0.9); */
/*   position: relative; */
/*   text-align: left; */
/*   border-bottom: none; */
/* } */

/* .edit-block .space-table tr:last-child td { */
/*   border-bottom: none; */
/* } */

/* Wide Input Styling for Edit Block */
.wide-input {
	width: auto;
	padding: 5px 8px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	vertical-align: middle;
	background: #fff;
	box-sizing: border-box;
	margin: 0;
	height: auto;
	position: relative;
	z-index: 19;
	font-family: inherit;
	font-size: inherit;
}

.narrow-input {
  width: 30%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1rem;
  vertical-align: middle;
  background: #fff;
  box-sizing: border-box;
  margin: 0;
  height: auto;
  position: relative;
  z-index: 19;
}

/* Disabled state for both inputs */
.edit-block .wide-input:disabled,
.edit-block .wide-input[disabled],
.edit-block .narrow-input:disabled,
.edit-block .narrow-input[disabled] {
    /* Visual tone-down */
    background: #f5f5f5;      /* light grey fill */
    color: #999;              /* dimmed text */

    /* Softer border */
    border-color: #ccc;

    /* Make it obvious that the field cant be clicked */
    cursor: not-allowed;

    /* Block any accidental pointer events in very old browsers */
    pointer-events: none;
}

/***** RichFaces Calendar *****/ 

.rich-calendar-input{
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1rem;
  vertical-align: middle;
  background: #fff;
  box-sizing: border-box;
  margin: 0;
  height: auto;
  position: relative;
  z-index: 19;
}

.rich-calendar-exterior {
	border-color: #888;
}

.rich-calendar-days {
	background: #fff;
}

.rich-calendar-cell {
	background: #fff;
}

.rich-calendar-toolfooter {
	background: #fff;
}

.rich-calendar-time-layout {
	background: #fff;
	border: 1px solid #888;
}

.rich-calendar-date-layout {
	background: #fff;
	border: 1px solid #888;
}

.rich-calendar-time-btn {
	background: #e6e6e6;
	border-color: #888;
}

.item-amount {
  width: 30%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1rem;
  vertical-align: middle;
  background: #fff;
  box-sizing: border-box;
  margin: 0;
  height: auto;
  position: relative;
  z-index: 19;
}

/* Field Labels in Edit Block */
.edit-block .personal-details-field-label,
.edit-block .field-label {
	color: #333;
/*   font-size: 1rem; */
  white-space: nowrap;
  min-width: 150px;
  background: rgba(250, 250, 250, 0.9);
  position: relative;
  text-align: left;
  text-wrap: auto;
}

.loose-paragraph li {
  margin-bottom: 8px;
  padding: 0;
  position: relative;
  text-align: left;
}


/* Error Box - Red Background */
.errorbox {
  background: rgba(220, 53, 69, 0.15);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 20px;
  box-shadow: 0 2px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  text-align: left;
  border-left: 4px solid #8b0000; /* Darker red border */
  line-height: 1.3rem;
  margin-top: 5px;
  margin-left: 1%;
  margin-right: 2%;
  }

.errorbox .rich-messages-label {
  color: #000; /* Changed to black */
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 20;
  text-align: left;
}

/* Blue Box - Tiffany Blue Background */
.bluebox {
  background: rgba(64, 224, 208, 0.15);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 20px;
  box-shadow: 0 2px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  text-align: left;
  border-left: 4px solid #008080; /* Darker teal border */
    line-height: 1.3rem;
  margin-top: 5px;
    margin-left: 1%;
  margin-right: 2%;
}

.bluebox .rich-messages-label {
  color: #000; /* Changed to black */
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 20;
  text-align: left;
}

/* Info Box - Pale Green Background */
.infobox {
  background: rgba(144, 238, 144, 0.15);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 20px;
  box-shadow: 0 2px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  text-align: left;
  border-left: 4px solid #006400; /* Darker green border */
  line-height: 1.3rem;
  margin-top: 5px;
    margin-left: 1%;
  margin-right: 2%;
  }

.infobox .rich-messages-label {
  color: #000; /* Changed to black */
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 20;
  text-align: left;
}

/* Grey Box - Grey Background */
.greybox {
  background: rgba(128, 128, 128, 0.15);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 20px;
  box-shadow: 0 2px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  text-align: left;
  border-left: 4px solid #2f2f2f; /* Darker grey border */
  line-height: 1.3rem;
  margin-top: 5px;
    margin-left: 1%;
  margin-right: 2%;
}

.greybox .rich-messages-label {
  color: #000; /* Black text */
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 20;
  text-align: left;
}


.panel-button, 
.fileupload-upload-btn,
.fileupload-remove-btn,
.fileupload-preview-btn {
	position: relative;
  background: #a02337 !important;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  padding: 10px 28px;
  text-align: center;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  min-width: 110px;
  height: auto;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.08);
  z-index: 10;
  cursor: pointer;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #a02337;
    color: #fff;
    border: none;
    border-radius: 4px !important;
    padding: 0.4em 1.2em;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.08);
    margin: 0;
}

.panel-button:first-child,
.fileupload-upload-btn:first-child,
.fileupload-remove-btn:first-child {
  margin-left: 0;
  margin-bottom: 10px;
  margin-right: 8px;
}

/* Disabled Buttons */
/* Disabled state - grey styling */
.panel-button:disabled,
.panel-button[disabled],
.fileupload-upload-btn:disabled,
.fileupload-upload-btn[disabled],
.fileupload-remove-btn:disabled,
.fileupload-remove-btn[disabled] {
  background: #6c757d !important;  /* Grey background */
  color: #fff !important;          /* Keep white text for contrast */
  cursor: not-allowed;             /* Show disabled cursor */
  opacity: 0.6;                    /* Slight transparency */
  box-shadow: none;                /* Remove shadow for flat look */
}


/* Student Info Table */
/* Table container styling */
.info-table {
    width: auto;;
    min-width: 600px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 10px;
}

/* Table full width styling */
.info-table .dr-table,
.info-table .rich-table {
    width: auto !important;
    min-width: 600px !important;
    table-layout: auto;
    border-collapse: collapse;
}

/* Header styling - grey background and padding */
.dr-table-thead,
.dr-table-subheader,
.rich-table-subheader {
    background-color: #f5f5f5 !important;
    background-image: none !important;
}

.dr-table-subheadercell,
.rich-table-subheadercell {
    background-color: #f5f5f5 !important;
    background-image: none !important;
    text-align: left !important;
    font-weight: bold;
    /* border-bottom: 1px solid #ddd; */
	padding: 5px 0 10px 3px !important;
}

/* Header content alignment */
.dr-table-subheadercell div,
.rich-table-subheadercell div {
    text-align: left; 
    padding-top: 8px;
/*     padding-left: 3px; */
}

/* Ensure table cells maintain consistent width */
.dr-table-cell,
.rich-table-cell {
	padding: 8px 0px 8px 3px;
    /* border-bottom: 1px solid #eee; */
    vertical-align: top;
}

/* Remove colgroup width constraints to allow full width */
.info-table colgroup,
.info-table col {
    width: auto !important;
}

/* specific column width to override auto */

table[id*="subregTable"] .info-table colgroup,
table[id*="subregTable"] .info-table col {
    width: initial !important; /* or specify a width */
}
/* subreg Table*/
table[id*="subregTable"] th:nth-child(1), 
table[id*="subregTable"] td:nth-child(1) {
    width: 10% !important;
}

table[id*="subregTable"] th:nth-child(2), 
table[id*="subregTable"] td:nth-child(2) {
    width: 30% !important;
}

table[id*="subregTable"] th:nth-child(3), 
table[id*="subregTable"] td:nth-child(3) {
    width: 7% !important;
}

table[id*="subregTable"] th:nth-child(4), 
table[id*="subregTable"] td:nth-child(4) {
    width: 10% !important;
}

table[id*="subregTable"] th:nth-child(5), 
table[id*="subregTable"] td:nth-child(5) {
    width: 13% !important;
}

/* waitList Table*/
table[id*="waitListTable"] th:nth-child(1), 
table[id*="waitListTable"] td:nth-child(1) {
    width: 10% !important;
}

table[id*="waitListTable"] th:nth-child(2), 
table[id*="waitListTable"] td:nth-child(2) {
    width: 30% !important;
}

table[id*="waitListTable"] th:nth-child(3), 
table[id*="waitListTable"] td:nth-child(3) {
    width: 7% !important;
}

table[id*="waitListTable"] th:nth-child(4), 
table[id*="waitListTable"] td:nth-child(4) {
    width: 10% !important;
}

table[id*="waitListTable"] th:nth-child(5), 
table[id*="waitListTable"] td:nth-child(5) {
    width: 13% !important;
}

/* Preferred subject table */
table[id*="preferedTable"] th:nth-child(1), 
table[id*="preferedTable"] td:nth-child(1) {
    width: 10% !important;
}

table[id*="preferedTable"] th:nth-child(2), 
table[id*="preferedTable"] td:nth-child(2) {
    width: 30% !important;
}

table[id*="preferedTable"] th:nth-child(3), 
table[id*="preferedTable"] td:nth-child(3) {
    width: 7% !important;
}

table[id*="preferedTable"] th:nth-child(4), 
table[id*="preferedTable"] td:nth-child(4) {
    width: 10% !important;
}

table[id*="preferedTable"] th:nth-child(5), 
table[id*="preferedTable"] td:nth-child(5) {
    width: 13% !important;
}

/* Service Learning Table */
table[id*="SLTable"] th:nth-child(1), 
table[id*="SLTable"] td:nth-child(1) {
    width: 10% !important;
}

table[id*="SLTable"] th:nth-child(2), 
table[id*="SLTable"] td:nth-child(2) {
    width: 30% !important;
}

table[id*="SLTable"] th:nth-child(3), 
table[id*="SLTable"] td:nth-child(3) {
    width: 7% !important;
}

table[id*="SLTable"] th:nth-child(4), 
table[id*="SLTable"] td:nth-child(4) {
    width: 10% !important;
}

/* subreg Unqualified history table */
table[id*="subregHistoryTable"] th:nth-child(1), 
table[id*="subregHistoryTable"] td:nth-child(1) {
    width: 10% !important;
}

table[id*="subregHistoryTable"] th:nth-child(2), 
table[id*="subregHistoryTable"] td:nth-child(2) {
    width: 37% !important;
}


table[id*="subregHistoryTable"] th:nth-child(3), 
table[id*="subregHistoryTable"] td:nth-child(3) {
    width: 10% !important;
}

table[id*="subregHistoryTable"] th:nth-child(4), 
table[id*="subregHistoryTable"] td:nth-child(4) {
    width: 10% !important;
}

table[id*="subregHistoryTable"] th:nth-child(5), 
table[id*="subregHistoryTable"] td:nth-child(5) {
    width: 20% !important;
}

table[id*="subregHistoryTable"] th:nth-child(6), 
table[id*="subregHistoryTable"] td:nth-child(6) {
    width: 15% !important;
}



.panel-button .auto-submit{
	background: #ffffff;
}


/* Section Header */
.list-header-text {
	position: relative;
	line-height: 14px;
	padding-right: 0; /* Make sure no right padding */
    width: auto; /* Don't force full width */
    text-align: center;
}
.section-header-child {
	width: auto;
	position: relative;
	max-height: 1px;
	max-width: 100%; /* Set maximum width */
	flex-shrink: 1; /* Allow SVG to shrink */
	margin-left: 0;
	flex-grow: 1;   /* Take up all available space */
    flex-shrink: 1; /* Allow shrinking if needed */
    flex-basis: 0;  /* Start at 0 width */
    min-width: 0;   /* Prevent overflow issues */
    vertical-align: top;
  	/* display: inline-block;  /* ensure vertical-align works as expected */
  	display: none;
}
.section-header {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	text-align: left;
	font-size: 18px;
	color: #a02337;
	margin-bottom: 10px;
}


/* Calender */
/* .rich-calendar-popup { */
/* 	z-index: 10 !important; */
/* 	position: inherit !important; */
/* 	left: 0 !important; */
/* 	top: 0 !important; */
/* } */

/* .rich-calendar-date-layout { */
/*     border: 1px solid; */
/*     position: relative; */
/*     background: white !important; */
/* } */

/* Dropdown list */
.dropdown-style {
	appearance: none;           /* Remove default styling (most browsers) */
    -webkit-appearance: none;   /* Safari/Chrome */
    -moz-appearance: none;      /* Firefox */
	width: auto;
	min-width: 10px;
    background: #f9f9f9;
    border: 0.5px solid #d1d1d6;
    border-radius: 8px;
    padding: 5px 20px 5px 5px;
    margin-right: 10px;
    font-size: 15px;
    color: #222;
    outline: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
    height: auto;
    cursor: pointer;
    position: relative;
    font-size: inherit;
    font-family: inherit;
}

.dropdown-style:disabled {
    background: #f5f5f5;
    border: 0.5px solid #e0e0e0;
    border-radius: 4px;
    padding-left: 2px;
    font-size: auto;
    color: #999;
    outline: none;
    box-shadow: none;
    transition: none;
    height: auto;
    cursor: not-allowed;
    position: relative;
    width: 100%;
    opacity: 0.6;
}

/* Custom dropdown arrow */
.dropdown-style {
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548a1 1 0 0 1 1.415 0L10 10.616l3.07-3.068a1 1 0 1 1 1.415 1.414l-3.777 3.778a1 1 0 0 1-1.415 0L5.516 8.962a1 1 0 0 1 0-1.414z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 18px 18px; 
}

.dropdown-style:focus {
    border-color: #a02337; /* red highlight */
    box-shadow: 0 0 0 2px rgba(0,122,255,0.15);
}

.dropdown-style option {
    color: #222;
    background: #fff;
    font-size: 1rem;
}

/* Popup */

/* Remove default header text styling */
/* .rich-mpnl-header, */
/* .dr-mpnl-pnl-h { */
/*     background: none !important; */
/*     color: inherit !important; */
/*     font-size: inherit !important; */
/*     font-weight: inherit !important; */
/*     padding: 0 !important; */
/*     margin: 0 !important; */
/*     box-shadow: none !important; */
/*     border: none !important; */
/*     display: flex; */
/*     align-items: center; */
/*     justify-content: space-between; */
/* } */

/* Style the modal panel content like your container */
.rich-mp-content {
    width: 100%;
    position: relative;
    box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.1), 0px 4px 6px -2px rgba(10, 13, 18, 0.05);
    background-color: #fafafa;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 16px;
    text-align: left;
    font-size: 1rem;
    color: #000;
    z-index: 3;
    overflow-x: auto;
    border: none;
}

.rich-mpnl-header{
	background-color: #a02337 !important;
    background-image: none !important;
    color: #ffffff !important;
    padding-bottom: 10px !important;
    text-align: center !important;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-top: 5px;
}

.rich-mpnl-header b#btitle{
	font-color: #a02337;
}

.rich-mpnl-body{
	background-color: #f5f5f5 !important;
    background-image: none !important;
    padding-bottom: 10px !important;
    text-align: left !important;
    font-weight: bold;
    border-bottom: 1px solid #ddd;	
}

/* Column (Odds) Style */

.col-odds {
  background-color: rgba(250, 250, 250, 0.9);
  font-weight: 600;
  color: #333 !important;
  width: auto;
  position: relative;
  text-align: left;
}

/* Search Buttons*/
.autoCompleteSelectBtn {
    background: url('../img/button-bg.png') repeat-x bottom #fff;
	border: 1px solid #c0c0c0;
	height: 24px;
    padding: 0 1em;
	overflow: visible;
    color: #c56a58; 
    font-size: 11px;
	font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
	*filter:chroma(color=#000000);
	vertical-align: top;
}

.hidden {
    display: none;
}

.toggle > h3 {
    cursor: pointer;
}

.toggle .toggle-closed {
    background: url(../../img/toggle-arrow-down.png) right center no-repeat;
    display: block;
}

.toggle .toggle-opened {
    background: url(../../img/toggle-arrow-up.png) right center no-repeat;
    display: block;
}

.rfloat {
    float: right;
}

/***** Clearfix *****/
.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

* .clearfix {
	display: block;
}

/***** RichFaces - dataTable *****/
table.label-table .field-label {
    text-align: right;
    padding-right: 1em;
/*     white-space: nowrap; */
    font-weight: bold;
}

table.space-table td {
/*     padding: 4px 4px 4px 0px; */
}

.rich-table {
/* 	border: 1px solid black; */
	width: 100%;
/* 	font-size: 1rem; */
}

.rich-table-headercell, .rich-table-subheadercell, .rich-table-subfootercell {
/* 	border: 1px solid black; */
	white-space: normal;
}

.rich-table-cell{
	text-align: left;
	vertical-align: top;
	/* 	border: 1px solid black; */
}

.rich-table-header, .rich-table-subheader {
	background: #eee none;
	font-weight: bold;
}

.dr-table-thead, .dr-table-subheader, .rich-table-subheader {
    background-color: #f5f5f5 !important;
    background-image: none !important;
    /* border: 1px solid black; */
    border-bottom: 1px solid grey;
}

.rich-table-odd {
	background: #ffffff;
}

.rich-table-even {
	background: #fafafa;
}

.rich-table-even2 {
	background: #fafafa;
}

/***** List Formation *****/
ol.decimal-list {
	padding-left: 1.5em;
	list-style: decimal outside none;
}

ol.decimal-list li {
	text-align: justify;
	padding: 0.5em 1em;
}

ul.disc-list {
    padding-left: 1.5em;
    list-style: disc outside none;
}

.decimal-list {
    padding-left: 35px;
    margin: 10px;
}

/***** Subreg Progress Bar [START] *****/
.progress-bar-wrapper {
	font-size: 0px;
	position: relative;
	padding-bottom: 10px;
	z-index: 3;
	margin: 10px;
}

/* progress bar element */
.progress-label {
	font-size: 1rem;
	min-width: 130px;
	background: #bab4b4;
	border: 1px solid transparent;
	position: relative;
	height: 40px;
	display: inline-block;
	padding: 0px;
	margin: 0px;
	text-align: center;
	color: #fff;
	line-height: 40px;
	padding: 0px 20px 0px 40px;
}

/* right triangles */
.progress-label:before,
.progress-label:after {
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	width: 0;
	height: 0;
	border-style: solid;
}

/* this border color controlls the outside, thin border */
.progress-label:before {
	top: -2px;
	border-color: transparent transparent transparent white;
	border-width: 22px 22px;
}

/* this border color controlls the color of the triangle (what looks like the fill of the triangle) */
.progress-label:after {
	top: -1px;
	border-color: transparent transparent transparent #bab4b4;
	border-width: 21px 21px;
}
	
.progress-label.highlight {
	background: #a02337;
	font-weight: bold;
}

.progress-label.highlight:after {
	border-color: transparent transparent transparent #a02337;
}

/* left triangle for the first element*/
.progress-tri {
	border-style: solid;
	width: 0px;
	height: 0px;
	line-height: 0px;
	border-width: 0px 100px 100px 100px;
	border-color: transparent transparent transparent white;
	_border-color: transparent transparent transparent white;
	_filter: progid: DXImageTransform.Microsoft.Chroma(color='#000000');
	border-color: transparent transparent transparent white;
	border-width: 22px 22px 22px 22px;
	position: absolute;
	top: -1px;
	left: -1px;
	z-index: 200;
}
/***** Subreg Progress Bar [END] *****/

.disc-list li {
	list-style-type: disc;
}

.bin-button{
	position: relative;
  background: #a02337 !important;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  text-align: center;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  height: auto;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.08);
  margin-left: 10px;
  z-index: 10;
  cursor: pointer;
	width: auto;
    height: auto;
padding: 1px 10px;
    display: block;
    object-fit: contain;
    max-width: auto;
    max-height: auto;
}

.gpa li {
    list-style: none;
}

.warning-message {
    color: #ff0000;
    text-align: justify;  
}

/* Navigation Bar Highlight*/
.menu li ul li a.active {
    background-color: white;
    color: #a02337 !important;
    border-radius: 5px;
    margin: 0 15px;
}

.button-block{
	margin-right: 2%;
	margin-left: 1%;
}