@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

/* __________________________Common Style___________________________________ */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	/* font-family: montserrat; */
}

.loader {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #000000;
	position: absolute;
	z-index: 10;
}

.loader>div {
	height: 60px;
	width: 60px;
	border: 9px solid #ebebeb;
	border-top-color: #008f00;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
	animation: spin 1.5s infinite linear;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

a {
	color: green;
}

br {
	user-select: none;
}


::selection {
	color: white;
	background-color: #00a800;
}

.btnGreen {
	background-color: #00a800;
	color: white;
	padding: 10px;
	border-radius: 4px;
	transition-property: background-color transform;
	transition-duration: 0.4s;
	outline: none;
	box-shadow: none;
	border: none;
}

.btnGreen:hover {
	background-color: black;
}


/* __________________________Header Style___________________________________ */

.navBar {
	background-color: black;
	color: white;
}

.webTitle {
	font-size: 25px;
	padding: 12px 20px;
	user-select: none;
}

.navLinks {
	display: flex;
}

.header nav {
	display: flex;
}

.header nav ul {
	display: flex;
	float: right;
}


/* _________________________ */

.header nav ul li {
	list-style: none;
	padding: 4px 0px;
	transition-property: background-color transform;
	transition-duration: 0.4s;
}


/* .header nav ul li:hover{
  transform: scale(1.5,1.5);
} */


/* _________________________ */

.header nav ul li a {
	text-decoration: none;
	padding: 10px 20px;
	color: #00d400;
	transition-property: background-color transform box-shadow;
	transition-duration: 0.4s;
}

.header nav ul li a:hover {
	box-shadow: 0px 0px 10px white;
}


/* _________________________ */

#signUp {
	margin: 10px 10px;
	font-size: 15px;
	cursor: pointer;
	width: 100px;
}

#signUp:hover {
	background-color: #007200;
	box-shadow: 0px 0px 10px red;
	/* transform: scale(1.3,1.3); */
}


/* __________________________Sub Navbar___________________________________ */

.subNav {
	position: sticky;
	box-shadow: 0px 0px 25px -10px black;
	top: 58px;
	background-color: #ffffff;
	z-index: 2;
	font-family: 'Montserrat', sans-serif;
	width: 100%;
	overflow-x: scroll;
	scroll-behavior: smooth;
}
.subNav ul{
	width: 200%;
}
.subNav a{
	color: black;
	padding: 7px 15px;
}

.subNav nav ul li a:hover {
	color: #ffffff;
	background-color: #008a00;
	border-radius: 4px;
}
.subNav nav ul li a:focus {
	color: #ffffff;
	background-color: #008a00;
	border-radius: 4px;
}

.link-active{
	color: #ffffff !important;
	background-color: #008a00;
	border-radius: 4px;
}
.link-active:hover{
	color: black !important;
	background: none !important;
}

.subNav::-webkit-scrollbar {
	height: 7px;
	display: none;
}

.subNav::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	display: none;
}

.subNav::-webkit-scrollbar-thumb {
	border-radius: 0px;
	-webkit-box-shadow: inset 0 0 10px black;
	display: none;
}

/* __________________________Header Content___________________________________ */

.headerContent {
	height: 400px;
	/* box-shadow: 0px 1px 10px black; */
	display: flex;
}

.headerContent-left {
	/* height: 100%; */
	width: 50%;
	/* background: #0000008c url(/images/banner.jpg);
  background-repeat: no-repeat;
  background-size: 1000px;
  background-position-x: -182px;
  background-position-y: -100px; */
	overflow: hidden;
}

.headerContent-left img {
	width: 1200px;
	height: 800px;
	position: relative;
	bottom: 150px;
	right: 100px;
	box-shadow: 0px 0px 5px black;
}

.headerContent-right {
	width: 50%;
	/* height: 80%; */
	margin: 20px;
	padding: 10px;
	border-left: 4px solid #00a800;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
}

.headerContent-right-header {
	font-size: 25px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-weight: bold;
}

.headerContent-right-content {
	text-align: left;
	padding: 10px;
}

.helpTutorial {
	padding: 10px;
	margin: 20px;
	/* width: 700px;
  height: 400px; */
	box-shadow: 0px 0px 5px black;
}


/* __________________________Body Content___________________________________ */

.searchBar {
	padding: 10px;
	text-align: center;
}

.searchBar input {
	margin: 0;
	padding: 10px;
	outline: none;
	border: none;
	box-shadow: 0px 0px 2px black;
	font-size: 15px;
	width: 50%;
}

#searchSubmit {
	position: relative;
	right: 30px;
	padding: 11px;
	border-bottom-left-radius: 0%;
	border-top-left-radius: 20px;
	width: 100px;
}


/* ________________________________ */

.follow {
	user-select: none;
	text-align: right;
	padding: 10px;
	/* margin-top: 5px; */
	background-color: #00a800;
	color: white;
	font-size: 20px;
	box-shadow: inset 0px -2px 5px black;
	overflow: hidden;
	cursor: pointer;
	transition-property: background-color transform;
	transition-duration: 0.4s;
}

.follow:hover {
	background-color: black;
	box-shadow: none;
}


/* ________________________________ */

.scroll-text {
	animation: slide-left 30s linear infinite;
}

@keyframes slide-left {
	0% {
		-webkit-transform: translateX(10);
		transform: translateX(10);
	}

	50% {
		-webkit-transform: translateX(-90%);
		transform: translateX(-90%);
	}
}

.redShadow {
	box-shadow: 0px 0px 5px red;
}

#channelName {
	color: black;
}

.commonInputs {
	font-family: consolas;
}


/* ________________________________________________________________________________________________________ */

.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
}

body {
	font-size: .875rem;
}

#webTitle {
	user-select: none;
}

.feather {
	width: 16px;
	height: 16px;
	vertical-align: text-bottom;
}


/* Sidebar*/

.sidebar {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	/* Behind the navbar */
	padding: 48px 0 0;
	/* Height of navbar */
	box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
	.sidebar {
		top: 5rem;
	}
}

.sidebar-sticky {
	position: relative;
	top: 0;
	height: calc(100vh - 48px);
	padding-top: .5rem;
	overflow-x: hidden;
	overflow-y: auto;
	/* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
	font-weight: 500;
	color: #333;
}

.sidebar .nav-link .feather {
	margin-right: 4px;
	color: #727272;
}

.sidebar .nav-link.active {
	color: #007bff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
	color: inherit;
}

.sidebar-heading {
	font-size: .75rem;
	text-transform: uppercase;
}


/*Navbar*/

.navbar-brand {
	padding-top: .75rem;
	padding-bottom: .75rem;
	font-size: 1rem;
	background-color: rgba(0, 0, 0, .25);
	box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.navbar .navbar-toggler {
	top: .25rem;
	right: 1rem;
}

.navbar .form-control {
	padding: .75rem 1rem;
	border-width: 0;
	border-radius: 0;
}

.form-control-dark {
	color: #fff;
	background-color: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
	border-color: transparent;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.flex {
	display: flex;
}

.hide {
	display: none;
}

.navButtons button {
	margin: 10px;
}



.calcBody {
	margin-bottom: 100px;
}

/* _________________________________________Find and Replace____________________________________________________ */

.findReplace {
	position: fixed;
	bottom: 0%;
	width: 100%;
	padding: 10px;
	background-color: #3700ff2d;
	z-index: 3;
}

.highlightText {
	background-color: yellow;
	display: inline;
	font-weight: bold;
}

.highlight {
	background-color: yellow
}

.goDownWard {
	position: absolute;
	left: 4%;
	bottom: 7%;
}

.goDownWard i {
	font-size: 35px;
	transition-property: color;
	transition-duration: 0.4s;
}

.goDownWard i:hover {
	cursor: pointer;
	color: green;
}

.goUpWard {
	position: absolute;
	right: 4%;
	bottom: 7%;
}

.goUpWard i {
	font-size: 35px;
	transition-property: color;
	transition-duration: 0.4s;
}

.goUpWard i:hover {
	cursor: pointer;
	color: green;
}

/* _________________________________________Uploaded Tags____________________________________________________ */
.uploadedTags {
	font-family: 'Montserrat', sans-serif;
}
/* _________________________________________Web Posts____________________________________________________ */
.webPosts {
	width: 90%;
	height: 300px;
	overflow-y: scroll;
}

.webPosts::-webkit-scrollbar {
	width: 5px;
}

.webPosts::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 5px;
}

.webPosts::-webkit-scrollbar-thumb {
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 10px black;
}

.webPosts a {
	text-decoration: none;
	color: #000000;
	transition-property: padding color;
	transition-duration: 0.3s;
}

.webPosts a:hover {
	text-decoration: none;
	color: white;
	background-color: #000000;
	padding: 10px 20px;
	border-radius: 50px;
}

#resultInfo {
	user-select: none;
}

#resultHeader {
	user-select: none;
}

.generatedTags {
	display: flex;
}

#numbering {
	user-select: none;
	border: 1px solid black;
	color: black;
	text-align: center;
	padding: 0px 10px;
	border-radius: 5px;
}

#copyAble {
	outline: none;
	border: none;
	padding-left: 10px;
	width: 100%;
}

#resultFooter {
	user-select: none;
}

/* ______________________________Settings___________________________________________ */
.selectSettings{
	user-select: none;
	padding: 15px;
	border-radius: 4px;
	background-color: #000000;
	color: white;
	display: flex;
}
.executeBtn{
	position: absolute;
	left: 88%;
}
.form-switch{
	padding: 10px 30px;
	position: relative;
	left: 10px;
}