.rightBtn {
   float:right; 
   cursor: pointer; 
   font-size: 30px;
}
#myModal, #addNewPicC, #addNewCover {
    display: none;
    position: fixed;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;    
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    z-index: 3;

}

/* The browser window */
.container {
    box-sizing: border-box;
    position: relative;
    background-color: white;
    max-width: 550px;
    min-height: 400px;
    margin: auto;    
    border: 3px solid #f1f1f1;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: auto;
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
    z-index: 3;




}

/* Container for columns and the top "toolbar" */
.row {
    margin: 0;
    padding: 8px;
    background: #f1f1f1;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

/* Create three unequal columns that floats next to each other */
.column {
    float: left;
}





/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}



/* Page content */
.content {
    padding: 10px;
}
.ok {
    font-size: 18px;
    position: absolute;
    padding: 8px;
    bottom: 0;
    right: 0; 
    background-color: #4CAF50;
    color: white;
    text-align: center;
}
.cansel {
    font-size: 18px;
    position: absolute;
    padding: 8px;
    width: auto;
    bottom: 0px;
    right: 100px; 
    background-color: #4CAF50;
    color: white;; 
    text-align: center;

}
.ok:hover, .cansel:hover {
    background-color: #3e8e41;
}
.ok:after, .cansel:after {
    clear: both;

}
.title {
    margin: 0;
    width: 90%;
    float: left;
}

/* Add Animation */
@-webkit-keyframes slideIn {
    from {bottom: 300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
    from {bottom: 300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}