#cupom-flutuante {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

    position: fixed;
    top: 60%;
    
    height: 0px;
	border-radius: 10px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    z-index: 99999999999;
    
}

#cupom-flutuante.hidde {
	right: -108px;
}

#cupom-flutuante.hidde .etiqueta .bot {
    display: none;
}

#cupom-flutuante.active {
	right: 0px;
}

.btn-cupom {
	position: absolute;
    left: -35px;
	
	text-align: center;
	font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
	
	width: 100px;
    height: 100px;
    border-radius: 10px;
    z-index: 99999999998;
    cursor: pointer;
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
}

.btn-cupom p {
	margin: 5px 0 0 0;
}


.etiqueta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	
	width: 100px;
	height: 100px;
    border-radius: 10px;
    z-index: 99999999999;
}

.etiqueta .top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
	height: 50%;
}

.etiqueta .bot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
	height: 50%;
}

.titulo {
	font-size: 14px;
    font-weight: 800;
}

.porcentagem {
	font-size: 20px;
    font-weight: 800;
}

.cupom {
	text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.nome-cupom {
	font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    
    color: rgb(255, 255, 0);
}