#container.biggap, #container.single-container .width-wrapper{
	min-height: 100px;
    max-height: 600px;
    display: flex;
    gap:0 5px;
    margin: 0 auto;
    background-color: white;
    position: relative;
}
#container.single-container .width-wrapper{
	height:100vh;
	padding: 5px 10px;
	min-width:700px;
}
#container.single-container{
	margin-left:-10px;
	margin-right:-10px;
	overflow:auto;
}
#container.biggap{
	gap:0 5%;
	flex-wrap:wrap;
	align-items: center;
	width: auto;
	max-height: none;
}
.column{
    display: flex;
    gap:5px 0;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    width:15%;
	max-width: 75px;
    height:100%;
}
.item {
    background-color:white;
    color: #222;
    cursor: move;
    user-select: none;
    transition: all 0.3s ease;
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
	align-items: center;
    box-shadow: 0 4px 8px 0 rgba(150, 150, 150, 0.2), 0 6px 20px 0 rgba(98, 98, 99, 0.19);
    position:relative;
    border-radius:5px;	
	text-decoration:none;
	line-height:20px;
}
.item.plan{
	font-size:30px;
	line-height:35px;
	padding:35px 15px;
	border:3px solid #EB7E26;
	flex-direction:column;
	background-color:#EB7E26;
	color:#fff;
	width:30%;
	max-width:333px;
	cursor:pointer!important;
	margin-bottom:30px;
	text-align:center;
	min-height: 190px;
}
.item span{ 
	display:block;
	margin-top:13px;
}
.item.plan:hover{
	background-color:#D66406;
}
.item.nomove{
	cursor: pointer !important;
    user-select: auto !important;
}
.item.floortalk{
	background-color: lightblue;
	max-height:85px;
	align-items: flex-start;
	padding-top:15px;
}
.item.dragging{
	background-color:yellow;
}
.cat{
    text-align:center;
	writing-mode: tb;
	transform: rotate(180deg);
	max-height: 65%;
}
.cat::first-letter {
    text-transform: uppercase;
}
.add-ft,.add,.delete,.edit{
    width:50%;
    height:40px;
    line-height:40px;
    text-align:center;
    color: white;
    position:absolute;
    bottom:0;
    cursor:pointer;
	background-color:#EB7E26;
}
.add-ft,.add{
    left:0;
    border-radius: 0 0 0 3px;
	border-right:1px solid #fff;
}
.delete{
    right:0;
    border-radius: 0 0 3px 0;
}
.item.floortalk .delete{
    width: 100%;
    border-radius: 0 0 3px 3px;
}
.edit{
    left:0;
    top:0;
    bottom:auto;
    width:100%;
    border-radius: 3px 3px 0 0;
}
.add-ft:hover,.add:hover, .edit:hover, .delete:hover{
	background-color:#D66406;
}
.btn-container{
    max-width:1100px;
    margin:25px auto;
}
.flexed{
    display:flex;
    gap: 0 10%;
	align-items:center;
}
.flexed.gap30{ gap: 0 30px; }
.floortalk-btn:hover,.btn-edit-post-link:hover,.reg-btn:hover{
	background-color:#D66406;
	border-color:#D66406;
	color:#fff;
}
.flexed.small-btns span{
    font-size:18px;
    cursor:pointer;
}
.btn-container h1::first-letter {
    text-transform: uppercase;
}
.floortalk-btn,.btn-edit-post-link,.reg-btn{
	padding: 15px 24px;
	color:#EB7E26;
	text-align:center;
	border:2px solid #EB7E26;
	border-radius:5px;
	font-size: 1rem;
	line-height:1rem;
	font-family: Jost, sans-serif;
	font-weight:500;
}
.btn-edit-post-link{
	padding: 9px 16px;
	max-height:40px;
}

/*@media (min-width: 1157px){
	#container.single-container{
		overflow-x: hidden;
	}
}*/
@media (max-width:768px){
	.item.plan{
		width: 47.5%;
		font-size:25px;
		line-height:30px;
	}
}
@media (max-width:600px){
	.item.plan{
		width: 100%;
		max-width:600px;
		min-height:auto;
		margin-bottom:20px;
	}
	#container.biggap{
		gap: 0;
		height: auto;
		max-height: none;
	}
	#container.single-container .width-wrapper{
		padding: 0;
	}
	.add-ft,.add{
		width:100%;
		left:auto;
		border-radius: 0 0 0 0px;
		border-right:0;
		border-bottom:1px solid #fff;
		bottom:40px;
	}
	.delete{
		width:100%;
		right:auto;
		border-radius: 0 0 3px 3px;
	}
	.flexed.gap30 {
		flex-direction: column;
		gap: 20px 0;
	}
	.reg-btn,.floortalk-btn{
		width:100%;
	}
}