
#changing{
  background-color: #ffffff;
}

.changings{
  background-color: #ffe657;
}

.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  background-color: #f9f9f9;
  color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* Glom button css starts */
.glow_button {
  
  -webkit-border-radius: 60px;
  border-radius: 40px;
  border: none;
  color: #eeeeee;
  padding: 5px;
}
.nav-link{
  margin-left: 8px;
  font-size: 15px;
}
@keyframes glowing {
0% {
  background-color: #2ba805;
  box-shadow: 0 0 5px #2ba805;
}
50% {
  background-color: #49e819;
  box-shadow: 0 0 20px #49e819;
}
100% {
  background-color: #2ba805;
  box-shadow: 0 0 5px #2ba805;
}
}
.glow_button {
  animation: glowing 1300ms infinite;
}
/* Glom button css ends */

/* Glom sidebar button css starts */
.glow_sidebar_button {
  background-color: #1c87c9;
  /* -webkit-border-radius: 60px; */
  /* border-radius: 60px; */
  border: none;
  color: #eeeeee;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  font-size: 20px;
  padding: 5px 15px;
  /* text-align: center; */
  text-decoration: none;
  margin-top: 10px;
  margin-botto: 10px;
}

@keyframes glowing {
0% {
  background-color: #2ba805;
  box-shadow: 0 0 5px #2ba805;
}
50% {
  background-color: #49e819;
  box-shadow: 0 0 20px #49e819;
}
100% {
  background-color: #2ba805;
  box-shadow: 0 0 5px #2ba805;
}
}
.glow_sidebar_button {
  animation: glowing 1300ms infinite;
}
/* Glom sidebar button css ends */

.sidebar_button {
  color: white;
}

.alert-width {
  width: 50%;
}


@media screen and (max-width: 992px){
  .custom-nav{
    flex-direction: row !important;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .navbar-nav{
    margin-left: 0;
  }
  .alert-width {
    width: 60%;
  }
}
@media screen and (max-width: 576px){
  .alert-width {
    width: 95%;
  }
}


*,
*::after,
*::before {
  box-sizing: border-box;
}


body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  width: 100%;
  background: rgb(32,204,242);
  background: linear-gradient(rgba(32,204,242,1) 0%, rgba(31,164,205,1) 100%);
  border-width: 1px 0 0;
  border-style: solid none none;
  border-color: #1c91c3;
  color: #333333;
}


.nav__list {
  list-style: none;
  font-size: 14px;
  padding: 0;
  display: flex;
  overflow-x: auto;
  margin: 0 auto;
}


@media screen and (min-width: 767px){
  .nav__list {
    list-style: none;
    font-size: 14px;
    padding: 0;
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

.nav__list__item {
  padding: 13px 30px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.nav__list__item:first-child {
  background: #1c91c3;
}

.nav__list__item:hover {
  background: #1c91c3;
}

.nav__list__item > a {
  text-decoration: none;
  color: inherit;
}

.hover-element {
  position: absolute;
  inset: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: #222;
  color: #fff;
  text-transform: uppercase;
  transition: opacity 300ms;
}

.hover-parent:hover .hover-element {
  opacity: 1;
}

.dropdown-item:hover {
  background-color: rgb(32,204,242);

}