.fade {
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  opacity: 1;
}
.fade.ng-enter,
.fade.ng-leave {
  position: absolute;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fade.ng-enter {
  opacity: 0;
}
.fade.ng-enter-active {
  opacity: 1;
}
.fade.ng-leave {
  opacity: 1;
}
.fade.ng-leave-active {
  opacity: 0;
}
.fade-show {
  transition: 0.2s linear all;
  opacity: 1;
}
.fade-show.ng-hide {
  opacity: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: "Trebuchet MS", Arial, sans-serif;
}
html,
body,
#Wrapper {
  height: 100%;
  font-size: 13px;
  background: #FFF;
}
#Main {
  background: #FFF;
  padding-bottom: 20px;
}
#PortalView {
  min-height: 200px;
}
#PortalDashboard {
  background: #FFF;
  position: relative;
}
a {
  text-decoration: none;
  outline: none;
}
p {
  font-weight: bold;
  margin: 0;
}
table {
  width: 100%;
  text-align: left;
  table-layout: fixed;
  vertical-align: text-top;
}
table caption {
  text-align: left;
  color: #515d64;
  font-size: 1.5em;
  padding: 12px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
table .right {
  text-align: right;
}
table .center {
  text-align: center;
}
table th {
  background: #f5f7f8;
  font-weight: normal;
}
table th:first-child {
  border-radius: 5px 0 0 5px;
}
table th:last-child {
  border-radius: 0 5px 5px 0;
}
table th,
table td {
  text-align: left;
  vertical-align: middle;
  padding: 10px 10px 10px 5px;
}
table th.right,
table td.right {
  padding: 10px 5px 10px 10px;
}
table tbody tr {
  height: 50px;
  background: #FFF;
}
table tbody tr.odd {
  background: #FFF;
}
table tbody tr td {
  overflow: hidden;
}
table tbody tr td a {
  color: #6ab5bc;
  text-align: right;
}
table tbody tr + tr:not(.binded-text) {
  border-top: 1px solid #f5f7f8;
}
table tfoot tr + tr td + td {
  border-top: 1px solid #f5f7f8;
}
.button {
  display: block;
  background: #6ab5bc;
  color: #FFF;
  border: none;
  height: 50px;
  width: 150px;
  border-radius: 5px;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
  padding-left: 40px;
  position: relative;
  outline: none;
}
.button-before {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 2.6em;
}
.rotate {
  transform: rotate(-90deg);
  display: inline-block;
}
.accent {
  color: #6ab5bc !important;
}
.strong {
  font-weight: bold;
}
button {
  outline: none;
  display: block;
  background: #6ab5bc;
  color: #FFF;
  border: none;
  height: 50px;
  width: 150px;
  border-radius: 5px;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
  padding-left: 40px;
  position: relative;
}
button:before {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 2.6em;
}
#ClientPortal {
  width: 1200px;
  margin: 0 auto;
}
#PortalEdit,
#PortalView {
  display: inline-block;
  vertical-align: text-top;
}
#PortalView {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
#LoadingScreen {
  height: 200px;
  margin-top: 20px;
  position: relative;
}
#LoadingScreen span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
}
#LoadingScreen span:before {
  font-size: 2em;
  color: #515d64;
}
.infomessage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  color: #6ab5bc;
}
.message {
  background: #0A0;
  opacity: 0.6;
  color: #FFF;
  border-radius: 5px;
  height: 30px;
  white-space: nowrap;
  line-height: 30px;
  text-align: center;
  padding: 0 40px;
  position: fixed;
  top: 70px;
  left: 50%;
  z-index: 12;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
}
.message.warning {
  background: #cd8226;
}
.message.error {
  background: #F00;
}
#login_selector {
  position: fixed;
  width: 320px;
  top: 25%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
}
#LoginForm {
  position: fixed;
  width: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
}
#LoginForm p {
  color: #6ab5bc;
  font-size: 30px;
  text-align: left;
}
#LoginForm input {
  display: block;
  width: 300px;
  padding: 10px;
  margin: 20px auto;
  border-radius: 5px;
  border: 1px solid #DDD;
  outline: none;
  box-shadow: 1px solid #DDD;
}
#LoginForm button {
  float: left;
  margin-bottom: 10px;
}
#LoginForm .button {
  float: right;
  margin: 0 0 10px 10px;
  line-height: 50px;
  width: 150px;
}
#LoginForm .button::before {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 2.6em;
}
#LoginForm a {
  display: inline-block;
  color: #6ab5bc;
  margin-top: 10px;
}
#LoginForm a:hover {
  text-decoration: underline;
}
#LoginForm span {
  display: block;
  margin-top: 10px;
  cursor: pointer;
  float: left;
  width: 320px;
}
#LoginForm span:hover {
  text-decoration: underline;
}
#TopBar .container-wrapper {
  min-height: 150px;
}
#TopBar .container-wrapper .container {
  width: 1200px;
  margin: 0 auto;
  text-align: right;
  padding: 20px;
  min-height: 100px;
}
#TopBar .container-wrapper .container img {
  padding: 20px 0 0 0;
}
#TopBar .container-wrapper .container .logoname-container {
  padding: 50px;
}
#TopBar .container-wrapper .container .logoname-container p {
  color: #6ab5bc;
  font-size: 40px;
  text-align: center;
}
#PortalWelcome {
  height: 190px;
  background: #f5f7f8;
  border-bottom: 1px solid #DDD;
  border-top: 1px solid #DDD;
}
#PortalWelcome #PortalWelcomeWrapper {
  background: #f5f7f8;
  padding: 25px 0;
  width: 1200px;
  margin: 0 auto;
  height: 140px;
}
#PortalWelcome #PortalWelcomeWrapper #PortalWelcomeMessage {
  height: 140px;
  position: relative;
  vertical-align: top;
  width: 45%;
  display: inline-block;
}
#PortalWelcome #PortalWelcomeWrapper #PortalWelcomeMessage blockquote {
  color: #6ab5bc;
  font-size: 3em;
  margin: 0;
  padding: 10px 0;
}
#PortalWelcome #PortalWelcomeWrapper #PortalWelcomeMessage blockquote span {
  color: #333;
  margin-left: 10px;
  font-size: 0.7em;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  top: -5px;
}
#PortalWelcome #PortalWelcomeWrapper #PortalWelcomeMessage #PortalDashboardInfo {
  height: 45px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#PortalWelcome #PortalWelcomeWrapper #PortalWelcomeMessage #PortalDashboardInfo a {
  position: relative;
  top: -5px;
}
#PortalWelcome #PortalWelcomeWrapper p {
  font-weight: normal;
  vertical-align: middle;
  margin: 0;
}
#PortalWelcome #PortalWelcomeWrapper a.dashboardback {
  display: inline-block;
  color: #333;
  height: 48px;
  line-height: 0;
  vertical-align: middle;
  border: 1px solid #DDD;
  background: #FFF;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
}
#PortalWelcome #PortalWelcomeWrapper a.dashboardback:hover {
  text-decoration: none;
  color: #FFF;
  background: #6ab5bc;
}
#PortalWelcome #PortalWelcomeWrapper a.dashboardback span {
  display: inline-block;
  height: 25px;
  line-height: 35px;
  padding: 0 5px;
}
#PortalWelcome #PortalWelcomeWrapper a.dashboardback .backbox {
  display: inline-block;
  width: 50px;
  height: 32px;
  line-height: 0;
  position: relative;
  font-size: 0;
  top: -1px;
  left: 3px;
  vertical-align: middle;
}
#PortalWelcome #PortalWelcomeWrapper a.dashboardback .backbox div {
  display: inline-block;
  line-height: 0;
  width: 23px;
  margin: 1px;
  height: 14px;
  border-radius: 2px;
  background: #515d64;
}
#PortalWelcome #PortalWelcomeWrapper a.dashboardback .backbox div:last-child {
  background: #918f92;
}
#PortalWelcome #PortalWelcomeWrapper #DashboardInfolist {
  width: 50%;
  display: inline-block;
  list-style: circle inside;
  border-left: 1px solid #DDD;
  padding-left: 10px;
  margin-left: 40px;
}
#PortalWelcome #PortalWelcomeWrapper #DashboardInfolist li {
  padding: 2px 10px;
}
#Navigation #NavigationWrapper {
  padding: 25px 0;
  width: 1200px;
  margin: 0 auto;
}
#Navigation #NavigationWrapper a.dashboardback {
  display: inline-block;
  color: #333;
  height: 48px;
  line-height: 0;
  vertical-align: middle;
  border: 1px solid #DDD;
  background: #FFF;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
}
#Navigation #NavigationWrapper a.dashboardback:hover {
  text-decoration: none;
  color: #FFF;
  background: #6ab5bc;
}
#Navigation #NavigationWrapper a.dashboardback span {
  display: inline-block;
  height: 25px;
  line-height: 35px;
  padding: 0 5px;
}
#Navigation #NavigationWrapper a.dashboardback .backbox {
  display: inline-block;
  width: 50px;
  height: 32px;
  line-height: 0;
  position: relative;
  font-size: 0;
  top: -1px;
  left: 3px;
  vertical-align: middle;
}
#Navigation #NavigationWrapper a.dashboardback .backbox div {
  display: inline-block;
  line-height: 0;
  width: 23px;
  margin: 1px;
  height: 14px;
  border-radius: 2px;
  background: #515d64;
}
#Navigation #NavigationWrapper a.dashboardback .backbox div:last-child {
  background: #918f92;
}
#Navigation .clickable {
  cursor: pointer;
}
#Navigation .navigation-icon:before {
  color: #333;
  font-size: 5em;
  vertical-align: middle;
}
#Navigation .button-section {
  width: 33%;
  display: inline-block;
  vertical-align: top;
  padding: 0 60px 60px 0;
}
#Navigation .button-section .button-title {
  font-size: 18px;
  font-weight: bold;
}
#Navigation .button-section .button-desc {
  font-size: 11px;
  font-weight: normal;
}
#PortalEdit {
  width: 17%;
  margin-left: 2%;
  margin-top: 12px;
}
#PortalEdit .editfield {
  background: #f5f7f8;
  padding: 15px 10px 15px 30px;
  border-radius: 5px;
  margin: 10px 0 10px 10px;
  position: relative;
}
#PortalEdit .editfield [class^="icon-"],
#PortalEdit .editfield [class*=" icon-"] {
  color: #515d64;
  position: absolute;
  left: 10px;
  font-size: 1.2em;
}
#PortalEdit .editfield [class^="icon-"]:not(.icon-phone):not(.icon-add),
#PortalEdit .editfield [class*=" icon-"]:not(.icon-phone):not(.icon-add) {
  top: 12px;
  font-size: 1.6em;
}
#PortalEdit .editfield [class^="icon-"]:not(.icon-phone):not(.icon-add):not(.icon-edit),
#PortalEdit .editfield [class*=" icon-"]:not(.icon-phone):not(.icon-add):not(.icon-edit) {
  left: 5px;
}
#PortalEdit .editfield .icon-edit {
  position: absolute;
  top: 15px;
  right: 10px;
  left: auto;
  cursor: pointer;
}
#PortalEdit .editfield .infofield {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 88%;
  vertical-align: middle;
}
#PortalEdit .accent {
  cursor: pointer;
}
#PortalDashboard tbody tr {
  cursor: pointer;
}
.delivery {
  position: relative;
}
.delivery:after {
  content: 'i';
  position: absolute;
  right: -15px;
  border: 1px solid #000;
  border-radius: 100%;
  padding: 0 4px;
  height: 13px;
  line-height: 14px;
  font-size: 10px;
  color: #000;
}
.delivery:hover .high-hooters {
  display: block !important;
  position: absolute;
  right: -7px;
  line-height: normal;
  font-size: 10px;
  color: #000;
  letter-spacing: normal;
  border: 1px solid #000;
  padding: 10px;
  width: 210px;
  text-align: left;
}
#PortalOrderTop {
  margin: 20px 0;
}
#PortalOrderTop .topPart {
  display: inline-block;
  width: 19.666%;
  line-height: 5em;
  position: relative;
  vertical-align: top;
}
#PortalOrderTop .topPart p {
  margin: 0 0 0 60px;
}
#PortalOrderTop .topPart p:last-child {
  color: #6ab5bc;
  font-size: 1.1em;
  letter-spacing: 2px;
}
#PortalOrderTop .topPart:before {
  color: #333;
  font-size: 5em;
  position: absolute;
  left: 0;
  top: -10px;
}
#PortalOrderTop .topPart > div {
  display: table-cell;
  vertical-align: top;
  height: 5em;
  line-height: 1.5em;
}
#PortalOrderTop .topPart.planButton {
  float: right;
  text-align: right;
}
#PortalOrderTop .topPart.icon-truck {
  display: none;
}
#PortalOrderTop .topPart.icon-truck:before {
  left: -5px;
  top: 0;
}
#PortalOrderTop a {
  display: block;
  background: #6ab5bc;
  color: #FFF;
  border: none;
  height: 50px;
  width: 150px;
  border-radius: 5px;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
  padding-left: 40px;
  position: relative;
  outline: none;
  width: 140px;
  line-height: 50px;
  display: inline-block;
  left: -5px;
  top: -5px;
}
#PortalOrderTop a:before {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 2.6em;
  color: #f5f7f8 !important;
  font-size: 2.7em !important;
  left: 8px !important;
}
#PortalOrderDetails tr td {
  overflow: visible;
}
#PortalOrderDetails tbody tr {
  height: 75px;
}
#PortalOrderDetails tbody tr.binded-text td {
  padding-top: 0;
  vertical-align: text-top;
}
#PortalOrderDetails tfoot td {
  text-align: right;
  padding: 5px !important;
}
#PortalOrderDetails colgroup col {
  width: 10%;
}
#PortalOrderDetails colgroup col:first-child {
  width: 15%;
}
#PortalOrderDetails colgroup col:nth-child(2) {
  width: 25%;
}
#PortalOrderDetails colgroup col:last-child {
  width: 15%;
}
#PortalOrderDetails tr td.icon-text {
  font-size: 4em;
}
#PortalOrderDetails tr td:not(:first-child) {
  padding: 20px 20px 20px 5px;
}
#PortalOrderDetails tr td:not(:first-child).right {
  padding: 20px 5px 20px 20px;
}
#PortalOrderDetails tr td ul.selections {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0 0;
}
#PortalOrderDetails tr td ul.selections span {
  display: inline-block;
  white-space: normal;
  overflow: hidden;
  width: 49%;
  font-size: 0.9em;
}
#PortalOrderDetails img {
  width: 100%;
}
#PortalCalendar h2 {
  color: #6ab5bc;
  padding: 10px 0 10px 67px;
  position: relative;
  vertical-align: top;
  font-weight: normal;
  letter-spacing: 2px;
}
#PortalCalendar h2:before {
  color: #333;
  font-size: 2.5em;
  position: absolute;
  left: 0;
  top: -5px;
}
#PortalCalendar table col {
  width: 11%;
}
#PortalCalendar table col:first-child {
  width: 3%;
}
#PortalCalendar table td,
#PortalCalendar table th:not(.invisiblecell) {
  vertical-align: middle;
  text-align: center;
  border: 1px solid #DDD;
  text-indent: 0;
}
#PortalCalendar table th:not(.invisiblecell) {
  background: #f5f7f8;
  padding: 0 5px;
  height: 30px;
  line-height: 30px;
}
#PortalCalendar table th.invisiblecell {
  background: transparent;
}
#PortalCalendar table td:not(:first-child) {
  height: 90px;
  background: #FFF;
  font-size: 1em;
  font-style: italic;
}
#PortalCalendar table td.available {
  background: #515d64;
  color: #FFF;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 1.2em;
  font-style: normal;
}
#PortalCalendar table td.available:hover {
  background: #918f92;
}
#PortalCalendar table td.available.icon-check:before {
  font-size: 1.5em;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0.6;
}
#PortalCalendar table td.today {
  background: #f5f7f8;
  text-decoration: underline;
}
#PortalCalendar table td:first-child {
  background: #f5f7f8;
  padding: 0;
}
#PortalCalendar table tbody tr {
  height: 0;
}
#PortalCalendar .icon-left {
  float: left;
  margin-left: 10px;
  cursor: pointer;
  font-size: 1.8em;
  padding: 0;
}
#PortalCalendar .icon-right {
  float: right;
  margin-right: 10px;
  cursor: pointer;
  font-size: 1.8em;
  padding: 0;
}
#PortalDayPart {
  text-align: right;
}
#PortalDayPart p {
  text-align: left;
  font-size: 2.2em;
  letter-spacing: 2px;
  font-weight: normal;
}
#PortalDayPart table {
  width: 450px;
}
#PortalDayPart table col {
  width: 60%;
}
#PortalDayPart table col:first-child {
  width: 10%;
}
#PortalDayPart table col:last-child {
  width: 15%;
}
#PortalDayPart table thead th {
  text-indent: 5px;
  padding: 15px 0;
  background: #515d64;
  color: #f5f7f8;
}
#PortalDayPart table tbody tr {
  background: transparent;
}
#PortalDayPart table tbody tr td {
  text-indent: 5px;
  padding: 15px 0;
  color: #333;
  border: none;
  background: #918f92;
}
#PortalDayPart table tbody tr td:first-child {
  border-left: none !important;
  padding: 0;
  vertical-align: middle;
  text-align: center;
  text-indent: 0;
}
#PortalDayPart table tbody tr td:last-child {
  border-right: none !important;
}
#PortalDayPart table tbody tr td .icon-check:before {
  color: #f5f7f8;
  font-size: 1.5em;
}
#PortalDayPart table tbody tr.available td {
  background: #d2d1d3;
  cursor: pointer;
}
#PortalDayPart table tbody tr.selected td {
  background: #6ab5bc;
  color: #FFF;
}
#PortalDayPart table tbody tr + tr {
  border-top: 0.08em solid #515d64;
}
#PortalDayPart button {
  margin-top: 20px;
  width: 200px !important;
  display: inline-block !important;
}
#PortalDayPart button.inactive,
#PortalDayPart button.saving {
  background: #d0cfd2 !important;
  color: #333 !important;
  cursor: default;
}
#PortalDayPart button.inactive:before,
#PortalDayPart button.saving:before {
  color: #777;
}
#PortalPopup .popupfilter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  opacity: 0.6;
  z-index: 10;
}
#PortalPopup .popupcontainer {
  position: fixed;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  background-color: #515d64;
  box-shadow: 4px 4px 80px #333;
  border-radius: 5px;
  color: #f5f7f8;
}
#PortalPopup .popuptitle {
  font-size: 1.5em;
  padding: 10px 0;
  color: #CCC;
}
#PortalPopup .popupinner {
  padding: 40px;
}
#PortalPopup .popupinner input,
#PortalPopup .popupinner select {
  width: 350px;
  display: block;
  padding: 8px;
  border-radius: 3px;
  background: #EEE;
  outline: none;
  margin-top: 20px;
  height: 35px;
  color: #333;
  font-size: 1.3em;
  border: 1px solid #777;
}
#PortalPopup .popupinner select {
  height: 45px;
}
#PortalPopup .popupinner .buttonwrap {
  text-align: right;
}
#PortalPopup .popupinner .formpart {
  padding-top: 20px;
}
#PortalPopup .popupinner .inline input,
#PortalPopup .popupinner .inline select,
#PortalPopup .popupinner .inline label {
  display: inline-block;
  width: 150px;
}
#PortalPopup .popupinner .inline input {
  width: 250px;
}
#PortalPopup .popupinner .inline select {
  width: 269px;
}
#PortalPopup .icon-close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 2em;
  color: #f5f7f8;
  cursor: pointer;
}
#PortalPopup .icon-close:before {
  vertical-align: text-top;
}
