
.btn {
    width: 134px;
    height: 48px;
    margin: 5px;
    background: #3498db;
    border-color:  #3498db;
}

.btn:hover{
    background: #34495E;
    color: #3498db;
}

.navbar {
    background: #3498db;   
}

.navbar-brand{
    color: #ffffff;
}

#imagePreview {
    width: 800px;
    height: 600px;
    position: relative;
    border: 5px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    margin-top: 1em;
    margin-bottom: 1em;    
}

#imagePreview>div {
    width: 100%;
    height: 100%;
    background-size: 800px 600px;
    background-repeat: no-repeat;
    background-position: center;
}

input[type="file"] {
    display: none;
}

.upload-label{
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: #fff;
    font-size: 1em;
    transition: all .4s;
    cursor: pointer;
}

.upload-label:hover{
    background: #34495E;
    color: #3498db;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}