.oxy-pws-off-canvas {
    --pws-oc-width: 300px;
    --pws-oc-height: 350px;
    --pws-oc-sb-width: 6px;
    --pws-oc-sb-light-color: rgba(0,0,0,0.3);
    --pws-oc-sb-dark-color: rgba(0,0,0,0.5);
    pointer-events: none;
}

.pws-offcanvas-panel {
    background-color: #fff;
    display: flex;
    height: 100%;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    width: var(--pws-oc-width);
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
    transition: all 0.5s ease;
    transition-property: all !important;
    z-index: 2147483640;
}

.pws-offcanvas-panel.pws-oc-hidden {
    visibility: hidden;
}

.oxy-pws-off-canvas.pws-oc-active .pws-offcanvas-panel {
    visibility: visible;
}

.oxy-pws-off-canvas.pws-oc-active .pws-offcanvas-panel:not(.pws-oc-push) {
    transform: none !important;
}

.oxy-pws-off-canvas .pws-offcanvas-backdrop {
    background-color: rgba(0,0,0,0.5);
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition: all .45s ease;
    width: 100%;
    z-index: 2147483640;
}

.oxy-pws-off-canvas.pws-oc-active .pws-offcanvas-backdrop {
    opacity: 1;
    visibility: visible;
}

body.oxygen-builder-body .oxy-pws-off-canvas .pws-offcanvas-backdrop {
    opacity: 1;
    visibility: visible;
}

body.oxygen-builder-body .oxy-pws-off-canvas .pws-offcanvas-panel {
    visibility: visible;
    transform: none !important;
}

body.oxygen-builder-body .oxy-pws-off-canvas .ct-component {
    opacity: 1 !important;
    transform: none !important;
}

body:not(.oxygen-builder-body) .oxy-pws-off-canvas {
    display: block !important;
}

body.pws-oc-noscroll {
    overflow: hidden;
}

html.pws-oc-remove-spacing {
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
}

.pws-offcanvas-panel.pws-oc-custom-scrollbar {
    scrollbar-color: var(--pws-oc-sb-dark-color) var(--pws-oc-sb-light-color);
    scrollbar-width: thin;
}

.pws-offcanvas-panel.pws-oc-custom-scrollbar::-webkit-scrollbar {
    width: var(--pws-oc-sb-width);
}

.pws-offcanvas-panel.pws-oc-custom-scrollbar::-webkit-scrollbar-track {
    background-color: var(--pws-oc-sb-light-color);
}

.pws-offcanvas-panel.pws-oc-custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--pws-oc-sb-dark-color);
}

.pws-oc-close-btn {
    background-color: #e2e2e2;
    display: flex;
    color: #555;
    flex-direction: row;
    padding: 10px;
	margin-inline-start: auto;
    margin-top: -10px;
	margin-inline-end: -10px;
    align-items: center;
    justify-content: center;
    width: auto;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pws-oc-close-btn svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

.pws-oc-close-btn .pws-oc-btn-text {
    line-height: 1;
}
