/* Custom Scroll Bar */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Custom Logo Size */
.logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 22px;
}

.btn {
    --bs-btn-font-size: 0.8rem;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.exo-2-<uniquifier> {
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
  font-family: "Exo 2", sans-serif;
}

.btn.btn-outline-premium {
  	background-color: var(--primary_color);
    border-color: var(--primary_color);
    color: #FFFFFF;
}

.btn.btn-outline-premium:hover {
  	background-color: #be4048;
	border-color: #be4048;
}