.form-signin {
    /*width: 100%;
    max-width: 420px;*/
    margin-top: 1em;
    margin-bottom: 1em;
}

.alert p
{
    margin-top: 0rem;
    margin-bottom: 0rem;
}

/* layout.css Style */
.upload-drop-zone {
    height: 160px;
    border-width: 2px;
    margin-bottom: 20px;
}

/* skin.css Style*/
.upload-drop-zone {
    color: #ccc;
    border-style: dashed;
    border-color: #ccc;
    line-height: 50px;
    text-align: center
}
.upload-drop-zone.drop {
    color: #222;
    border-color: #222;
}

.clear-after:after{
    content: '';
    display: block;
    clear: both;
}

.imageWrapper{
    /*background: #ccc;*/
    border: solid 1px #ccc;
    width: 100%;
    height: 320px;
    font-size: 0;
    text-align: center;
}

.imageWrapper:before {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-left: -1px;
}
.imageWrapperContent {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.spinbox {
    /*max-width: 60px;*/
    position: relative;
    padding-right: 20px;
}
.spinbox .spinbox-input {
    min-width: 40px;
    padding-left: 4px;
    padding-right: 4px;
    text-align: center;
}
.spinbox .spinbox-buttons {
    /*text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 20px;*/
}
.spinbox .spinbox-buttons .spinbox-up {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border-left: none;
    line-height: 1;
}
.spinbox .spinbox-buttons .spinbox-down {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border-left: none;
    line-height: 1;
}
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* snackbar for toasts begin */
#adviceContainer {
    display: none;
    min-width: 350px;
    margin-left: -175px;
    background-color: rgba(255, 255, 255, 1.0);
    color: #0a0a0a;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    padding: 16px;
    position: fixed;
    z-index: 1050;
    left: 50%;
    top: 30px;
    font-size: 17px;
}

#adviceContainer.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 3.0s;
    animation: fadein 0.5s, fadeout 0.5s 3.0s;
}

@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}
/* snackbar for toasts end */