#breakupmodal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    overflow: hidden;
    display:none;
}

#breakupmodalpopup {
    position: absolute;
    width: 300px;
    height: auto;
    top: 50%; left: 50%;
    margin-left: -150px; margin-top: -100px;

    -webkit-perspective: 800px;
    -webkit-perspective-origin: 50% 50px;
    perspective: 800px;
    perspective-origin: 50% 50px;
}

.breakupmodal-default.piece {
    background: rgba(95,144,222,0.5);
    float: left;
}

.breakupmodal-danger .piece {
    background: rgba(255,50,50,0.5);
    float:left;
}

.breakupmodal-success .piece {
    background: rgba(50,230,80,0.5);
    float:left;
}

#breakupmodalpopup h1 {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 40px;
    top: 20%;
    margin-top: -20px;
    color: #ccc;
    font-size: 4rem;
}
#breakupmodalpopup p {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 40px;
    bottom: 20%;
    color: #ccc;
    padding: 10px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

.reverse {
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -30px;
    color: #ccc;
    cursor: pointer;
}