@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");


/*--------------------------------------------------------------
# Pre-defined colors
--------------------------------------------------------------*/

:root {
  --primary: rgb(14 165 233);
  --danger: #dc3545;
  --light-gray: #929292;
}
.w-87 {
  width: 86%;
}
.text-dark-gray {
  color: #969696 !important;
}

.text-blue-dark{
  color:  rgb(0, 119, 255) !important;
}

.bg-slate {
  background-color: rgb(226 232 240) !important;
}

.bg-blue-light {
  background-color: rgb(14 165 233) !important;
}

.icon-primary {
  color: var(--light-gray);
  transition: all 0.3s;
}

.icon-primary:hover {
  color: var(--primary);
}

.icon-danger {
  color: var(--danger);
  transition: all 0.3s;
}

.icon-danger:hover {
  color: var(--light-gray);
}

.m-0 {
  margin: 0 !important;
}

.mb--1 {
  margin-bottom: -0.5rem !important;
}

/*--------------------------------------------------------------
# Pre-defined fonts
--------------------------------------------------------------*/
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif !important;
}

a {
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

textarea {
  resize: none;
}

hr {
  margin: 10px 0px;
  color: darkgray;
}

::-moz-selection {
  color: #ffffff;
  background: var(--bs-primary);
}

::selection {
  color: #ffffff;
  background: var(--bs-primary);
}

::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
*:focus {
  box-shadow: none !important;
  outline: 0px !important;
}

.form-control,
.form-select {
  border-radius: 4px;
  border: 1px solid #ced4da;
}

.form-control:focus,
.form-select:focus {
  background-color: #fdfdfd;
  border: 1.5px solid var(--bs-primary);
  outline: 0;
  box-shadow: 0 0 0.25rem 0.05rem rgba(105, 108, 255, 0.1);
}