/* custom-browser.css */


.custom-browser-panel {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    transition: 0.3s;
    z-index: 900;
}

.custom-browser-close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    width: 30px;
    height: 30px;
    z-index: 901;
}

.custom-browser-close-button:hover,
.custom-browser-close-button:active {
    color: #000 !important;
    background: transparent !important;
}

[data-custom-browser-target],
.custom-browser-link {
    cursor: pointer;
}

.custom-browser-background {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(193, 212, 250, 0.8);
    z-index: 899;
}

.custom-browser-container {
    height: 100%;
    background: #fff !important;
    position: relative;
}

@media screen and (max-width: 768px), (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .custom-browser-panel {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100% !important;
        transform: translateY(100%);
        transition: transform 0.4s ease !important;
    }

    .custom-browser-panel.mobile-active {
        transform: translateY(0);
    }

    .custom-browser-background {
        transition: opacity 0.4s ease;
    }
}
