@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,400;0,6..12,900;1,6..12,400&display=swap");

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: small;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

select:focus {
  outline: none;
  border: none;
  /* sh */
}

.btn-primary {
  background-color: #022184;
}

.btn {
  border-radius: 25rem;
  padding: 0.4em 1.3em;
}

.btn:disabled {
  border: 0;
}

.btn-secondary {
  background-color: #218442;
  border-radius: 25rem;
  padding: 0.4em 1.3em;
}

.clickable {
  cursor: pointer;
}

/* remove arrows from number type input */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.row-bg-red {
  background-color: #fa8072 !important;
}

.row-bg-green {
  background-color: #5dbb63 !important;
}
.scheduledays > div {
  width: 800px !important;
}

.loader-container {
  z-index: 1500;
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.error-message {
  color: red;
}

.error-input {
  border-color: red !important;
}

.cursor-na {
  cursor: not-allowed !important;
}

.action-btn {
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
}

.disabled-action-btn {
  cursor: not-allowed;
}

.geo-list {
  margin: 0;
  list-style: none;
  padding: 0;
}

.geo-list-item {
  margin-bottom: 0.75em;
  display: flex;
  align-items: center;
}

/* ANTD COMPONENTS OVERRIDING */
/* date - time pickers */
.ant-picker:hover,
.ant-picker-focused,
.ant-picker.ant-picker-disabled {
  background: #fff !important;
}

/* Tree */
span.ant-tree-node-selected,
span.ant-tree-node-content-wrapper:hover {
  background-color: #fff !important;
}

.ant-tree-node-content-wrapper {
  cursor: auto !important;
}

.ant-badge,
.tree-container,
.ant-collapse {
  width: 100%;
}

/* Collapse */
.ant-collapse {
  border: none;
  background: transparent;
}

.ant-collapse-item {
  border: 1px solid #d9d9d9;
  background-color: rgba(0, 0, 0, 0.05);
}

.ant-collapse-header-text {
  font-weight: 600;
}

.ant-input-search {
  width: 70%;
}

/* Tags */
.ant-tag {
  font-size: small;
}

/* antd upload*/
.ant-upload {
  padding: 0 4em;
}

.ant-upload-hint span {
  font-weight: 600;
  font-size: 1.3rem;
  color: #0d6efd;
}

/* file uploaded case */
.file-uploaded .ant-upload {
  border-color: green !important;
  border-width: 2px;
}

.file-uploaded svg,
.file-uploaded .ant-upload-hint span {
  color: green;
}
.file-uploaded .ant-upload-hint span {
  font-size: 15px;
  font-weight: 600;
  color: green;
  padding: 3px 8px;
  border-radius: 50%;
  background-color: #bbdaef;
}

.card-body * {
  font-family: "Nunito Sans", sans-serif !important;
}
.ant-collapse-header-text {
  font-weight: 500;
}

/* .ant-tree-list-holder {
  overflow-y: scroll !important;
} */

.no-data-text {
  text-align: center;
  padding: 1em 0;
  font-size: 1.05rem;
  color: #808080;
}

.col-llg-3 {
  flex: 0 0 16%;
  max-width: 16%;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .col-llg-3 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.ant-notification-notice-message {
  font-size: 13px !important;
  font-weight: 600 !important;
}
.ant-notification-top.ant-notification-stack
  > .ant-notification-notice-wrapper {
  /* padding: 0px 0px !important;
  width: 300px !important; */
}
.ant-notification-notice {
  padding: 12px 12px !important;
}
.ant-notification-notice-message {
  margin-bottom: 0 !important;
}
.ant-notification
  .ant-notification-notice-wrapper
  .ant-notification-notice-icon {
  font-size: 18px !important;
}

.ant-notification
  .ant-notification-notice-wrapper
  .ant-notification-notice-close {
  top: 10px !important;
}
.flexbx {
  display: flex;
}
.margin-val .form-switch {
  display: flex;
  flex-direction: column-reverse;
  padding: 0;
}
.margin-val .form-switch label {
  font-size: 1rem;
  font-weight: bold;
}
.margin-val .form-switch .form-check-input {
  margin-left: 0;
  margin-top: 10px;
  width: 3em;
  height: 1.5em;
}
.initial {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background-color: #c08810;
  color: #fff;
  font-size: 8;
  font-weight: 500;
}

/* iframe {
  display: none;
} */

.error-page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}

.horizontal-line {
  border-top: 1px solid #455a64;
  margin: 38px 0;
}

/* Custom Scrollbar Styling */
/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #8bb5ff;
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #6da3ff;
}

::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #8bb5ff #f1f1f1;
}

/* For all scrollable elements */
* {
  scrollbar-width: thin;
  scrollbar-color: #8bb5ff #f1f1f1;
}

a {
  text-decoration: none;
}

/* selector in the dayparts */
.cVtHuD {
  color: #000 !important;
}
