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

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--dim-blue-color);
}

:focus {
  outline: none;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h2.title {
  font-size: 18px;
}

h1.header {
  font-size: 25px;
}
/* start side bar*/
.sidebar {
  min-height: 100vh;
}

.sidebar .logo {
  display: block;
  margin: 0 auto 40px;
  text-decoration: none;
  color: #ab351a;
  font-weight: 800;
  font-style: italic;
  font-size: 2rem;
}

.sidebar .logo::before,
.sidebar .logo::after {
  content: "";
  position: absolute;
  background-color: #ab351a;
  left: 50%;
  transform: translateX(-50%);
}

.sidebar .logo::before {
  width: calc(100% + 40px);
  height: 1px;
  bottom: -5px;
}

.sidebar .logo::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  bottom: -10px;
  outline: 5px solid white;
}

.sidebar li a.selected,
.sidebar li a:hover {
  background-color: #dbdada;
}

@media (max-width: 767px) {
  .sidebar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sidebar .logo {
    font-size: 13px;
    margin: 0 auto;
    padding: 20px 0;
  }

  .sidebar .logo::before,
  .sidebar .logo::after {
    display: none;
  }

  .sidebar a {
    justify-content: center;
  }
}

.sidebar-content {
  position: sticky;
  top: 0;
}
/* end sidebar */

/* start search bar */
.container .search-bar form::after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  color: var(--grey-color);
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.container .search-bar form input {
  width: 160px;
  padding: 10px 0 10px 40px;
  border: 1px solid #ccc;
}

.container .search-bar form input:focus {
  width: 180px;
}

.container .search-bar form input:focus::placeholder {
  opacity: 0;
}

.container .search-bar .search-bar-icons .notifications::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  top: -8px;
  right: -5px;
}
/* end search bar */

/* start content */
.container .content {
  background-color: #f1f5f9;
}

.container .content h1 {
  margin-bottom: 40px;
}

.container .content h1::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 3px;
  background-color: white;
  bottom: -10px;
  left: 0;
}

.container .content h1::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: black;
  bottom: -10px;
  left: 0;
}

.boxes {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

@media (max-width: 767px) {
  .boxes {
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
  }
}
/* end content */
.box .head {
  text-align: center;
}

.box .head .contact {
  position: absolute;
  top: -15px;
  left: -10px;
}

.box .head .contact i {
  transition: var(--transition-time);
}

.box .head .contact i:hover {
  color: white;
  background-color: var(--blue-color);
}

.box .head > img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.box .body .vip {
  text-transform: uppercase;
  color: rgb(245 158 11 / 25%);
  font-size: 40px;
  font-weight: bold;
}
