.slideout-info-container{
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    width: 100vw;
    max-width: 645px;
    z-index: 1500;
    transform: translateX(120%);    
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.slideout-info-container.active{
    transform: translateX(0%);
}

.slideout-info{
    box-shadow: -3rem 0 4rem rgba(14, 34, 52, 0.3);
    background: #fff;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    overflow-y: auto;
}

.slideout-info-top{
    margin: 0;
    padding: 5rem 6rem 1rem;
	overflow: hidden;
    background: #ccc;
}

h2.slideout-info-title{
    margin-top: 6rem;
}

.slideout-info-title span{
    display: inline-block;
    margin-bottom: 1rem;
}

.close-slideout-info{
    color: #fff !important;
    text-decoration: none !important;
}

.slideout-info-inner{
    padding: 5rem 6rem;
}

.slideout-info-overlay{
    background-color: #000000;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    transition: 0.3s opacity;
    z-index: 1499;
}

.slideout_open .slideout-info-overlay{
    opacity: 0.4;
    pointer-events: all;
}