.panolens-fullscreen-button {
    background: none;
    border: 2px solid var(--color-main-green);
    color: var(--color-text);
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px !important;
    margin-right: 10px !important;
    cursor: pointer;
    transition: 0.2s;
}

#panorama-container {
    position: relative;
}

.panolens-fullscreen-button:hover {
    color: var(--color-main-green);
    border: 2px solid var(--color-main-green);
}

.panorama_section {
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100001;
    transition: 0.2s;
}

.opened {
    visibility: visible;
    opacity: 1;
}

.panorama_close {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -10;
    background: rgba(0, 0, 0, 0.5);
}

button.panorama_close {
    position: absolute;
    left: unset;
    top: 10px;
    right: 10px;
    bottom: unset;
    width: 35px;
    height: 35px;
    border-radius: 15px;
    z-index: 100;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    padding: 0;
    cursor: pointer;
    color: #555;
    border: none;
    font-size: 20px;
    line-height: 1;
}

button.panorama_close:hover {
    color: #000;
}

#buttons-container {
    display: flex;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 2px;
    background: rgba(255, 255, 255, 0.8);
}

.panorama-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    margin-right: 2px;
    background: none;
    border: none;
    cursor: pointer;
}

.panorama-switch:last-child {
    margin-right: 0;
}

.panorama-switch img {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 768px) {
    #buttons-container {
        padding: 3px;
    }

    .panorama-switch {
        width: 30px;
        height: 30px;
    }

    .panorama-switch img {
        width: 25px;
        height: 25px;
    }
}