/* flinder overrights */
body {
  font-family: 'Avenir Next Arabic W01 Regular', 'Montserrat';
}
select, .filter-select, .w-select {
border:none !important;
-webkit-appearance: none !important;
-moz-appearance: none !important;
appearance: none !important;
-ms-appearance: none !important; /* get rid of default appearance for IE8, 9 and 10*/
}
/* calc for the left side nav to be full height on the scroll minus the logo and close btn */
.sidenav-scroll-wrapper {
height: -webkit-calc(100vh - 100px);
height: -moz-calc(100vh - 100px);
height: calc(100vh - 100px);
overflow-y: auto;
overflow-x: hidden !important;
}
/* fixes the scroll bars sometimes showing */
.filter-scroll-wrapper {
overflow-x: auto;
overflow-y: hidden !important;
}
@media screen and (max-width: 479px) {
.dashboard-name {
  display:inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 17ch;
}
}
@media screen and (max-width: 350px) {
.dashboard-name {
  display:inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12ch;
}
}
@media screen and (max-width: 250px) {
.dashboard-name {
  display:inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 6ch;
}
} 
/* the filter menu jumps down - no idea why, strange one */
/* .filter-menu-btn {
top: 0;
} */
/* filter menu heading title */
.filter-heading {
color: black;
padding-left: 10px;
}
/* padding on the sides on the filter menu */
.filternav-scroll-wrapper {
padding:0 10px 0 10px;
}
/* removes underline from bootstrap */
.sidenav-link:hover {
text-decoration: none;
}
/* removes underline from bootstrap */
.header-dropdown-link:hover {
text-decoration: none;
color: black;
}
.form-control {
font-size: 14px;
padding-left: 10px !important;
padding-right: 10px !important;
background-color: #f7f7f7 !important;
}

.form-control-tile {
  font-size: 14px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  background-color: white !important;
  border: none !important;
  width: 300px;
  }


/* main select button */
.btn {
padding: 0.375rem 0.75rem;
/* font-size: 1rem; */
line-height: 1.5;

font-size: 14px;
font-family: "Avenir Next Arabic W01 Regular";
}
/* the select all / none buttons within the dropdown */
.btn-sm, .btn-group-sm > .btn {
padding: 0.25rem 0.5rem;
/* font-size: 0.875rem; */
line-height: 1.5;
border-radius: 0.2rem;

font-size: 12px;
}
/* main select btn */
.btn-light {
background-color: white;
border-color: #f7f7f7;
}
/* select btn on hover */
.btn-light:hover {
background-color: #f7f7f7;
border-color: white;
}
/* select dropdown menu */
.dropdown-menu {
background-color: white;
}
.dropdown-item {
/* padding: 0.25rem 1.5rem;
clear: both;
font-weight: 400;
color: #212529;
background-color: transparent; */
font-size: 14px;
}
/* dropdown option item */
.dropdown-item:hover {
background-color: #f7f7f7;
}
/* once dropdown is out this is the active state of the btn */
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
background-color: #f2f2f2;
}
/* single select dropdown - selected item */
.dropdown-item.active, .dropdown-item:active {
background-color: #F82A72;
}
/* multiselect tick */
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
color: #F82A72;
}
.btn-primary:hover, .btn-secondary:hover, .btn-alt:hover {
  text-decoration: none;
}

.alert {
  padding: 20px;
  background-color: #f44336; /* Red */
  opacity: 50%;
  color: white;
  margin-bottom: 15px;
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}