.gtouchscrollcontainer {
    padding: 1px;
    /*overflow: hidden;*/
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.ts-flex-container {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    height: 99%;
	transform: scale(0.993);
}

.ts-scroll-active {
    background: rgba(220, 220, 220, 0.5);
    cursor: grabbing;
    cursor: -webkit-grabbing;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(1);
}

.ts-flex-item {
    background-color: #fff;
    border: 1px solid #888;
    margin: 10px;
    width:35%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    overflow: hidden;
}

.ts-flex-header {
    flex: none;
    -webkit-flex: none;
}

.ts-flex-content {
    background-color: #efefef;
    flex: 1;
    -webkit-flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    display: -webkit-flex;
}

.ts-flex-content-scrollable {
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: space-evenly;
}

.ts-flex-footer {
    flex: none;
    -webkit-flex: none;
}