@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 
font-family: 'Poppins', sans-serif;
font-family: 'PT Serif', serif;
*/
body{
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	overflow-x: hidden;
	position: relative;
	font-weight: 400;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: none;
	background-color: #F3FAF6;
}

::-webkit-scrollbar
{
	width: 6px;
	background-color: #F3FAF6;
}

::-webkit-scrollbar-thumb
{
	background-color: #343434;
}
h1,h2,h3,h4,h5,h6,strong{
	font-weight: 600;
}
h1{
	font-size: 32px;
}
h2{
	font-size: 28px;
}
h3{
	font-size: 24px;
}
h4{
	font-size: 20px;
}
h5{
	font-size: 18px;
}
p{
	line-height: 30px;
}
.container{
	max-width: 1200px;
}
/* Top Bar */
.tah-area{
	transition: all 0.3s ease-in-out;
	height:130px;
	top:0;
}
/* .tah-area.sticky {
position: fixed;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20);
height: 130px;
width: 100%;
z-index: 999999;
background: #ffffff;
} */
.topBar {
	height: 45px;
	display: flex;
	background: #00008B;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
	position: relative;
	width: 100%;
}
body.body-stick .topBar {
	top: -50px;
}
.topBar .topBar-menu {
	display: flex;
}

ul.TopMenu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	margin-left: auto;
}

ul.TopMenu li {
	line-height: normal;
	margin: 0 15px;
	position: relative;
	display: flex;
}

ul.TopMenu li:first-child {
	margin-left: 0;
}

ul.TopMenu li:last-child {
	margin-right: 0;
}

ul.TopMenu li a {
	font-size: 14px;
	text-decoration: none;
	color: #ffffff;
	line-height: 2;
	display: inline-flex;
	font-weight: 400;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;
}
ul.TopMenu li a::before{
	top: calc(100% - 5px);
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
ul.TopMenu li a:hover::before{
	transform-origin: 0% 50%;
	transform: scale3d(1, 1, 1);
}
ul.TopMenu li a::after{
	content: attr(data-text);
	height: 100%;
	top: 0;
	background: none;
	transform-origin: 100% 50%;
	transform: translate3d(150%, 0, 0);
	transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
	position: absolute;
	line-height: 2;
}
ul.TopMenu li a:hover::after{
	transform: translate3d(0, 0, 0);
	text-decoration: underline;
}

ul.TopMenu li a span.text {
	display: inline-block;
	transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}

ul.TopMenu li a:hover span.text {
	transform: translate3d(-150%, 0, 0);
}
ul.TopMenu li a:hover{
	color: #ffffff;
	text-decoration: underline;
}
ul.TopMenu li::after {
	content: "";
	width: 1px;
	height: 13px;
	background: rgb(255 255 255 / 31%);
	position: absolute;
	right: -15px;
	top: 0;
	bottom: 0;
	margin: auto;
}

ul.TopMenu li:last-child::after {
	content: none;
}
/* Header Bar */
header.main-Header {
	background: #ffffff;
	height: 84px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	top: 0;
	transition: all 0.3s ease-in-out;
	z-index: 999999;
	/* background: #000; */
}
header.main-Header #progress-bar {
	height: 3px;
	background-color: #3d00ed;
	width: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 3px;
}
header.sticky {
	position: fixed;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20);
	height: 74px;
	padding-bottom: 3px;
}

.LSB {
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: normal;
}

.main-logo {}

.main-logo a.logo-url {}
.main-logo a.logo-url img {
	width: 140px;
	height:auto;
}
.main-logo a.logo-url svg {
	height: 46px;
	width: fit-content;
}
header.sticky .main-logo a.logo-url svg {
	height: 40px;
	width: fit-content;
}
.LB-area {
	display: flex;
	align-items: center;
}

button.searchClick {
	width: unset;
	height: unset;
	border-radius: 0;
	background: transparent;
	border: none;
	/* box-shadow: 0px 2px 7px 0px rgba(0,0,0,0.10); */
	margin-right: 10px;
	padding: 0;
}

button.searchClick svg {
	height: 20px !important;
	width: auto !important;
}

a.get-started {
	background: #FF033E;
	height: 36px;
	display: inline-flex;
	border-radius: 5px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 10px 20px;
	color: #ffffff;
	font-size: 14px;
	line-height: 12px;
	transition: all 0.3s ease-in-out;
	font-weight: 600;
	letter-spacing: 0.5px;
}

a.get-started:hover {
	background: #005cb3;
}
/* Home Banner */
.home-banner{
	/* 	background: #ebe5fd; */
	background: #eae1fd;
	position: relative;
	min-height: 315px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.home-banner::before{
	content: "";
	background-image: url('/wp-content/themes/oysterblog/assets/images/banner-bg-shap.webp');
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
section.home-banner .container {
    position: relative;
    z-index: 1;
}
.hb-ba {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 315px;
	margin: auto;
	overflow: hidden;

	display: flex;
	justify-content: center;
	align-items: end;
	z-index: 0;
}
.hb-ba img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.hb-before {
	left: 0;
}

.hb-after {
	right: 0;
}
.home-banner .in-home-banner{
	display: flex;
	flex-direction: column;
	position: relative;
}
.home-banner .in-home-banner h1{
	/*     font-size: 3.2vw; */
	font-size: 2.8vw;
	line-height: 44px;
	line-height: normal;
	margin-bottom: 10px;
}
/* News & guides from OysterVPN */
.text-gradient{
	background: linear-gradient(90deg, #3d00ed 41.64%, #f7d42c 116.07%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.home-banner .in-home-banner p{
	font-size: 18px;
	font-weight: 500;
	color: #343434;
	margin-bottom: 0;
}

/* Latest Post */
section.latest-post-sec {
	padding: 50px 0;
}

.heading-para {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
}
.heading-para.center {
	justify-content: center;
	align-items: center;
}

.heading-para h2 {
	font-size: 28px;
	color: #222E3A;
	margin-bottom: 0;
	line-height: 52px;
}

.heading-para p {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #64697C;
	margin: 10px 0 0;
}
.heading-para.center p {
	width: 90%;
	margin: 10px auto 0;
	text-align: center;
}
.LPLoop{
	margin: 0 -15px;
}
.LPL-Item{
	padding: 15px;
}
.LPL-Item .in-LPL-Item{
	transition: all 0.3s linear 0s;
	/* min-width: 270px; */
	height: 430px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.LPL-Item .in-LPL-Item .feature-thumb{
	overflow: hidden;
	height: 277px;
	background: #005cb3;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 15px 15px 0 0;
	width: 100%;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	position: relative;
}
.LPL-Item .in-LPL-Item .feature-thumb a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.LPL-Item .in-LPL-Item .feature-thumb a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
}
.LPL-Item .in-LPL-Item .caption{
	overflow: hidden;
	padding: 30px 30px 0;
	border-radius: 0 0 15px 15px;
	background: #FFFFFF;
	border: 1px solid #DFE9F3;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
	border-width: 0px 1px 1px 1px;
	position: relative;
	height: 175px;
	-webkit-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-moz-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-ms-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	-o-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.LPL-Item .in-LPL-Item .caption h3{
	min-height: 60px;
	font-size: 20px;
	line-height: 3.5vh;
	color: #222E3A;
	margin-bottom: 15px;
	/*     font-size: 1.2vw; */
	display: flex;
}
.LPL-Item .in-LPL-Item .caption h3 a{
	color: #222E3A;
	text-decoration: none;
}
.LPL-Item .in-LPL-Item:hover .caption h3 a{
	color: #4169e1;
}
.LPL-Item .in-LPL-Item .caption p{
	font-size: 14px;
	line-height: normal;
	color: #64697C;
	margin-bottom: 0;
	display: none;
}
ul.post-meta{
	margin: 0px -30px 0 !important;
	display: flex;
	padding: 0;
	list-style: none;
	bottom: 0;
	width: 110%;
	position: relative;
	margin-top: auto !important;
	/* background: orange; */
}
ul.post-meta::before {
	content: "";
	width: 106%;
	position: absolute;
	top: 0;
	height: 0.5px;
	background: #dfe9f3;
	margin: auto;
	left: -3.1%;
	right: 0;
	display: block;
}
ul.post-meta li{
	margin-right: 0;
	height: 50px;
	/* justify-content: center; */
	display: flex;
	width: 100%;
	border-right: 1px solid  #dfe9f3;
	padding: 0 15px;
	justify-content: center;
}
ul.post-meta li:last-child{
	margin-right: 0px;
	border-right: 0;
}
ul.post-meta li a,
ul.post-meta li span.unlinks{
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
ul.post-meta li a .m-ico,
ul.post-meta li span.unlinks .m-ico{
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 5px;
}
ul.post-meta li a .m-ico svg,
ul.post-meta li span.unlinks .m-ico svg{
	height: 20px;
	fill: #8A8A8A;
	transition: all 0.3s ease;
}
ul.post-meta li a span.text,
ul.post-meta li span.unlinks span.text{
	font-size: 14px;
	white-space: pre;
	color:#8A8A8A;
	line-height: 13px;
	transition: all 0.3s ease;
}
ul.post-meta li a:hover span.text,
ul.post-meta li a:hover .m-ico svg{
	color: #4169e1;
	fill: #4169e1;
}
.LPL-Item .in-LPL-Item .caption ul.post-meta {
	position: unset;
	margin-top: 15px;
	/* background: red; */
	margin: auto -30px 0 -30px !important;
	width: 120%;
	bottom: 0;
	border-top: 1px solid #dfe9f3;
}
.LPL-Big-Item {
	display: flex;
	padding: 15px;
}

.LPL-Big-Item .in-LPL-Item {
	display: flex;
	flex-direction: unset;
	align-items: center;
}

.LPL-Big-Item .in-LPL-Item .feature-thumb {
	border-radius: 15px 0 0 15px;
	width: 40%;
	flex: 0 0 40%;
	height: 350px;
	overflow: hidden;
}
.LPL-Big-Item .in-LPL-Item .feature-thumb a{
	display: flex;
	width: 100%;
	height: 100%;
}
.LPL-Big-Item .in-LPL-Item .feature-thumb a img{
	width:100%;
	height: 100%;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	-ms-transition: all 0.3s linear 0s;
	-o-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	object-fit: cover;
}
.LPL-Big-Item .in-LPL-Item:hover .feature-thumb a img{
	transform: scale(1.1);
}
.LPL-Big-Item .in-LPL-Item .caption {
	width: 60%;
	flex: 0 0 60%;
	border-radius: 0px 15px 15px 0;
	border-width: 1px 1px 1px 0px;
	display: flex;
	flex-direction: column;
	justify-content: inherit;
	align-items: center;
	padding: 7.5% 50px 0;
	height: 100%;
	background: #ffffff;
	border: 1px solid #DFE9F3;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
	border-width: 0px 1px 1px 1px;
}

.LPL-Big-Item .in-LPL-Item .caption h3 {
	/*     font-size: 1.8vw; */
	line-height: 5vh;
	display:flex;
	margin-right:auto;
}
.LPL-Big-Item .in-LPL-Item .caption h3 a{
	color:#222E3A;
	text-decoration: none;
}
.LPL-Big-Item .in-LPL-Item:hover .caption h3 a{
	color: #4169e1;
}
.LPL-Big-Item .in-LPL-Item .caption p {
	font-size: 16px;
	color: #64697C;
	line-height: 26px;
	margin-bottom: 30px;
	display: block !important;
	opacity: 1 !important;
	height: unset !important;
}
.LPL-Item-small{}
.LPL-Item-small .in-LPL-Item{
	height: unset;
}
.LPL-Item-small .in-LPL-Item .feature-thumb {
	height: 200px !important;
}
.LPL-Item-small .in-LPL-Item .feature-thumb a{}
.LPL-Item-small .in-LPL-Item .feature-thumb a img{
	width: 100%;
	height: 100%;
}
.LPL-Item-small .in-LPL-Item .caption {
	padding: 20px;
	height: unset !important;
}

.LPL-Item-small .in-LPL-Item .caption h3 {
	font-size: 1vw;
	line-height: 3.2vh;
	margin: 0;
}
.LPL-Item-small .in-LPL-Item .caption h3 a{}
.LPL-Item-small .in-LPL-Item:hover .caption h3 a{
	color: #4169e1;
}
.LPL-Item-small ul.post-meta li{
	margin-right: 10px;
}
.LPL-Item-small ul.post-meta li:last-child{
	margin-right: 0px;
}
.LPL-Item-small ul.post-meta li a .m-ico {
	height: 20px;
}

.LPL-Item-small ul.post-meta li a .m-ico svg {
	height: 20px;
}

.LPL-Item-small ul.post-meta li a span.text {
	font-size: 14px;
}
.LPL-Item-small ul.post-meta li{
	margin-right: 10px;
}

/* hover effect */
.LPL-Item .in-LPL-Item:hover .caption p {
	z-index: 1;
	margin-bottom: 0;
}

.LPL-Item .in-LPL-Item:hover .caption {
	/* margin-top: -110px; */
	z-index: 99;
	height: 263px;
	padding-top: 20px;
}

.LPL-Item .in-LPL-Item:hover .feature-thumb {
	height: 167px;
}

.LPL-Item .in-LPL-Item:hover .feature-thumb a img {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	transform: scale(1.3);
}
/* end Latest Post */

.loading-overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	display: flex;
}

.loading-dots {
	display: flex;
	justify-content: center;
}

.loading-dot {
	width: 10px;
	height: 10px;
	background-color: #333;
	border-radius: 50%;
	margin: 0 5px;
	animation: bounce 0.6s infinite alternate;
}

@keyframes bounce {
	to {
		transform: translateY(-10px);
	}
}
/* Categories */
.CATLoop {
	margin: 0 -15px;
	justify-content: center;
}

.CATItem {
	padding: 15px;
}

.CATItem .in-CATItem {
	background: #FFFFFF;
	border: 1px solid #DFE9F3;
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
}

.CATItem .in-CATItem a {
	text-decoration: none;
	overflow: hidden;
	position: relative;
}

.CATItem .in-CATItem a .image {
	width: 100%;
	height: 220px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 40px 0;
	background: rgba(61, 0, 235, 0.10);
	border-radius: 7px 7px 0 0;
}

.CATItem .in-CATItem a .image::before{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgb(50 205 50 / 5%);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
.CATItem .in-CATItem a:hover .image::before{
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
.CATItem .in-CATItem a .image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	mix-blend-mode: luminosity;
	opacity: 0.5;
	transition: all 0.3s ease;
}
.CATItem.active .in-CATItem a .image img,
.CATItem .in-CATItem a:hover .image img{
	mix-blend-mode: unset;
	opacity: 1;
}
.CATItem .in-CATItem a .image::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	margin: auto;
	left: 0;
	right: 0;
	bottom: -0.6px;
	background: linear-gradient(to right,  rgb(30 87 153 / 0%) 0%,rgba(223,233,243,1) 50%,rgb(125 185 232 / 0%) 100%);
}

.CATItem .in-CATItem a .caps {
	padding: 20px;
	text-align: center;
	line-height: normal;
}

.CATItem .in-CATItem a .caps strong {
	text-transform: uppercase;
	font-size: 16px;
	color: #64697C;
	line-height: 16px;
	display: inline-flex;
}
.CATItem .in-CATItem a:hover .caps strong{
	color: #4169e1;
}
/* End Categories */
/* inner page style */
section.inner-banner {
	background: #ebe5fd;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 220px;
	text-align: center;
	flex-direction: column;
	padding: 2px 0 40px;
}
section.inner-banner .in-banner{
	text-align: left;
}
section.inner-banner .in-banner h1{
	font-size: 32px;
	/* Category: Streaming */
	line-height: normal;
	/* identical to box height */
	color: #263238;
}
section.inner-banner .in-banner h1 strong {
	color: rgb(0 0 0 / 70%);
	font-weight: 700;
}
nav.breadcrumb-area{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	background:#ffffff;
}
nav.breadcrumb-area ul.breadcrumb{
	margin: 0;
	/* display: inline-flex; */
	/* line-height: normal; */
	/* justify-content: center; */
	align-items: center;
	border: none;
	border-radius: 0;
	display: flex;
	overflow: hidden;
	padding: 0;
}
nav.breadcrumb-area ul.breadcrumb li.item{
	/* margin-right: 20px; */
	position: relative;
	margin: 0;
	padding: 0;
	float: left;
}
nav.breadcrumb-area ul.breadcrumb li.item:last-child{
	/*     margin-right: 0px; */
}
nav.breadcrumb-area ul.breadcrumb li.item a,
nav.breadcrumb-area ul.breadcrumb li.item span{
	font-size: 12px;
	background: #fff;
	color: #212529;
	outline: none;
	padding: 0.75em 0.75em 0.75em 1.25em;
	position: relative;
	text-decoration: none;
	transition: background 0.2s linear;
	margin: 0;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}
nav.breadcrumb-area ul.breadcrumb li a svg{
	width: 20px;
}
nav.breadcrumb-area ul.breadcrumb li span{
	font-size: 13px;
	line-height: 13px;
	display: inline-flex;
	color: #64697C;
}
nav.breadcrumb-area ul.breadcrumb li::after{
	/* content: ""; */
	position: absolute;
	width: 10px;
	right: -15px;
	height: 5px;
	line-height: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #64697C;
	height: 1px;
}
nav.breadcrumb-area ul.breadcrumb li:last-child::after{
	content: none;
}
nav.breadcrumb-area ul.breadcrumb li:last-child a::before,
nav.breadcrumb-area ul.breadcrumb li:last-child span::before,
nav.breadcrumb-area ul.breadcrumb li:last-child a::after,
nav.breadcrumb-area ul.breadcrumb li:last-child span::after{
	content: none !important;
}

nav.breadcrumb-area ul.breadcrumb li.item a::after,
nav.breadcrumb-area ul.breadcrumb li.item a::before,
nav.breadcrumb-area ul.breadcrumb li.item span::after,
nav.breadcrumb-area ul.breadcrumb li.item span::before {
	background: white;
	bottom: 0;
	clip-path: polygon(50% 50%, -50% -50%, 0 100%);
	content: "";
	left: 100%;
	position: absolute;
	top: 0;
	transition: background 0.2s linear;
	width: 1em;
	z-index: 1;
	bottom: 0;
	margin: auto;
}
nav.breadcrumb-area ul.breadcrumb li.item a::before,
nav.breadcrumb-area ul.breadcrumb li.item span::before{
	background: #cbd2d9;
	margin-left: 1px;
}

nav.breadcrumb-area ul.breadcrumb li:last-child a,
nav.breadcrumb-area ul.breadcrumb li:last-child span {
	border-right: none;
}

nav.breadcrumb-area ul.breadcrumb li.item.current span {
	background: #fff;
	color: rgb(0 0 0 / 57%);
}
nav.breadcrumb-area ul.breadcrumb li a:hover::after,
nav.breadcrumb-area ul.breadcrumb li a:hover,
nav.breadcrumb-area ul.breadcrumb li span:hover::after,
nav.breadcrumb-area ul.breadcrumb li span:hover {
	background: #ebe5fd;
}
/*  */
footer.main-footer{
	background: #3d00ed;
	border-top: 1px solid #3d00ed;
	margin-top: auto;
	width: 100%;
}
footer.main-footer .in-main-footer{
	padding-top: 20px;
}
.socials-and-gpas-stroe {
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
ul.social-list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.social-list li {
	margin: 0 5px;
}
ul.social-list li:first-child{
	margin-left: 0;
}
ul.social-list li:last-child{
	margin-right: 0;
}
ul.social-list li a {
	width: 40px;
	height: 40px;
	background: #f6f6f6;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 14px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	color: #000000;
	border: 3px solid #fff;
	z-index: 1;
}
ul.social-list li a::before {
	content: "";
	/* width: 100%; */
	/* height: 100%; */
	/* position: absolute; */
	/* left: 0; */
	/* right: 0; */
	/* top: 0; */
	/* bottom: 0; */
	/* transform: unset; */
	/* z-index: 1; */
	/* background: #005cb3; */
	/* background: linear-gradient(45deg,#005cb3 30%,#00b939 100%); */
	/* opacity: 0; */
	/* transition: all .3s; */
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f00;
	transition: .5s;
	z-index: 2;
}
ul.social-list li:nth-child(1) a::before {
	background: #3b5999;
}

ul.social-list li:nth-child(2) a::before {
	background: #55acee;
}

ul.social-list li:nth-child(3) a::before {
	background: #0077b5;
}

ul.social-list li:nth-child(4) a::before {
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
ul.social-list li:nth-child(5) a::before {
	background: #FF5700;
}
ul.social-list li:nth-child(6) a::before {
	background: #7289DA;
}
ul.social-list li a:hover::before {
	opacity: 1;
	top: 0;
}
ul.social-list li a i {
	position: relative;
	transition: all .2s;
	z-index: 2;
	transition: .5s;
	z-index: 3;
}
ul.social-list li a:hover i {
	color: #fff;
	transform: rotateY(360deg);
}
ul.GPAPPs-list {
	display: flex;
	margin: 0;
	padding: 0;
	width: fit-content;
}

ul.GPAPPs-list li {
	margin: 0 5px;
	list-style: none;
	display: inline-flex;
}

ul.GPAPPs-list li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 5px 10px;
	/* border: 1px solid #ffffff; */
	text-decoration: none;
	border-radius: 5px;
	position: relative;
}
ul.GPAPPs-list li a::before,
ul.GPAPPs-list li a::after {
	content:"";
	position: absolute;
	width: 0%; height: 0%;
	opacity: 0;
}
ul.GPAPPs-list li a::before {
	top: 0;
	right: 0;
	border-top: 2px solid rgb(225 225 225);
	border-left: 2px solid rgb(225 225 225);
	transition: width 0.2s 0.5s ease-out, height 0.15s 0.35s linear, opacity 0s 0.7s;
	border-radius: 0px;
}
ul.GPAPPs-list li a::after {
	bottom: 0;
	left: 0px;
	border-bottom: 2px solid rgb(225 225 225);
	border-right: 2px solid rgb(225 225 225);
	transition: width 0.2s 0.15s linear, height 0.15s ease-in, opacity 0s 0.35s;
	border-radius: 0px;
}
ul.GPAPPs-list li a:hover::before,
ul.GPAPPs-list li a:hover::after {
	width: 100%; height: 96%;
	opacity: 1;
}
ul.GPAPPs-list li a:hover::before {
	transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s;   /* 1,2 */
}
ul.GPAPPs-list li a:hover::after {
	transition: width 0.2s 0.35s linear, height 0.15s 0.5s ease-out, opacity 0s 0.3s; 
} 
ul.GPAPPs-list li a svg {
	height: 20px;
	width: auto;
}

ul.GPAPPs-list li:first-child {
	margin-left: 0;
}

ul.GPAPPs-list li:last-child {
	margin-right: 0;
}
.copyrights-and-ptrLinks {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border-top: 1px solid #ffffff52;
}
.copyrights-and-ptrLinks p{
	margin: 0;
	color: #ffffff;
	font-size: 14px;
	line-height: 14px;
}
ul.buttom-last-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: normal;
	display: flex
}

ul.buttom-last-menu li {
	margin: 0 7px
}

ul.buttom-last-menu li a {
	text-decoration: none;
	font-size: 14px;
	color: #ffffff;
}

ul.buttom-last-menu li a:hover {
	text-decoration: underline
}

ul.buttom-last-menu li a::before {
	content: none;
}
section.author-banner {/* Rectangle 48 */
	position: relative;
	background: linear-gradient(90.05deg, #F6F7FB 84.67%, rgba(246, 247, 251, 0) 101.43%);
	padding: 2px 0 30px;
	background: #F6F7FB !important;
}
section.author-banner nav.breadcrumb-area {
	width: 100%;
	background: #ffffff;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}
section.author-banner .in-banner {}

section.author-banner .in-banner nav.breadcrumb-area {
	justify-content: flex-start;
}

section.author-banner::after {
	content: "";
	position: absolute;
	bottom: 0;
	background-image: url(/wp-content/themes/oysterblog/assets/images/author-banner-before.webp);
	width: 345px;
	right: 0;
	top: 2px;
	background-repeat: no-repeat;
}
.author-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 1200px;
	margin: auto;
	position: relative;
	z-index: 9;
}

.author-short-name {
	width: 110px;
	height: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f7d42c;
	border-radius: 50%;
	font-size: 45px;
	font-weight: 500;
	line-height: 45px;
	color: #ffffff;
	margin-bottom: 16px;
}

.author-content h1 {
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 15px;
	color: #263238;
}

.author-content p {
	margin: 0;
	color: #343434;
	font-size: 16px;
	width: 700px;
	text-align: center;
}
/* search modal */
body.cc-modal-open {
	overflow: hidden;
}
.cc-modal {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgb(0 0 0 / 0.8);
	transition: all 0.3s ease-out;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cc-modal.show {
	z-index: 999999;
	opacity: 1;
	visibility: visible;
}
.cc-modal button.popClose {
	position: absolute;
	right: 40px;
	top: 40px;
	width: 35px;
	flex: 0 0 35px;
	height: 35px;
	background: transparent;
	border: none;
	border-radius: 5px;
	color: #ffffff;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.cc-modal button.popClose i {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.cc-modal button.popClose i::before {
	content: "";
	position: absolute;
	width: 24px;
	height: 3.5px;
	background: #ffffff;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(-45deg);
}

.cc-modal button.popClose i::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 3.5px;
	background: #ffffff;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(45deg);
}
.cc-modal .cc-modalBox {
	top: auto;
	position: relative;
	bottom: -100%;
	transition: all 0.5s ease-out;
	width: 600px;
	background: rgb(253 210 48 / 100%);
	margin: auto;
	padding: 20px;
	border-radius: 20px;
}
.cc-modal.show .cc-modalBox {
	top: 0;
	bottom: 0;
}
form.search-forms {}

form.search-forms .fields {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

form.search-forms .fields input.searchField {
	height: 60px;
	width: 100%;
	border: 1px solid #CFCFCF;
	padding: 15px 75px 15px 20px;
	border-radius: 7px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
	outline: none;
	font-size: 18px;
	line-height: normal;
}
form.search-forms .fields input.searchField::placeholder {
	color: rgb(0 0 0 / 32%);
}
form.search-forms .fields button.searchBtn {
	width: 45px;
	height: 45px;
	position: absolute;
	right: 10px;
	border: none;
	background: #3d00ed;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	transition: all 0.3s ease;
}
form.search-forms .fields button.searchBtn:hover{
	background: #f8ce2f;
}
/* end search modal */

/* single page style */
.single-top-area {
	background: #ebe5fd;
	padding: 2px 0 0 0;
}

.single-top-area nav.breadcrumb-area {
	background: #ffffff;
	padding: 0;
}

.HSPM-area {
	margin: 0 -15px;
	padding: 40px 0;
	display: flex;
	align-items: center;
}

.HSPM-left {
	padding: 0 15px;
}

.HSPM-right {
	padding: 0 15px;
	width: 280px;
	flex: 0 0 280px;
}

ul.single-meta-list {
	padding: 0;
	list-style: none;
	margin: 0;
}

ul.single-meta-list li {
	margin-bottom: 5px;
}

ul.single-meta-list li:last-child {
	margin-bottom: 0;
}

ul.single-meta-list li a,
ul.single-meta-list li .unlinks {
	border: 1px solid #DFE9F3;
	text-decoration: none;
	display: flex;
	align-items: center;
	border-radius: 30px;
	/* height: 50px; */
	font-size: 15px;
	color: rgb(0 0 0 / 70%);
	padding: 2px 15px 2px 2px;
	background: #ffffff;
	transition: all 0.3s ease;
}
ul.single-meta-list li a:hover,
ul.single-meta-list li .unlinks:hover{
	background: #3d00ea;
	color: #fff;
}

ul.single-meta-list li a span.icon,
ul.single-meta-list li .unlinks span.icon {
	width: 40px;
	height: 40px;
	background: rgb(247 212 44 / 15%);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 8px;
}
ul.single-meta-list li a:hover span.icon,
ul.single-meta-list li .unlinks:hover span.icon {
	background: #ffffff;
}
ul.single-meta-list li a span.icon svg,
ul.single-meta-list li .unlinks span.icon svg {
	height: 18px;
}
ul.single-meta-list li a span.text,
ul.single-meta-list li .unlinks span.text {
	font-size: 14px;
	font-weight: 400;
	line-height: 13px;
}
.HSPM-left ul.single-meta-list {
	display: none;
}
ul.single-meta-list.for-mobile {
	display: none !important;
}
.HSPM-left h1 {/* How to watch JioCinema outside India in 2023 */
	line-height: 38px;
	/* identical to box height */
	margin-bottom: 10px;
}

strong.subheading {/* [Updated November] */
	font-size: 18px;
	line-height: 30px;
	/* identical to box height */
	color: #495A63;
	margin-bottom: 15px;
	display: flex;
}

.HSPM-left p {
	font-size: 18px;
	color: #343434;
	margin: 0;
	font-weight: 400;
}

section.single-post-sec {
	padding: 30px 0;
}

.SPLCR-Row {
	display: flex;
	margin: 0 -15px;
	padding-bottom: 40px;
}

.SPLCC-Col {
	/*     width: 100%; */
	width: 73%;
	flex: 0 0 71%;
	padding: 0 15px;
}

.SPRCC-Col {
	width: 330px;
	flex: 0 0 330px;
	padding: 0 15px;
}
.postContents {}
.postContents h2 {
	margin-top: 60px;
	margin-bottom: 15px;
}
.postContents p {
	font-size: 16px;
	color: #64697C;
	margin-bottom: 20px !important;
}
.postContents p:empty {
	display: none !important;
}
.postContents p a{
	position: relative;
	overflow: hidden;
	padding: 0;
	padding-bottom: 5px;
	display: inline;
	/* line-height: 15px; */
	margin: 0;
	text-decoration: none;
	font-weight: 500;
	color: #4169e1;
}
.postContents p a:hover{
	color:#32cd32;
}
.postContents p a::after {
	background: #005cb3;
	content: '';
	height: 1.5px;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	opacity: 0;
	position: absolute;
	transform: translate3d(-100%, 0, 0);
	width: 100%;
}

.postContents p a:hover::after {
	animation: link-hoverstate .7s linear forwards;
	animation-timing-function: linear;
	animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes link-hoverstate {
	0% {
		opacity: 1;
		transform: translate3d(-100%, 0, 0)
	}
	55% {
		transform: translate3d(100%, 0, 0)
	}
	56% {
		transform: translate3d(100%, calc(0.5rem + 4px), 0)
	}
	100% {
		opacity: 1;
		transform: translate3d(0, calc(0.3rem + 2px), 0)
	}
}
/* Hightlighter */
@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}
.highlighter {
	background: #DFEBE4;
	width: 91%;
	/* width: 852px; */
	margin: 60px auto 30px;
	display: flex;
	border-radius: 10px;
	padding: 5px;
	position: relative;
	overflow: hidden;
}
.highlighter::before {
	content: "";
	width: 162px;
	height: 5px;
	position: absolute;
	background: red;
	z-index: 1;
	top: 0;
	left: 0;
	border-radius: 7px;
	background: linear-gradient(to right,  #32CD32 0%,rgb(0 0 0 / 0%) 100%);
}

.highlighter::after {
	content: "";
	width: 5px;
	height: 162px;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	border-radius: 7px;
	background: linear-gradient(to bottom,  #32CD32 0%,rgb(0 0 0 / 0%) 100%);
}
.highlighter:hover::before {
	content: '';
	position: absolute;
	z-index: -2;
	left: -50%;
	top: -50%;
	width: 200%;
	height: 200%;
	/* background-color: #399953; */
	background-repeat: no-repeat;
	background-size: 50% 50%, 50% 50%;
	background-position: 0 0, 100% 0, 100% 100%, 0 100%;
	background-image: linear-gradient(#32cd32, #32cd32c9), linear-gradient(#fbb30000, #fbb30000), linear-gradient(#d53e3300, #d53e3300), linear-gradient(#377af500, #377af500);
	animation: rotate 2s linear infinite;
	z-index: 1;
}

.highlighter:hover::after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 6px;
	top: 6px;
	width: calc(100% - 12px);
	height: calc(100% - 12px);
	background: white;
	border-radius: 5px;
	animation: opacityChange 3s infinite alternate;
}

@keyframes opacityChange {
	50% {
		opacity: 1;
	}
	100% {
		opacity: .5;
	}
}
.highlighter .in-highlighter {
	background: #F3FAF6;
	border-radius: 5px;
	position: relative;
	padding: 50px 25px;
	z-index: 1;
	width:100%;
}

/* .highlighter::before {
content: "";
width: 162px;
height: 5px;
position: absolute;
background: red;
z-index: 1;
top: 0;
left: 0;
border-radius: 7px;
background: linear-gradient(to right,  #32CD32 0%,rgb(0 0 0 / 0%) 100%);
}

.highlighter::after {
content: "";
width: 5px;
height: 162px;
position: absolute;
z-index: 1;
top: 0;
left: 0;
border-radius: 7px;
background: linear-gradient(to bottom,  #32CD32 0%,rgb(0 0 0 / 0%) 100%);
} */

.highlighter .in-highlighter::before {
	content: "";
}

.highlighter .in-highlighter h2 {
	margin-top: 0;
}

.highlighter .in-highlighter strong.subheading {
	font-size: 20px;
	line-height: 20px;
	margin-top: 0px;
}

.highlighter .in-highlighter p {}
.highlighter .in-highlighter ol {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.highlighter .in-highlighter ol li {
	width: fit-content;
	background: #ffffff;
	margin-bottom: 10px;
	min-height: 55px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-radius: 30px;
	padding: 5px 17px 5px 5px;
	font-size: 15px;
	color: #64697C;
	font-weight: 400;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.03);
	max-width: unset;
}
.highlighter .in-highlighter ol li p{
	font-size: 15px;
	color: #64697C;
	margin: 0 !important;
	line-height: normal;
}
.highlighter .in-highlighter ol li p a::after {
	content: none;
}
.highlighter .in-highlighter ol li::after{
	content: none !important;
}
.highlighter .in-highlighter ol li strong {
	font-weight: 600;
}

.highlighter .in-highlighter ol li span {
	display: flex;
	width: 45px;
	flex: 0 0 45px;
	height: 45px;
	background: #00B341;
	border-radius: 50%;
	margin-right: 12px;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	padding: 1px 2px 1px 2px;
	background: linear-gradient(to right,  #32CD32 0%,rgb(0 0 0 / 0%) 100%);
}
.highlighter .in-highlighter ol li span i {
	background: #ffffff;
	display: flex;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	font-style: unset;
	color: #32CD32;
}
.highlighter .in-highlighter ol li a {
	margin: 0 4px;
}

.highlighter .in-highlighter ol li a span {
	width: fit-content;
	height: fit-content;
	border-radius: unset;
	background: transparent;
	flex: auto;
	font-size: 15px;
	padding: 0;
	margin: 0;
	font-weight: 500;
}
/* CTA Button */
.CTA {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

.CTA .inCTA {
	display: flex;
	flex-direction: column;
	width: fit-content;
	text-align: center;
}

.CTA .inCTA a.CTA-BTN {
	height: 60px;
	display: flex;
	background: #0000FF;
	color: #ffffff;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
	font-size: 20px;
	padding: 20px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.CTA .inCTA small {
	font-size: 12px;
	color: #64697C;
	line-height: 15px;
	margin-top: 10px;
}
/* end CTA Button */
/* Hightlighter */

section.single-post-sec img {
	display: flex;
	margin: 20px auto;
	border-radius: 15px;
	width: 850px;
	height: auto;
}
/* blockquote */
blockquote {
	margin: 1vh 0 8vh;
	position: relative;
	display: flex;
	padding-top: 2vh;
}

blockquote p {
	color: #64697C !important;
	font-size: 24px !important;
	font-size: 1.6vw !important;
	font-weight: 500;
	line-height: normal !important;
	margin-bottom: 15px !important;
}

blockquote p:last-child {
	margin-bottom: 0 !important;
}

blockquote::before {
	content:"";
	width: 70px;
	width: 4vw;
	/* height: 8.5vh; */
	background-image: url(/wp-content/themes/oysterblog/assets/images/quote.webp);
	margin-right: 0.5vw;
	position: relative;
	margin-top: -2.5vh;
	background-repeat: no-repeat;
	background-size: contain;
}
/* end blockquote */

/* green ul style */
ul.green,
ol.green{
	line-height: normal;
	list-style: none;
	padding: 0 !important;
	margin: 10px 0 !important;
}

ul.green li,
ol.green li{
	margin-bottom: 10px !important;
	display: flex !important;
	align-items: center;
	counter-increment: green-counter;
	max-width: none !important;
	border: none !important;
}
ul.green li:first-child,
ol.green li:first-child{
	margin-top: 0 !important;
}
ul.green li:last-child,
ol.green li:last-child{
	margin-bottom: 0 !important;
}
ul.green li::before,
ol.green li::before{
	content: counter(green-counter) !important;
	display: inline-block !important;
	margin-right: 5px !important;
	visibility: hidden !important;
	font-size: 0 !important;
	height: 0 !important;
	position: absolute !important;
}
ul.green li span,
ol.green li span{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	background: #32CD32;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	border-radius: 50%;
}

ul.green li span i,
ol.green li span i{
	font-size: 24px;
	font-style: unset;
	color: #ffffff;
	font-weight: 600;
	line-height: 20px;
}
ul.green li h2, 
ol.green li h2, 
ul.green li h3, 
ol.green li h3, 
ul.green li h4,
ol.green li h4{
	margin: 0;
	color: rgb(0 0 0 / 65%);
}
/* end green ul */

/* device table style */
.DLSS-Box {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
}


/* device table */

.postContents ul,
.postContents ol {
	margin: 20px 0;
	padding: 0 0 0 30px;
	/* flex-direction: column; */
	/* flex-wrap: unset; */
}
.postContents ul{
	padding-right:20px !important;
}
.postContents ul li,
.postContents ol li {
	position: relative;
	display: list-item;
	padding: 10px 0;
	border-bottom: #E9E9E9 1px solid;
	color: #64697C;
	max-width: 100%;
	font-weight: 400;
	list-style: none;
}
.postContents ul li:last-child, 
.postContents ol li:last-child {
	border-bottom: none;
}
.postContents ul li::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	background-color: #B1B1B1;
	border-radius: 50%;
	font-size: 16px;
	margin-right: 10px;
	position: relative;
	top: 0px;
}

.postContents ol {
	counter-reset: my-counter;
	padding-left: 50px;
}

.postContents ol li {
	display: list-item;
	padding-left: 3px;
	list-style: auto;
}

.postContents ol li::marker {
	left: 0px !important;
	position: relative;
	color: #64697C;
}

.postContents ol li::after {
	content: "";
	width: 20px;
	position: absolute;
	height: 1px;
	background: #e9e9e9;
	bottom: -1px;
	left: -17px;
}
.postContents ol li:last-child::after {
	content: none;
}
.postContents ul li a, .postContents ol li a{
	position: relative;
	text-decoration: none;
	margin: 0;
	padding: 0;
	font-weight: 500;
	color: #64697C;
	display: inline-flex;
}
.wavy-link {
	font-family: lust-fine, sans-serif;
	overflow: hidden;
	padding: 7px 0;
	display: ruby;
}

.link__graphic {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	fill: none;
	stroke: #4169e1;
	stroke-width: 1px;
}

.link__graphic--slide {
	top: unset;
	stroke-width: 4px;
	transition: transform 0.7s;
	transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
	bottom: 0;
}

.link:hover .link__graphic--slide {
	transform: translate3d(-66.6%, 0, 0);
}
/* FAQs */
.faqs-accordian {
	margin: 20px 0;
	display: flex;
	flex-direction: column;
}

.faqs-accordian .faqs-item {
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: #FFF;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03);
	margin-bottom: 10px;
	overflow: hidden;
}

.faqs-accordian .faqs-item button.quisBtn {
	background: #ffffff;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 20px;
	border: none;
	padding: 7px 70px 7px 20px;
}

.faqs-accordian .faqs-item button.quisBtn span.plus-minus {
	width: 36px;
	height: 36px;
	display: flex;
	background: #E4E4E4;
	border-radius: 50%;
	position: relative;
	right: -60px;
}

.faqs-accordian .faqs-item button.quisBtn span.plus-minus svg.ico {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 0.3s ease;
	opacity: 0;
	height: 15px;
	width: 15px;
}

.faqs-accordian .faqs-item button.quisBtn strong.quisHeading {
	color: #64697C;
	font-size: 18px;
	text-align: left;
}

.faqs-accordian .faqs-item .ans {
	padding: 0px 40px;
	border-top: 0px solid transparent;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	opacity: 0;
	height: 0;
	visibility: hidden;
}

.faqs-accordian .faqs-item .ans p {
	margin-bottom: 15px;
	color: #64697C;
	font-size: 16px;
}

.faqs-accordian .faqs-item .ans p:last-child {
	margin-bottom: 0;
}

.faqs-accordian .faqs-item button.quisBtn span.plus-minus svg.ico.plusIcon {
	opacity: 1;
}

.faqs-accordian .faqs-item.active button.quisBtn span.plus-minus svg.ico.plusIcon {
	opacity: 0;
}

.faqs-accordian .faqs-item.active button.quisBtn span.plus-minus svg.ico.minusIcon {
	opacity: 1;
}

.faqs-accordian .faqs-item.active .ans {
	padding: 15px 25px;
	border-width: 1px 0 0 0;
	border-color: #E6E6E6;
	opacity: 1;
	visibility: visible;
	height: auto;
}
.faqs-accordian .faqs-item.active .ans p:last-child{
	margin-bottom: 0 !important;
}
.faqs-accordian .faqs-item.active {
	border-radius: 5px;
}
/* end FAQs */

/* tabs */
.cc-tabs {
	margin: 20px 0;
}
/* ul.oyster-nav-tabs {
margin: 0 0 -1px 0;
padding: 0;
line-height: normal;
list-style: none;
border: none !important;
width: 100%;
max-width: 100%;
min-width: 100%;
display: flex;
justify-content: flex-start;
}

ul.oyster-nav-tabs li.nav-item {
margin: 0;
background: #ffffff;
padding: 0;
list-style: none;
}

ul.oyster-nav-tabs li.nav-item:first-child {}

ul.oyster-nav-tabs li.nav-item:last-child {}

ul.oyster-nav-tabs li.nav-item::before {
content: "";
padding: 0;
margin: 0;
width: unset;
height: unset;
background: transparent;
font-size: 0;
top: unset;
bottom: unset;
display: none;
}

ul.oyster-nav-tabs li.nav-item::after {
content: "";
position: absolute;
width: 0px;
height: 0px;
}

ul.oyster-nav-tabs li.nav-item button.nav-link {
border: 2px solid #e5e5e5;
border-radius: 25px 25px 0 0;
border-width: 1px 1px 0px 1px !important;
margin: 0 !important;
font-size: 18px;
padding: 15px 25px;
position: relative;
background: #ffffff;
isolation: unset;
color: #64697C;
transition: unset;
height: 60px;
line-height: 18px;
display: inline-flex;
justify-content: center;
align-items: center;
}
ul.oyster-nav-tabs li.nav-item button.nav-link::before {
content: "";
position: absolute;
width: 47px;
height: 28px;
background-image: url(/wp-content/themes/oysterblog/assets/images/tab-normal-before.webp);
background-color: #ffffff;
top: -1px;
left: -24px;
z-index: 1;
background-size: 100% 100%;
}
ul.oyster-nav-tabs li.nav-item button.nav-link::after {
content: "";
position: absolute;
width: 26px;
height: 36px;
background-image: url(/wp-content/themes/oysterblog/assets/images/tab-normal-after.webp);
background-color: #ffffff;
bottom: -4px;
right: -26px;
z-index: 1;
background-size: contain;
} 



ul.oyster-nav-tabs li.nav-item button.nav-link span {
position: relative;
z-index: 2;
line-height: 18px;
display: inline-flex;
}

ul.oyster-nav-tabs li.nav-item button.nav-link span::before {
content: "";
}

ul.oyster-nav-tabs li.nav-item button.nav-link span::after {}*/

.oyster-tab-content {
	border: 1px solid rgba(0, 0, 0, 0.10);
	border-radius: 0 15px 15px 15px;
	padding: 20px 20px 0;
	background: #ffffff;
	position: relative;
	z-index: 3;
}

.oyster-tab-content .tab-pane {}

.oyster-tab-content .tab-pane.active {}

.oyster-tab-content .tab-pane p {}

/* ul.oyster-nav-tabs li.nav-item button.nav-link.active {
background: #00B341;
color: #ffffff;
border: 0 !important;
z-index: 1;
border-radius: 25px 25px 0 25px;
position: relative;
bottom: 0px;
z-index: 2;
}
ul.oyster-nav-tabs li.nav-item button.nav-link.active::before {
content: "";
position: absolute;
width: 47px;
height: 28px;
background-image: url(/wp-content/themes/oysterblog/assets/images/tab-active-before.webp);
background-color: #ffffff;
top: 0px;
left: -26px;
z-index: 1;
}
ul.oyster-nav-tabs li.nav-item button.nav-link.active::after {
content: "";
position: absolute;
width: 20px;
height: 30px;
background-image: url(/wp-content/themes/oysterblog/assets/images/tab-active-after.webp);
background-color: #ffffff;
bottom: 0px;
right: -20px;
z-index: 1;
}
ul.oyster-nav-tabs li.nav-item:first-child button.nav-link.active::before {
content: none;
}

ul.oyster-nav-tabs li.nav-item:first-child button.nav-link.active {
border-radius: 25px 25px 0 0;
}

ul.oyster-nav-tabs li.nav-item:first-child button.nav-link::before {
content: none;
} */
/* end tabs */

/* Pros and Cons */
.pros-and-cons {
	margin: 30px -10px;
	display: flex;
}

.pros-and-cons .pcBox {
	padding: 0 10px;
	width: 50%;
}

.pros-and-cons .pcBox .in-pcBox {
	fill: #FFF;
	border: 1px solid rgba(0, 0, 0, 0.10);
	stroke: rgba(0, 0, 0, 0.10);
	filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.03));
	background: #ffffff;
	border-radius: 10px;
	overflow: hidden;
}

.pros-and-cons .pcBox .in-pcBox .heading-pc {
	text-align: center;
	height: 40px;
	display: flex;
	justify-content: left;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	color: #ffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	padding: 0 20px;
}

.pros-and-cons .pcBox .in-pcBox.pros .heading-pc {
	background: #00B341;
}

.pros-and-cons .pcBox .in-pcBox.cons .heading-pc {
	background: red;
}

.pros-and-cons .pcBox .in-pcBox .pc-content {
	padding: 15px 15px;
	min-height: fit-content;
}

.pros-and-cons .pcBox .in-pcBox .pc-content ul.list {
	margin: 0;
	padding: 0 0 0 25px;
	line-height: normal;
}

.pros-and-cons .pcBox .in-pcBox .pc-content ul.list li {
	width: 100%;
	display: flex;
	border: 1px solid #000000;
	height: 50px;
	align-items: center;
	margin: 15px 0;
	border-radius: 0px 30px 30px 0px;
	font-size: 15px;
	line-height: 14px;
	color: rgb(0 0 0 / 80%);
}

.pros-and-cons .pcBox .in-pcBox .pc-content ul.list li::before {content: none;}

.pros-and-cons .pcBox .in-pcBox .pc-content ul.list li span.ico {
	width: 35px;
	flex: 0 0 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffffff;
	border: 1px solid #000000;
	transform: rotate(45deg);
	margin-right: 15px;
	box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.07);
	position: relative;
	margin-left: -18px;
}

.pros-and-cons .pcBox .in-pcBox .pc-content ul.list li:first-child {
	margin-top: 10px;
}

.pros-and-cons .pcBox .in-pcBox .pc-content ul.list li:last-child {
	margin-bottom: 10px;
}

.pros-and-cons .pcBox .in-pcBox .pc-content ul.list li span.ico svg {
	transform: rotate(-45deg);
	stroke: none;
	height: 14px;
}

.pros-and-cons .pcBox .in-pcBox.pros .pc-content ul.list li {
	background: rgb(0 179 65 / 5%);
	border-color: rgb(0 179 65 / 50%);
}

.pros-and-cons .pcBox .in-pcBox.cons .pc-content ul.list li {
	background: rgb(255 0 0 / 5%);
	border-color: rgb(255 0 0 / 50%);
}

.pros-and-cons .pcBox .in-pcBox.cons .pc-content ul.list li span.ico {
	border-color: rgb(255 0 0 / 50%);
}

.pros-and-cons .pcBox .in-pcBox.pros .pc-content ul.list li span.ico {
	border-color: rgb(0 179 65 / 50%);
}
/* End Pros and Cons */

/* Short Content Simple Box */
.shortContent-simple-box {
	position: relative;
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #00B341;
	filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.03));
	/* min-height: 150px; */
	margin: 20px 0;
}

.shortContent-simple-box::before {
	content: "";
	width: 6px;
	height: 115px;
	background-image: url(/wp-content/themes/oysterblog/assets/images/scsb-before.webp);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: -4px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
}

.shortContent-simple-box p {
	margin: 0 0 15px 0;
	color: #64697C;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}
.shortContent-simple-box p:last-child{
	margin-bottom: 0 !important;
}

.shortContent-simple-box p:last-child {
	margin-bottom: 0 !important;
}
/* End Short Content Simple Box */

.shortContent-box {
	background: #ffffff;
	border: 1px solid #000000;
	border-radius: 10px;
	padding: 20px;
	margin: 30px 0;
}

.shortContent-box p {
	color: #64697C;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 15px;
	line-height: 26px;
}

.shortContent-box p:last-child {
	margin-bottom: 0 !important;
}

.light-green {
	border: 1px solid rgba(0, 179, 65, 0.10);
	background: #F3FAF6;
}

.light-blue {
	border: 1px solid rgba(0, 92, 179, 0.10);
	background: #F2F7FB;
}

/* Big CTA */
.big-CTA {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #070218;
	border-radius: 10px;
	overflow: hidden;
	padding: 30px 40px 30px 50px;
}

.big-CTA .ContentBox {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.big-CTA .ContentBox strong.heading {
	color: #FFF;
	font-size: 40px;
	font-weight: 600;
	line-height: 46px;
	margin-bottom: 10px;
	display: flex;
}

.big-CTA .ContentBox p {
	color: rgb(255 255 255 / 85%);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
}

.big-CTA .ContentBox a.url {
	display: inline-flex;
	padding: 12px 40px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 7px;
	background: #32CD32;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.5px;
	display: none;
}

.big-CTA .ctaImage {
	width: 300px;
	flex: 0 0 300px;
	justify-content: center;
	align-items: center;
	display: flex;
}

.big-CTA .ctaImage .in-scImage {
	display: flex;
	width: fit-content;
}

.big-CTA .ctaImage img {
	margin: 0;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

/* End Big CTA */

/* Subscriber */
.subscriber-Box {
	width: 700px;
	border-radius: 12px;
	border: 1px solid rgba(0, 92, 179, 0.10);
	background: #F2F7FB;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03);
	margin: 50px auto 30px;
	position: relative;
}

.subscriber-Box .in-subscriber-Box {
	padding: 35px 30px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.subscriber-Box::after {
	content: "";
	width: 67px;
	height: 67px;
	position: absolute;
	background-image: url(/wp-content/themes/oysterblog/assets/images/plan.webp);
	right: -14px;
	top: -23px;
	background-color: transparent;
	animation: skew-x-shaking 0.75s linear infinite;
}
@keyframes skew-x-shaking {
	0% { transform: skewX(-15deg); }
	5% { transform: skewX(15deg); }
	10% { transform: skewX(-15deg); }
	15% { transform: skewX(15deg); }
	20% { transform: skewX(0deg); }
	100% { transform: skewX(0deg); }
}
.subscriber-Box .in-subscriber-Box strong.subscribe-heading {
	color: #231F20;
	font-size: 28px;
	font-weight: 600;
	line-height: normal;
}

.subscriber-Box .in-subscriber-Box p {
	color: #64697C;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
}
.subsBox{
	width: 100%;
}
.subsBox .fields{
	display: flex;
	height: 60px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.10);
	filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.03));
	border-radius: 10px;
	padding: 0 9px 0 0;
	align-items: center;
}
.subsBox .fields input[type="email"]{
	width: 100%;
	border: none;
	padding: 18px 20px 18px 60px;
	border-radius: 10px;
	outline: none;
	height: 100%;
	background-image: url(/wp-content/themes/oysterblog/assets/images/mail-icon.webp);
	background-repeat: no-repeat;
	background-position: 21px 15px;
	color: #64697C;
	font-size: 16px;
	line-height: 16px;
}
.subsBox .fields input[type="email"]::placeholder {
	color: #64697C;
	opacity: 0.3;
	font-size:14px;
}
.subsBox .fields button{
	width: 80px;
	flex: 0 0 80px;
	height: 42px;
	border-radius: 5px;
	background: #4169e1;
	color: #ffffff;
	border: none;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	outline: none;
	letter-spacing:1px;
	position:relative;
	transition: all 0.3s ease;
}
.subsBox .fields button:hover{
	background: #ff033e;
	color: #ffffff;
}
/* End Subscriber */

/* Three Column */
.three-column {
	background: #ffffff;
	margin: 30px -15px;
}

.threeCol-box {
	text-align: center;
	padding: 0 15px;
	position: relative;
}

.threeCol-box::after {
	content: "";
	height: 100%;
	width: 1px;
	background: #C7CDD3;
	position: absolute;
	right: 0.5px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: linear-gradient(to bottom,  rgb(255 255 255 / 0%) 0%,rgb(0 0 0 / 15%) 50%,rgb(255 255 255 / 0%) 100%);
}

.threeCol-box:last-child::after {
	content: none;
}

.threeCol-box .in-threeCol-box {
	padding: 0 15px;
}

.threeCol-box .in-threeCol-box .image {
	width: 110px;
	height: 110px;
	margin: 0 auto 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.threeCol-box .in-threeCol-box .image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.threeCol-box .in-threeCol-box strong.heading {
	color: #231F20;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	min-height: 50px;
	margin-bottom: 10px;
	justify-content: center;
	align-items: flex-start;
	line-height: 24px;
}

.threeCol-box .in-threeCol-box p {
	color: #64697C;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	margin: 0;
}
/* End Three Column */

/* Two Column */
.two-column {
	margin: 30px -10px;
}

.twoCol-box {
	padding: 0 10px;
	text-align: center;
}

.twoCol-box .in-twoCol-box {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.10);
	filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.03));
	padding: 35px 30px 30px;
	border-radius: 10px;
}

.twoCol-box .in-twoCol-box .image {
	width: 110px;
	height: 110px;
	margin: 0 auto 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.twoCol-box .in-twoCol-box .image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.twoCol-box .in-twoCol-box strong.heading {
	color: #231F20;
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.twoCol-box .in-twoCol-box p {
	color: #64697C;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	margin: 0 !important;
}
/* End Two Column */

/* Vertical Steps */
.vertical-steps-area {
	margin: 30px auto;
	width: 91%;
}

ul.vertical-steps-list {
	margin: 0 -15px;
	padding: 0;
	list-style: none;
	display: flex;
}

ul.vertical-steps-list li.vs-item {
	width: 33.333333%;
	border: none;
	margin: 0;
	padding: 0 15px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
ul.vertical-steps-list li.vs-item:last-child{}
ul.vertical-steps-list li.vs-item::before {
	content: none;
}

ul.vertical-steps-list li.vs-item::after {
	content: "";
	width: 1px;
	min-width: 1px;
	max-width: 1px;
	flex: 0 0 1px;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0px;
	background: #C7CDD3;
	background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0%,rgb(0 0 0 / 15%) 50%,rgb(255 255 255 / 0%) 100%);
}
ul.vertical-steps-list li.vs-item:last-child::after {
	content: none;
}
ul.vertical-steps-list li.vs-item .in-vs-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

ul.vertical-steps-list li.vs-item .in-vs-item .iconImg {
	width: 170px;
	height: 142px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 5px;
}

ul.vertical-steps-list li.vs-item .in-vs-item .iconImg svg {
	width: 170px;
}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps {}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps strong.heading {
	color: #231F20;
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps p {
	color: #64697C;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	margin: 0 !important;
}
/* End Vertical Steps */

/* CTA2 */
.CTA2{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 30px;
}
.CTA2 .inCTA2{
	display: flex;
	flex-direction: column;
	width: fit-content;
	text-align: center;
}
.CTA2 .inCTA2 a.CTA-BTN2{
	height: inherit;
	display: flex;
	color: #ffffff;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
	font-size: 18px;
	padding: 7px 7px 7px 30px;
	font-weight: 600;
	letter-spacing: 0.3px;
	border-radius: 100px;
	background: #f7d42c;
	box-shadow: 5px 10px 25px 0px rgba(0, 0, 0, 0.10);
	transition: all 0.3s ease;
}
.CTA2 .inCTA2 a.CTA-BTN2:hover{
	background: #3d00eb;
}
.CTA2 .inCTA2 a.CTA-BTN2 span.text{
	font-size: 18px;
	font-weight: 600;
	line-height: 18px;
	margin-right: 15px;
	transition: all 0.3s ease;
}
.CTA2 .inCTA2 a.CTA-BTN2:hover span.text{
	/*     margin-left: -5px; */
}
.CTA2 .inCTA2 a.CTA-BTN2 span.icon{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffffff;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.3s ease;
}
.CTA2 .inCTA2 a.CTA-BTN2:hover span.icon{
	margin-left: 5px;
}
.CTA2 .inCTA2 a.CTA-BTN2 span.icon svg{
	width: 20px;
	height: 12px;
}
.CTA2 .inCTA2 small{
	font-size: 12px;
	color: #64697C;
	line-height: 15px;
	margin-top: 10px;
}
/* End CTA2 */

/* Horizontal Steps */
.horizontal-steps-area {
	margin: 30px 0;
	padding-left: 35px;
}

ul.horizontal-steps-list {border-left: 5px solid #DFE9F3;position: relative;padding-left: 60px;}

ul.horizontal-steps-list::before {
	content: "";
	width: 15px;
	height: 15px;
	position: absolute;
	top: 0;
	left: -10px;
	background: #dfe9f3;
	border-radius: 50%;
}

ul.horizontal-steps-list::after {
	content: "";
	width: 15px;
	height: 15px;
	position: absolute;
	bottom: 0;
	left: -10px;
	background: #dfe9f3;
	border-radius: 50%;
}

.horizontal-steps-area {
	width: 91%;
	margin: 40px auto 40px;
}

ul.horizontal-steps-list li.hzls-item {
	display: flex;
	align-items: center;
	position: relative;
	max-width: unset;
	padding: 10px 0 10px;
	margin: 0;
}

ul.horizontal-steps-list li.hzls-item .index {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	top: 30px;
	left: -88px;
}
ul.horizontal-steps-list li.hzls-item .index::before {
	content: "";
	position: absolute;
	width: 45px;
	height: 45px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	border: 2px dashed #A1E1B9;
}
ul.horizontal-steps-list li.hzls-item .index::after {
	content: "";
	position: absolute;
	width: 35px;
	height: 8px;
	right: -35px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url(/wp-content/themes/oysterblog/assets/images/steps-arrow.webp);
	/* background-color: orange; */
	background-repeat: no-repeat;
	background-size: contain;
}

ul.horizontal-steps-list li.hzls-item .index strong {
	display: flex;
	width: 35px;
	height: 35px;
	background: #F0F6FC;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #263238;
	font-family: "PT Serif";
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
ul.horizontal-steps-list li.hzls-item::before {
	content: none;
}

ul.horizontal-steps-list li.hzls-item:first-child {
	padding-top: 0;
}

ul.horizontal-steps-list li.hzls-item:last-child {
	padding-bottom: 0;
}

ul.horizontal-steps-list li.hzls-item .in-hzls-item {
	display: flex;
	align-items: center;
}

ul.horizontal-steps-list li.hzls-item .in-hzls-item .iconImg {
	width: 120px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

ul.horizontal-steps-list li.hzls-item .in-hzls-item .iconImg .in-iconImg {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	align-items: center;
}

ul.horizontal-steps-list li.hzls-item .in-hzls-item .iconImg .in-iconImg svg {
	height: auto;
	width: 120px;
}

ul.horizontal-steps-list li.hzls-item .in-hzls-item .hzlsCaps {}

ul.horizontal-steps-list li.hzls-item .in-hzls-item .hzlsCaps strong.heading {
	color: #231F20;
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
	display: inline-flex;
}
ul.horizontal-steps-list li.hzls-item .in-hzls-item .hzlsCaps strong.heading a.curved-underline{
	text-decoration: none;
	position: relative;
	color: #4169e1;
}
ul.horizontal-steps-list li.hzls-item .in-hzls-item:hover .hzlsCaps strong.heading a.curved-underline{
	color: #64697C;
}
ul.horizontal-steps-list li.hzls-item .in-hzls-item .hzlsCaps strong.heading a.curved-underline .text{}
ul.horizontal-steps-list li.hzls-item .in-hzls-item .hzlsCaps strong.heading a.curved-underline .line-graphic{}
ul.horizontal-steps-list li.hzls-item .in-hzls-item .hzlsCaps strong.heading a.curved-underline .line-graphic svg{
	position: absolute;
	pointer-events: none;
	fill: none;
	stroke: #0000ff;
	stroke-width: 1px;
	width: fit-content;
}
ul.horizontal-steps-list li.hzls-item .in-hzls-item .hzlsCaps strong.heading a.curved-underline .line-graphic svg path{}
ul.horizontal-steps-list li.hzls-item .in-hzls-item .hzlsCaps p {
	color: #64697C;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	margin: 0 !important;
}
/* End Horizontal Steps */

/* Apps Table */
.apps-table-area {
	margin: 30px 0;
}

table.appsTable {
	width: 100%;
}

table.appsTable tbody {}

table.appsTable tbody tr {
	/* background: rgba(0, 92, 179, 0.07); */
}

table.appsTable tbody tr:nth-child(odd) {
	background: rgba(0, 92, 179, 0.07);
}

table.appsTable tbody tr:nth-child(even) {
	background: rgba(0, 92, 179, 0.02);
}

table.appsTable tbody tr td {
	border: 1px solid rgb(0 92 179 / 20%);
	border-width: 0px 1px;
	padding: 10px 20px;
	width: 33.333333%;
}

table.appsTable tbody tr td:first-child {
	border-left: 0;
}

table.appsTable tbody tr td:last-child {border-right: 0;}

table.appsTable tbody tr td .iconAtext {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
table.appsTable tbody tr td .iconAtext a.url{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
}
table.appsTable tbody tr td .iconAtext .icon {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}
table.appsTable tbody tr td .iconAtext .icon svg{
	height: 30px;
}
table.appsTable tbody tr td .iconAtext .icon svg path{
	fill: #000000;
}
table.appsTable tbody tr td .iconAtext .text {
	color: #64697C;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	position: relative;
	background-image: linear-gradient(#32cd32,#32cd32),
		linear-gradient(transparent,transparent),
		linear-gradient(#32cd32,#32cd32);
	background-position: 100% 100%,0 100%,0 100%;
	background-repeat: no-repeat;
	background-size: 100% 2px,0 2px,0 2px;
	border: none;
	color: #64697C;
	padding-bottom: 2px;
	text-decoration: none;
}
table.appsTable tbody tr td .iconAtext .text span{
	/*     color: red; */
}
table.appsTable tbody tr td .iconAtext a.url:hover .text{
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-name: eds-animated-text-link;
	animation-name: eds-animated-text-link;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	background-image: linear-gradient(#4169e1,#4169e1),
		linear-gradient(transparent,transparent),
		linear-gradient(#4169e1,#4169e1);
	color: #000000;
}
table.appsTable tbody tr td .iconAtext .text::after {
	content: '';
	transition: opacity 0.3s;
}

table.appsTable tbody tr td .iconAtext a.url:hover .text::after {
	opacity: 0;
}
@-webkit-keyframes eds-animated-text-link {
	0% {
		background-size: 100% 2px,0 2px,0 2px
	}

	50% {
		background-size: 0 2px,100% 2px,0 2px
	}

	to {
		background-size: 0 2px,0 2px,100% 2px
	}
}

@keyframes eds-animated-text-link {
	0% {
		background-size: 100% 2px,0 2px,0 2px
	}

	50% {
		background-size: 0 2px,100% 2px,0 2px
	}

	to {
		background-size: 0 2px,0 2px,100% 2px
	}
}

@-webkit-keyframes eds-animated-text-link-rtl {
	0% {
		background-size: 0 2px,0 2px,100% 2px
	}

	50% {
		background-size: 0 2px,100% 2px,0 2px
	}

	to {
		background-size: 100% 2px,0 2px,0 2px
	}
}

@keyframes eds-animated-text-link-rtl {
	0% {
		background-size: 0 2px,0 2px,100% 2px
	}

	50% {
		background-size: 0 2px,100% 2px,0 2px
	}

	to {
		background-size: 100% 2px,0 2px,0 2px
	}
}
/* End Apps Table */

/* Apps Table 2 */
table.appsTable2 {
	width: 100%;
	text-align: center;
}

table.appsTable2 tbody {}

table.appsTable2 tbody tr {}

table.appsTable2 tbody tr:nth-child(odd) {
	background: #F7FAFD;
}

table.appsTable2 tbody tr:nth-child(even) {
	background: rgba(223, 233, 243, 0.10);
}

table.appsTable2 tbody tr td {
	padding: 20px;
	border: 1px solid rgb(0 92 179 / 20%);
	width: 33.333333%;
}

table.appsTable2 tbody tr:first-child td {
	border-top: 0;
}

table.appsTable2 tbody tr:last-child td {
	border-bottom: 0;
}

table.appsTable2 tbody tr td:first-child {
	border-left: 0;
}

table.appsTable2 tbody tr td:last-child {
	border-right: 0;
}

table.appsTable2 tbody tr td .iconAtext2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
table.appsTable2 tbody tr td .iconAtext2 a.url{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

table.appsTable2 tbody tr td .iconAtext2 .icon {
	width: 55px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
table.appsTable2 tbody tr td .iconAtext2 .icon svg.fireTV path{
	fill: orange;
}
table.appsTable2 tbody tr td .iconAtext2  .text {
	color: #64697C;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	display: flex;
	position: relative;
	background-image: linear-gradient(#32cd32,#32cd32), 
		linear-gradient(transparent,transparent), 
		linear-gradient(#32cd32,#32cd32);
	background-position: 100% 100%,0 100%,0 100%;
	background-repeat: no-repeat;
	background-size: 100% 2px,0 2px,0 2px;
	border: none;
	color: #64697C;
	padding-bottom: 5px;
	text-decoration: none;
}
table.appsTable2 tbody tr td .iconAtext2 a.url:hover .text{
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-name: eds-animated-text-link;
	animation-name: eds-animated-text-link;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	background-image: linear-gradient(#4169e1,#4169e1), 
		linear-gradient(transparent,transparent), 
		linear-gradient(#4169e1,#4169e1);
	color: #000000;
}
/* End Apps Table 2 */

/* Apps Table 3 */
.appsTable3Box {
	background: #deeaf6;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03);
}
table.appsTable3 {
	width: 100%;
	text-align: center;
	border-radius: 10px 10px 10px 10px;
	overflow: hidden;
	border-collapse: collapse;
	border: 1px red;
}

table.appsTable3 tbody {
}

table.appsTable3 tbody tr {
	/* box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03); */
}

table.appsTable3 tbody tr:nth-child(odd) {
	background: #FFF;
}

table.appsTable3 tbody tr:nth-child(even) {
	background: #F7FAFD;
}

table.appsTable3 tbody tr td {
	border: 1px solid #DEEAF6;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03);
	padding: 0;
	width: 25%;
}

table.appsTable3 tbody tr:first-child td:first-child {
	/* background: orange; */
	border-radius: 10px 0 0 0;
}
table.appsTable3 tbody tr:last-child td:first-child {
	border-radius: 0px 0 0 10px;
}
table.appsTable3 tbody tr:first-child td:last-child {
	border-radius: 0px 10px 0 0;
}
table.appsTable3 tbody tr:last-child td:last-child {
	border-radius: 0px 0px 10px 0;
}
table.appsTable3 tbody tr td .iconAtext2 {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
table.appsTable3 tbody tr td .iconAtext2 a.url{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
table.appsTable3 tbody tr td .iconAtext2 .icon{
	width: 55px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
table.appsTable3 tbody tr td .iconAtext2 .icon svg{}
table.appsTable3 tbody tr td .iconAtext2 .icon svg.fireTV path{
	fill: red;
}
table.appsTable3 tbody tr td .iconAtext2 .text{
	color: #64697C;
	font-size: 16px;
	font-weight: 500;
	line-height: 18px;
	display: flex;
	position: relative;
	background-image: linear-gradient(#32cd32,#32cd32), 
		linear-gradient(transparent,transparent), 
		linear-gradient(#32cd32,#32cd32);
	background-position: 100% 100%,0 100%,0 100%;
	background-repeat: no-repeat;
	background-size: 100% 2px,0 2px,0 2px;
	border: none;
	color: #64697C;
	padding-bottom: 5px;
	text-decoration: none;
}
table.appsTable3 tbody tr td .iconAtext2 a.url:hover .text{
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-name: eds-animated-text-link;
	animation-name: eds-animated-text-link;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	background-image: linear-gradient(#4169e1,#4169e1), 
		linear-gradient(transparent,transparent), 
		linear-gradient(#4169e1,#4169e1);
	color: #000000;
}
/* Apps Table 3 */

/* ZikZak area */
.zikzak-row {
	margin: 30px 0;
	display: flex;
	flex-direction: column;
}

.zikzak-col {
	display: flex;
	justify-content: center;
	align-items: center;
	/* border-bottom: 1px solid #D1DAE2; */
	position: relative;
	/* background: orange; */
	padding: 10px 0;
}
.zikzak-col::before {
	content: "";
	width: 100%;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	background: linear-gradient(to right, rgb(255 255 255 / 0%) 0%,rgb(0 0 0 / 15%) 50%,rgb(255 255 255 / 0%) 100%);
	height: 1px;
	margin: auto;
}

.zikzak-col:last-child::before {
	content: none;
}
.zikzak-col:last-child {
	border-bottom: none;
}

.zikzak-col .image {
	width: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
}

.zikzak-col .image img {
	width: auto;
	height: auto;
	max-width: 225px;
	max-height: 225px;
}

.zikzak-col .caption {
	width: 70%;
	padding: 0 15px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.zikzak-col .caption h3 {
	color: #231F20;
	font-size: 24px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 15px;
	margin-top: -10px;
}

.zikzak-col .caption h3 a {
	color: #231F20;
	text-decoration: none;
}

.zikzak-col .caption p {
	color: #64697C;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 30px;
}

.zikzak-col .caption a.url {
	border-radius: 7px;
	background: #231F20;
	display: inline-flex;
	padding: 10px 15px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #FFF;
	font-family: Poppins;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.zikzak-col:nth-child(even) .image {
	order: 2;
}
/* End ZikZak area */

/* Author single page */
.author-area-in-single {
	border-top: 1px solid #D1DAE2;
	padding-top: 40px;
	border-bottom: 1px solid #D1DAE2;
	padding-bottom: 10px;
	margin-bottom: 40px;
}
.author-area-in-single strong.about-author-heading{
	font-size: 24px;
}
.author-imgConts-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 30px 0;
}

.author-imgConts-box .shortname {
	margin-right: 15px;
}

.author-imgConts-box .shortname .SN {
	width: 80px;
	flex: 0 0 80px;
	height: 80px;
	background: #f7d42c;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 34px;
	font-weight: 500;
	line-height: 34px;
	color: #ffffff;
}
.author-imgConts-box .caps {}

.author-imgConts-box .caps a.name {
	color: #231F20;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	position: relative;
	text-decoration: none;
	display: flex;
	width: fit-content;
	padding-bottom: 5px;
}

.author-imgConts-box .caps p {
	color: #64697C;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	margin: 0;
}
.link__graphic--scribble {
	top: 100%;
}
.author-imgConts-box .caps a.name .link__graphic {
	position: absolute;
	top: auto;
	right: 0;
	pointer-events: none;
	fill: none;
	stroke: #4169e1;
	stroke-width: 1px;
	bottom: -3px;
	width: fit-content;
}
.link--carme::before {
	display: none;
}

.link__graphic--scribble {
	top: 100%;
}

.link__graphic--scribble path {
	transition: stroke-dashoffset 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.link:hover .link__graphic--scribble path {
	transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
	transition-duration: 0.3s;
}
/*  */

/* Related in Single Page */
.related-and-moreform-area {}

.related-and-moreform-area ul.nav-tabs {
	width: fit-content;
	margin-bottom: 30px;
}

.related-and-moreform-area ul.nav-tabs li.nav-item {
	margin: 0 10px;
}

.related-and-moreform-area ul.nav-tabs li.nav-item:first-child {
	margin-left: 0;
}

.related-and-moreform-area ul.nav-tabs li.nav-item:last-child {
	margin-right: 0;
}

.related-and-moreform-area ul.nav-tabs li.nav-item button.nav-link {
	padding: 0 0 10px;
	border-radius: 0;
	color: #231F20;
	font-size: 16px;
	font-weight: 600;
	line-height: 11px;
	opacity: 0.4;
	border: none;
	margin: 0;
	transition: all 0.3s ease;
	position: relative;
}

.related-and-moreform-area ul.nav-tabs li.nav-item button.nav-link.active {
	opacity: 1;
}

.related-and-moreform-area ul.nav-tabs li.nav-item button.nav-link::before {
	content: "";
	left: 0;
	position: absolute;
	height: 3px;
	width: 0;
	background: #3d00ed;
	bottom: -2px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.related-and-moreform-area ul.nav-tabs li.nav-item button.nav-link.active::before, 
.related-and-moreform-area ul.nav-tabs li.nav-item button.nav-link:hover::before {
	width: 100%;
}
/* End Related in Single Page */

/* Caption Image */
figure {
	width: fit-content;
	display: flex;
	flex-direction: column;
	margin: 30px auto;
}

figure img.wp-caption {
	margin: 0 0 10px;
	border-radius: 15px;
	overflow: hidden;
	width: 850px;
	height: auto;
}

figure figcaption {
	color: #80869B;
	font-size: 14px;
	font-weight: 400;
	display: inline-flex;
	line-height: 16px;
	margin-left: 15px;
}
/* End Caption Image */
/* TOC */
.postSide-Bar {
	position: relative;
	height: 100%;
}

.TOC {
	border-radius: 5px 5px 5px 5px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: linear-gradient(0deg, #FFF 36.67%, #FCFCFC 100%);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03);
	overflow: hidden;
	position: sticky;
	top: 20vh;
	/*     border-color: #89CFF0; */
	border-color: rgb(193 193 193 / 38%);
}

button.toc-list-oac {
	padding: 15px 15px;
	display: flex;
	width: 100%;
	color: #222E3A;
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	background: #fff;
	border: none;
	justify-content: space-between;
}

button.toc-list-oac::before {
	content: "";
	position: absolute;
}

button.toc-list-oac::after {
	content: "";
	position: absolute;
}
button.toc-list-oac .close-icon{
	width: 30px;
	flex: 0 0 30px;
	height: 30px;
	background: #ffffff;
	border-radius: 50%;
	border: 2px solid rgb(178 172 136 / 55%);
	border: 2px solid #d5d1be;
	position: relative;
}
button.toc-list-oac .close-icon::before{
	content:"";
	width: 15px;
	height: 2px;
	background: rgb(178 172 136 / 55%);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 5px;
	transition: all 0.3s ease;
}
button.toc-list-oac .close-icon::after{
	content:"";
	width: 2px;
	height: 15px;
	background: rgb(178 172 136 / 55%);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 5px;
	transition: all 0.3s ease;
	opacity: 1;
}
button.toc-list-oac.active .close-icon::after{
	opacity: 0;
}
button.toc-list-oac.close .close-icon::after {
	opacity: 1;
}
ul.TOC-List {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	transition: all 0.3s ease-in-out;
	line-height: normal;
	list-style: none;
	border-top: 1px solid #e3e3e3;
	height: 100% !important;
	overflow-y: scroll;
}
ul.TOC-List::-webkit-scrollbar-track
{
	-webkit-box-shadow: none;
	background-color: #F3FAF6;
}

ul.TOC-List::-webkit-scrollbar
{
	width: 6px;
	background-color: #F3FAF6;
}

ul.TOC-List::-webkit-scrollbar-thumb
{
	background-color: rgb(61 0 237 / 53%);
}
ul.TOC-List li.item {
	border-bottom: 1px solid #e3e3e3;
}

ul.TOC-List li.item a {
	color: #64697C;
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	padding: 10px 15px;
	display: flex;
}
ul.TOC-List li.item a.active{
	background: #3c01e9;
	color: #fff;
}
ul.TOC-List ul.child {
	line-height: normal;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.TOC-List.parent.hide {
	opacity: 0;
	visibility: hidden;
	height: 0 !important;
	border-color: transparent;
}

ul.TOC-List.show {
	opacity: 1;
	visibility: visible;
	height: 430px !important;
	border-color: #e3e3e3;
}

ul.TOC-List ul.child li.item {
	border: 1px solid #e3e3e3;
	border-width: 1px 0 0 0;
}

ul.TOC-List ul.child li.item a {
	padding-left: 30px;
}
.pop-cta {
	display: flex;
	flex-direction: column;
	position: fixed;
	background: transparent;
	width: 225px;
	z-index: 99;
	justify-content: center;
	align-items: center;
	bottom: -100%;
	left: 15px;
	transition: all 0.3s ease;
}
.pop-cta.active{
	bottom: 15px;
}
.pop-cta .inpopcta {
	width: 225px;
	height: 120px;
	background: #00264A;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	position: relative;
	border: 2px solid #1773CA;
	filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.03));
}

.pop-cta .inpopcta::before {
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	width: 215px;
	height: 110px;
	margin: auto;
	border-radius: 8px;
	z-index: 0;
	border: 1.5px dashed #7f8393;
}

.pop-cta button.pop-close {
	position: absolute;
	right: -13.5px;
	top: -13.5px;
	width: 27px;
	height: 27px;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	border-radius: 50%;
	border: none;
	box-shadow: 3px -2px 10px 0px rgba(0,0,0,0.07);
}

.pop-cta button.pop-close span.icon {
	width: 14px;
	height: 14px;
	position: relative;
}

.pop-cta button.pop-close span.icon::before {
	content: "";
	position: absolute;
	width: 14px;
	height: 2px;
	background: #7f8393;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(-45deg);
	border-radius: 5px;
}

.pop-cta button.pop-close span.icon::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 2px;
	background: #7f8393;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
	border-radius: 5px;
}

.pop-cta .inpopcta strong.heading {
	position: relative;
	color: #fff;
	font-family: Poppins;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 23px;
	margin-bottom: 8px;
}

.pop-cta .inpopcta strong.subheading {
	font-family: Poppins;
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	line-height: 15px;
	color: #fff;
	position: relative;
	margin: 0 0 8px;
}

.pop-cta a.pop-cta-url {
	width: 190px;
	height: 35px;
	color: #FFF;
	font-family: Poppins;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 15px;
	text-decoration: none;
	border-radius: 0px 0px 10px 10px;
	background: #1773CA;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -2px;
}
.pop-cta .inpopcta .cta-robbin {
	position: relative;
	background: transparent;
	width: 211px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: -43px;
}

.pop-cta .inpopcta .cta-robbin::before {
	content: "";
	width: 0;
	top: 0;
	position: absolute;
	right: 0;
	border-left: 15px solid #00264a;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	left: 0;
	height: 30px;
	z-index: 2;
}

.pop-cta .inpopcta .cta-robbin::after {
	content: "";
	background: transparent;
	position: absolute;
	top: -12px;
	right: 0;
	border-bottom: 12px solid #08722E;
	border-right: 16px solid transparent;
}

.pop-cta .inpopcta .cta-robbin .in-cta-robbin {
	clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
	background: #00b341;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pop-cta .inpopcta .cta-robbin .in-cta-robbin::before {
	content: "";
}

.pop-cta .inpopcta .cta-robbin .in-cta-robbin::after {
	content: "";
}

.pop-cta .inpopcta .cta-robbin .in-cta-robbin strong {
	color: #FFF;
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 13px;
	display: inline-flex;
}
.loadMore-area {
	text-align: center;
	margin-top: 30px;
}

button.loadMore {
	background: #00B341;
	height: 40px;
	display: inline-flex;
	border-radius: 5px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 10px 15px;
	color: #ffffff;
	font-size: 16px;
	line-height: 15px;
	transition: all 0.3s ease-in-out;
	border: none;
	font-weight: 600;
}

button.loadMore:hover {
	background: #005cb3;
}


#back-to-top {
	display: inline-block;
	background-color: #0000FF;
	width: 45px;
	height: 45px;
	text-align: center;
	border-radius: 50%;
	position: fixed;
	bottom: 20px;
	right: 20px;
	transition: background-color .3s, opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: auto;
	color: #fff;
	border: none;
	outline: none;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}
#back-to-top::after {
	content: "\f077";
	display: none;
}
#back-to-top:hover {
	cursor: pointer;
	background-color: #f7d42c;
}
#back-to-top:active {
	background-color: #555;
}
#back-to-top.show {
	opacity: 1;
	visibility: visible;
	z-index: 999999;
}

button.rMenuBtn {
	border: none;
	border-radius: 0;
	margin-left: 10px;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 0;
	height: fit-content;
	width: unset;
	background: transparent;
}

button.rMenuBtn span.RIB-ico {
	height: 3px;
	width: 24px;
	background: #2a2b32;
	margin: 2px 0;
}

button.rMenuBtn span.RIB-ico.one {
	margin-top: 0;
}

button.rMenuBtn span.RIB-ico.three {
	margin-bottom: 0;
}

button.close-rMenu {
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	padding: 0;
	outline: none;
	position: relative;
	display: none;
	width: 20px;
	height: 20px;
	justify-content: center;
	align-items: center;
}

button.close-rMenu span.i {
	width: 3.5px;
	height: 24px;
	background: #ffffff;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

button.close-rMenu span.i.one {
	transform: rotate(-45deg);
}

button.close-rMenu span.i.two {
	transform: rotate(45deg);
}
.topBar .topBar-menu a.get-started {
	display: flex;
	margin-top: auto;
	touch-action: manipulation;
	transition: color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	width: 100%;
	border: none;
	border-radius: 9999px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	padding: 12px 28px;
	text-align: center;
	text-decoration: none;
	height: unset;
	display: none;
}
.LB-area a.get-started {
	margin-left: 10px;
}
/* secondary nav bar */
.secondary-nav-bar{
	display: none;
}
.secondary-nav-bar .in-secondary-nav-bar {
	border: 1px solid #e8e8e9;
	border-width: 1px 0;
	padding: 12px 0;
	background: #f3f7fc;
}

.secondary-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: auto;
	white-space: nowrap;
	font-size: 0;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.secondary-nav::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	display: none;
}

.secondary-nav::-webkit-scrollbar
{
	width: 0px;
	background-color: #F5F5F5;
	display: none;
}

.secondary-nav::-webkit-scrollbar-thumb
{
	background-color: #000000;
}
button.second-nav-btn {
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	background: transparent;
	outline: none;
}

button.second-nav-btn .icon {
	margin-right: 7px;
	height: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	fill: #383c43;
}

button.second-nav-btn small {
	font-size: 14px;
	letter-spacing: inherit;
	line-height: 16px;
	font-weight: 500;
}

.secondary-nav button.searchClick {
	width: fit-content;
	height: fit-content;
	border-radius: 0;
	padding: 0;
	position: relative;
	z-index: 1;
	cursor: pointer;
}
ul.oyster-cats {
	display: flex;
	flex-direction: unset;
	list-style: none;
	margin: 0;
	padding: 0;
	/* overflow-x: scroll; */
	width: 100%;
}

ul.oyster-cats li {
	white-space: pre;
	margin: 0 10px;
}

ul.oyster-cats li a {}

ul.oyster-cats li a {
	list-style: none;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	/* 	letter-spacing: 1.6px; */
	color: #667782;
}

section.category-sect {
	background: rgb(253 210 48 / 15%);
	padding: 50px 0;
}
section.inner-banner .in-banner p {
	margin-top: 15px;
	text-align: left;
}
.postContents ul.green,
.postContents ol.green{

}
.postContents ul.green li,
.postContents ol.green li{
	/*     margin-top: 0 !important; */
	padding-top: 0;
	padding-bottom: 0;
}

/* tabs style */
ul.oyster-nav-tabs {
	background: transparent;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: unset;
	width: 845px;
	overflow-x: scroll;
	border: none;
}

ul.oyster-nav-tabs li.nav-item {
	padding: 0 !important;
	margin: 0 !important;
	margin-left: -43px !important;
	border: none !important;
}

ul.oyster-nav-tabs li.nav-item::before {
	content: none;
}

ul.oyster-nav-tabs li.nav-item button.nav-link {
	background-image: url(/wp-content/themes/oysterblog/assets/images/tab-normal-2.webp);
	border: none;
	background-position: center;
	height: 45px;
	min-width: fit-content;
	background-size: 100% 100%;
	margin-bottom: 0 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 40px;
	color: #64697C;
	font-size: 16px;
	font-weight: 600;
	background-color: transparent;
}
ul.oyster-nav-tabs li.nav-item:first-child button.nav-link{
	background-image: url(/wp-content/themes/oysterblog/assets/images/tab-normal-1.webp);
	background-color: transparent;
	min-width: fit-content;
	align-items: center;
	justify-content: flex-start;
	padding: 0 20px;
	background-size: 100% 100%;
	min-width: 155px !important;
}
ul.oyster-nav-tabs li.nav-item:first-child {
	margin-left: 0 !important;
	margin-right: -3px !important;
	min-width: 140px;
}
ul.oyster-nav-tabs li.nav-item:first-child button.nav-link.active {
	background-image: url(/wp-content/themes/oysterblog/assets/images/tab-active-1.webp);
	padding-right: 50px;
}
ul.oyster-nav-tabs li.nav-item button.nav-link.active {
	background-image: url(/wp-content/themes/oysterblog/assets/images/tab-active-2.webp);
	color: #ffffff;
}
ul.oyster-nav-tabs::-webkit-scrollbar-track
{
	-webkit-box-shadow: unset;
	background-color: rgba(0, 0, 0, 0.10);

}

ul.oyster-nav-tabs::-webkit-scrollbar
{
	height: 0px;
	background-color: rgba(0, 0, 0, 0.10);
	/*     display: none; */
}

ul.oyster-nav-tabs::-webkit-scrollbar-thumb
{
	background-color: rgb(76 175 80 / 30%);
}
/* table custom by ul li */
.DLSS-List {
	background: #f2f7fb;
	width: 740px;
	border-radius: 10px 10px 0 0;
}

.DLSS-List ul.heads {
	display: flex;
	border: none;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%;
	background: #4169e1;
	border-radius: 10px 10px 0 0 !important;
	overflow: hidden;
}

.DLSS-List ul.heads li {
	border: none;
	height: 60px;
	padding: 20px;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	/* color: #000000; */
}

.DLSS-List ul.heads li::before {
	content: none;
}

.DLSS-List ul.heads li.dev {
	width: 20%;
	text-align: center;
	display: block;
}

.DLSS-List ul.heads li.lp {
	width: 35%;
}

.DLSS-List ul.heads li.sg {
	width: 45%;
}

.DLSS-List ul.heads li.sup {
	width: 20%;
	text-align: center;
	display: flex;
	justify-content: center;
}
.DLSS-List ul.ulbody {
	margin: 0;
	padding: 0;
	line-height: normal;
	list-style: none;
	display: flex;
	width: 100%;
	flex-direction: column;
	position: relative;
}

.DLSS-List ul.ulbody li.item {
	width: 100%;
	max-width: 100%;
	border: none;
	position: relative;
	line-height: normal;
	margin: 0;
	display: flex;
	align-items: center;
	height: 60px;
	margin-bottom: 0.6px;
	background: #f2f7fb;
	border-bottom: 1px solid rgb(185 204 219 / 32%);
	background: rgb(239 251 244 / 50%);
}
.DLSS-List ul.ulbody li.item:nth-child(odd){}
.DLSS-List ul.ulbody li.item:nth-child(even){
	background: #ffffff;
}
.DLSS-List ul.ulbody li.item img {
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	border-radius: 0;
}

.DLSS-List ul.ulbody li.item::after {
	content: "";
	width: 90%;
	height: 1px;
	min-height: 1px !important;
	max-height: 1px !important;
	background: transparent;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.DLSS-List ul.ulbody li.item::before {
	content: none;
}

.DLSS-List ul.ulbody li.item .dIcon {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 20px;
}

.DLSS-List ul.ulbody li.item .text-a-link {
	width: 35%;
	padding: 0px 20px;
}

.DLSS-List ul.ulbody li.item .text-a-link2 {
	width: 45%;
	padding: 0px 20px;
}

.DLSS-List ul.ulbody li.item .status {
	width: 20%;
	padding: 0px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.DLSS-List ul.ulbody li.item:last-child::after {
	content: none;
}

.DLSS-List ul.ulbody li.item .text-a-link a.url, .DLSS-List ul.ulbody li.item .text-a-link2 a.url {
	text-decoration: none;
	color: #64697C;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	display: flex;
	-webkit-transition: background 0.3s ease-in 0.2s;
	width: fit-content;
	padding: 5px 0;
}
.DLSS-List ul.ulbody li.item .text-a-link a.url::before, .DLSS-List ul.ulbody li.item .text-a-link2 a.url::before,
.DLSS-List ul.ulbody li.item .text-a-link a.url::after, .DLSS-List ul.ulbody li.item .text-a-link2 a.url::after{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	height: 1.6px;
	width: 100%;
	background: #4169e1;
	-webkit-transition: all 0.3s ease-out;
}

.DLSS-List ul.ulbody li.item .text-a-link a.url::before, .DLSS-List ul.ulbody li.item .text-a-link2 a.url::before {
	opacity: 0;
	bottom: 50%;
}

.DLSS-List ul.ulbody li.item .text-a-link a.url:hover, .DLSS-List ul.ulbody li.item .text-a-link2 a.url:hover {
	background: #000000;
	-webkit-transition: background 0.3s ease-in 0.2s;
	background: #ffffff;
	color: #000000;
}

.DLSS-List ul.ulbody li.item .text-a-link a.url:hover::before, .DLSS-List ul.ulbody li.item .text-a-link2 a.url:hover::before {
	bottom: 100%;
	opacity: 1;
}

.DLSS-List ul.ulbody::before {
	/* content: ""; */
	/* width: 95%; */
	left: 0;
	right: 0;
	position: absolute;
	background: rgb(185 204 219 / 52%);
	top: 0;
	bottom: 0;
	margin: auto;
}

.DLSS-List ul.ulbody li.item:last-child {
	margin-bottom: 0;
}
/* iframe {
width: 100%;
height: 450px;
border-radius: 16px;
margin: 20px 0;
} */

.video {
	width: 100%;
	height: 450px;
	overflow: hidden;
	margin: 25px 0;
	border-radius: 20px;
	position: relative;
}

.video::before {
	content: "";
	background: rgb(0 0 0 / 70%);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.video img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	margin: 0 !important;
}

.video button.play {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: fit-content;
	height: fit-content;
	background-color: transparent;
	border: none;
}

/* step new style */
ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card {border: none;}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group {
	padding: 0;
	margin: 0;
	text-align: center;
}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 !important;
	padding: 15px 10px;
	border: none;
}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item::before {
	content: "";
	width: 100%;
	position: absolute;
	bottom: -3px;
	top: auto;
	height: 0.8px;
	background: linear-gradient(to right,  rgb(255 255 255 / 0%) 0%,rgb(0 0 0 / 15%) 50%,rgb(255 255 255 / 0%) 100%);
	z-index: 99;
}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item strong.heading {
	margin: 0;
}
ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item strong.heading a {
	text-decoration: none;
	position: relative;
	color: #4169e1;
}
ul.vertical-steps-list li.vs-item .in-vs-item:hover .vsCaps .card ul.list-group li.list-group-item strong.heading a{
	color: #64697C;
}
ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item strong.heading a span.text {
}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item strong.heading a .line-graphic {}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item strong.heading a .line-graphic::before, 
ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item strong.heading a .line-graphic::after {
	content: " ";
	display: table;
	grid-column-start: 1;
	grid-row-start: 1;
	grid-column-end: 2;
	grid-row-end: 2;
}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item strong.heading a .line-graphic svg.link__graphic {
	position: absolute;
	pointer-events: none;
	fill: none;
	stroke: #0000ff;
	stroke-width: 1px;
	width: fit-content;
}
.curved-underline::before {
	content: none;
}
.link__graphic--arc {
	top: 73%;
	left: -10px;
}
.link__graphic--arc path {
	transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.link:hover .link__graphic--arc path {
	transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
	transition-duration: 0.3s;
}

.link__graphic--stroke path {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}

ul.vertical-steps-list li.vs-item .in-vs-item:hover .link .link__graphic--stroke path,
ul.horizontal-steps-list li.hzls-item .in-hzls-item:hover .link .link__graphic--stroke path {
	stroke-dashoffset: 0;
}
ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item p {}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item:last-child::before {
	content: none;
}

ul.vertical-steps-list li.vs-item .in-vs-item .vsCaps .card ul.list-group li.list-group-item p {
	line-height: normal;
	line-height: 20px;
}
.single-meta-list.mobile-device{
	display: none !important;
}
img.uncheck-img {
	mix-blend-mode: luminosity;
	opacity: .5;
}

/* Table */

table.table::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

table.table::-webkit-scrollbar
{
	height: 6px;
	background-color: #F5F5F5;
}

table.table::-webkit-scrollbar-thumb
{
	background-color: #000000;
}
table.table {}

table.table thead {
	border: none !important;
}

table.table thead tr {
	background: transparent;
	border: none !important;
}

table.table thead tr th {
	background: #3d00ea;
	padding: 15px 15px;
	border: none !important;
	color: #ffffff;
	font-weight: 500;
}

table.table thead tr th:first-child {
	border-radius: 5px 0 0 0;
}

table.table thead tr th:last-child {
	border-radius: 0px 5px 0 0;
}

table.table tbody {
	border-top: 0 !important;
}

table.table tbody tr {
	border-bottom: 1px solid #dfeaf0;
}

table.table tbody tr:nth-child(odd) {
	background: rgb(61 0 237 / 10%);
}

table.table tbody tr:nth-child(even) {
	background: #ffffff;
}

table.table tbody tr td {
	color: #64697C;
	font-size: 15px;
	padding: 15px;
	vertical-align: middle;
	border-right: 1px solid #dfeaf0;
}

table.table tbody tr td:last-child {border-right: none;}

table.table tbody tr td a {
	text-decoration: none;
	color: #64697C;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	display: inline-flex;
	-webkit-transition: background 0.3s ease-in 0.2s;
	width: fit-content;
	padding: 5px 0;
	position: relative;
}
table.table tbody tr td a::after, table.table tbody tr td a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	height: 1.6px;
	width: 100%;
	background: #4169e1;
	-webkit-transition: all 0.3s ease-out;
	right: 0;
}

table.table tbody tr td a::before {
	opacity: 0;
	bottom: 50%;
}

table.table tbody tr td a:hover {
	-webkit-transition: background 0.3s ease-in 0.2s;
	background: #ffffff;
	color: #000000;
	position: relative;
}

table.table tbody tr td a:hover::before {
	bottom: 100%;
	opacity: 1;
}
/* cta hover button */
.wrapper-cta {
	filter: url('#goo');
}

.button-cta {
	display: inline-block;
	text-align: center;
	background: blue;
	color: #ffffff !important;
	font-weight: 500;
	padding: 20px 20px 18px;
	line-height: 1;
	border-radius: 5px;
	position: relative;
	min-width: 8.23em;
	text-decoration: none;
	font-size: 1.15rem;
	transition: all 0.3s ease;
}

.button-cta::before,
.button-cta::after {
	width: 4.4em;
	height: 2.95em;
	position: absolute;
	content: "";
	display: inline-block;
	background: blue;
	border-radius: 50%;
	transition: transform 1s ease;
	transform: scale(0);
	z-index: -1;
	transition: all 0.3s ease;
}

.button-cta::before {
	top: -25%;
	left: 20%;
}

.button-cta::after {
	bottom: -25%;
	right: 20%;
}

.button-cta:hover::before,
.button-cta:hover::after {
	transform: none;
}
.button-cta:hover {
	background: limegreen;
}

.button-cta:hover::before, .button-cta:hover::after {background: limegreen;}


/* stylish cta button */

.get-started-btn {
	font-size: 1em;
	line-height: 1em;
	letter-spacing: 0.04em;
	display: inline-block;
}
.get-started-btn--svg {
	position: relative;
	height: 42px;
	width: 160px;
	overflow: hidden;
	border-radius: 21px;
}
.get-started-btn--svg:hover .get-started-btn--svg__circle circle {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.get-started-btn--svg:hover .get-started-btn--svg__label {
	color: #3d00ed;
	background: transparent;
}
.get-started-btn--svg:hover .get-started-btn--svg__border--left path, .get-started-btn--svg:hover .get-started-btn--svg__border--right path {
	stroke-dasharray: 61.8204345703 61.8204345703;
	stroke-dashoffset: 0;
	-webkit-transition-delay: 0.25s;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-property: stroke-dashoffset;
	-moz-transition-delay: 0.25s;
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-property: stroke-dashoffset;
	-ms-transition-delay: 0.25s;
	-ms-transition-duration: 0.5s;
	-ms-transition-timing-function: ease-in-out;
	-ms-transition-property: stroke-dashoffset;
	transition-delay: 0.25s;
	transition-duration: 0.5s;
	transition-timing-function: ease-in-out;
	transition-property: stroke-dashoffset;
}
.get-started-btn--svg__label {
	-webkit-font-smoothing: antialiased;
	font-weight: 500;
	text-align: center;
	color: #ffffff;
	z-index: 3;
	width: 100%;
	-webkit-transition: color 0.5s ease-in-out;
	-moz-transition: color 0.5s ease-in-out;
	-ms-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
	background: #3d00ed;
	position: relative !important;
	height: 42px;
	width: 100%;
	z-index: 9999 !important;
	opacity: 1;
}
.get-started-btn--svg__circle circle {
	-webkit-transition: transform 0.5s ease-in-out;
	-webkit-transform: scale(1.1);
	-webkit-transform-origin: 50% 50%;
	-moz-transition: transform 0.5s ease-in-out;
	-moz-transform: scale(1.1);
	-moz-transform-origin: 50% 50%;
	-ms-transition: transform 0.5s ease-in-out;
	-ms-transform: scale(1.1);
	-ms-transform-origin: 50% 50%;
	transition: transform 0.5s ease-in-out;
	transform: scale(1.1);
	transform-origin: 50% 50%;
}
.get-started-btn--svg__border--left path, .get-started-btn--svg__border--right path {
	stroke-dasharray: 61.8204345703 61.8204345703;
	-webkit-transition-duration: 0s;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-property: stroke-dashoffset;
	-webkit-transition-delay: 0.5s;
	-moz-transition-duration: 0s;
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-property: stroke-dashoffset;
	-moz-transition-delay: 0.5s;
	-ms-transition-duration: 0s;
	-ms-transition-timing-function: ease-in-out;
	-ms-transition-property: stroke-dashoffset;
	-ms-transition-delay: 0.5s;
	transition-duration: 0s;
	transition-timing-function: ease-in-out;
	transition-property: stroke-dashoffset;
	transition-delay: 0.5s;
}
.get-started-btn--svg__border--left path {
	stroke-dashoffset: -61.8204345703;
}
.get-started-btn--svg__border--right path {
	stroke-dashoffset: 61.8204345703;
}
.get-started-btn--svg svg, .get-started-btn--svg__label {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-webkit-transform-origin: 50% 50%;
	-moz-transform: translate(-50%, -50%);
	-moz-transform-origin: 50% 50%;
	-ms-transform: translate(-50%, -50%);
	-ms-transform-origin: 50% 50%;
	transform: -50%;
	transform-origin: -50%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	z-index: 999;
}
.c-white {
	color: white;
}
.trailer {
	margin-bottom: 40px;
}
.trailer--nano {
	margin-bottom: 10px;
}
a.get-started-btn {
	position: relative;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
a.get-started-btn::after {
	content: '';
	height: 1px;
	bottom: -4px;
	position: absolute;
	left: 5%;
	right: 95%;
	background: #3d00ed;
	transition: right 0.25s ease-in-out;
}
a.get-started-btn:hover::after {
	right: 5%;
}
.get-started-btn svg.get-started-btn--svg__border {
	width: 160px;
	height: 44px;
}

.get-started-btn svg.get-started-btn--svg__border g path {
	stroke: #3d00ed;
}

.get-started-btn svg.get-started-btn--svg__circle {
	width: 160px;
}

.get-started-btn svg.get-started-btn--svg__circle circle.js-discover-circle {
	fill: #3d00ed;
}

a.mobile-device{
	display: none !important;
}
section.inner-banner nav.breadcrumb-area {
	margin-bottom: auto;
	display: flex;
	justify-content: start;
	text-align: left;
	/*     padding: 10px 0; */
	background: #ffffff;
	width: 100%;
	margin-bottom: 40px;
}
header.sticky a.get-started-btn {
	width: 140px;
	height: 40px;
}

header.sticky a.get-started-btn span.get-started-btn--svg__label {
	font-size: 14px;
}

header.sticky a.get-started-btn svg.get-started-btn--svg__circle {
	width: 140px;
	height: 140px;
}

header.sticky a.get-started-btn svg.get-started-btn--svg__border {
	width: 100%;
	height: 42px;
}

/* Big CTA button style */

/* stylish cta button */

.big-cta-btn {
	font-size: 1em;
	line-height: 1em;
	letter-spacing: 0.04em;
	display: inline-block;
}
.big-cta-btn--svg {
	position: relative;
	height: 53px;
	width: 250px;
	overflow: hidden;
	border-radius: 27px;
	text-decoration: none;
}
.big-cta-btn--svg:hover .big-cta-btn--svg__circle circle {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.big-cta-btn--svg:hover .big-cta-btn--svg__label {
	color: #ffffff;
	background: transparent;
}
.big-cta-btn--svg:hover .big-cta-btn--svg__border--left path, .big-cta-btn--svg:hover .big-cta-btn--svg__border--right path {
	stroke-dasharray: 61.8204345703 61.8204345703;
	stroke-dashoffset: 0;
	-webkit-transition-delay: 0.25s;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-property: stroke-dashoffset;
	-moz-transition-delay: 0.25s;
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-property: stroke-dashoffset;
	-ms-transition-delay: 0.25s;
	-ms-transition-duration: 0.5s;
	-ms-transition-timing-function: ease-in-out;
	-ms-transition-property: stroke-dashoffset;
	transition-delay: 0.25s;
	transition-duration: 0.5s;
	transition-timing-function: ease-in-out;
	transition-property: stroke-dashoffset;
}
.big-cta-btn--svg__label {
	-webkit-font-smoothing: antialiased;
	font-weight: 500;
	text-align: center;
	color: #ffffff;
	z-index: 3;
	width: 100%;
	-webkit-transition: color 0.5s ease-in-out;
	-moz-transition: color 0.5s ease-in-out;
	-ms-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
	/* background: #ff033e; */
	position: relative !important;
	height: 54px;
	width: 100%;
	z-index: 9999 !important;
	opacity: 1;
}
.big-cta-btn--svg__circle circle {
	-webkit-transition: transform 0.5s ease-in-out;
	-webkit-transform: scale(1.1);
	-webkit-transform-origin: 50% 50%;
	-moz-transition: transform 0.5s ease-in-out;
	-moz-transform: scale(1.1);
	-moz-transform-origin: 50% 50%;
	-ms-transition: transform 0.5s ease-in-out;
	-ms-transform: scale(1.1);
	-ms-transform-origin: 50% 50%;
	transition: transform 0.5s ease-in-out;
	transform: scale(1.1);
	transform-origin: 50% 50%;
}
.big-cta-btn--svg__border--left path, .big-cta-btn--svg__border--right path {
	stroke-dasharray: 61.8204345703 61.8204345703;
	-webkit-transition-duration: 0s;
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-property: stroke-dashoffset;
	-webkit-transition-delay: 0.5s;
	-moz-transition-duration: 0s;
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-property: stroke-dashoffset;
	-moz-transition-delay: 0.5s;
	-ms-transition-duration: 0s;
	-ms-transition-timing-function: ease-in-out;
	-ms-transition-property: stroke-dashoffset;
	-ms-transition-delay: 0.5s;
	transition-duration: 0s;
	transition-timing-function: ease-in-out;
	transition-property: stroke-dashoffset;
	transition-delay: 0.5s;
}
.big-cta-btn--svg__border--left path {
	stroke-dashoffset: -61.8204345703;
}
.big-cta-btn--svg__border--right path {
	stroke-dashoffset: 61.8204345703;
}
.big-cta-btn--svg svg, .big-cta-btn--svg__label {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-webkit-transform-origin: 50% 50%;
	-moz-transform: translate(-50%, -50%);
	-moz-transform-origin: 50% 50%;
	-ms-transform: translate(-50%, -50%);
	-ms-transform-origin: 50% 50%;
	transform: -50%;
	transform-origin: -50%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	z-index: 999;
	width: 100%;
}
.big-cta-btn svg.big-cta-btn--svg__circle circle.js-discover-circle {
	fill: #32cd32;
}
.big-cta-btn--svg__border g path {
	stroke: #32cd32;
}
[id] {
	scroll-margin-top: 120px;
}
section.search-in-banner {
	height: unset;
	min-height: unset;
}
/* No Result by search */
.no-pbta {
	background: #ffffff;
	text-align: center;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	width: fit-content;
	margin: auto;
}

.no-pbta .searchform {
	width: fit-content;
	margin: auto;
}

.no-pbta .searchform div {
	display: flex;
	width: 400px;
	position: relative;
}

.no-pbta .searchform div input#s {
	width: 100%;
	height: 60px;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	padding: 15px 100px 15px 20px;
	filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.03));
	outline: none;
}

.no-pbta .searchform div input#searchsubmit {
	position: absolute;
	right: 8px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 40px;
	font-size: 14px;
	background: #4169e1;
	border: none;
	border-radius: 5px;
	padding: 5px 10px;
	color: #ffffff;
	font-weight: 500;
	transition: all 0.3s ease;
}

.no-pbta .searchform div input#searchsubmit:hover {
	background: #ff033e;
}

/* Pagination style */
.nav-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0 0;
	overflow: hidden;
	padding: 0;
}

.nav-pagination ul.pagination {
	margin: 0;
	display: inline-flex;
	padding: 0 35px;
	border-radius: 35px;
	background-color: #eee;
	overflow: hidden;
}

.nav-pagination ul.pagination li.item {
	display: block;
	padding: 0;
	float: left;
	transition: 400ms ease;
	color: #595959;
	font-size: 16px;
	letter-spacing: 0.1em;
	text-decoration: none;
}

.nav-pagination ul.pagination li.item a {
	padding: 15px 20px;
	background: #eeeeee;
	display: inline-flex;
	text-decoration: none;
	color: #595959;
	transition: all 0.3s ease;
}

.nav-pagination ul.pagination li.item span {
	padding: 15px 20px;
	display: inline-flex;
	transition: all 0.3s ease;
}

.nav-pagination ul.pagination li.item.active span.active {
	background: #3d00ed;
	color: #ffffff;
}

.nav-pagination ul.pagination li.item a:hover, .nav-pagination ul.pagination li.item.active span.active:hover {
	background: #f7d42c;
	color: #ffffff;
}
.nav-pagination ul.pagination li.item.next a.next-url:hover,.nav-pagination ul.pagination li.item.prev a.prev-url:hover {
	background: unset;
	color: #3d00ed;
}
/* Single page subscribe box */
.single_subscribe {
	background: linear-gradient(135deg, rgb(247 212 44) 0%, rgb(61 0 237) 100%);
	position: relative;
	height: 200px;
	margin-top: 40px;
	display: flex;
	align-items: center;
	text-align: center;
}

.single_subscribe::before {}

.single_subscribe::before {
	content: "";
	background-image: url(/wp-content/uploads/2024/02/news-latter-bg.png);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.single_subscribe .row-single-subscribe {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.subsBoxs {
	display: flex;
	flex-direction: column;
	padding: 0 15px 0 0;
}

.subsBoxs strong.subsHD {
	font-size: 24px;
	color: #ffffff;
	font-weight: 600;
}

.subsBoxs p {
	font-size: 16px;
	color: #ffffff;
}

form.subsform {
	text-align: center;
	display: flex;
	justify-content: center;
}

form.subsform .fields {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 520px;
}

form.subsform .fields input[type="email"] {
	width: 100%;
	margin-right: 10px;
	height: 60px;
	border-radius: 5px;
	border: 2px solid rgb(255 255 255 / 40%);
	background: rgb(255 255 255 / 30%);
	padding: 15px 20px;
	color: #000000;
	outline: none;
}

form.subsform .fields button.submit {
	height: 60px;
	border-radius: 5px;
	font-size: 18px;
	background: #231F20;
	color: #ffffff;
	border: none;
	padding: 15px 20px;
	text-transform: capitalize;
	transition: all 0.3s ease;
}

form.subsform .fields button.submit:hover {
	background: #f7d42c;
}

/* .tooltip {
position: relative;
cursor: pointer;
}

.tooltip::before {
content: attr(data-tooltip);
position: absolute;
top: -30px;
left: 50%;
transform: translateX(-50%);
padding: 5px 10px;
background-color: #333;
color: #fff;
border-radius: 5px;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0.3s;
}

.tooltip:hover::before {
opacity: 1;
visibility: visible;
} */

/* Comment style */
section.comments-sec {
	padding: 40px 0;
}
.comments-area {
	width: 830px;
	margin: auto;
}
.comment-respond {
	margin-top: 40px;
}

.comment-respond .comment-reply-title {text-align: center;font-size: 24px;margin-bottom: 15px;}

form.comment-form {
	display: flex;
	flex-direction: column;
}

form.comment-form .row {}
p.comment-notes{
	text-align: center;
	margin-bottom: 40px;
	color: #64697C;
	line-height: normal;
}
.cm-col{
	margin-bottom: 20px;
}
.cm-col label.labs{
	font-size: 16px;
	color: #64697C;
	display: flex;
	margin-bottom: 10px;
}
.cm-col label.labs span.required{
	color: red;
}
.cm-col .form-control{
	height: 60px;
	border: 1px solid #DFE9F3;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
}
.cm-col textarea.form-control{
	height: 165px;
}
p.cookies-text{
	display: flex;
	align-items: center;
}
p.cookies-text input#wp-comment-cookies-consent {
	margin-right: 5px;
}

p.cookies-text label.labs {
	line-height: normal;
	margin: 0;
}

form.comment-form p.form-submit {
	margin-bottom: 0;
	display: flex;
	text-align: right;
	justify-content: flex-end;
}

form.comment-form p.form-submit input#submit {
	background: #f7d42c;
	color: #fff;
	border: none;
	font-size: 16px;
	line-height: normal;
	padding: 15px 30px;
	border-radius: 7px;
	transition: all 0.3s ease;
}

form.comment-form p.form-submit input#submit:hover {
	background: #3d00ed;
}

ol.commentlist {
	padding: 0;
	list-style: none;
}

ol.commentlist li.comment {
	margin-bottom: 15px;
}

ol.commentlist li.comment .comment-body {
	position: relative;
	padding-left: 140px;
	min-height: 180px;
	display: flex;
	flex-direction: column;
}

ol.commentlist li.comment .comment-body .comment-author.vcard {
	position: absolute;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

ol.commentlist li.comment .comment-body .comment-author.vcard img.avatar {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	margin-bottom: 15px;
}

ol.commentlist li.comment .comment-body .comment-author.vcard cite.fn {
	font-size: 16px;
	color: #231F20;
	font-weight: 500;
	line-height: normal;
}

ol.commentlist li.comment .comment-body .comment-author.vcard span.says {
	font-size: 16px;
	font-weight: 500;
	color: #231F20;
	line-height: normal;
}

ol.commentlist li.comment .comment-body .comment-meta.commentmetadata {
	margin-bottom: 15px;
}

ol.commentlist li.comment .comment-body .comment-meta.commentmetadata a {
	font-size: 13px;
	text-decoration: none;
	font-weight: 500;
	color: #231F20;
	line-height: 13px;
}

ol.commentlist li.comment .comment-body p {
	font-size: 14px;
	color: #64697C;
	line-height: 24px;
}

ol.commentlist li.comment .comment-body em.comment-awaiting-moderation {
	font-weight: 500;
	font-size: 12px;
	line-height: normal;
	margin-bottom: 0;
	color: blue;
}
ol.commentlist li.comment ul.children {
	padding: 0 0 0 100px;
	list-style: none;
	margin-top: 30px;
}

ol.commentlist li.comment ul.children .comment-body {
	position: relative;
	padding-bottom: 30px;
}

ol.commentlist li.comment ul.children .comment-body::after {
	content: "";
	height: 0.8px;
	background: #D1DAE2;
	width: 80.4%;
	bottom: 0;
	position: absolute;
	right: 0;
}

ol.commentlist li.comment .comment-body .reply {
	margin-top: auto;
}

ol.commentlist li.comment .comment-body .reply a.comment-reply-link {
	color: #005CB3;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border-bottom: 2px solid #005CB3;
}
.comments-area h3#comments {
	margin-bottom: 40px;
	font-size: 24px;
}

/* new shortcode */
.interest-shortcode {}

.interest-shortcode .in-interest {
	padding: 40px 0;
}

.toccv-area {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
	background-image: url('/wp-content/uploads/2024/03/shap-bg-2.png');
	min-height: 275px;
	position: relative;
	background-color: #031945;
	background-repeat: no-repeat;
	background-size: cover;
}
.toccv-area::before {
	content: "";
}
.toccv-row {
	display: flex;
	align-items: center;
	width: 720px;
	margin: auto;
	position: relative;
}

.toccv-row .toccv-img {
	width: 220.5px;
	height: 220.5px;
	flex: 0 0 220.5px;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background: radial-gradient(ellipse at center, rgba(251,251,251,1) 0%,rgba(207,207,207,1) 100%);
	margin-right: 2.4px;
	border-radius: 7px 0 0 7px;
}

.toccv-row .toccv-img img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.toccv-row .toccv-content {
	width: 100%;
}

.toccv-row .toccv-content ul.list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
}

.toccv-row .toccv-content ul.list li {
	display: flex;
	height: 42.2px;
	margin: 1.2px 0;
	background: #193B7E;
	align-items: center;
	color: #ffffff;
	font-size: 14px;
	overflow: hidden;
}

.toccv-row .toccv-content ul.list li:first-child {
	margin-top: 0;
	border-radius: 0 7px 0 0;
}

.toccv-row .toccv-content ul.list li:last-child {
	margin-bottom: 0;
	border-radius: 0 0 7px 0;
}

.toccv-row .toccv-content ul.list li .name {
	background: #E8D337;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100px;
	flex: 0 0 100px;
	line-height: normal;
	text-transform: uppercase;
	padding: 10px 15px;
	font-weight: 600;
	position: relative;
	color: #000000;
}

.toccv-row .toccv-content ul.list li .name::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: 0;
	width: 0;
	height: 0;
	border-left: 7px solid #e8d337;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	top: 0;
	bottom: 0;
	margin: auto;
}

.toccv-row .toccv-content ul.list li .full-name {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 10px 20px;
}


.player-team-area {
	padding: 40px 0;
}

.pteam-row {
	display:flex;
	flex-wrap:wrap;
}

.pteam-box {
	overflow: hidden;
	padding: 15px;
}

.pteam-box .in-pteam-box {
	border: 1px solid rgb(0 0 0 / 10%);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.05);
}

.pteam-box .in-pteam-box .pteam-img-box {
	position: relative;
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.pteam-box .in-pteam-box .pteam-img-box img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 170px;
	margin: auto;
}

.pteam-box .in-pteam-box .pteam-img-box .pteams-icon {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 10px;
	margin: 0;
}

.pteam-box .in-pteam-box .pteam-img-box .pteams-icon span.i {
	width: 35px;
	height: 35px;
}

.pteam-box .in-pteam-box .pteam-img-box .pteams-icon span.i i {
	width: 35px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* background: rgb(0 92 179 / 15%); */
	border-radius: 50%;
	padding: 4px;
}

.pteam-box .in-pteam-box .pteam-img-box .pteams-icon span.i i img {
	width: 24px;
	height: auto;
}

.pteam-box .in-pteam-box .pteam-caps {
	background: #ffffff;
}

.pteam-box .in-pteam-box .pteam-caps .content {
	padding: 15px;
	text-align: center;
}

.pteam-box .in-pteam-box .pteam-caps .content strong.name {
	font-size: 18px;
	color: #282b32;
	margin-bottom: 10px;
	display: inline-flex;
	line-height: 18px;
}

.pteam-box .in-pteam-box .pteam-caps .content p {
	margin: 0;
	font-size: 14px;
	line-height: normal;
}

.pteam-box .in-pteam-box .pteam-caps .designation {
	text-align: center;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	font-size: 12px;
	border-top: 1px solid rgb(0 0 0 / 10%);
	font-weight: 500;
	background: rgb(0 0 0 / 2%);
}

.toccv-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px 0 0;
	background-image: url(https://cdn-b.oystervpn.com/wp-content/uploads/2024/03/shaps2-scaled.webp);
	position: relative;
	background-color: #031945;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
	overflow: hidden;
	background-position: -24px 0px;
}

.toccv-bar .toccv-bar-row {
	display: flex;
	align-items: center;
	width: 100%;
	height: fit-content;
}

.toccv-bar .toccv-bar-row .toccv-img {
	background: transparent;
	width: 150px;
	flex: 0 0 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	position: relative;
}

.toccv-bar .toccv-bar-row .toccv-img img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.toccv-bar .toccv-bar-row .toccv-content {
	display: inline-flex;
	padding: 0 15px;
}

.toccv-bar .toccv-bar-row .toccv-content ul.list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	color: #fff;
	height: fit-content;
	align-items: center;
}

.toccv-bar .toccv-bar-row .toccv-content ul.list li.item {
	margin-right: 10px;
	display: block;
	flex-direction: column;
	margin-bottom: 0;
	border:none !important;
}
.toccv-bar .toccv-bar-row .toccv-content ul.list li.item::before{
	content:none !important;
}
.toccv-bar .toccv-bar-row .toccv-content ul.list li.item .name {
	background: #E8D337;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	flex: 0 0 100px;
	line-height: normal;
	text-transform: uppercase;
	padding: 10px 15px;
	font-weight: 600;
	position: relative;
	color: #000000;
	height: 40px;
	font-size: 15px;
}

.toccv-bar .toccv-bar-row .toccv-content ul.list li.item .name::before {
	content: "";
	position: absolute;
	right: unset;
	width: 0;
	height: 0;
	border-top: 7px solid #e8d337;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	top: unset;
	bottom: -6px;
	margin: auto;
	left: 15px;
}

.toccv-bar .toccv-bar-row .toccv-content ul.list li.item .full-name {
	height: 40px;
	width: 200px;
	background: #274788;
	display: flex;
	align-items: center;
	padding: 10px 15px;
	font-size: 14px;
	text-transform: uppercase;
}

.toccv-bar .toccv-bar-row .toccv-content ul.list li.item.normal {
	display: block;
	flex-direction: column;
	align-items: flex-start;
	height: unset;
}

.toccv-bar .toccv-bar-row .toccv-content ul.list li.item.normal .name {
	height: fit-content;
	padding: 0;
	color: #fff;
	width: unset;
	display: inline-flex;
	padding: 0;
	line-height: 16px;
	background: transparent;
}

.toccv-bar .toccv-bar-row .toccv-content ul.list li.item.normal .name::before {
	content: none;
}

.toccv-bar .toccv-bar-row .toccv-content ul.list li.item.normal .full-name {
	background: transparent;
	padding: 0;
	height: unset;
	width: 190px;
}

.full-name {}

.toccv-bar .toccv-bar-row table {
	background: transparent;
	width: 100%;
	min-width: 190px;
	border: none;
}

.toccv-bar .toccv-bar-row table thead {}

.toccv-bar .toccv-bar-row table thead tr {}

.toccv-bar .toccv-bar-row table thead tr th {
	height: 40px;
	width: 25%;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	color: #ffffff;
	background: rgb(133 136 159 / 50%);
	border: none;
	font-weight: 600;
}
.toccv-bar .toccv-bar-row table thead tr th button {
	background: transparent;
	padding: 0;
	border-radius: 0;
	line-height: 14px;
	font-size: 14px;
	width: 100%;
	height: 100%;
	outline: none;
	box-shadow: none;
	border: none;
	font-weight: 600;
}
.toccv-bar .toccv-bar-row table tbody {}

.toccv-bar .toccv-bar-row table tbody tr {}

.toccv-bar .toccv-bar-row table tbody tr td {
	text-align: center;
	font-size: 14px;
	line-height: 14px;
	height: 40px;
	color: #ffffff;
	background: rgb(133 136 159 / 70%);
	border: none;
}

.toccv-bar .toccv-bar-row .toccv-img::after {
	content: "";
	height: 60px;
	width: 1px;
	background: rgb(255 255 255 / 20%);
	position: absolute;
	right: 1px;
	top: 0;
	bottom: 0;
	margin: auto;
}
/* IPL Point Table */
.ipl-point-table-area {
	margin-bottom: 50px;
}

table.ipl-point-table {
	width: 100%;
	background: #fff;
	border: 1px solid rgb(222 222 223 / 40%);
	border-collapse: separate;
	border-radius: 0.28571429rem;
	border-spacing: 0;
	box-shadow: none;
}

table.ipl-point-table thead {}

table.ipl-point-table thead tr.rows {}

table.ipl-point-table thead tr.rows th {
	padding: 15px 15px;
	background-color: #4169e1;
	color: rgba(251, 248, 248, 1);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	white-space: pre;
	border-right: 1px solid rgb(222 222 223 / 20%);
	letter-spacing:1px;
}

table.ipl-point-table thead tr.rows th:first-child {
	border-radius: 0.28571429rem 0 0 0;
	text-align: left;
}

table.ipl-point-table thead tr.rows th:last-child {
	border-radius: 0 0.28571429rem 0 0;
	text-align: center;
}

table.ipl-point-table tbody {}

table.ipl-point-table tbody tr.rows {
	background: rgb(239 251 244 / 50%);
}

table.ipl-point-table tbody tr.rows td {
	padding: 10px 15px;
	font-size: 14px;
	display: table-cell;
	border: 1px solid rgb(222 222 223 / 40%);
	border-width: 0 1px 1px 0;
}

table.ipl-point-table tbody tr.rows td.team {
	width: 100%;
}

table.ipl-point-table tbody tr.rows td.team .team-row {
	display: flex;
	align-items: center;
}

table.ipl-point-table tbody tr.rows td.team .team-row .index {
	min-width: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 50px;
}

table.ipl-point-table tbody tr.rows td.team .team-row .index span {
	font-weight:600;
}

table.ipl-point-table tbody tr.rows td.team .team-row .logo {
	width: 60px;
	flex: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 50px;
}

table.ipl-point-table tbody tr.rows td.team .team-row .logo img.logo-img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 60px;
	/* filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.4)); */
}

table.ipl-point-table thead tr.rows th.last {
}

table.ipl-point-table tbody tr.rows td.match {
	min-width: 55px;
	text-align: center;
}

table.ipl-point-table tbody tr.rows td.win {
	min-width: 55px;
	text-align: center;
}

table.ipl-point-table tbody tr.rows td.lost {
	min-width: 55px;
	text-align: center;
}

table.ipl-point-table tbody tr.rows td.nrr {
	min-width: 130px;
	text-align: center;
}

table.ipl-point-table tbody tr.rows td.points {
	text-align: center;
	min-width: 55px;
}

table.ipl-point-table tbody tr.rows td.last {
	min-width: 160px;
}

table.ipl-point-table tbody tr.rows:nth-child(even) {
	background: #ffffff;
}
table.ipl-point-table tbody tr:last-child td:first-child{
	border-radius: 0 0 0 0.28571429rem;
}
table.ipl-point-table tbody tr:last-child td:last-child{
	border-radius: 0 0 0.28571429rem 0;
}
table.ipl-point-table tbody tr.rows td:first-child {
	border-left: none;
}

table.ipl-point-table tbody tr.rows td:last-child {border-right: none;}

table.ipl-point-table tbody tr.rows:last-child td {
	border-bottom: none;
}

table.ipl-point-table tbody tr.rows td.team .team-row .team-name {
	font-weight: 600;
}

table.ipl-point-table thead tr.rows th:last-child {border-right: none;}
table.ipl-point-table tbody tr.rows td.team .team-row .team-name span.full-name {
	display: block;
}

table.ipl-point-table tbody tr.rows td.team .team-row .team-name span.short-name {
	display: none;
}
ul.last5-loop {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	width: fit-content;
}

ul.last5-loop li {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 2px;
	border:none !important;
}
ul.last5-loop li::before{
	content:none !important;
}
ul.last5-loop li svg {
	width: 20px;
}

ul.last5-loop li:first-child {
	margin-left: 0;
}

ul.last5-loop li:last-child {
	margin-right: 0;
}

ul.last5-loop li svg.loss-svg g path {
	fill: red;
}

ul.last5-loop li svg.draw-svg path {
	fill: gray;
}

ul.last5-loop li svg.win-svg g path {fill: #0acd06;}

/* VS Match style */
.vs-matches-area {
	/* background: rgb(249 249 249); */
	/* border: 1px solid rgb(222 222 223 / 40%); */
	/* border-radius: 7px; */
	margin: 40px 0;
	overflow: hidden;
}

.vs-matches-area .vs-matches-row {
	display: flex;
	flex-wrap: wrap;
}

.vs-matches-area .vs-matches-row .vs-matches-col {
	width: 50%;
	position: relative;
	/* border: 1px solid rgb(10 42 91 / 7%); */
	/* background: orange; */
	margin-bottom: 15px;
}

.vs-matches-area .vs-matches-row .vs-matches-col .vs-match-box {
	padding: 0;
	border: 1px solid rgb(0 0 0 / 7%);
	margin: 0 -0.5px;
	border-radius: 10px;
	overflow: hidden;
}
.vs-matches-area .vs-matches-row .vs-matches-col:nth-child(odd) .vs-match-box {
	margin-left: 0;
	border-radius: 10px 0 0 10px;
}

.vs-matches-area .vs-matches-row .vs-matches-col:nth-child(even) .vs-match-box {
	margin-right: 0;
	border-radius: 0px 10px 10px 0;
}
.vs-matches-area .vs-matches-row .vs-matches-col .vs-match-box .match-and-date {
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: normal;
	margin-bottom: 10px;
}

.vs-matches-area .vs-matches-row .vs-matches-col .vs-match-box .match-and-date small.match {
	color: #ffffff;
	font-size: 14px;
	line-height: 14px;
	width: 50%;
	background: #0a2a5b;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	border: 1px solid rgb(255 255 255 / 50%);
	border-width: 0px 1px 1px 0;
	height:45px;
}

.vs-matches-area .vs-matches-row .vs-matches-col .vs-match-box .match-and-date span.date {
	font-size: 14px;
	line-height: 14px;
	color: #ffffff;
	background: #0a2a5b;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	border: 1px solid rgb(255 255 255 / 10%);
	border-width: 0px 0px 1px 0px;
	height:45px;
}

ul.vsm-list-box {
	display: flex;
	background: transparent;
	width: fit-content;
	margin: 30px auto;
	padding: 0;
	list-style: none;
	justify-content: center;
	align-items: center;
	text-align: center;
}

ul.vsm-list-box li {
	margin: 0 10px;
	border:none !important;
}
ul.vsm-list-box li::before{
	content:none !important;
}
ul.vsm-list-box li:first-child {
	margin-left: 0;
}

ul.vsm-list-box li:last-child {
	margin-right: 0;
}

ul.vsm-list-box li.item .vsItem {
	background: rgb(10 42 91);
	border-radius: 5px;
	overflow: hidden;
}

ul.vsm-list-box li.item .vsItem .Img {
	width: 115px;
	height: 115px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 10px;
	border: 1px solid rgb(0 0 0 / 15%);
}

ul.vsm-list-box li.item .vsItem .Img img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

ul.vsm-list-box li.item .vsItem .caps {
	padding: 5px 10px;
	line-height: normal;
	background: #4169e1;
}

ul.vsm-list-box li.item .vsItem .caps strong {
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	color: #ffffff;
}

ul.vsm-list-box li.vs {
	color: #ffffff;
	color: #000000;
	/* margin: 0 40px; */
	width: 100px;
}

ul.vsm-list-box li.vs strong {
	font-weight: 600;
	font-size: 20px;
}

.vs-matches-area .vs-matches-row .vs-matches-col .vs-match-box .start-time {
	text-align: center;
	color: #ffffff;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	padding: 10px;
	background: rgb(0 0 0 / 7%);
}

.SPLCC-Col.full-width {
	width: 100%;
	flex: 0 0 100%;
	padding: 0 15px;
}
.SPRCC-Col.none {
	display: none !important;
}
.homefirst {
	background: #f3faf6;
	padding-top: 2px;
}
.topbar-wrap {
	background-color: #00008b;
	background-color: #f7d42c;
	text-align: center;
	position: relative;
	z-index: 999;
	display: block;
	padding: 10px 15px 10px;
	overflow: inherit;
	transition: opacity 0.5s ease, max-height 0.5s ease;
	opacity: 1;
}
.topbar-wrap.hide{
	opacity: 0;
	max-height: 0;
	transform: unset;
	top: 0 !important;
	padding: 0;
	display:none;
}
.topbar-wrap .topbar-content {}

.topbar-wrap .topbar-content a.thirstylink {
	color: #000000;
	font-size: 18px;
	text-decoration: none;
	font-weight: 300;
}

.topbar-wrap a.topbar-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 25px;
	color: #ffffff;
	font-size: 22px;
	transition: all 0.3s;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 3px 1px 0 0;
}

/* Halloween CTA style */
.spacial-event-cta {
	width: 450px;
	/*     min-height: 150px; */
	background-color: #005cb3;
	margin: 30px auto;
	border-radius: 10px;
	text-align: center;
	overflow: hidden;
	background-size: cover;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
	background-repeat: no-repeat;
	background-position: center 0;
}

.spacial-event-cta .in-spacial-event-cta {
	padding: 20px 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: transparent;
}

.spacial-event-cta .in-spacial-event-cta h3 {
	color: #ffffff;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 10px;
	/* font-size: clamp(0.5rem, 0.3043rem + 3.4783vw, 1.688rem); */
}

.spacial-event-cta .in-spacial-event-cta .content {
	margin-bottom: 10px;
	display: flex;
}

.spacial-event-cta .in-spacial-event-cta .content p {
	margin: 0 0 10px !important;
	font-size: 13px;
	line-height: normal;
	color: #ffffff;
	/*     width: 300px; */
}

.spacial-event-cta .in-spacial-event-cta a.hll-cta {
	background: #00bb39;
	height: 30px;
	display: inline-flex;
	border-radius: 5px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 0 15px;
	line-height: normal;
	color: #ffffff;
	transition: all 0.3s ease;
	min-height: 30px;
	font-size: 13px;
	font-weight: 600;
}