/**
 * @version     CVS: 1.0.0
 * @package  mod_smartmenu
 * @copyright   2021 Trídia Criação 
 * @license     GNU General Public License versão 2 ou posterior; consulte o arquivo License. txt
 * @author      Trídia Criação  <atendimento@tridia.com.br>
 */

.smartmenu__simple a{
    font-weight: 500;
    padding: 0 0.4rem;
    border-left: 1px solid;
}
.smartmenu__simple a:hover, 
.smartmenu__simple a:focus {
    text-decoration: underline;
}
.smartmenu__simple a:first-child{
    border-left:  none;
}
.smartmenu__custom.row {
    margin: 0 -0.25rem !important;
}
.smartmenu__custom .slick-dots { 
    bottom: -30px;
}
.smartmenu__custom .slick-slide {
    transition: all 0.3s;
    margin: 1em 0;
    padding: 0;
}
.smartmenu__custom .slick-slide:first-child {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
}
.smartmenu__custom .slick-slide:last-child {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
}
.smartmenu__custom .slick-slide:hover {
    transform: scale(110%);
    border-radius: .5rem;
    position: relative;
    z-index: 2;
}
.smartmenu__custom img {
    height: 50px;
    padding: 0 0 0.4em;
}
.smartmenu__custom i {
    font-size: 2.8rem;
    height: 50px;
    display: inline-block;
}
.smartmenu__custom .item__smartmenu {
    padding: 3em 1.5em;
}

@media screen and (max-width: 767px){

    .smartmenu__custom .item__smartmenu span{
        font-size: 1em;
    }
}
.smartmenu__custom-noslide .item__smartmenu-noslide {
    border-radius: 8px;
    height: 158px;
}
.smartmenu__custom-noslide .no-slide:hover{
    transform: scale(102.5%);
    transition: .3s;
}
.smartmenu__custom-noslide i {
    font-size: 3.2rem;
    height: 55px;
    display: inline-block;
}

.item__smartmenu .card__icon-menu div,
.item__smartmenu img{
    object-fit: contain;
    width: 54px;
    height: 54px;
}
.dark_mode .item__smartmenu img{
    filter: contrast(0) brightness(10);
    background-color: transparent!important;
}

@media screen and (max-width: 1199px){
    .smartmenu__custom-noslide .item__smartmenu-noslide {
        height: 130px;
    }
    .smartmenu__custom-noslide i {
        font-size: 2.7rem;
        height: 45px;
    }
    .smartmenu__custom-noslide span {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 767px){
    .smartmenu__custom-noslide .item__smartmenu-noslide {
        height: 100px;
    }
}

@media screen and (max-width: 480px){
    
    .smartmenu__custom-noslide > div {
        width: 50%;
    }
}

@keyframes highlight {
    0% {
        background: #ffff99; 
    }
    100% {
        background: none;
    }
}

.highlight {
    animation: highlight 2s;
    border-radius: 0.5rem;
}