﻿@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.svg#Poppins-Bold") format("svg"), url("../fonts/Poppins-Bold.eot"), url("../fonts/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.svg#Poppins-Regular") format("svg"), url("../fonts/Poppins-Regular.eot"), url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins-SemiBold.woff") format("woff"), url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.svg#Poppins-SemiBold") format("svg"), url("../fonts/Poppins-SemiBold.eot"), url("../fonts/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
    margin: 0;
    font-family: "Poppins-Regular";
    background: #F3F3F3;
    font-size: 14px;
    overflow-x: hidden;
}

@media (min-width: 576px) {
    .container {
        max-width: 576px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 992px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

body.login-page {
  padding-right: 0px;
}

.form-control {
  background-color: #f3f3f3;
  border: 0 none;
  border-radius: 2px;
}
.form-control:focus {
  box-shadow: 0 0 0 !important;
  background-color: #f3f3f3;
}

ul {
  padding: 0;
  margin: 0;
}

.dropdown-toggle::after {
  border-top-color: #FF7F27;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0;
}

.color-orange {
  color: #FF7F27 !important;
}

.color-green {
    color: #198754 !important;
}

.color-red {
    color: #dc3545 !important;
}

.color-dark-gray {
  color: #716E6E !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.font-14 {
  font-size: 14px;
}

.ms-n1px {
  margin-left: -1px;
}

.me-n1px {
  margin-right: -1px;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #bebebe;
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(92, 92, 92, 0.75);
  z-index: 1000;
  height: 100%;
  width: 100%;
  display: none;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #FF7F27;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
/* loader END */
.form-field {
    background: #f3f3f3;
    padding: 4px 8px 10px;
    border-radius: 3px;
}
.form-field .form-label {
  font-size: 12px;
  margin-bottom: 0px;
  color: #727271;
  font-family: "Poppins-SemiBold";
}
.form-field .form-control {
  border: 0 none;
  background-color: transparent;
  padding: 0;
  /*border-bottom: 1px solid $border-gray;*/
  border-radius: 0;
  font-size: 12px;
  color: #716E6E;
}
.form-field .form-control option {
  color: #716E6E;
}
.form-field .form-select {
  background-position: right 0 center;
}
.form-field label.error {
  background: #ffdede;
  width: 100%;
  color: #ff6a6a;
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 3px;
  font-family: "Poppins-SemiBold";
}

.form-check .form-check-label {
  font-size: 12px;
  color: #716E6E;
}

.form-check-input:checked {
  background-color: #FF7F27;
  border-color: #FF7F27;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem #ffeadb;
  border-color: #ffeadb;
}

.section-title, .modal-title {
  font-family: "Poppins-SemiBold";
  color: #716E6E;
  font-size: 12px;
  text-transform: uppercase;
}

.modal-header {
  padding: 12px;
}

.modal-footer {
  padding: 10px;
}

@media (min-width: 992px) {
  .dropdown-menu {
    box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.05);
  }
}
.table-dark {
  background: #716E6E;
  --bs-table-bg: $main-gray;
  --bs-table-striped-bg: $main-gray;
  --bs-table-active-bg: $main-gray;
  --bs-table-hover-bg: $main-gray;
  border-color: #716E6E;
}

.btn-primary {
  background-color: #FF7F27 !important;
  border-color: #FF7F27 !important;
  font-size: 12px;
  padding: 5px 10px;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 127, 39, 0.15);
}

.btn-secondary {
  background-color: #716E6E !important;
  border-color: #716E6E !important;
  font-size: 12px;
  padding: 5px 10px;
}
.btn-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(90, 90, 90, 0.15);
}

.btn-sm {
  font-size: 12px;
}

header {
  display: inline-block;
  width: 100%;
  position: fixed;
  z-index: 10;
}

.main-header {
  background: #716E6E;
  padding-bottom: 35px;
  padding-top: 10px;
  margin-bottom: 60px !important;
}
.main-header .container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.main-header .search {
  background-color: #FF7F27;
  padding: 0 10px;
  border-radius: 4px;
  margin: 5px 0;
}
.main-header .search svg, .main-header .search i {
  color: #fff;
  font-size: 14px;
}
.main-header .search input {
  background-color: transparent;
  color: #fff;
  font-size: 12px;
  padding-left: 8px;
  padding-right: 0;
}
@media (min-width: 768px) {
  .main-header .search input {
    width: 230px;
  }
}
.main-header .search input::placeholder {
  color: #fff;
}
.main-header .icon-section .icon {
  margin-right: 20px;
  position: relative;
  font-size: 18px;
  color: #fff;
}
.main-header .icon-section .notifications .count {
  background-color: #FF7F27;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  top: -7px;
  right: -9px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  font-size: 8px;
  font-family: "Poppins-Bold";
}
.main-header .admin-section {
  padding-left: 15px;
}
.main-header .admin-section .names {
  color: #fff;
  padding-right: 10px;
}
.main-header .admin-section .names .name {
  font-size: 12px;
  font-family: "Poppins-SemiBold";
}
.main-header .admin-section .names .designation {
  font-size: 9px;
  font-family: "Poppins-Regular";
}
.main-header .admin-section .thumbnail .user-image {
  border: 1px solid #fff;
  border-radius: 3px;
}
.main-header .admin-section .thumbnail .user-image img {
  border-radius: 3px;
}
.main-header .admin-section .thumbnail .online-status {
  width: 12px;
  height: 12px;
  background: #8d8d8d;
  border-radius: 50%;
  top: -5px;
  position: absolute;
  right: -5px;
  border: 2px solid #fff;
}
.main-header .admin-section .thumbnail .online-status.online {
  background: #28C76F;
}
.main-header .admin-section .thumbnail .dropdown-menu {
  top: 14px !important;
  left: -20px !important;
}
.main-header .admin-section .thumbnail .dropdown-menu a {
  font-family: "Poppins-SemiBold";
  color: #716E6E;
  font-size: 12px;
  text-align: right;
  margin-bottom: 5px;
  display: inline-block;
  -webkit-transition: color 200ms ease;
  -moz-transition: color 200ms ease;
  -ms-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
}
.main-header .admin-section .thumbnail .dropdown-menu a:last-child {
  margin-bottom: 0;
}
.main-header .admin-section .thumbnail .dropdown-menu a:hover, .main-header .admin-section .thumbnail .dropdown-menu a:active, .main-header .admin-section .thumbnail .dropdown-menu a:focus {
  background: transparent;
}
.main-header .admin-section .thumbnail .dropdown-menu a:hover {
  color: #FF7F27;
}
.main-header .admin-section .thumbnail .dropdown-menu a svg {
  float: left;
  margin-right: 15px;
}
.main-header .admin-section .thumbnail .dropdown-menu a span {
  float: left;
}
.main-header .main-menu {
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: -65px;
  padding: 0;
  min-height: 64px;
  position: absolute;
  width: calc(100% - 24px);
  left: 12px;
  z-index: 1;
}
.main-header .main-menu .menu .nav-item {
  margin: 0 25px;
}
.main-header .main-menu .menu ul {
  list-style-type: none;
}
.main-header .main-menu .menu ul li a {
  padding: 22px 0 18px;
  border-bottom: 2px solid #fff;
}
@media (max-width: 992px) {
  .main-header .main-menu .menu ul li a {
    border-bottom: 0 none;
    padding: 10px;
  }
}
.main-header .main-menu .menu ul li a svg, .main-header .main-menu .menu ul li a i {
  color: #FF7F27;
  font-size: 20px;
}
.main-header .main-menu .menu ul li a span {
  font-weight: "Poppins-SemiBold";
  color: #716E6E;
  font-size: 14px;
}
.main-header .main-menu .menu ul li.selected a, .main-header .main-menu .menu ul li:hover a {
  border-bottom: 2px solid #FF7F27;
}
@media (max-width: 992px) {
  .main-header .main-menu .menu ul li.selected a, .main-header .main-menu .menu ul li:hover a {
    background: #eee;
    border-bottom: 0 none;
    padding: 10px;
  }
}
.main-header .main-menu .menu ul li.selected ul li a, .main-header .main-menu .menu ul li:hover ul li a {
  background: #fff;
}
@media (max-width: 992px) {
  .main-header .main-menu .menu ul li.selected ul li a, .main-header .main-menu .menu ul li:hover ul li a {
    background: #fafafa;
  }
}
.main-header .main-menu .menu ul li.selected ul li a:active, .main-header .main-menu .menu ul li:hover ul li a:active {
  color: #716E6E;
}
.main-header .main-menu .menu ul li ul {
  border: 0 none;
}
@media (max-width: 992px) {
  .main-header .main-menu .menu ul li ul {
    background: #fafafa;
  }
}
.main-header .main-menu .menu ul li ul li a {
  border-bottom: 0 none !important;
  padding: 4px 10px !important;
  font-size: 12px;
}
@media (max-width: 992px) {
  .main-header .main-menu .menu ul li ul li a {
    text-align: right;
  }
}
.main-header .main-menu .menu ul li ul li.selected a, .main-header .main-menu .menu ul li ul li:hover a {
  background: #eee;
}

.footer {
  background: #716E6E;
  font-family: "Poppins-Regular";
  font-size: 11px;
  color: #fff;
  line-height: 20px;
}
.footer a {
  color: #fff;
  text-decoration: underline;
}

.page-contents {
  min-height: calc(100vh - 189px);
  padding-top: 153px;
}

.card {
  padding: 0;
  border: 0 none;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.card .card-header {
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
  border-radius: 5px 5px 0 0;
}
.card .card-header .card-title {
  font-family: "Poppins-SemiBold";
  color: #716E6E;
  font-size: 14px;
  text-transform: uppercase;
}
.card .card-header .search {
  font-size: 14px;
}
.card .card-body {
  padding: 15px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

.page-main-card .card-body {
  min-height: calc(100vh - 259px);
}
@media (max-width: 768px) {
  .page-main-card .card-body {
    min-height: unset;
  }
}

.common-scroller {
  overflow: hidden;
  overflow-y: auto;
  min-height: 100px;
  padding-right: 5px !important;
}

.data-list {
  padding: 0;
  margin: 0;
  max-height: calc(100vh - 320px);
  min-height: calc(100vh - 320px);
}
@media (max-width: 768px) {
  .data-list {
    min-height: unset;
    max-height: unset;
  }
}
.data-list li {
  float: left;
  width: 100%;
}
.data-list li a {
  color: #716E6E;
  padding: 8px 10px;
  border-bottom: 1px solid #F3F3F3;
  font-family: "Poppins-Regular";
  font-size: 13px;
  float: left;
  width: 100%;
  text-decoration: none;
  border-radius: 3px;
}
.data-list li a:hover, .data-list li a.selected {
  color: #fff;
  background-color: #FF7F27;
  border-bottom: 1px solid #fff;
}
.data-list li:last-child a {
  border-bottom: 0 none;
}

@media (max-width: 1200px) {
  .left-side {
    border-right: 0 !important;
    border-bottom: 1px solid #d5d5d5;
  }
}

@media (max-width: 1200px) {
  .right-side {
    border-left: 0 !important;
  }
}

.datepicker-dropdown, .datetimepicker {
  background: #878787 !important;
  font-family: "Poppins-Regular";
  font-size: 12px;
  padding: 15px;
  color: #fff;
}
.datepicker-dropdown:after, .datetimepicker:after {
  border-bottom-color: #878787 !important;
}
.datepicker-dropdown.datepicker-orient-top:after, .datetimepicker.datepicker-orient-top:after {
  border-top-color: #878787 !important;
}
.datepicker-dropdown td, .datetimepicker td {
  width: 25px;
  height: 25px;
  border-radius: 2px;
  padding: 4px 8px;
}
.datepicker-dropdown td.day:hover, .datepicker-dropdown td.day.focused, .datepicker-dropdown td span.month:hover, .datepicker-dropdown td span.month.focused, .datepicker-dropdown td span.year:hover, .datepicker-dropdown td span.year.focused, .datepicker-dropdown td span.decade:hover, .datepicker-dropdown td span.decade.focused, .datepicker-dropdown td span.century:hover, .datepicker-dropdown td span.century.focused, .datepicker-dropdown td.minute:hover, .datepicker-dropdown td.minute.focused, .datetimepicker td.day:hover, .datetimepicker td.day.focused, .datetimepicker td span.month:hover, .datetimepicker td span.month.focused, .datetimepicker td span.year:hover, .datetimepicker td span.year.focused, .datetimepicker td span.decade:hover, .datetimepicker td span.decade.focused, .datetimepicker td span.century:hover, .datetimepicker td span.century.focused, .datetimepicker td.minute:hover, .datetimepicker td.minute.focused {
  background: #eee !important;
  cursor: pointer;
  color: #1C253D;
  font-weight: 600;
}
.datepicker-dropdown td.active, .datetimepicker td.active {
  background: #FF7F27 !important;
  color: white;
}
.datepicker-dropdown td.active:hover, .datetimepicker td.active:hover {
  background: #e96205 !important;
}
.datepicker-dropdown .prev:hover, .datepicker-dropdown .next:hover, .datepicker-dropdown .clear:hover, .datepicker-dropdown .datepicker-switch:hover, .datepicker-dropdown .minute:hover, .datetimepicker .prev:hover, .datetimepicker .next:hover, .datetimepicker .clear:hover, .datetimepicker .datepicker-switch:hover, .datetimepicker .minute:hover {
  background: #eee;
  cursor: pointer;
  color: #1C253D;
  font-weight: 600;
}

.login-wrapper {
  height: 100vh;
  background: #eee;
}
    .login-wrapper .company-details {
        width: 60%;
        color: #fff;
        font-family: "Poppins-Regular";
        font-size: 12px;
        height: 100vh;
        padding: 150px;
        background: url(../../images/login-bg.jpg) no-repeat center center/cover;
    }

.login-wrapper .company-details h4 {
  font-family: "Poppins-SemiBold";
  font-size: 26px;
  color: #fff;
  font-weight: 700;
}
.login-wrapper .company-details h6 {
  font-family: "Poppins-Regular";
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  width: 80%;
  margin: auto;
   font-weight: 700;
}
.login-wrapper .login-register {
  background-color: #000;
  color: #fff;
  font-family: "Poppins-Regular";
  font-size: 12px;
  padding: 70px 150px;
  width: 40%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
}
.login-wrapper #loginTabs {
  border: 0 none;
  margin-bottom: 30px;
}
.login-wrapper #loginTabs .nav-link {
  border: 0 none;
  font-family: "Poppins-SemiBold";
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  padding: 0;
  background: transparent;
}
.login-wrapper #loginTabs .nav-link.active {
  color: #FF7F27;
  /*border-bottom: 2px solid $mainRed;*/
}
.login-wrapper #loginTabsContent {
  min-width: 300px;
  border-top: 1px solid #ddd;
  padding-top: 25px;
  color: #fff;
}
.login-wrapper #loginTabsContent a {
  color: #FF7F27;
}
.login-wrapper #loginTabsContent .tab-pane {
  min-height: 390px;
}



@media only screen and (max-width: 1024px) {
    .login-wrapper {
    flex-direction: column;
    justify-content: unset !important;
  }
  .login-wrapper .company-details, .login-wrapper .login-register {
    width: 100%;
    height: auto;
    padding: 50px;
  }
}
[v-cloak] {
  display: none;
}

#utMainMenu .card {
  height: 140px;
}
#utMainMenu .card a {
  font-size: 14px;
  color: #FF7F27;
  text-decoration: none;
}
#utMainMenu .card .svg-inline--fa {
  font-size: 25px;
}

#utMainMenu .card:hover {
  border-bottom: 2px solid #FF7F27;
}

#utMainMenu .card {
    border-bottom: 2px solid white;
}

.setup-page.secondary-page #utMainMenu .card {
  height: 60px;
}
.setup-page.secondary-page #utMainMenu .card .svg-inline--fa {
  margin-right: 1rem;
}

.setup-page.secondary-page #utMainMenu .card:hover {
  border-bottom: none;
  border-right: 2px solid #FF7F27;
}

.table-responsive {
  max-height: 60vh;
}

responsive-table-payments {
  max-height: 25vh;
}

.text-orange {
  color: #FF7F27;
}

#frmNewHireage .vc-title {
  font-size: 14px;
  color: #FF7F27;
}
#frmNewHireage .vc-weeks {
  max-height: 220px;
  max-width: 200px;
}
#frmNewHireage .vc-weeks .vc-weekday {
  font-size: 12px;
}
#frmNewHireage span .vc-day-content {
  font-size: 10px;
}
#frmNewHireage .vc-highlight {
  background-color: #FF7F27 !important;
}
#frmNewHireage .vc-day[data-v-4420d078] {
  max-width: 28px;
  max-height: 25px;
}

.main-header .dropdown .dropdown-item.active,
.main-header .dropdown .dropdown-item:active {
  background-color: #FF7F27;
  color: white !important;
}

.page-contents {
    min-height: calc(100vh - 36px) !important;
    /*overflow-x: hidden*/
}

.emial-confim-link a:hover {
  color: white;
}

.fa-plus-square {
    font-size: 20px;
}
.form-switch .form-check-input {
    width: 40px;
    height: 20px;
}

.svg-inline--fa{
    font-size: 20px !important;
}
.badge{
    font-size: 11px;
}

#frmStep1 label.error,
#frmStep2 label.error,
#frmStep3 label.error,
#frmStep4 label.error {
    color: #ff4f4f !important
}

label.error {
    color: #ff4f4f !important
}

#frmStep1 input.error,
#frmStep2 input.error,
#frmStep3 input.error,
#frmStep4 input.error {
    color: #212529 !important;
}


.btn-outline-primary {
    background-color: white !important;
    border: 1px solid #FF7F27 !important;
    color: #FF7F27 !important;
    font-size: 12px;
    padding: 5px 10px;
}

.btn-outline-primary:hover {
     background-color: #FF7F27 !important;
     color: #fff !important;
}

.rounded-full {
    border-radius: 1.5rem !important;
}

.rounded-t {
    border-top-left-radius: 1.5rem !important;
    border-top-left-radius: 1.5rem !important
}

.rounded-b {
    border-bottom-left-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
}

.text-main {
    color: #ff7f27 !important;
}

.border-bottom {
    border-bottom: 1px solid $light-gray;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #ff7f27;
    background-color: #fff;
    border-color: #ff7f27 #ff7f27 #fff;
}

#utMainMenu .svg-inline--fa {
    font-size: 30px !important;
}

.float-start.col-12.col-md-3.mb-3.mb-md-0 .card,
.card.page-main-card,
.float-start.col-12.col-md-9.ps-md-3 .cutsom-card {
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden;
}

/*added display none class to hide usericon triangle -  remove if needed*/
#dropdownMenuButtonUser.dropdown-toggle::after {
    border-top-color: #FF7F27;
    display: none !important;
}

.ql-container.ql-snow {
    height: 250px !important;
}

.fc .fc-col-header-cell-cushion {
    display: inline-block !important;
    padding: 10px 4px !important;
    color: #716E6E !important;
    text-decoration: none !important;
}

.fc .fc-daygrid-day-number {
    position: relative;
    z-index: 4;
    padding: 4px;
    color: #ff7f27 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.fc-event-main {
    background: #f3f3f3 !important;
    padding: 0px 5px !important;
    color: #716E6E !important;
    border-radius: 6px !important;
    border-left: 2px solid #ff7f27;
}

.fc-h-event {
    border: 1px solid #3788d8;
    border: 1px solid rgba(255, 127, 39, 0.25) !important;
    background-color: transparent !important;
    background-color: transparent !important;
}

.fc-daygrid-event {
    border-radius: 6px !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent !important;
}

.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-past {
    background: antiquewhite !important;
    padding: 6px !important;
    overflow: hidden !important;
}

.fc-daygrid-event {
    font-size: 10px !important;
}

.fc-daygrid-block-event .fc-event-title {
    font-weight: 600 !important;
}


.fc-day-today .fc-daygrid-day-number {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    background: #ff7f27 !important;
    border-radius: 50px !important;
    display: inline-block !important;
    width: 28px !important;
    height: 28px !important;
    text-align: center !important;
    margin: 2px !important;
}
.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-future {
    background: antiquewhite !important;
    padding: 6px !important;
    overflow: hidden !important;
}

.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end {
    background: antiquewhite !important;
    padding: 6px !important;
    overflow: hidden !important;
}

.fc-daygrid-event {
    cursor: pointer;
}

/* WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 20px;
    height: 20px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #ff7f27;
    border-radius: 6px;
    border: 3px solid #f0f0f0;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #e46e1f; /* Slightly darker on hover */
    }

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff7f27 #f0f0f0;
}

.svg-inline--fa.fa-crown.fa-w-20.text-warning.fs-6 {
    font-size: 14px !important;
}

table {
    caption-side: bottom;
    border-collapse: collapse !important;
}


.company-logo img {
    border: 4px solid #ff7f27 !important;
    width: 100%;
}


.company-logo {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    width: inherit;
}


/*#modalMaintenance .modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: initial !important;
}

#modalMaintenance .modal-dialog-scrollable .modal-body {
    overflow-y: initial;
}*/


.b-form-tag {
    font-size: 12px !important;
    font-weight: 500;
    margin-right: 0.5rem !important;
    background: #ff7f27 !important;
}

    .b-form-tag > button.b-form-tag-remove {
        color: inherit;
        font-size: 12px !important;
        line-height: 1;
        float: none;
        margin-left: .25rem;
        color: black !important;
        border: none !important;
        background: transparent !important;
    }

.b-form-tags-input {
    color: #495057 !important;
    width: 85% !important;
    flex-grow: initial !important;
/*    margin: .5rem !important;*/
}

.b-form-tags.focus {
    border-color: transparent !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.b-form-tags-input::placeholder {
    color: #716E6E !important;
    font-size: 12px !important;
    opacity: 1;
}