
.inline-container {
    display: flex;
    flex-direction: row;
}

.h-center-content{
    display: flex;
    justify-content: center;
}

.v-center-content{
    display: flex;
    align-items: center;
}

.space-between{
    justify-content: space-between;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.default-padding{
    padding: 5px;
}

.text-align-center{
    text-align: center;
}

.test{
    background-color: blue;
}

.right-large-padding{
    padding-right: 20px;
}

.default-button{

}

.vertical-scroll-zone{
    height: 100vh;
    overflow-y: scroll;
}

.hide{
    display: none;
}