﻿@charset "utf-8";
/* CSS Document */

/* Outer */
.popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.85);
    z-index: 100000;
}

/* Inner */
.popup-inner {
    max-width: 700px;
    width: 90%;
    padding: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #ececec;
}

/*titolo popup*/
div.popup-inner h2 {
    color: #4c4e55;
    font-size: 1em;
    padding-bottom: 20px;
    padding-left: 0px;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px solid #4c4e55;
}

/*titolo popup*/
div.popup-inner h3 {
    color: #ecbd2c;
    background-color: #4c4e55;
    font-size: 0.8em;
    padding-bottom: 8px;
    padding-left: 0px;
    margin-bottom: 15px;
    font-weight: 700;
    /* border-bottom: 1px solid #4c4e55; */
}

/*piatti selezionati*/
div.popup-inner p {
    color: #000;
    border-bottom: 2px dotted #ccc;
    padding-bottom: 8px;
    font-size: 0.75em;
    font-weight: 400;
}

div.popup-inner th {
	color: #000;
	font-size: 0.75em;
	font-weight: 400;
}
    /*ultimo piatto*/
    div.popup-inner p.puplast {
        color: #000;
        border-bottom: 1px solid #4c4e55;
        padding-bottom: 8px;
        font-size: 0.75em;
        font-weight: 400;
    }


    div.popup-inner p a {
        color: #fff;
        text-decoration: none;
        font-weight: 400;
    }


        div.popup-inner p a:hover {
            color: #000;
        }




div.popup-inner {
    color: #fff;
    font-size: 1.4em;
    padding: 1px;
    margin: 1px;
}


    div.popup-inner a {
        color: #000;
        text-decoration: none;
        font-weight: 700;
    }

        div.popup-inner a:hover {
            color: #fff;
        }

a.txt-service {
    color: #fff;
    text-decoration: none;
    font-size: 0.7em;
    float: right;
}

span.txt-service {
    color: #fff;
    text-decoration: none;
    font-size: 0.7em;
}

    span.txt-service:hover {
        color: #000;
    }

/* Close Button */
.popup-close {
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 30px;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: rgba(255,255,255,1);
    font-family: Arial, Sans-Serif;
    font-size: 18px;
    text-align: center;
    line-height: 26px;
    color: #000;
}



    .popup-close:hover {
        -webkit-transform: translate(50%, -50%) rotate(180deg);
        transform: translate(50%, -50%) rotate(180deg);
        background: rgba(0,0,0,0.8);
        text-decoration: none;
    }

/* pulsante salva popup*/
#conferma {
    width: 30%;
    height: 66px;
    border: 0px solid #fff;
    background-color: #8ecb3b;
    background-image: url(../images/ico-pls-salva.png);
    background-repeat: no-repeat;
    background-size: 50px auto;
    background-position: center center;
    border-radius: 5px;
    cursor: pointer;
    margin: 2px;
}

    #conferma:hover {
        background-color: #6fb909;
    }


/* pulsante salva popup*/
#annulla {
    width: 30%;
    height: 66px;
    border: 0px solid #fff;
    background-color: #d66205;
    background-image: url(../images/ico-pls-annulla.png);
    background-repeat: no-repeat;
    background-size: 50px auto;
    background-position: center center;
    border-radius: 5px;
    cursor: pointer;
    margin: 2px;
}

    #annulla:hover {
        background-color: #c55a04;
    }


/*----------------------- LOADING GEAR ------------------------*/
/* Start by setting display:none to make this hidden. */
.modalLoading {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba( 0, 0, 0, .8 ) url('../Images/loader.svg') 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .modalLoading {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modalLoading {
    display: block;
}
/*-------------------------------------------------------------*/
