.hidden-portal-wrapper {
    display: none;
    position: fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:rgba(0,0,0,0.7);
    z-index:1000;
    align-content:center;
    align-items:center;
    justify-content:center;
}
.hidden-portal {
    margin: auto;
    background:#fff;
    border-radius: 2px;
    padding: 24px;
    max-width: 343px;
}
.hidden {
    display:none;
    position: relative;
    z-index: 100;
    width:100%;
    height: 100%;
}
.hide-on-small {
    display: block;
    position: relative;
}
@media only screen and (max-width: 830px) {
    .hide-on-small {
	display: none;
    }
}
