/* Common variables */
/*Ticomix New Logo Theme Colors (orange)*/
/*This should be a font color that stands out from the primary-color*/
/*Kendo Material Theme colors (blues)*/
/*
    $primary-color: rgb(63, 81, 181);
    $hover-color: rgb(92,109,196);
    $selected-color: #00b0ff;
    $selected-border-color: #008dcc;
    $selected-gridrow-color: #1D4467;
    $body-color: black;
    $body-background-color: white;
    $label-color: #555;
    $tab-background-color: #fff;
    $disabled-primary-color: rgb(50,50,50);
*/
/*Dark Theme*/
/*
    $primary-color: rgb(252, 101, 1);
    $hover-color: rgb(255, 118, 27);
    $tab-selected-color: rgb(30, 30, 30);
    $selected-border-color: rgb(255, 118, 27);
    $selected-gridrow-color: rgb(252, 75, 1);
    $body-color: white;
    $body-background-color: rgb(42, 42, 44);
    $label-color: rgb(245, 245, 245);
    $tab-background-color: rgb(62, 62, 66);
*/
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

input:disabled,
input[readonly],
input[readonly]:hover,
.k-input[readonly], .tcx-k-textbox[readonly], .k-input[readonly]:hover, textarea[readonly], textarea[readonly]:hover {
  /*background-color: rgb(238, 238, 238);*/
  background-color: rgb(245, 245, 245) !important;
  /*color: rgb(153, 153, 153);*/
  color: black;
}

.k-input-outline:disabled, .tcx-k-textbox:disabled, .k-input-outline[disabled], [disabled].tcx-k-textbox, .k-input-outline.k-disabled, .k-input-outline.tcx-k-button.k-state-disabled, .k-input-outline.k-state-disabled.tcx-k-button-slim, .k-disabled.tcx-k-textbox, .tcx-k-textbox.tcx-k-button.k-state-disabled, .tcx-k-textbox.k-state-disabled.tcx-k-button-slim,
.k-picker.k-picker-outline:disabled {
  background-color: rgb(245, 245, 245) !important;
  color: black;
}

:root {
  --primary-color: #0D5DB6;
  --primary-font-color: rgb(0, 0, 0);
  --hover-color: #0870e5;
  --tab-selected-color: rgba(41, 37, 35, 0.38);
  --selected-border-color: #0870e5;
  --selected-gridrow-color: #0870e5;
  --body-color: black;
  --body-background-color: white;
  --label-color: #555;
  --tab-background-color: #fff;
  --disabled-primary-color: rgb(50, 50, 50);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--primary-color);
  border-color: #1861ac;
}

.nav-pills .nav-link {
  color: var(--primary-color);
}

.nav-pills .nav-link:hover {
  color: var(--hover-color);
}

.nav-pills .nav-link.active:hover,
.nav-pills .show > .nav-link:hover {
  color: #fff;
  background-color: var(--hover-color);
  border-color: #1861ac;
}

.btn-default {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.btn-default:hover {
  border-color: var(--hover-color);
  background-color: var(--hover-color);
}

input:disabled,
input[readonly],
input[readonly]:hover {
  /*background-color: rgb(238, 238, 238);*/
  background-color: rgb(250, 250, 250) !important;
  color: rgb(153, 153, 153);
}

html {
  font-size: 14px;
}

/* Carousel */
.carousel-caption p {
  font-size: 20px;
  line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
  width: 100%;
}

/* QR code generator */
#qrCode {
  margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
  /* Hide captions */
  .carousel-caption {
    display: none;
  }
}
/* TICOMIX CSS STARTS BELOW THIS POINT */
body {
  padding-bottom: 20px;
  font-family: "Arial", sans-serif;
}

/* Set padding to keep content from hitting the edges */
.body-content {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .body-content {
    padding-left: 0;
    padding-right: 0;
  }
}
label {
  font-weight: normal;
  /*text-transform:uppercase;*/
  color: var(--label-color);
  font-size: 12px;
}

.form-group {
  margin-bottom: 8px;
}

.form-vertical .form-group .control-label {
  width: 100%;
}

/* Set width on the form input elements to 100% wide by default */
input,
select,
textarea {
  max-width: 100%;
}

/* styles for validation helpers */
.field-validation-error {
  color: #b94a48;
}

.field-validation-valid {
  display: none;
}

input[type=checkbox].input-validation-error {
  border: 0 none;
}

.validation-summary-errors {
  color: #b94a48;
}

.validation-summary-valid {
  display: none;
}

input[type=checkbox] {
  margin-top: 10px;
  height: 1rem;
  width: 1rem;
}

.form-control {
  height: 2.13em;
  line-height: 1.6em;
  padding-top: 2px;
  padding-bottom: 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 1px 1px 1px 1px;
}

.input-group-btn > .btn {
  /*height: 24px;*/
  height: 2.13em;
  line-height: 1.6em;
  padding-top: 2px;
  padding-bottom: 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

@media (min-width: 768px) {
  .form-horizontal .form-group {
    margin-left: 0px;
  }
}
/*
    Better support for wider view port sizes
*/
@media (min-width: 1480px) {
  .container-fluid {
    width: 1420px;
  }
}
@media (min-width: 1600px) {
  .container-fluid {
    width: 1530px;
  }
}
@media (min-width: 1750px) {
  .container-fluid {
    width: 1685px;
  }
}
@media (min-width: 1900px) {
  .container-fluid {
    width: 1820px;
  }
}
/* reset everything to the default box model */
/**, :before, :after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}*/
/* set a border-box model only to elements that need it */
/*.form-control,*/
/* if this class is applied to a Kendo UI widget, its layout may change */
/*.container-fluid,
.container-fluid-fluid,
.row,
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1,
.col-xs-2, .col-sm-2, .col-md-2, .col-lg-2,
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3,
.col-xs-4, .col-sm-4, .col-md-4, .col-lg-4,
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5,
.col-xs-6, .col-sm-6, .col-md-6, .col-lg-6,
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7,
.col-xs-8, .col-sm-8, .col-md-8, .col-lg-8,
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9,
.col-xs-10, .col-sm-10, .col-md-10, .col-lg-10,
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11,
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}*/
.breadcrumb {
  font-size: 10px;
  background-color: rgb(245, 245, 245);
  padding: 4px 15px;
  margin-bottom: 0px;
}

.breadcrumb > li + li:before {
  padding: 0 0px;
  color: white;
  content: "";
}

.btn {
  min-height: 2.13em;
  line-height: 1.6em;
  padding-top: 2px;
  padding-bottom: 2px;
  box-sizing: border-box;
  border-radius: 0px;
}

.dark-background {
  /*background-color:rgb(66, 139, 202);*/
  /*background-color:gainsboro;*/
  background-color: rgb(245, 245, 245);
  /*color:white;*/
  color: dimgrey;
}

.controls-block {
  padding: 15px;
  background-color: rgb(245, 245, 245);
}

.btn-group-ticomix {
  border-top-style: solid;
  border-bottom-style: solid;
  border-width: thin;
  border-color: var(--primary-color);
  display: flex;
  align-items: center;
  flex-flow: wrap;
}

.btn-ticomix {
  /*color: #2e6da4;*/
  color: var(--primary-color);
  background-color: transparent;
  border-style: none;
  height: 2.13em;
  line-height: 2.13em;
  padding-top: 0;
  padding-bottom: 0;
}

.btn-ticomix:hover {
  /*color: #2e6da4;*/
  color: white;
  /*background-color: #00a2eb;*/
  background-color: var(--primary-color);
  border-radius: 0px;
}

.btn-group-tab-ticomix {
  border-bottom-style: solid;
  border-width: thin;
  border-color: var(--primary-color);
}

.btn-group-window-ticomix {
  border-top-style: solid;
  border-bottom-style: solid;
  border-width: thin;
  border-color: var(--primary-color);
  margin-top: -60px;
  margin-bottom: 10px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  background-color: transparent;
  border-color: rgb(230, 230, 230);
  color: black;
  width: 1.9em;
  padding-left: 5px;
  border-radius: 2px;
  height: 36px;
}

.input-group-btn:last-child > .btn:hover,
.input-group-btn:last-child > .btn-group:hover {
  background-color: lightgray;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.05);
}

.btn-group-tab-ticomix > .btn-group-tab-textbox-ticomix > .input-group > .input-group-btn > button {
  height: 1.9em;
}

.btn-group-tab-textbox-ticomix {
  border-radius: 0px;
  width: 250px;
  display: inline-block;
  font-size: 12px;
  vertical-align: middle;
}

.input-group-btn:last-child > .btn-ticomix {
  color: var(--primary-color);
  background-color: transparent;
  border-color: rgb(230, 230, 230);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-right-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
}

.input-group-btn:last-child:hover > .btn-ticomix {
  color: white;
  background-color: var(--primary-color);
  border-radius: 0px;
}

.btn-login {
  background-color: var(--primary-color);
  color: white;
}

/* Ticomx Kendo Alerts */
.btn-group-ka {
  float: right;
}

.btn-ka {
  margin: 2px;
}

.jumbotron {
  margin-bottom: 0px;
  background-image: url("./../Images/homepagebackground.png");
  background-position: 0% 25%;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-shadow: black 0.3em 0.3em 0.3em;
}

.grid-ticomix {
  font-size: small;
}

@media (min-width: 768px) {
  .LoginFooter {
    padding: 15px;
  }
}
.LoginFooterText {
  color: darkgrey;
}

.logo {
  display: block;
  text-indent: -9999px;
}

@media (max-width: 768px) {
  .logo {
    margin-left: 15px;
  }
}
/*Login Menu at Top of All Pages*/
.UserDot {
  height: 37.5px;
  width: 37.5px;
  text-align: center;
  margin-top: 0px;
  color: var(--primary-font-color);
  font-size: 18px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
}

.UserDotLabel {
  position: relative;
  top: 5px;
  left: 0;
}

.UserDotDropOptions {
  text-align: left;
}

/*End Login Menu*/
/* Notification Bell Button on _LoginPartial.cshtml */
.btn-notification {
  font-size: 18px;
  border: none;
  background: none;
  color: white;
  height: 32px;
  width: 32px;
  position: relative;
  text-align: center;
  top: 10px;
  margin-right: 5px;
}

.btn-notification.btn-notification-active {
  color: red;
}

/* Notification Bell Badge on _LoginPartial.cshtml*/
.notification-bell_badge {
  width: 100%;
  height: 15px;
  /* background: #337ab7; */
  color: white;
  position: absolute;
  top: 12px;
  left: 0;
  align-items: center;
  border-radius: 50%;
  font-size: 8px;
  font-family: "Arial", sans-serif;
  pointer-events: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* CSS to align the Feedback link with the UserDot and match the notification bell */
/* Styling for the Feedback link */
.TicomixPortalFeedbackLinkNavItem .nav-link {
  position: relative;
  color: white; /* Match the color of the notification bell icon */
  text-decoration: none; /* Remove underline from links */
  font-size: 18px; /* Adjust font size as needed */
  top: 7px;
}

/* Icon for the Feedback link */
.TicomixPortalFeedbackLinkNavItem .nav-link i {
  color: white; /* Match the color of the notification bell icon */
  margin-right: 5px; /* Spacing between icon and text, adjust as needed */
}

.noNotification {
  display: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: -95px;
  width: 300px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

/*Custom loading spin animation*/
@keyframes ticomix-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ticomix-spin {
  animation: ticomix-spin 1s infinite cubic-bezier(0.55, 0.05, 0.45, 0.95);
}

.k-loader-primary .k-loader-segment::after {
  background-color: var(--primary-color);
}

.btn-ticomix:hover .k-loader-primary .k-loader-segment::after {
  background-color: white;
}

.hidden {
  display: none !important;
}

.k-switch {
  margin-top: 2px;
  margin-bottom: 2px;
}

/* Kendo Grid Header Adjustments from the Material Theme to reduce whitespace */
.k-grid .k-grid-header .k-table-th {
  padding: 0.5em;
  padding-left: 0.75em;
  border-style: solid;
  border-width: 0 0 1px 1px;
  border-inline-start-color: inherit;
}

.k-grid-md .k-table-th {
  padding-block: 0.5rem;
  padding-inline: 0.75rem;
}

.k-grid-header .k-table-th {
  font-weight: 400;
}

.k-grid .k-grid-md .k-table-th > .k-cell-inner > .k-link, .k-grid-md .k-table-th > .k-cell-inner > .k-link {
  padding-block: 1.1rem;
  padding-inline: 1.5rem;
}

.k-column-title {
  line-height: 20px;
  color: black;
}

.k-grid-md .k-grid-header .k-grid-filter, .k-grid-md .k-grid-header .k-header-column-menu, .k-grid-md .k-grid-header .k-grid-header-menu {
  padding: 0px;
  width: calc(1.4285714286em + 2px);
  height: calc(1.4285714286em + 16px + 2px);
  bottom: calc(16px + 1em - (1.4285714286em + 16px) / 2);
}

/* End of Kendo Grid header adjustments*/

/*# sourceMappingURL=site.css.map */
