/**
* colors
*/
:root {
  --color-base: #f19a28;
  --color-base-hover: #e98500eb;
  --color-base-border: #ff9100;
  --color-base-label: #db7d00b3;
  --color-input-disabled: #f8f9fa;
}

/**
* global styles
*/
*,
body,
html {
  outline: none;
  scroll-behavior: smooth;
}

/**
* body
*/
body {
  padding: 0;
  margin: 0;
}

/**
* icon tag
*/
i {
  vertical-align: middle !important;
}

/**
* scrollbar
*/
::-webkit-scrollbar {
  width: 5px;
  background-color: #d9d9d969;
  /* border-radius: 3px; */
}
::-webkit-scrollbar-track {
  background: transparent;
  /* border-radius: 3px; */
}
::-webkit-scrollbar-thumb {
  background-color: #696cff36;
  /* border: 1px solid #ffffff; */
  /* border-radius: 3px; */
  cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #666;
  border: 1px solid #353535;
}

@media (min-width: 1500px) {
  ::-webkit-scrollbar {
    visibility: hidden;
  }
  ::-webkit-scrollbar-thumb {
    visibility: hidden;
  }
}

/**
* custom
* * click type touch none
*/
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/**
* custom
* card 
*/
.card {
  transition: all 0.2s ease;
}
.card:hover {
  background-color: #fff;
  box-shadow: 0px 5px 11px 0px #99999980;
}

/**
* custom
* item show timer with skeleton style
*/
.skeleton {
  display: none;
  opacity: 0;
  transform: translateY(100px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.skeleton.show {
  opacity: 1;
  transform: translateY(0);
}

/**
* custom
* preloader
*/
#preloader {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: opacity 1s ease-out;
}

#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

#preloader .spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #696cffa6;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1.5s linear infinite;
  opacity: 0.5;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(90deg);
  }
  70% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**
* custom
* scroll container
* info : scrol style in sm column
*/
.no-scrollbar {
  -ms-overflow-style: none !important; /* IE and Edge */
  scrollbar-width: none !important; /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
}

.scroll-container {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto !important;
  padding-bottom: 10px !important;
}

.scroll-container .nav-item {
  flex-shrink: 0 !important;
}

.scroll-container .nav-item:last-child {
  margin-right: 0 !important;
}

.scroll-container .nav-link {
  /* padding: 0.75rem 1rem !important; */
  /* border: 1px solid #ccc !important; */
  /* border-radius: 0.25rem !important; */
  /* background-color: #f8f9fa !important; */
  /* color: #495057 !important; */
  /* cursor: pointer !important; */
  /* white-space: nowrap !important;   */
}
