.info {
    position: relative;
    padding: 15px;
    text-align: center;
    color: white;
    background-color: rgba(4, 72, 59, 0.8);
}
.info__primary {
    font-size: 25px;
}
.info__secondary {
    font-size: 15px;
    margin-top: 10px;
    opacity: 0.9;
}
.upload, .upload__canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.upload {
    z-index: 1;
    background-color: rgba(4, 72, 59, 0.8);
    background-image: radial-gradient(ellipse at 50% 120%, #04483b 10%, rgba(4, 72, 59, 0) 40%);
    background-position: 0 300px;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.upload:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.upload--active {
    background-position: 0 0;
    opacity: 1;
    visibility: visible;
    transition-property: opacity;
}
.upload__canvas {
    z-index: -1;
}
.upload__input {
    display: none;
}
.upload__icon {
    position: relative;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    padding: 15px;
    border-radius: 100%;
    background-color: #EBF2EA;
}
.upload__icon path {
    fill: rgba(4, 72, 59, 0.8);
}

.loader {
    display: none;
    margin: auto;
    border: 20px solid #EAF0F6;
    border-radius: 50%;
    border-top: 20px solid #FF7A59;
    width: 200px;
    height: 200px;
    animation: spinner 2s linear infinite;
}
@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.image:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-backface-visibility: hidden;
}
.smallimage {
    transform: scale(.5);
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
    -webkit-backface-visibility: hidden;
}
