.section-lojas {
    position: fixed;
    background: white;
    right: -100%;
    top: 0;
    width: 40%;
    min-width: 768px;
    height: 100%;
    border-left: 2px solid #cccccc;
    z-index: 99;
    overflow-y: auto;
    transition: 0.4s ease-in-out;
    opacity: 0;
}

.section-lojas.show {
    animation: show 0.5s alternate forwards;
}

.section-lojas.hide {
    animation: hide 0.5s alternate forwards;
}

@keyframes show {
    from {
        opacity: 0;
        right: -100%;
    }

    to {
        opacity: 1;
        right: 0%;
    }
}

@keyframes hide {

    from {
        opacity: 1;
        right: 0%;
    }

    to {
        opacity: 0;
        right: -100%;
    }
}

.section-lojas>.container-lojas {
    padding: 20px 35px;
    position: relative;
}

.section-lojas>.container-lojas>h1 {
    position: relative;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: "Roboto";
    font-size: 36px;
    color: #000000;
    letter-spacing: -1px;
    line-height: 40px;
}

.section-lojas>.container-lojas>h1::after {
    content: "";
    border-bottom: 1px solid #DDDDDD;
    width: calc(100% + 70px);
    height: 1px;
    position: absolute;
    bottom: -25px;
    right: 0;
    margin: 0 -35px;
}

.section-lojas>.container-lojas>.close {
    position: absolute;
    top: 26px;
    right: 19px;
    width: 21px;
    height: 21px;

}

.section-lojas>.container-lojas>.close img{
    display: block;
    width: 14px;
    height: auto;
    margin: auto;
    margin-top: 3px;
}

#aparelhos .container-lojas h1 {
    margin-bottom: 20px;
    font-weight: 300;
    font-family: "Roboto";
    font-size: 36px;
    color: #000000;
    letter-spacing: -1px;
    line-height: 30px;
    left: -4px;
}

#compativel-com {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 176px;
    padding-top: 35px;
    font-family: roboto;
    margin-left: -3px;
}

#compativel-com > p {
    font-size: 20px;
    color:#4A4A4A;
    font-weight: 100;
}

#compativel-com span {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: left;
    color: #888;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 0.12px;
}

#compativel-com span p {
    margin-top: 15px;
}
#compativel-com span:nth-child(3) {
    margin-top:3px;
}

#compativel-com span span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #C5C5C5;
    border-radius: 8px;
    margin-right: 10px;
}

#compativel-com span img {
    width:20px;
}

#lista-aparelhos {
    list-style: none;
    font-family: roboto;
    margin-top: 11px;
    margin-left: -2px;
    padding: 0px 22px 0 0;
}

#lista-aparelhos:nth-child(7) {
    margin-top: 9px;
}

#lista-aparelhos li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #C5C5C5;
    padding: 19.5px 0;
}

#lista-aparelhos li h2 {
    font-size: 24px;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 13px;
    padding: 0;
    font-weight: 200;
    letter-spacing: -0.5px;
}

#lista-aparelhos li h3 {
    font-size:20px;
    margin:0;
    padding:0;
    font-weight: 300;
}

#lista-aparelhos li p {
    margin:0;
    padding:0;
    font-weight: 100;
    font-size: 19px;
    letter-spacing: 0.5px;
}

.e-possivel {
    color:#99CC33;
}
.nao-possivel {
    color:#EB3C7D;
}
.com-restric {
    color:#FF9900;
}

#info {
    padding-top:5px;
}

#info p {
    font-size: 14px;
    color: #888888;
    font-weight: 100;
    line-height: 1.4;
}

@media only screen and (max-width: 1024px) {
    .section-lojas {
        width: 100%;
        min-width: unset;
        border-left: none;
    }
    #aparelhos .container-lojas h1 {
        margin: 0 0 -7px 0;
        font-weight: 100;
        font-family: "Roboto";
        font-size: 28px;
        color: #000000;
        letter-spacing: -0.8px;
        line-height: 31px;
        left: -4px;
    }
}

@media screen and (max-width: 500px) {
    .section-lojas>.container-lojas>.close {
        position: absolute;
        top: 32px;
        right: 30px;
        width: 20px;
    }
    #aparelhos>.container-lojas>h1::after {
        bottom: -11px;
    }
    #compativel-com {
        margin-left: -12px;
        width:330px;
        padding-top: 42px;
    }
    #lista-aparelhos:nth-child(7) {
        margin-top: 15px;
    }
    #compativel-com span p {
        width: 280px;
        margin-top: 15px;
    }
    #compativel-com span:nth-child(3) {
        margin-top:6px;
    }
    #lista-aparelhos {
        margin-top: 12px;
        margin-left: 0;
        padding: 0;
    }
    #lista-aparelhos li h2 {
        letter-spacing: -01.2px;
        width: 250px;
        line-height: 32px;
        margin-bottom: 9px;
    }
    #lista-aparellos li p {
        font-size: 18px;
        letter-spacing: 0.9px;
    }
}