@import url("https://fonts.googleapis.com/css?family=Roboto");

.theme-light {
  --font-color-primary: black;
  --background-color-secondary: #f5f9fc;
  --background-color: white;
  --image-border1: coral;
  --color-accent-2: #b266ff;
  --hover-color: whitesmoke;
  --color-accent: #eaedf2;
  --font-color-head: #525f7f;
}
.theme-dark {
  --font-color-primary: white;
  --background-color-secondary: black;
  --background-color: #3a3a3a;
  --image-border1: #caa81b;
  --color-accent-2: #b3f8f8;
  --hover-color: #242526;
  --color-accent: #77838c;
  --font-color-head: #ebeef2;
}
a {
  color: var(--font-color-primary);
}
a:hover {
  color: var(--font-color-head);
}
.dpBody {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-container {
  position: relative;
  border-radius: 22px;
  min-width: 100px;
}
.menu-container.open > .menu-button {
  color: var(--font-color-primary);
}
.menu-container.open > .menu-dropdown {
  opacity: 1;
  border-radius: 11px;
  transition: opacity 0.2s, box-shadow 0.3s, border-radius 0.3s,
    transform 0.2s 0s ease-out;
  transform: none;
}
.menu-button {
  background: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border: none;
  padding: 0 8px;
  padding-right: 20px;
  height: 44px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  outline: none !important;
  background-color: var(--background-color);
  color: var(--font-color-primary);
  z-index: 1;
  position: relative;
  border-radius: 22px 22px 11px 11px;
}
.menu-button > img {
  border-radius: 100%;
  height: 30px;
  width: 30px;
  margin-right: 13px;
}
.menu-dropdown {
  box-shadow: 0 0 60px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  background-color: var(--background-color);
  border: 1px solid var(--background-color);
  padding: 0;
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  overflow: hidden;
  border-radius: 22px 22px 11px 11px;
  transition: opacity 0.2s, box-shadow 0.4s, border-radius 0.4s,
    transform 0s 0.2s ease-out;
  transform: translateY(10px);
  transform-origin: 0 0;
  padding-top: 44px;
}
.menu-dropdown .content {
  display: none;
  overflow: hidden;
  padding: 8px 12px 2.6666666667px;
}
.menu-dropdown .content > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-dropdown .content > ul > li {
  list-style: none;
  font-size: 16px;
  margin: 0 0 15px;
  padding: 0;
  cursor: pointer;
}
.menu-dropdown > .menu-button {
  border: none;
  color: #000;
}
.bottomBut .upperBut {
  display: inline;
}
.allBut {
  display: block;
}
