
.slider{
	height: fit-content;
	max-width: 900px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	/*border-radius: 10px;*/
	margin: auto;
	/*box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.75);*/

}
.container{
	position: relative;
	width: 100%;
	height:100%;
	overflow: hidden;
	/*inset:6px;
	top:2px;
	left: 2px;
	background: var(--sec_clr);*/

	/*border-radius: 10px;*/
	background: linear-gradient(90deg, var(--3rd_clr), rgb(75,75,75), var(--3rd_clr));

	overflow-x: scroll;
	overflow-y: hidden;
	cursor: grab;
	white-space: no-wrap;
	-webkit-overflow-scrolling:touch; 
	scroll-snap-type: x mandatory;

	/*scroll-snap-align: start;*/

}

/*.slider::before{
	content:"";
	background-image: conic-gradient(var(--sec_clr) 20deg,transparent 90deg);
	width: 400%;
	height:400%;
	position: absolute;
	top: -150%;
	left:-150%;
	animation: rotate_slider_border 10s linear infinite;
}
*/
.container h2{
	margin: 0px auto;
    padding: 10px 20px;
	text-shadow: none;
	border-right:unset;
	text-transform: capitalize;
}
.tabs input{
	visibility: hidden;
	display: none;
}

.buttons{
	position: absolute;
	bottom: 20px;
	right: 50px;
	/*left: 50%;
	transform: translateX(-50%);*/
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	z-index: 1;
}
.buttons label{
	width: 15px;
	height: 15px;
	background:var(--3rd_clr);
	opacity: 0.15;
	border-radius:15px;
	cursor: pointer;
	transition: 0.25s;
	border: var(--sec_clr) solid 1px;
}
.tabs input:nth-child(1):checked ~ .buttons label:nth-child(1),
.tabs input:nth-child(2):checked ~ .buttons label:nth-child(2),
.tabs input:nth-child(3):checked ~ .buttons label:nth-child(3),
.tabs input:nth-child(4):checked ~ .buttons label:nth-child(4),
.tabs input:nth-child(5):checked ~ .buttons label:nth-child(5),
.tabs input:nth-child(6):checked ~ .buttons label:nth-child(6),
.tabs input:nth-child(7):checked ~ .buttons label:nth-child(7),
.tabs input:nth-child(8):checked ~ .buttons label:nth-child(8),
.tabs input:nth-child(9):checked ~ .buttons label:nth-child(9),
.tabs input:nth-child(10):checked ~ .buttons label:nth-child(10){
	opacity: 1;
	width: 50px;
	background: linear-gradient(90deg, #daa520, #955309);
}
.content{
	position: relative;
	width: 800%;
	height: fit-content;
	display: flex;
	flex-direction: row;
	transition: 0.5s ease;
	margin: auto;
}
.content .box{
	position: relative;
	max-width: 100%;
	width:900px;
	height: fit-content;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	/*user-select: none;*/
	padding: 10px;
	text-align: center;
	margin: auto;
	/*background: linear-gradient(90deg, var(--prim_clr), var(--4th_clr));*/

scroll-snap-align: center;
}

.tabs input:nth-child(1):checked ~ .content{
	left: 0;
}
.tabs input:nth-child(2):checked ~ .content{
	left: -100%;
}
.tabs input:nth-child(3):checked ~ .content{
	left: -200%;
}
.tabs input:nth-child(4):checked ~ .content{
	left: -300%;
}
.tabs input:nth-child(5):checked ~ .content{
	left: -400%;
}
.tabs input:nth-child(6):checked ~ .content{
	left: -500%;
}
.tabs input:nth-child(7):checked ~ .content{
	left: -600%;
}
.tabs input:nth-child(8):checked ~ .content{
	left: -700%;
}
.tabs input:nth-child(9):checked ~ .content{
	left: -800%;
}
.tabs input:nth-child(10):checked ~ .content{
	left: -900%;
}
.contentBx{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--sec_clr);
	height: 100%;
	padding-bottom: 20px;
	padding-top: 5px ;
	margin: auto;
}
/*.contentBx i{
	font-size: 60px;
}*/

.feat_art{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
    gap:0px;
}
.feat_art img{
	border: 2px white solid;
	pointer-events: none;
}
.feat_art p{
	/*width:60%;*/
	text-align: justify;
	font-size: 1rem;
	margin: 0px auto;
	padding:5px 20px;
}
.submit_by{
	text-align: right;
	color:var(--sec_clr);
	opacity: 0.2;
	/*width:60%;*/
	font-size: 0.85rem;
}
.post_title{
	font-size: 1.2rem;
	padding: 5px 10px;
}
/*body{
	margin: 0;
}*/

#edit_area{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 10px auto;
	padding: 20px;
	border-radius: 10px;
	background-color: rgba(100,100,100,.5);
	width: 100%;
}
#edit_area form{
	width: 100%;

}
#edit_area form input{
	width: 100%;
	margin: 5px;
	border-radius: 5px;
	padding: 5px;
}

#edit_area form .submitBtn{
	background-color: transparent;
	border-radius: 10px;
	padding: 5px;
	outline:  1px solid blue;
	color: blue;
	cursor: pointer;
	width: fit-content;
	margin: auto;
	transition: 0.25s;
}
#edit_area form .submitBtn:hover{
	background-color: var(--sec_clr);
	color: var(--prim_clr);
	outline:  1px solid var(--prim_clr);
}

@media only screen and (max-width:600px){
	.feat_art{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 10px;
	}
	.feat_art p{
		text-align: center;
	}
}