.weblink {
  position: relative;
}

.favorites-container {
  /* superior | direita | inferior | esquerda */
  padding: 1em 0 1em 1em;
  ;
}

#favorites-container {
  background: #fff;
  position: absolute;

  width: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  min-width: 260px;
  max-width: 480px;

  right: 0;
  padding: 1rem 0;
  border: 1px solid var(--color-light-grey);
  /*border-radius: 4px;*/
  margin-top: 9px;
  background-color: transparent;
  background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4NDgiIGhlaWdodD0iMzAzIiB2aWV3Qm94PSIwIDAgODQ4IDMwMyIgZmlsbD0ibm9uZSI+CiAgPHBhdGggZD0iTTg0Ny4yODkgMC41VjI0MS40NjVIODQwLjQ4MkM4MDQuMDAxIDI0MS40NjUgNzc3LjQ3MiAyNTYuNzk1IDc1MS40MzIgMjcyLjA1MUM3MjUuMzc0IDI4Ny4zMTcgNjk5LjgxNiAzMDIuNSA2NjUuMTQ3IDMwMi41SDAuNVYwLjVIODQ3LjI4OVoiIGZpbGw9IndoaXRlIiBzdHJva2U9IiNGM0YzRjMiLz4KPC9zdmc+);

  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  border: none;
  filter: drop-shadow(2px 1px 6px var(--color-grey));
  border-left: 28px solid var(--color-green);
  border-radius: -0px;
  min-height: 303px;
}
#favorites-container .close
{
    border: 0px;
    background: transparent;
    cursor: pointer;
    outline: none;
    border-radius: 50%;
    padding: 4px;
    text-align: center;
    height: 32px;
    width: 32px;
    box-sizing: unset;
    position: absolute;
    right: -20px;
    top: -20px;
}
#favorites-container .close svg:hover
{
  
    fill: var(--color-light-grey);
}

/* 
  The same media (min-width: 1199px) that is in theme.css
  This setting has been duplicated to bell.css
*/
@media (max-width: 1199px) {

  /* line 191, G:/Agents/BA5135/_wap/17/s/Resources/Theme/ElectricBlueDesign/theme/bootstrap/theme.scss */
  #favorites-container {
    position: relative;
    margin-left: 0px;
    padding: 0;
    margin-top: 0px;
    border-radius: 0px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1199px) {
  #favorites-container {
    position: absolute;
    padding: 1rem 0;
    margin-top: 9px;
    border-radius: 0px;
    margin-bottom: 0px;
  }
}

#favorites-container .favorites-scrollView-container {
  max-height: 400px;
  overflow-y: scroll;
  overflow: auto;
  padding-right: 1em;
}

.favorites-container h3 {
  text-align: left;
  margin-top: 4px;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}

.favorites-container li {
  list-style: none;
  word-break: break-all;
  /* text-align: left; */
  list-style: none;
  word-break: break-all;
  text-align: left;
  display: flex;
  gap: 20px;
  height: 40px;
  align-items: center;
}

.favorites-container li:last-child {
  border: none;
  margin-bottom: 10px;
}

.favorites-container p {
  font-size: 14px;
  margin: 0;
}

.favorites-container .path {
  color: var(--color-grey);
  width: 350px;
  color: #544F40;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;

}

.favorites-container .folderName {
  color: var(--color-green);
  display: flex;
  gap: 14px;
  align-items: center;
  word-break: break-all;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}


.favorites-container svg {
  width: 18px;
  height: 18px;
}

.favorites-container hr {
  margin: 1em 0;
}

/* .loading-wrapper-favorites {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading {}

/* Transparent Overlay */
/*.loading:before {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

/* :not(:required) hides these rules from IE9 and below */
/*.loading:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: 1em;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  box-shadow: rgba(0, 147, 154, 1) 1.5em 0 0 0, rgba(0, 147, 154, 1) 1.1em 1.1em 0 0, rgba(0, 147, 154, 1) 0 1.5em 0 0, rgba(0, 147, 154, 1) -1.1em 1.1em 0 0, rgba(0, 147, 154, 1) -1.5em 0 0 0, rgba(0, 147, 154, 1) -1.1em -1.1em 0 0, rgba(0, 147, 154, 1) 0 -1.5em 0 0, rgba(0, 147, 154, 1) 1.1em -1.1em 0 0;
}
/*

/* Animation */
/*@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */