.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);    
}

.erotic-document {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(241, 241, 241, 0.69);
}

.erotic {
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;

    z-index: 101;
    background-color: rgba(0,0,0, 0.69);

    max-width: 360px;
    max-height: 360px;
    height: 100%;
    width: 100%;
    /*box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.61);*/
}

.erotic td{
    font-size: 22px;
    line-height: 28px;
    font-weight: bold;
    text-align: center;
    color: #f0f0f0;
}

.erotic-img {
    -webkit-filter: drop-shadow(13px 13px 14px rgba(0, 0, 0, 0.61));
    height: 250px;
    position: absolute;
    z-index: 2;
    top: -120px;
    left: -50px;
}

.erotic-title {
    /*height: 60px;*/
	padding: 10px;
    background-color: #ff4b4b;
    -webkit-box-shadow: 0 9px 5px -5px rgba(0,0,0,.56);
    box-shadow: 0 9px 5px -5px rgba(0,0,0,.56);
	vertical-align: middle;
	position: relative;
	z-index: 8;
}

.erotic-title td {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 20px;
    /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.57);*/
    font-weight: bold;
    text-align: center;    
    color: #f0f0f0;

    width: 100%;
    padding: 10px;
}


.erotic-info {
    z-index: 103;
    padding: 30px 10px 0 10px;
    font-size: 30px;
	height: 100%;
    font-weight: normal;
    line-height: normal;
	vertical-align: top;
}

.erotic-close-btn {
    cursor: pointer;
    position: relative;
    float: right;
	margin-top: -15px;
    margin-right: -10px;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    /*text-shadow: 1px 1px 0 #fff;*/
    font-weight: bold;
    font-family: monospace;
    padding: 5px;
	user-select: none;
}

.erotic-btn {
    text-transform: uppercase;
    color: #FFF;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.17), 0 2px 10px 0 rgba(255,255,255,.69);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.17), 0 2px 10px 0 rgba(0, 0, 0, 0.69);
    cursor: pointer;
    overflow: hidden;
    user-select: none;
    display: inline-block;
    padding: 5px 10px 2px 10px;
    font-size: 12px;
    line-height: 18px;

    background-color: #4CAF50;
    border: 2px solid #4CAF50;
    color: #fff;
}

.erotic-btn:hover {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.27), 0 2px 10px 0 rgba(255,255,255,1.69);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.27), 0 2px 10px 0 rgba(0, 0, 0, 1.69);

    border: 2px solid #E8F5E9;
    background-color: #4CAF50;
}

.erotic-btn-cancel {
    border: 2px solid #ff4b4b;    
    background: #ff4b4b;
}

.erotic-btn-cancel:hover{
    border: 2px solid #fff;    
    background-color: #ff4b4b;
}

.erotic-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    padding: 15px;
    border-top: 2px solid #a0a0a0;
    /*background: #fff;*/
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .erotic {
        width: 80%;
        /*height: auto;*/
        max-height: 330px;
    }
    
    .erotic-img {
        -webkit-filter: drop-shadow(7px 7px 8px rgba(0, 0, 0, 0.61));
        height: 150px;
        top: 80px;
        left: -35px;       
    }

    .erotic-title td {
        font-size: 20px;
        line-height: 22px;
        padding: 5px;
    }
    
    .erotic-info {
        padding: 10px 15px;
        font-size: 24px;
    }
    
    .erotic-footer {
        padding: 2px 5px;
        height: 100px;
    }
    
    .erotic-btn {
        width: 90%;
        margin: 5px 0;
        font-size: 20px;
        line-height: 28px;
        
    }
}