/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
.rc-cpn-coupon {
/* 	background-color: #FFF; */
	padding: 1%;
}

#rc-cpn-print {
	background-color: #afdce5;
    border: 0px none;
    padding: 1% 3%;
    text-transform: uppercase;
    color: #111;
}
#rc-cpn-print:hover {
	background-color: #2fd3f3;
}

.coupon-disattivato {
    text-align: center;
}

.coupon-disattivato p {
    color: #FFF;
}


a.btn-pizza,
a.btn-pizza:focus {
    color: #FFF;
    padding: 2%;
    font-weight: 800;
    padding-left: 75px;
    font-size: 1.5em;
    width: 100%;
}

a.btn-pizza:hover,
a.btn-pizza:active {
    color: #de8399;
}

#pizza-webapp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2B2E83;
    text-align: center;
    display: flex;
}

.pizza-img {    
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
    
    
    width: 130px;
    position: absolute;
    top: -41px;
    left: -27px;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


/*------------------------------------*\
	RESPONSIVE
	Media Queries Bootstrap 4
\*------------------------------------*/

/* Extra small devices (portrait phones, less than 576px)
   No media query since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 1024px) {
    a.btn-pizza, a.btn-pizza:focus {
/*         display: none; */
        font-size: 2em;
        letter-spacing: 6px;
    }   
    .pizza-img {
        left: 30px;
        width: 200px;
    }
}

@media (min-width: 1025px) {
    #pizza-webapp {
        display: none;
    }    
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    
}


