.zoomed {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    top: 0px;
    position: fixed;
    z-index: 1005;
    opacity: 1;
    animation: fadein .3s ease-in;
    transition: opacity .2s ease-in;
}

.zoomed-fadeout {
    opacity: 0;
}

.zoomed-image-section {
    display: flex;
    justify-content: center;
    height: calc(100vh - 90px);
}

@media(max-height: 645px) {
    .zoomed-image-section {
        height: calc(100vh - 160px);
    }
}

.zoomed-image-container {
    max-width: 1280px;
    height: 100%;
    width: 100vw;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-height: 645px) {
    .zoomed-image-container {
        margin-top: 0px;
    }
}

.zoomed-image {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: inherit;
}

.zoomed-image-fadeout {
    opacity: 0;
}

.zoomed-buttons {
    position: absolute;
    top: 0px;
    right: 0px;
}

.zoomed-button {
    width: 45px;
    height: 45px;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s ease-in;
}

.zoomed-button:hover {
    opacity: 1;
}

.zoomed-button-close {
    right: 20px;
    position: absolute;
    background: url(../../images/graphic/Buttons.png) no-repeat -45px -45px;
}

.zoomed-button-share {
    right: 105px;
    position: absolute;
    background: url(../../images/graphic/Buttons.png) no-repeat -45px -225px;
}

.zoomed-button-download {
    right: 160px;
    position: absolute;
    background: url(../../images/graphic/Buttons.png) no-repeat -90px -225px;
}

.zoomed-button-separator {
    width: 3px;
    height: 45px;
    position: absolute;
    opacity: .50;
    right: 85px;
}

.zoomed-button-separator:after {
    content:"";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 2px);
    margin: 10px 0px 10px 0px;
    border-left: 1px solid #BBB;
}

.zoomed-share-combobox {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 45px;
    right: 88px;
    margin-top: 8px;
    z-index: 999;
    background-color: #EEE;
    box-shadow: 0px 0px 6px #C4C4C4;
}

.zoomed-share-combobox-opened {
    display: flex;
}

.zoomed-share-button {
    height: 60px;
    width: 80px;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s ease-in;
    display: flex;
    flex-direction: column;
}

.zoomed-share-button-img {
    align-self: center;
    height: 40px;
    width: 45px;
    background: url(../../images/graphic/Buttons.png) no-repeat 0px -273px;
}

.zoomed-share-button-text {
    height: 20px;
    text-align: center;
    line-height: 12px;
    font-weight: normal;
    font-size: 13px;
}

.zoomed-share-button:hover {
    opacity: 1;
}

.zoomed-share-link-url {
    top: -50px;
    position: fixed;
    color: white;
}