/**
 *------------------------------------------------------------------------------
 * CAFILESA
 *------------------------------------------------------------------------------
 * @website		cafilesa.pt
 * @Template	SKY
 * @System      joomla 5
 * @file        theme.css
 *------------------------------------------------------------------------------
 */

/*==============================================/
   COLORS
*/
:root {
    /* GENERAL COLORS */
    --primary-color:        #444;
    --secondary-color:      #006dfc;
    --tertiary-color:       #00fca8;
    --dark-color:           rgb(33, 37, 41);
    --grey-dark-color:      rgb(108, 117, 125);
    --grey-color:           lightgray;
    --grey-light-color:     rgb(233, 236, 239);
    --light-color:          rgb(248, 249, 250);
    --link-color:           rgb(248, 249, 250);
    --hover-color:          rgb(248, 249, 250);
    --elements-bg:          #fff;
    /*BODY*/
    --body-bg:              #ebebeb !important;    
    --body-color:           #35373d;
  }


/*==============================================/
   TEXTO DOS ARTIGOS
*/
.article dl,
.article ol, 
.article ul {
    padding-left: 1rem;
    margin-bottom: 1rem;
    list-style-type: disc;
}
.article li{
    padding-left: .2rem;
}
.article a{
    text-decoration:underline;
}
.article {
    padding: 50px 0;
    max-width: 850px;
    margin: 0 auto;
}
.content{
    max-width: 1100px;
    margin: 0 auto;
}
/*
  blockquote
*/
blockquote {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--primary-color);
}
  
/*==============================================/
   LOGOTIPO
*/
.site-logo-link img {
    width: 100%;
    height: 85px;
}

/*==============================================/
   MODULO DE IDIOMAS
*/
.mod-languages .dropdown-toggle{
    border: 0px solid transparent;
    background-color: transparent;
    color: #353b41;
    border-radius: 0;
    line-height: 25px;
} 
.mod-languages .dropdown-toggle:hover,
.mod-languages .dropdown-toggle:focus {    
    background-color: transparent;
    color: #006dfc;
}
.mod-languages .dropdown-toggle img{    
    vertical-align: center;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }
.mod-languages .dropdown-menu{
    background-color: #fff;
    /* border: 0px solid transparent; */
}
/*==============================================/
   PAGINATION
*/
  /*centrar os elementos*/
.pagenavigation {
    margin: auto;
    max-width: 240px;
}
.pagination {
    margin:3rem 0;
}
.btn.btn-sm.btn-secondary.next {
    margin-left: auto;
}

/*==============================================/
   Modulo Login
*/
.input-group .btn-secondary, 
.input-password-toggle {
  align-items: center;
  background-color: #eaedf0;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  color: #22262a;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: .6rem 1rem;
  text-align: center;
  white-space: nowrap;
}
.input-group .btn-secondary:hover,
.input-password-toggle:hover {
  background-color: #5d636b;
  border-color: #575e65;
  color: #fff;
}

/*==============================================/
   BACK TO TOP
*/
.back-to-top-link {
    z-index: 10000;
    pointer-events: none;
    color: #fff;
    background-color: var(--primary, --cassiopeia-color-primary);
    border: 1px solid var(--primary, --cassiopeia-color-primary);
    opacity: 0;
    inset-inline-end: 1rem;
    border-radius: 10%;
    padding: 0.7em 0.8em;
    position: fixed;
    bottom: 1rem;
  
    font-size: 1rem;
    line-height: 1.5;
  
    transition: opacity 0.3s ease-in, color 0.3s ease-in-out,
      background-color 0.3s ease-in-out;
  }
  .back-to-top-link.visible {
    opacity: 0.8;
    bottom: 1rem;
    pointer-events: all;
  }
  .back-to-top-link:hover {
    opacity: 1;
    color: #fff;
    background-color: var(--primary, --cassiopeia-color-primary);
    border: 1px solid var(--primary, --cassiopeia-color-primary);
  }
  .back-to-top-link:focus {
    color: #fff;
  }