.popup-sale {  
    font-weight: bold;
    position:fixed;
    left:0;
    right:0;
    margin: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    padding: 15px;  
    text-align: center;
    box-sizing: content-box;
    background: #FFFFFF;
    z-index: 9999;
}

.popup-sale form{
    padding-top: 15px;   
}

.popup-sale .sale-text {
    font-family: 'Orchidea Pro';
    font-style: normal;
    font-weight: 800;
    font-size: 64px;
    line-height: 65px;
    /* identical to box height */

    text-transform: uppercase;

    color: #000000;
}

.popup-sale .bottom-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    
    margin-bottom: 10px;

    color: #000000;
}

.popup-sale  .empty-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    
    display: none;
    
    color: red;
}

.popup-sale .input-tel {
    box-sizing: border-box;
    width: 80%;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    padding: 5px;
    margin: 3px;

    border: 1px solid #D9D9D9;
}

.popup-sale .input-submit {
    background: #D30000;
    width: 60%;
    color: #FFFFFF;

    border: none;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;

    padding: 5px;
    margin: 3px;
}

.popup-sale img {
    width: 100%;
}

.popup-sale-fade {
    display: none;
}
.popup-sale-fade::before {
	content: '';
	background: #000;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0.7;
	z-index: 9999;
}

.close-popup-sale {
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
}

@media only screen and (max-width: 600px) {
    .popup-sale {  
        width: 80%;   
    }
    
    .popup-sale .sale-text {
        font-size: 40px;
        line-height: 41px;
    }
    
    .popup-sale .bottom-text {
        font-size: 15px;
        line-height: 19px;
    }
    
    .popup-sale .empty-text {
        font-size: 15px;
        line-height: 19px;
    }
    
    .popup-sale .input-tel {
        width: 90%;
        
        font-size: 12px;
        line-height: 16px;
        
        padding: 10px;
    }

    .popup-sale .input-submit {
        width: 80%;
        
        font-size: 12px;
        line-height: 16px;
        
        padding: 10px;
    }
    
    .close-popup-sale {
        font-size: 36px;
    }
}
