﻿@charset "UTF-8";
/*********
  Zmiany w pliku należy robić tylko w pliku SCSS i przebudować 'recznie' poprzez dodatek do VS np. 'Web Compiler 2022+'
*/
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-button {
  background-color: transparent;
  font-size: 16px;
  border: 1px transparent solid;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  width: auto;
  min-width: 32px;
  height: 32px;
  display: flex;
}
.dropdown .dropdown-button img {
  display: flex;
  margin: auto;
}
.dropdown .dropdown-button:hover, .dropdown .dropdown-button:active, .dropdown .dropdown-button:focus {
  background-color: rgba(0, 0, 0, 0.2);
}
.dropdown .dropdown-button span {
  margin: 0;
  padding: 0;
}
.dropdown .black img {
  filter: invert(1);
}
.dropdown .horizontal {
  transform: rotate(90deg);
}

.dropdown-content {
  background-color: white;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 8px;
  border-radius: 8px;
  margin-top: 4px;
}
.dropdown-content.left {
  right: 0;
}
.dropdown-content.right {
  left: 0;
}
.dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
}
.dropdown-content .menu-item {
  display: flex;
  height: 32px;
  align-items: center;
  cursor: pointer;
  padding: 4px 8px;
  gap: 8px;
  border-radius: 4px;
}
.dropdown-content .menu-item .icon {
  display: block;
  height: 20px;
  width: 20px;
  align-content: center;
  margin: 0;
  padding: 0;
}
.dropdown-content .menu-item .icon img {
  height: 100%;
  width: 100%;
  display: block;
}
.dropdown-content .menu-item .name {
  font-size: 16px;
  color: #5a5a5a;
  font-weight: 400;
  text-wrap: nowrap;
  align-content: center;
}
.dropdown-content .menu-item:hover {
  background-color: #ddd;
}
.dropdown-content .linkSubmitButton {
  display: flex;
  color: #5a5a5a;
  height: 32px;
  border-radius: 8px;
  padding: 4px;
}
.dropdown-content .linkSubmitButton:hover {
  background-color: #ddd;
}

#dropdownContainer {
  z-index: 99;
}
#dropdownContainer input {
  display: none;
}
