html {
  min-height: 100%;
}

body {
    color: #F5E8D8;
    background-image: linear-gradient(to bottom right, #333333, #202020);
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    --bs-body-bg: #333333;
    --bs-body-color: #F5E8D8;
    --bs-border-color: #252525;
}

#maincontent {
  transition: margin-left .5s;
  padding: 20px;
}

.form-control::placeholder { /* Standard selector */
    color: #F5E8D8; /* Your desired color */
    opacity: 1; /* Ensure full opacity in Firefox */
}

/* For older browsers (IE/Edge) */
.form-control:-ms-input-placeholder {
    color: #F5E8D8;
}

.form-control::-ms-input-placeholder {
    color: #F5E8D8;
}

.vector-red {
    /*color: #f44336;*/
    color: rgb(244, 67, 54, 0.8);
}

.dropdown-item:hover {
  background-color: #707070;
  color: white;
}

.ui-btn {
  box-sizing: border-box;
  padding: 8px 12px;
  align-items: center;
  justify-content: center;
  color: #F5E8D8;
  font: 600 16px "Open Sans", sans-serif;
  background: rgb(28, 28, 28);
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ui-btn:hover {
  animation: pulse 0.4s ease-out forwards;
}

.ui-btn:not(:hover) {
  box-shadow: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
  }
}

.ui-btn span {
  box-sizing: border-box;
  position: relative;
  background: inherit;
}

.ui-btn span::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  background: inherit;
}

.card {
    color: #F5E8D8;
    background-color: #333;
    box-shadow: 3px 3px 5px #252525;
}

.btn {
    color: #F5E8D8;
    box-shadow: initial;
}

.gradient-card {
  background-image: linear-gradient(45deg,#170000 0%, #B53300 75%, #F1940B 100%);
  border-color: #170000;
} 

.input-group-text {
    color: inherit;
    background-color: inherit;
    border-color: #333;
}

.form-control:focus {
    color: inherit;
    background-color: #474747;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
}

.clear-margin-bottom {
    margin-bottom: 0;
}

.clear-padding-bottom {
    padding-bottom: 0;
}

.clear-padding-left {
    padding-left: 0;
}

.clear-padding-right {
    padding-right: 0;
}

.f-18 {
    font-size: 18px;
}

.f-18-650 {
    font-size: 18px;
    font-weight: 650;
}

.f-22-600 {
    font-size: 22px;
    font-weight: 600;
}

.f-24-600 {
    font-size: 24px;
    font-weight: 600;
}

.f-34-600 {
    font-size: 34px;
    font-weight: 600;
}

.p-r-10 {
    padding-right: 10px;
}

.p-l-0-r-10 {
    padding-left: 0;
    padding-right: 10px;
}

.h-140 {
    height: 140px;
}

.h-180 {
    height: 180px;
}

.btn {
  background: #333333;
  border: 1px solid #3c3c3c;
}

.btn-default-border {
    border: var(--bs-border-width) solid var(--bs-border-color);
}

.load-row {
  width: 100px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.load-row span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #f76002;
  border-radius: 50px;
  animation: up-down6 0.5s ease-in infinite alternate;
}

.load-row span:nth-child(2) {
  background: #e85b04c4;
  animation-delay: 0.16s;
}

.load-row span:nth-child(3) {
  background: #e85b0491;
  animation-delay: 0.32s;
}

.load-row span:nth-child(4) {
  background: #e85b0456;
  animation-delay: 0.48s;
}

@keyframes up-down6 {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}