.sidenav {
    height: calc(100dvh - 65px);
    width: 0;
    position: fixed;
    z-index: 1;
    top: 65px;
    right: -1px;
    /* background-color: #F2F2F2; */
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 0px;
    border-left: 1px solid #E5E5E5;
    z-index: 1002;
    box-shadow: -1px 0 5px 0 #00000026;
}

.sidenav a {
    padding: 0px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
}

.sidenav a:hover {
    color: #c76143;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 0px;
    font-size: 36px;    
    margin-top: 0px;
}

#main {
    padding: 16px;
}

#popup-clear-cart,
#popup-remove-item {
    display: none;
    position: absolute;
    z-index: 1002;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.3);

    &>.content-popup-clear-cart {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 5%;
        width: 90%;
        background-color: #fff;
        border-radius: 3px;

        &>.title-confirm {
            text-align: center;
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 1%;
        }

        &>.text-confirm {
            text-align: center;
            font-size: 17px;
            margin-bottom: 5%;
        }

        &>.btns-confirm {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;

            &>button {
                padding: 2% 5%;
                background-color: var(--cor-ciclo-primaria);
                border: none;
                border-radius: 5px;
                color: #fff;
                font-weight: 700;

                &:first-child {
                    background-color: rgb(189, 187, 187);
                }
            }
        }
    }
}

@media (max-width: 600px) {
    .botao-enviar {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidenav {
        height: calc(100% - 51px);
        top: 0;
    }
}

@media screen and (min-width: 475px) {   
    #popup-clear-cart,
    #popup-remove-item {

        &>.content-popup-clear-cart {
            width: 40%;
            padding: 2%;

            &>.title-confirm {
                font-size: 23px;
            }

            &>.text-confirm {
                font-size: 16px;
            }
        }
    }
}

@media screen and (min-width: 1025px) {
    #popup-clear-cart,
    #popup-remove-item {

        &>.content-popup-clear-cart {
            width: 25%;
            padding: 1%;

            &>.title-confirm {
                font-size: 27px;
            }
            
            &>.text-confirm {
                font-size: 17px;
            }
        }
    }
}
