/* Typefaces */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
/* Colors */
/* Background Themes */
/*Gradients*/
/* Sizing */
.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-33 {
  width: 33% !important;
}

.w-66 {
  width: 66% !important;
}

/* Vibility UI Components */
/* Type */
.t-header {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.t-header {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}

/* Component Mixins */
/* Card Componenets */
/* /Card Componenets */
/* UI Cards */
.t-card-lite {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  border: 0.5px solid transparent;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(133, 150, 168, 0.15);
  transition: 0.25s ease-in-out;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}


.t-card-dark {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #2b2b2b;
  border: 0.5px solid transparent;
  border-radius: 10px;
  color: #ffffff;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
  transition: 0.25s ease-in-out;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}


/* Card Banners */
.card-banner-sm {
  margin: -1rem -1rem 1rem -1rem;
  height: 50px;
  border-radius: 10px 10px 0 0;
}

.card-banner-md {
  margin: -1rem -1rem 1rem -1rem;
  height: 100px;
  border-radius: 10px 10px 0 0;
}

.card-banner-lg {
  margin: -1rem -1rem 1rem -1rem;
  height: 200px;
  border-radius: 10px 10px 0 0;
}

.card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 10px 0 0 10px;
}

/* Card Images */
.t-card-img {
  height: 150px !important;
}

.t-card-img img {
  width: 100% !important;
  border-radius: 10px !important;
  margin-bottom: 1rem !important;
  max-height: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* BUTTONS */
/* Solid Buttons */
.btn-blue {
  background-color: #3c9dff !important;
  color: white !important;
}
.btn-blue:hover {
  background-color: #3488dc !important;
}

.btn-rose {
  background-color: #ee4169 !important;
  color: white !important;
}
.btn-rose:hover {
  background-color: #ca3457 !important;
}

.btn-orange {
  background-color: #ff972b !important;
  color: white !important;
}
.btn-orange:hover {
  background-color: #dc852a !important;
}

.btn-lime {
  background-color: #45d66e !important;
  color: white !important;
}
.btn-lime:hover {
  background-color: #3eb560 !important;
}

.btn-purple {
  background-color: #971fe4 !important;
  color: white !important;
}
.btn-purple:hover {
  background-color: #7013ad !important;
}

.btn-black {
  background-color: #121212 !important;
  color: white !important;
}

/* Gradient Buttons */
.btn-blue-gradient {
  background: linear-gradient(135deg, #386dff 0%, #42e9ff 100%) !important;
  color: white !important;
}

.btn-violet-gradient {
  background: linear-gradient(135deg, #ff444d 0%, #bb39b7 100%) !important;
  color: white !important;
}

.btn-orange-gradient {
  background: linear-gradient(135deg, #f7ae40 0%, #fc7531 100%) !important;
  color: white !important;
}

.btn-green-gradient {
  background: linear-gradient(135deg, #40f786 0%, #00d1d1 100%) !important;
  color: white !important;
}

.btn-purple-gradient {
  background: linear-gradient(135deg, #cf40f7 0%, #6200d1 100%) !important;
  color: white !important;
}

.btn-black-gradient {
  background: linear-gradient(135deg, #404359 0%, black 100%) !important;
  color: white !important;
}

/* Outline Buttons */
.btn-outline-blue {
  background-color: transparent !important;
  border: #3c9dff 1px solid !important;
  color: #3c9dff !important;
}
.btn-outline-blue:hover {
  background-color: #3c9dff !important;
  color: white !important;
}

.btn-outline-rose {
  background-color: transparent !important;
  border: #ee4169 1px solid !important;
  color: #ee4169 !important;
}
.btn-outline-rose:hover {
  background-color: #ee4169 !important;
  color: white !important;
}

.btn-outline-orange {
  background-color: transparent !important;
  border: #ff972b 1px solid !important;
  color: #ff972b !important;
}
.btn-outline-orange:hover {
  background-color: #ff972b !important;
  color: white !important;
}

.btn-outline-lime {
  background-color: transparent !important;
  border: #45d66e 1px solid !important;
  color: #45d66e !important;
}
.btn-outline-lime:hover {
  background-color: #45d66e !important;
  color: white !important;
}

.btn-outline-purple {
  background-color: transparent !important;
  border: #971fe4 1px solid !important;
  color: #971fe4 !important;
}
.btn-outline-purple:hover {
  background-color: #971fe4 !important;
  color: white !important;
}

.btn-outline-black {
  background-color: transparent !important;
  border: #121212 1px solid !important;
  color: #121212 !important;
}
.btn-outline-black:hover {
  background-color: #121212 !important;
  color: white !important;
}

/* Corners */
.rounded-pill-sm {
  padding: 0 10px !important;
  border-radius: 50rem !important;
}

/* Colors */
.bg-blue {
  background-color: #3c9dff !important;
}

.bg-rose {
  background-color: #ee4169 !important;
}

.bg-orange {
  background-color: #ff972b !important;
}

.bg-lime {
  background-color: #45d66e !important;
}

.bg-black {
  background-color: #121212 !important;
}

.bg-purple {
  background-color: #971fe4 !important;
}

/* Text Colors */
.text-blue {
  color: #3c9dff !important;
}

.text-rose {
  color: #ee4169 !important;
}

.text-orange {
  color: #ff972b !important;
}

.text-lime {
  color: #45d66e !important;
}

.text-black {
  color: #121212 !important;
}

.text-purple {
  color: #971fe4 !important;
}

.disabled-outline {
    color: grey;
    opacity: .4;
    cursor: default !important;
}

/* Gradient Backgrounds */
.bg-blue-gradient {
  background: linear-gradient(135deg, #386dff 0%, #42e9ff 100%) !important;
}

.bg-violet-gradient {
  background: linear-gradient(135deg, #ff444d 0%, #bb39b7 100%) !important;
}

.bg-orange-gradient {
  background: linear-gradient(135deg, #f7ae40 0%, #fc7531 100%) !important;
}

.bg-green-gradient {
  background: linear-gradient(135deg, #40f786 0%, #00d1d1 100%) !important;
}

.bg-purple-gradient {
  background: linear-gradient(135deg, #cf40f7 0%, #6200d1 100%) !important;
}

.bg-black-gradient {
  background: linear-gradient(135deg, #404359 0%, black 100%) !important;
}

/* sourceMappingURL=vibilityui.css.map */
