@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&family=Satisfy&display=swap');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.sig {
  font-family: 'Satisfy', cursive;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
}

body {
  min-height: 100vh;
}

.bgBlue {
  background-image: url('../img/bg/main.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  position: relative;
}

.bgLGBlue {
  background-image: url('../img/bg/lgMain.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  position: relative;
}

.row {
  margin: 0px;
}

.rounded-4 {
  border-radius: 8px;
}

.rounded-5 {
  border-radius: 10px;
}

.rounded-6 {
  border-radius: 13px;
}

.rounded-7 {
  border-radius: 15px;
}

.rounded-8 {
  border-radius: 20px;
}

.rounded-top-0 {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.rounded-bottom-0 {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-right-0 {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-left-0 {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.table tr th:first-child,
.table tr td:first-child {
  border-radius: 10px 0px 0px 10px;
}

.table tr th:last-child,
.table tr td:last-child {
  border-radius: 0px 10px 10px 0px;
}

table,
table th,
table td,
table thead,
table tfoot {
  border: 0px;
  border-collapse: separate;
  border-spacing: 0px 5px;
  vertical-align: middle;
}

.table tr td:nth-child(1),
.table tr th:nth-child(1) {
  border-radius: 5 px 0 px 0 px 5 px;
}

.table tr td:last-child,
.table tr th:last-child {
  border-radius: 0 px 5 px 5 px 0 px;
}

.Navprofile {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background-size: cover;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-background-color);
  background-color: #0e6efd;
  border-radius: 15px;
}

::-webkit-scrollbar-button {
  background-color: #86b6fd;
  height: 10px;
}

::-webkit-scrollbar-corner {
  border-radius: 15px;
}

.text-justify {
  text-align: justify;
}