.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;
  /* vertical | horizontal */
  padding: 1rem 0;
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
  margin-top: 9px;
}

/* 
  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: 4px;
    margin-bottom: 0px;
  }
}

#favorites-container .favorites-scrollView-container {
  max-height: 400px;
  overflow-y: scroll;
  overflow:auto;
  padding-right: 1em;
}

.favorites-container h3 {
  text-align: center;
  font-size: 18px;
  margin-top: 4px;
}

.favorites-container li {
  list-style: none;
  word-break: break-all;
  text-align: left;
}

.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);
}

.favorites-container .folderName {
  font-size: 14px;
  color: var(--color-green);
  display: flex;
  gap: 14px;
  align-items: center;
  word-break: break-all;
}


.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);
  }
}
