/* Toolbox Custom */
.tools .tabs-wrap {
  margin-bottom: 2rem;
}
.tools .nav-tabs {
  border-color: #88c3ed;
}
.tools .nav-tabs .nav-link {
  font-weight: 600;
  color: var(--nts-secondary);
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}
.tools .nav-tabs .nav-link:hover {
  border-color: #88c3ed;
}
.tools .nav-tabs .nav-link.active {
  color: var(--nts-primary);
  border-color: #88c3ed #88c3ed #fff;
}
.card-tile {
  border: 1px solid #dbe7ff;
  border-radius: 1rem;
  padding: 1.25rem 1.25rem;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.card-tile:hover {
  box-shadow: 0 0 1rem rgba(136, 195, 237, 0.5);
}
.tile-row {
  height: 100%;
}
.tile-icon {
  width: 70px;
  height: 70px;
  display: grid;
  align-self: center;
  place-items: center;
  flex: 0 0 70px;
}
.tile-text {
  padding-left: 1.25rem;
}
.tile-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nts-primary);
  padding-bottom: 0.75rem;
  margin: 0;
  line-height: 1.2;
}
.tile-desc {
  font-size: 1rem;
  color: var(--nts-secondary);
}
.ellipsis-two-line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}
.alert-blue {
  color: var(--nts-secondary);
  background-color: #f1f6ff;
  border-color: #bfe4ff !important;
}

.card-tool {
  border: 1px solid #dcedfa;
  border-radius: 1.25rem;
  margin: auto;
  box-shadow: 0 0 2rem rgba(136, 195, 237, 0.25);
}
.tool-title {
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.tool-desc {
  color: var(--nts-secondary);
  margin-bottom: 1.25rem;
}
.card-code {
  font-size: 1rem;
  color: #555555;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}
.tooltip-span {
  visibility: hidden;
  background-color: black;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.tooltip-span::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
.tooltip-container:hover .tooltip-span {
  visibility: visible;
  opacity: 1;
}

.pre-data {
  background-color: #fbfbfb;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.char-count-number {
  font-size: 1.75rem;
  font-family: var(--font-family-secondary);
}

.password-range {
  height: 0.75rem;
  border-radius: 2rem;
  outline: 0;
  opacity: 0.9;
}
.password-range:hover {
  opacity: 1;
}
.password-range:focus::-webkit-slider-thumb {
  border: 1px solid var(--nts-primary);
  background: var(--nts-primary);
  box-shadow: none;
}
.password-range:focus::-moz-range-thumb {
  border: 1px solid var(--nts-primary);
  background: var(--nts-primary);
  box-shadow: none;
}
.password-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  border: 1px solid var(--nts-primary);
  border-radius: 50% !important;
  margin-top: -0.65rem;
  background: var(--nts-primary);
  cursor: pointer;
}
.password-range::-webkit-slider-runnable-track {
  height: 0.75rem;
  background-color: #add8ff;
  border: 1px solid #edf6ff;
}
.password-range::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.625rem;
  height: 1.625rem;
  border: 1px solid var(--nts-primary);
  border-radius: 50% !important;
  margin-top: -0.5rem;
  background: var(--nts-primary);
  cursor: pointer;
}
.form-check-input[type='checkbox'] {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
  margin-left: -1.85rem;
}
.form-check-input:focus {
  border-color: #7ea1ff;
  box-shadow: none;
}
.form-check-input:checked {
  background-color: #73bbf5;
  border-color: #73bbf5;
}
.form-check-inline {
  margin-right: 3.25rem;
}

.breadcrumb-sep {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.table thead th {
  background-color: #edf6ff;
}

.btn-icon {
  font-size: 1.8rem;
  padding: 0.25rem;
  cursor: pointer;
}
.btn-outline-nts {
  font-weight: 600;
  color: var(--nts-primary);
  border-color: var(--nts-primary);
  border-width: 2px;
}
.btn-check + .btn-outline-nts:hover,
.btn-outline-nts:hover {
  color: #fff;
  background-color: var(--nts-primary);
  border-color: var(--nts-primary);
}
.btn-check:focus + .btn-outline-nts,
.btn-outline-nts:focus {
  box-shadow: none;
}
.btn-check:active + .btn-outline-nts,
.btn-check:checked + .btn-outline-nts,
.btn-outline-nts.active,
.btn-outline-nts.dropdown-toggle.show,
.btn-outline-nts:active {
  color: #fff !important;
  background-color: var(--nts-primary) !important;
  border-color: var(--nts-primary) !important;
}
.btn-check:active + .btn-outline-nts:focus,
.btn-check:checked + .btn-outline-nts:focus,
.btn-outline-nts.active:focus,
.btn-outline-nts.dropdown-toggle.show:focus,
.btn-outline-nts:active:focus {
  box-shadow: none;
}
.btn-outline-nts.disabled,
.btn-outline-nts:disabled {
  color: var(--nts-primary);
  background-color: transparent;
}
.btn-clear {
  font-weight: 600;
  color: var(--nts-primary);
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
}
.btn-clear:focus,
.btn-clear:hover {
  color: #fff;
  background-color: var(--nts-primary);
}
.btn-color-square {
  width: 6.75rem;
  height: 6.75rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.btn-color-square:focus {
  box-shadow: none;
}
.btn-color-square span {
  font-size: 0.875rem;
  font-family: 'Kanit', sans-serif;
  letter-spacing: 1.125px;
}
.spacer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.text-ccc {
  color: #ccc;
}
.w-15 {
  width: 15% !important;
}
.h-30px {
  height: 30px;
}
