@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap');
@import url('https://fonts.googleapis.com/css2?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');
:root {
	--wsfe-primary-color: #132685;
	--wsfe-secondary-color: #071349;
	--wsfe-white-color: #fff;
	--wsfe-black-color: #000;
	--wsfe-bg-color: linear-gradient(to right, #132685, #071349);
	--wsfe-cherry-bomb-one: 'Cherry Bomb One', cursive;
	--wsfe-poppins: 'Poppins', sans-serif;
	--wsfe-box-shadow: 0 0 10px rgba(0,0,0,0.1);
	--wsfe-border: 2px solid #ddd;
	--wsfe-border-radius-5: 5px;
	--wsfe-border-radius-10: 10px;
	--wsfe-text-transform: capitalize;
}

*{
	box-sizing: border-box;
}



@keyframes animationgradienttitle {
  0% {
      background-position: 0 1600px;
  }
  100% {
      background-position: 1600px 0;
  }
}

#wpcontent {
	padding-left: 0px !important;
}

.notice{
	display: none !important;
}

.wsfe_admin_notices .notice{
	display: inline-block !important;
}

.dashboard_wrap{
	overflow: hidden;
}

.header_wrapper {
    background: var(--wsfe-bg-color);
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    width: 100% !important;
}
.wsfe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    width: 100%;
}
.wsfe-header h1 {
	font-family: var(--wsfe-cherry-bomb-one);
	font-size: 20px;
	line-height: 40px;
	font-weight: 100;
	margin: 0;
	color: #fff;
	letter-spacing: 3px;
}

.wsfe_widget_container{
	max-width: 90%;
	background-color: var(--wsfe-white-color);
	padding: 20px;
	margin: 40px auto 20px auto;
	border-radius: var(--wsfe-border-radius-10);
	box-shadow: var(--wsfe-box-shadow);
}

.wsfe_widgets_heading h2{
	font-family: var(--wsfe-poppins);
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
	margin: 0;
	color: var(--wsfe-secondary-color);
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 10px;
}


.wsfe-activation-article__header {
  position: relative;
}

.wsfe-activation-article__title {
  font-family: var(--wsfe-poppins);
  color: var(--wsfe-white-color);
  background: -webkit-linear-gradient(left,#122583, #10DDC2 , #122583);
  background-size: 1600px 200px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-duration: 3s;
  animation-name: animationgradienttitle;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  margin: 0;
  display: flex;
  align-items: center;
}

.wsfe-activation-article__title__text {
  font-family: var(--wsfe-poppins);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}


.wsfe_widgets_list{
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.wsfe_widget_card{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	margin: 10px;
	border-radius: var(--wsfe-border-radius-10);
	border: var(--wsfe-border);
	width: 23%;
	max-width: 100%;
	background: linear-gradient(to bottom right, #00bfad, #99a3d4);;
}

.wsfe_widget_card h3{
	font-family: var(--wsfe-poppins);
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
	text-transform: var(--wsfe-text-transform);
	margin: 0;
	color: var(--wsfe-white-color);
}

.toggle {
	cursor: pointer;
	display: inline-block;
}
.wsfe_widget_card .toggle-switch {
	display: inline-block;
	background: #ccc;
	border-radius: 16px;
	width: 50px;
    height: 26px;
	position: relative;
	vertical-align: middle;
	transition: background 0.25s;
	&:before,
	&:after {
		content: "";
	}
	&:before {
		display: block;
		background: linear-gradient(to bottom, #fff 0%,#eee 100%);
		border-radius: 50%;
		box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
		width: 18px;
        height: 18px;
		position: absolute;
		top: 4px;
		left: 4px;
		transition: left 0.25s;
	}
	.toggle:hover &:before {
		background: linear-gradient(to bottom, #fff 0%,#fff 100%);
		box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
	}
	.toggle-checkbox:checked + & {
		background: var(--wsfe-primary-color);
		&:before {
			left: 30px;
		}
	}
}
.wsfe_widget_card .toggle-checkbox {
	position: absolute;
	visibility: hidden;
}
.wsfe_widget_card .toggle-label {
	margin-left: 5px;
	position: relative;
	top: 2px;
}

.wsfe_more_widgets_coming_msg h3{
	font-family: var(--wsfe-poppins);
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
	text-transform: var(--wsfe-text-transform);
	margin: 0;
	color: var(--wsfe-secondary-color);
	text-align: center;
}

.wsfe_author_list{
	display: flex;
	gap: 20px;
	padding: 20px 0;
	flex-wrap: wrap;
}

.wsfe_author_card:nth-of-type(1) {
    width: 32% !important;
}
.wsfe_author_card:nth-of-type(2) {
    width: 65% !important;
	display: flex;
	align-items: center;
}

.wsfe_author_card{
	padding: 20px;
	border-radius: var(--wsfe-border-radius-10);
	border: var(--wsfe-border);
	background: linear-gradient(to bottom right, #00bfad, #99a3d4);
}

.wsfe_author_card .wsfe_author_image {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.wsfe_author_card .wsfe_author_image img{
	border-radius: 50%;
}

.wsfe_author_card .wsfe_author_desc h4, .wsfe_author_card .wsfe_author_desc p{
	text-align: center;
	margin: 0;
	font-family: var(--wsfe-poppins);
	text-transform: var(--wsfe-text-transform);
	color: var(--wsfe-white-color);
}

.wsfe_author_card .wsfe_author_desc h4{
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
}

.wsfe_author_card .wsfe_author_desc p{
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
}

.wsfe_author_card .wsfe_social_links{
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px
}
.wsfe_author_card .wsfe_social_links a:focus,
.wsfe_author_card .wsfe_social_links a:active {
  border: none;
  outline: none;
  box-shadow: none;
}

.wsfe_author_description{
	font-family: var(--wsfe-poppins);
	font-size: 20px;
	line-height: 32px;
	font-weight: 200;
	margin: 0;
	color: var(--wsfe-white-color);
}

