﻿

.cart {
    position: absolute;
    right: 5px;
    top: 3px;
    width: 55px;
}

.cart_num {
    z-index:1000;
    position: absolute;
    right: 8px;
    top: 20px;
    background-color: rgba(255, 0, 0,0.80);
    border-radius: 20px;
    width: 40px;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: medium;
}

.msg_box {
    position: absolute;
    margin: auto;
    width: 400px;
    min-height: 200px;
    border-radius: 5px;
    background: rgba(255, 255, 255,0.95);
    top: -1000PX;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    -webkit-box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.63);
    -moz-box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.63);
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.63);
    -webkit-transition: all .5s;
    transition: all .5s;
}



.notifiche {
    padding: 20px;
    background: rgba(0,0,0,0.95);
    color: white;
    position: absolute;
    top: -1000px;
    left: 0px;
    width: 100%;
    -webkit-animation-name: notenter;
    -webkit-animation-duration: 1s;
    animation-name: notenter;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

    .notifiche b {
        color: white;
    }

@keyframes notenter {
    from {
        top: -1000px;
    }

    to {
        top: 0px;
    }
}

.notificaclosebnt {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    .notificaclosebnt:hover {
        color: red;
    }





.box {
    background: rgba(0,0,0,0.9);
    border-radius: 6px;
    box-shadow: 0 2px 0 0 #232323;
    margin: 0 0 2em 0;
    padding: 3em;
}

.dettaglio {
    margin: auto;
    display: inline-block;
    text-align: center;
    padding: 38px;
    padding-top:0px;
}


.dropotron li.active > a, .dropotron li.active > span, .dropotron li:hover > a, .dropotron li:hover > span {
    background: #868686;
    color: white;
}







.more_show {
    -webkit-transition: all 5s;
    transition: all 5s;
    height: auto;
}

.more_hide {
    overflow: hidden;
    height: 0px;
}



.logo {
    max-width: 500px;
    display: none;
}

#menu_mobile {
    display: none;
    background: rgba(0,0,0,0.75);
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
}

body.navPanel-visible #menu_mobile {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
}



@media screen and (max-width: 840px) {
    #menu_mobile {
        display: block;
    }

    .logo {
        display: inline-block;
        max-height: 60px;
        margin: auto;
    }
}

@media screen and (max-width: 740px) {
    #main {
        margin-top: -9em;
    }
}

@media screen and (max-width: 480px) {

    .dettaglio {
        padding: 10px;
        width: 100%;
    }

    #main {
        margin-top: -9em;
    }


}
