@charset "UTF-8";
/*! main.css v1.0.0 */
/*!
 * Mmenu Light
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
:root {
  --mm-ocd-width: 80%;
  --mm-ocd-min-width: 200px;
  --mm-ocd-max-width: 440px;
}

body.mm-ocd-opened {
  overflow-y: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.mm-ocd {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  background: rgba(0, 0, 0, 0);
  -webkit-transition-property: bottom, background-color;
  -o-transition-property: bottom, background-color;
  transition-property: bottom, background-color;
  -webkit-transition-duration: 0s, 0.3s;
  -o-transition-duration: 0s, 0.3s;
  transition-duration: 0s, 0.3s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0.45s, 0.15s;
  -o-transition-delay: 0.45s, 0.15s;
  transition-delay: 0.45s, 0.15s;
}

.mm-ocd--open {
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.mm-ocd__content {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--mm-ocd-width);
  min-width: var(--mm-ocd-min-width);
  max-width: var(--mm-ocd-max-width);
  background: #fff;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.mm-ocd--left .mm-ocd__content {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-ocd--right .mm-ocd__content {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-ocd--open .mm-ocd__content {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-ocd__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(100% - var(--mm-ocd-max-width), 100% - var(--mm-ocd-width), 100% - var(--mm-ocd-min-width));
  background: rgba(3, 2, 1, 0);
}

.mm-ocd--left .mm-ocd__backdrop {
  right: 0;
}

.mm-ocd--right .mm-ocd__backdrop {
  left: 0;
}

.mm-spn,
.mm-spn a,
.mm-spn li,
.mm-spn span,
.mm-spn ul {
  display: block;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --mm-spn-item-height: 50px;
  --mm-spn-item-indent: 20px;
  --mm-spn-line-height: 24px;
  --mm-spn-panel-offset: 30%;
}

.mm-spn {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.mm-spn ul {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 100%;
  bottom: 0;
  z-index: 2;
  width: calc(100% + var(--mm-spn-panel-offset));
  padding-right: var(--mm-spn-panel-offset);
  line-height: var(--mm-spn-line-height);
  overflow: visible;
  overflow-y: auto;
  background: inherit;
  -webkit-transition: left 0.3s ease 0s;
  -o-transition: left 0.3s ease 0s;
  transition: left 0.3s ease 0s;
  cursor: default;
}

.mm-spn ul:after {
  content: "";
  display: block;
  height: var(--mm-spn-item-height);
}

.mm-spn > ul {
  left: 0;
}

.mm-spn ul.mm-spn--open {
  left: 0;
}

.mm-spn ul.mm-spn--parent {
  left: calc(-1 * var(--mm-spn-panel-offset));
  overflow: visible;
}

.mm-spn li {
  position: relative;
  background: inherit;
  cursor: pointer;
}

.mm-spn li:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--mm-spn-item-height) / 2);
  right: calc(var(--mm-spn-item-height) / 2);
  z-index: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  -ms-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  opacity: 0.4;
}

.mm-spn li:after {
  content: "";
  display: block;
  margin-left: var(--mm-spn-item-indent);
  border-top: 1px solid;
  opacity: 0.15;
}

.mm-spn a,
.mm-spn span {
  position: relative;
  z-index: 1;
  padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height)) / 2) var(--mm-spn-item-indent);
}

.mm-spn a {
  background: inherit;
  color: inherit;
  text-decoration: none;
}

.mm-spn a:not(:last-child) {
  width: calc(100% - var(--mm-spn-item-height));
}

.mm-spn a:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  opacity: 0.15;
}

.mm-spn span {
  background: 0 0;
}

.mm-spn.mm-spn--navbar {
  cursor: pointer;
}

.mm-spn.mm-spn--navbar:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--mm-spn-item-height) / 2);
  left: var(--mm-spn-item-indent);
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-top: 2px solid;
  border-left: 2px solid;
  -webkit-transform: rotate(-45deg) translate(50%, -50%);
  -ms-transform: rotate(-45deg) translate(50%, -50%);
  transform: rotate(-45deg) translate(50%, -50%);
  opacity: 0.4;
}

.mm-spn.mm-spn--navbar.mm-spn--main {
  cursor: default;
}

.mm-spn.mm-spn--navbar.mm-spn--main:before {
  content: none;
  display: none;
}

.mm-spn.mm-spn--navbar:after {
  content: attr(data-mm-spn-title);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mm-spn-item-height);
  padding: 0 calc(var(--mm-spn-item-indent) * 2);
  line-height: var(--mm-spn-item-height);
  opacity: 0.4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.mm-spn.mm-spn--navbar.mm-spn--main:after {
  padding-left: var(--mm-spn-item-indent);
}

.mm-spn.mm-spn--navbar ul {
  top: calc(var(--mm-spn-item-height) + 1px);
}

.mm-spn.mm-spn--navbar ul:before {
  content: "";
  display: block;
  position: fixed;
  top: inherit;
  z-index: 2;
  width: 100%;
  border-top: 1px solid currentColor;
  opacity: 0.15;
}

.mm-spn.mm-spn--light {
  color: #444;
  background: #f3f3f3;
}

.mm-spn.mm-spn--dark {
  color: #ddd;
  background: #333;
}

.mm-spn.mm-spn--vertical {
  overflow-y: auto;
}

.mm-spn.mm-spn--vertical ul {
  width: 100%;
  padding-right: 0;
  position: static;
}

.mm-spn.mm-spn--vertical ul ul {
  display: none;
  padding-left: var(--mm-spn-item-indent);
}

.mm-spn.mm-spn--vertical ul ul:after {
  height: calc(var(--mm-spn-item-height) / 2);
}

.mm-spn.mm-spn--vertical ul.mm-spn--open {
  display: block;
}

.mm-spn.mm-spn--vertical li.mm-spn--open:before {
  -webkit-transform: rotate(135deg) translate(-50%, 0);
  -ms-transform: rotate(135deg) translate(-50%, 0);
  transform: rotate(135deg) translate(-50%, 0);
}

.mm-spn.mm-spn--vertical ul ul li:last-child:after {
  content: none;
  display: none;
}

.vert > p, .vert > div, .vert > a {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--------------------------------
	Media Queries
	used for outputting content either between media query tags
	example: basic usage
	.element {
		width: 50%;
		@include mq('tablet-small') {
			width: 20%;
		}
	}
	example: using max-width
	.element {
		width: 50%;
		@include mq('tablet-small', 'max') {
			width: 20%;
		}
	}
*/
/*--------------------------------
	Margin / Padding Quick Resets
	example: top & bottom margin set to $spacing-unit
	.element {
		@include push--ends;
	}
	example: left & right padding set to $spacing-unit--small
	.element {
		@include soft--sides($spacing-unit--small);
	}
*/
/*--------------------------------
	Helper mixins
*/
/*--------------------------------
	Form input placeholder text
	example:
	input,
	textarea {
		@include input-placeholder {
			color: $grey;
		}
	}
*/
/*--------------------------------
	Retina images
	example:
	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}
*/
/*--------------------------------
	Content margins
	fore removing first/last child margins
	example: default
	.element {
		@include content-margins;
	}
	output:
	.element > *:first-child {
		margin-top: 0;
	}
	.element > *:last-child {
		margin-bottom: 0;
	}
	example: empty selector
	.element {
		@include content-margins('false');
	}
	output:
	.element:first-child {
		margin-top: 0;
	}
	.element:last-child {
		margin-bottom: 0;
	}
*/
/*--------------------------------
	CSS Triangle
	used for creating CSS only triangles
	example:
	.element {
		&::before {
			@include css-triangle(blue, down);
		}
	}
*/
/*--------------------------------
	Hide text
	example:
	.element {
		@include hide-text;
	}
*/
/*--------------------------------
	Responsive ratio
	Used for creating scalable elements that maintain the same ratio
	example:
	.element {
		@include responsive-ratio(400, 300);
	}
*/
/*--------------------------------
	Typography
	Text image replacement, with responsive ratio
	HTML:
	<h1 class="element">
		<span>Text to replace</span>
	</h1>
	example:
	.element {
		@include typography(200, 50, 'hello-world');
	}
*/
/*--------------------------------
	Icon
	For using fontastic icons in pseudo elements
*/
/*--------------------------------
	Colours
	background, colour, etc. match up with colour map in _variables.scss
	modify to suit per project
*/
/*--------------------------------
	Misc
*/
/*--------------------------------
	Fluid Property
	http://www.adrenalinmedia.com.au/the-agency/insights/this-changes-everything-css-fluid-properties.aspx
	HTML:
	<h1 class="element">
		<span>Text to replace</span>
	</h1>
	example:
	h1 {
		@include fp(font-size, 50, 100); // 50px at 320, 100px at 1920;
	}
	output:
	h1 {
		font-size: calc(3.125vw + 40px); //This is the magic!
	}
	@media (max-width:320px){ //Clips the start to the min value
		font-size:50px;
	}
	@media (min-width:1920px){ //Clips the end to the max value
		font-size:100px;
	}
*/
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppinsbold.woff2") format("woff2"), url("../fonts/Poppins/Poppinsbold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@media (max-width: 479px) {
  #wpadminbar {
    display: none;
  }
}

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.tooltip-inner {
  padding: 10px 20px !important;
  max-width: 320px !important;
  width: 100% !important;
}

body {
  font-family: "Poppins", sans-serif;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none;
}

i.fa {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.popover {
  overflow: hidden;
}

.popover-body {
  padding: 0;
}

.play_video.active .icon-video {
  display: inline-block;
  margin: 1px auto;
  top: 6px !important;
  width: 22px;
  height: 22px;
  background: url(../img/icons/icon_pause.svg?v2) no-repeat 50% 50%/cover !important;
}
.play_video.active .icon-video:before {
  display: none;
}

.play_audio:hover .icon-sound {
  background: url(../img/icons/icon_play_purple.svg) no-repeat 50% 50%/cover;
}
.play_audio .icon-sound {
  display: inline-block;
  margin: 1px auto;
  top: 6px !important;
  width: 22px;
  height: 22px;
  background: url(../img/icons/icon_play.svg) no-repeat 50% 50%/cover;
  transform: scale(1) !important;
}
.play_audio.active .icon-sound {
  background: url(../img/icons/icon_pause.svg?v2) no-repeat 50% 50%/cover !important;
}

@media (min-width: 1920px) {
  .passes_pt_bottom_gap.dark {
    background: #ddd;
  }
  .whole_content_wrap {
    padding: 0 0 77px;
    background: #ddd;
  }
  .whole_content_wrap.gray .inner_content_wrap {
    background-color: #eeeeee;
  }
  .whole_content_wrap.white .inner_content_wrap {
    background-color: #ffffff;
  }
  .whole_content_wrap .inner_content_wrap {
    width: 1770px;
    margin-right: auto;
    margin-left: auto;
    border-right: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(74, 74, 74, 0.2);
    box-shadow: 0px 0px 6px 0px rgba(74, 74, 74, 0.2);
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
    padding-right: 48px;
    padding-left: 48px;
  }
  #sl1 .col-md-4.active,
  #sl2 .col-md-4.active {
    width: 1200px !important;
  }
}
.tp-notification-close {
  display: none !important;
}

@media (max-width: 767px) {
  .intercom-lightweight-app {
    display: none !important;
  }
}

.tp-widget-container {
  pointer-events: none;
}
@media (max-width: 991px) {
  .tp-widget-container {
    display: none !important;
  }
}

body .close_tp_icon {
  position: fixed;
  bottom: 170px;
  left: 320px;
  background: #9041ff;
  color: #fff;
  width: 0;
  height: 0;
  transform: translate(-20px, 0);
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 12px;
  cursor: pointer;
  transition: all ease 1s;
  opacity: 0;
}
body .close_tp_icon.show {
  transform: translate(0, 0);
  width: 20px;
  height: 20px;
  opacity: 1;
}
body .close_tp_icon.show:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  body .close_tp_icon {
    display: none !important;
  }
}
body.page-template-funnel_sales .close_tp_icon {
  bottom: 100px;
}
@media (max-width: 991px) {
  body .icon-cancel .close_tp_icon .show {
    display: none !important;
  }
}

a,
a:focus {
  outline: 0;
}

.post-password-form {
  text-align: center;
  position: relative;
  min-height: calc(100vh + 50px);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  background: url(../img/bg/purple_3_x2.jpg.webp) no-repeat 50% 50%/cover;
}
.post-password-form p:nth-child(1) {
  text-align: center;
  width: 100%;
  max-width: 580px;
  margin: 0 auto 30px;
  font-size: 0;
  position: relative;
  color: #fff;
}
.post-password-form p:nth-child(1):before {
  content: "This page is under construction. To view it, please enter your password below:";
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  position: relative;
  color: #fff;
}
.post-password-form p:nth-child(2) {
  color: #fff;
  width: 100%;
}
.post-password-form p:nth-child(2) > input {
  position: relative;
  top: 1px;
  color: #5E1DE1;
  border: 1px solid #5E1DE1 !important;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}
.post-password-form p:nth-child(2) label {
  font-size: 0px;
  margin-right: 10px;
}
.post-password-form p:nth-child(2) label input {
  margin-right: 5px;
  font-size: 18px;
  outline: none;
  border: 1px solid #5E1DE1 !important;
}

.screen_reader_text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

.visible-lg-table,
.visible-md-table,
.visible-sm-table,
.visible-xs-table {
  display: none !important;
}

@media (max-width: 479px) {
  .hidden-xxs {
    display: none;
  }
}

@media (max-width: 639px) {
  .d-xs-none {
    display: none !important;
  }
}

.d_none {
  display: none !important;
}

.sm_show {
  display: none;
}
@media (max-width: 767px) {
  .sm_show {
    display: initial;
  }
}

.md_show {
  display: none;
}
@media (max-width: 991px) {
  .md_show {
    display: initial;
  }
}

@media (max-width: 767px) {
  .sm_hide {
    display: none !important;
  }
}

@media (max-width: 639px) {
  .xs_hide {
    display: none !important;
  }
}

.xs_show {
  display: none;
}
@media (max-width: 639px) {
  .xs_show {
    display: initial;
  }
}

.empty_block {
  padding: 60px 0;
  width: 100%;
}

@media (max-width: 767px) {
  .sm_text_right {
    text-align: right;
  }
}

.center-table {
  margin: 0 auto;
  display: table;
}

@media (min-width: 992px) {
  #collapse_sm_menu {
    height: initial !important;
    display: block;
  }
}
.gray-wrap {
  max-width: 1620px;
  position: relative;
  background-color: #f7f7f7;
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
@media (max-width: 1620px) {
  .gray-wrap {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
}
.gray-wrap + #demo {
  z-index: 1;
}
.gray-wrap .card.card-end {
  padding: 0;
  margin: -25px auto 0;
  max-width: 100%;
  width: 910px;
  transform: translateY(50%);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  border-radius: 6px;
}
.gray-wrap .card.card-end .card-body {
  padding: 40px;
}
@media (max-width: 767px) {
  .gray-wrap .card.card-end .card-body {
    padding: 30px 15px;
  }
}

iframe.flexible {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.modal_gdpr_trigger {
  display: none;
}

video#bgvid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
}

.down_icon_new {
  font-size: 22px;
  line-height: 33px;
  font-weight: 100;
  color: #838383;
  transition: all 0.2s linear;
  text-decoration: none;
  border-radius: 50%;
  position: absolute;
  background: #eee;
  border: none;
  margin: auto;
  height: 29px;
  width: 29px;
  z-index: 1;
  top: -14px;
  right: 0;
  left: 0;
}
.down_icon_new.bottom {
  bottom: -14px;
  top: initial;
}
.down_icon_new.gray {
  background: #f7f7f7;
}
.down_icon_new.white {
  background: #fff !important;
}
.down_icon_new.white:hover {
  background: #5E1DE1 !important;
}
.down_icon_new .icon-down-open {
  position: absolute;
  text-align: center;
  line-height: 33px;
  font-size: 18px;
  margin: auto;
  right: 0;
  left: 0;
}
.down_icon_new.mid {
  position: relative;
  display: block;
  margin: 75px auto 40px;
  background: #f5f5f5;
  text-align: center;
}
.down_icon_new.mid:hover {
  background: #5E1DE1;
  color: #fff;
}
@media (max-width: 767px) {
  .down_icon_new.mid {
    margin: 55px auto 20px;
  }
}
@media (max-width: 639px) {
  .down_icon_new.mid {
    margin: 35px auto 0;
  }
}
.down_icon_new.mid:before {
  content: "";
  position: absolute;
  display: block;
  right: 40px;
  top: 15px;
  width: 430px;
  border-bottom: 1px solid #ddd;
}
.down_icon_new.mid:after {
  content: "";
  position: absolute;
  display: block;
  left: 40px;
  top: 15px;
  width: 430px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 991px) {
  .down_icon_new.mid:before, .down_icon_new.mid:after {
    width: 330px;
  }
}
@media (max-width: 767px) {
  .down_icon_new.mid:before, .down_icon_new.mid:after {
    width: 220px;
  }
}
@media (max-width: 639px) {
  .down_icon_new.mid:before, .down_icon_new.mid:after {
    width: 110px;
  }
}

.down_icon {
  position: relative;
}
.down_icon:before {
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 100%;
  /* Firefox 1-3.6 */
  -moz-border-radius: 100%;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 100%;
  border: 1px solid #e0e0e0;
  margin-left: -28px;
  position: absolute;
  bottom: -28px;
  height: 58px;
  width: 58px;
  content: "";
  z-index: 1;
  left: 50%;
}
.down_icon.top:before {
  top: -28px;
}
.down_icon_big {
  display: inline-block;
  transform: translate3d(-50%, -50%, 0);
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
}
@media (max-width: 639px) {
  .down_icon_big svg {
    width: 70px;
    height: 70px;
  }
}
.down_icon_big svg [fill=white],
.down_icon_big svg [fill="#C500E4"],
.down_icon_big svg [fill="#7032C8"] {
  transition: 0.2s;
}
.down_icon_big svg [fill="#C500E4"],
.down_icon_big svg [fill="#7032C8"] {
  color: #5E1DE1;
}
.down_icon_big:hover {
  color: #C500E4;
}
.down_icon_big:hover svg [fill=white] {
  fill: #C500E4;
}
.down_icon_big:hover svg [fill=white][stroke="#7032C8"] {
  fill: #5E1DE1;
}
.down_icon_big:hover svg [fill="#C500E4"],
.down_icon_big:hover svg [fill="#7032C8"] {
  fill: white;
}
.down_icon_big.mid {
  position: relative;
  transition: 0.2s;
  display: flex;
  margin: 110px auto 0;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .down_icon_big.mid {
    margin: 75px auto 0;
  }
}
@media (max-width: 639px) {
  .down_icon_big.mid {
    margin-top: 60px;
  }
}
.down_icon_big.mid:before {
  content: "";
  position: absolute;
  display: block;
  right: 50%;
  top: 50%;
  margin-right: 80px;
  width: 430px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 639px) {
  .down_icon_big.mid:before {
    margin-right: 50px;
  }
}
.down_icon_big.mid:after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  margin-left: 80px;
  width: 430px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 639px) {
  .down_icon_big.mid:after {
    margin-left: 50px;
  }
}
.down_icon_big.wbecs {
  display: inline-flex;
  position: relative;
  transition: 0.2s;
}
.down_icon_big.wbecs:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background-size: cover;
  border-radius: 80%;
}
.down_icon_big.wbecs:after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 11px;
  right: 11px;
  bottom: 11px;
  background-size: 60px auto;
  background-color: #fff;
  border-radius: 50%;
}
.down_icon_big.wbecs svg path {
  opacity: 0;
}
.down_icon_big.wbecs svg circle:first-child {
  fill: none;
  stroke: none;
}
.down_icon_big.wbecs:hover {
  filter: grayscale(30%);
}

.grow {
  transition: all 0.2s ease-in-out;
}

.grow:hover {
  transform: scale(1.1);
}

ul.stars,
.star_rating {
  letter-spacing: 0;
  font-size: 20px;
  color: #e9bf4d;
  margin: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
}
ul.stars li,
.star_rating li {
  list-style: none;
}
ul.stars i.fa,
.star_rating i.fa {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9e65d), to(#ffc800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
ul.stars li,
.star_rating li {
  margin-right: 2px !important;
}
ul.stars.stars-3 li:nth-child(4),
.star_rating.stars-3 li:nth-child(4) {
  display: none;
}
ul.stars.stars-3 li:nth-child(5),
.star_rating.stars-3 li:nth-child(5) {
  display: none;
}
ul.stars.stars-4 li:nth-child(5),
.star_rating.stars-4 li:nth-child(5) {
  display: none;
}
.audio_wrap {
  display: none;
}
.audio_wrap audio {
  width: 100%;
}
.row.is-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: row wrap;
}
.row.is-flex .separator-sm {
  display: none;
}
.row.is-flex .separator-md {
  height: 30px;
  width: 100%;
}

.row.is-flex > [class*=col-] {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 3 0;
}

.ifs_reg div[id^=nb-field-] div.nb-feedback {
  padding: 5px 15px !important;
  max-width: 100% !important;
  margin-top: 2px !important;
}
@media (max-width: 767px) {
  .ifs_reg div[id^=nb-field-] div.nb-feedback {
    padding: 3px 7px !important;
    font-size: 13px !important;
  }
}
.ifs_reg div[id^=nb-field-] div.nb-feedback .nb-poweredby {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.loader {
  animation: spin 1.2s linear infinite;
  border: 2px solid #fff;
  border-top: 2px solid #5E1DE1;
  border-radius: 50%;
  position: absolute;
  z-index: 99999;
  display: none;
  margin: auto;
  height: 95px;
  width: 95px;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  pointer-events: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip:hover {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
  animation-iteration-count: 1;
}

@keyframes pulse_animation {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse, #menu-members-main-menu:not(.mmenu_start) li.li_passes:before,
#menu-header-menu li.li_passes:before, #menu-members-main-menu:not(.mmenu_start) li.new:before,
#menu-header-menu li.new:before {
  animation-name: pulse_animation;
  animation-duration: 2000ms;
  transform-origin: 100% 100%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.rotate {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  overflow: hidden;
}
.rotate:hover {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.pulse_me {
  display: inline-table;
  border-radius: 100%;
  line-height: 1em;
  cursor: pointer;
  animation: none;
}
.pulse_me.on_click:active.one_time {
  animation: action_pulse 2s 1;
}
.pulse_me.on_click:active.infinite {
  animation: action_pulse 2s infinite;
}
.pulse_me.on_hover:hover.one_time {
  animation: action_pulse 2s 1;
}
.pulse_me.on_hover:hover.infinite {
  animation: action_pulse 2s infinite;
}

@-webkit-keyframes action_pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(94, 29, 225, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(94, 29, 225, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(94, 29, 225, 0);
  }
}
@keyframes action_pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(94, 29, 225, 0.4);
    box-shadow: 0 0 0 0 rgba(94, 29, 225, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(94, 29, 225, 0);
    box-shadow: 0 0 0 10px rgba(94, 29, 225, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(94, 29, 225, 0);
    box-shadow: 0 0 0 0 rgba(94, 29, 225, 0);
  }
}
/*08.03.2023*/
picture img {
  max-width: 100%;
  height: auto;
}

.contain_image,
.cover_image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.cover_image > img,
.contain_image > img {
  width: 100%;
  height: 100%;
  object-position: center;
}

.cover_image > img {
  object-fit: cover;
}

.contain_image > img {
  object-fit: contain;
}

.contain_image ~ *,
.cover_image ~ * {
  position: relative;
  z-index: 5;
}

.btn[data-msg=tst],
.btn[data-msg] {
  position: relative;
}
.btn[data-msg=tst]:after,
.btn[data-msg]:after {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  content: attr(data-msg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -44px;
  left: calc(50% - 110px);
  transform: translate(0, 20%);
  transition: all ease 0.3s;
  background: #7032c8;
  padding: 10px 8px;
  border-radius: 6px;
  width: 220px;
  white-space: initial;
  opacity: 0;
}
.btn[data-msg=tst]:before,
.btn[data-msg]:before {
  content: "";
  position: absolute;
  top: -13px;
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #7032c8 transparent transparent transparent;
  transform: translate(0, 20%);
  opacity: 0;
}
.btn[data-msg=tst]:hover,
.btn[data-msg]:hover {
  overflow: visible !important;
  opacity: 1;
}
.btn[data-msg=tst]:hover:after, .btn[data-msg=tst]:hover:before,
.btn[data-msg]:hover:after,
.btn[data-msg]:hover:before {
  transform: translate(0, 0);
  z-index: 11;
  opacity: 1;
}

.btn {
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 3px;
  /* Firefox 1-3.6 */
  -moz-border-radius: 3px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 3px;
  font: 700 14px;
  text-shadow: none;
  color: #fff;
  border: 0;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  box-shadow: none !important;
  outline: none;
}
.btn.disable_lock {
  position: relative;
}
.btn.disable_lock:hover:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.737254902);
  width: 100%;
  height: 100%;
}
.btn.disable_lock:hover:before {
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 48%;
  display: block;
  font-size: 36px;
  font-family: "fontello", serif;
  content: "\e82d";
  color: #5E1DE1;
}
@media (max-width: 767px) {
  .btn.disable_lock:hover:before {
    font-size: 27px;
  }
}
.btn.round {
  border-radius: 120px !important;
}
.btn.btn-span-left {
  font-size: 14px !important;
  font-weight: 600;
  color: #0f0f3d;
  text-overflow: ellipsis;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 0 24px 0 74px !important;
  height: 48px;
  line-height: 48px;
  border: none;
  margin: 16px 16px 0 0 !important;
}
@media (max-width: 1699px) {
  .btn.btn-span-left {
    height: 40px;
    line-height: 40px;
  }
}
.btn.btn-span-left > div {
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-left: 45px;
  border-radius: 6px;
}
.btn.btn-span-left span {
  display: inline-flex;
  align-items: center;
  font-family: "Poppins", serif;
  position: absolute;
  padding: 0 18px 0 20px;
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  left: 0;
  bottom: 0;
  top: 0;
  color: #fff;
}
@media (max-width: 479px) {
  .btn.btn-span-left span {
    font-size: 18px;
    padding: 0 15px 0 17px;
  }
}
.btn.btn-span-left span:before {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  content: "";
  display: block;
  position: absolute;
  left: -5px;
  padding-left: 10px;
  right: 0;
  top: -10px;
  bottom: -10px;
  transform: rotate(0deg);
  background: #5E1DE1;
  z-index: 0;
  width: 64px;
}
@media (max-width: 767px) {
  .btn.btn-span-left span:before {
    width: 55px;
  }
}
.btn.btn-span-left span i {
  position: relative;
  font-style: normal;
  z-index: 2;
}
.btn.btn-span-left.fs span:before {
  background: #5E1DE1;
}
.btn.btn-span-left:hover {
  color: #000;
}
.btn.btn-span-left:hover span:before {
  transform: rotate(-13deg);
}
.btn.btn-span-left.select {
  outline: none;
  padding-right: 40px;
  padding-left: 70px;
}
.btn.btn-span-left.select:after {
  pointer-events: none;
  position: absolute;
  right: 0;
  font-size: 18px;
  top: 51%;
  transform: translateY(-50%);
  content: "\e75c";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  color: #5E1DE1;
  line-height: 1;
}
.btn.btn-span-left.select select {
  background: transparent;
  box-shadow: none !important;
  font-size: 14px;
  line-height: 1.3;
  display: block;
  border: none;
  padding: 0;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
@media (max-width: 767px) {
  .btn.btn-span-left.select select {
    font-size: 12px;
  }
}
.btn.btn-span-left.select select,
.btn.btn-span-left.select option.selected {
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.btn.btn_white {
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 38px;
  transition: all 0.2s;
}
.btn.btn_white:hover {
  background: #5E1DE1;
  color: #fff !important;
}
.btn.btn-green {
  background: #5E1DE1;
  color: #fff;
  border-radius: 6px;
}
.btn.btn-green:hover {
  background: #6e33e5;
}
.btn.btn_gradient_purple {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 38px;
  transition: all 0.2s;
  opacity: 1;
  background: linear-gradient(63.63deg, #4a1be7 0.53%, #7d42fa 100%), #c4c4c4 !important;
}
.btn.btn_gradient_purple:active {
  background: linear-gradient(63.63deg, #4a1be7 0.53%, #7d42fa 100%), #c4c4c4 !important;
}
.btn.btn_gradient_purple:hover {
  opacity: 0.8;
  color: #fff;
}
.btn.btn_gradient_purple:focus {
  color: #fff;
}
.btn.btn_gradient_purple.with_img {
  padding: 3px 40px 3px 3px;
  display: flex;
  align-items: center;
  align-content: center;
  max-width: 330px;
  margin: 0 auto;
}
.btn.btn_gradient_purple.with_img img {
  margin-right: 20px;
}
.btn.btn_gradient_purple.img_abs {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5px 5px 5px 50px;
  font-size: 18px;
  max-width: 411px;
  letter-spacing: 2px;
}
.btn.btn_gradient_purple.img_abs img {
  position: absolute;
  left: 5px;
  top: 5px;
  margin: 0;
}
@media (max-width: 479px) {
  .btn.btn_gradient_purple.img_abs img {
    top: 3px;
    max-width: 28px;
  }
}
@media (max-width: 479px) {
  .btn.btn_gradient_purple.img_abs {
    min-height: 34px;
    font-size: 13px;
  }
}
.btn.become_a_member {
  border-radius: 60px;
  background: #5E1DE1;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 15px 15px;
  margin: 0 auto;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .btn.become_a_member {
    padding: 10px 15px;
    max-width: 330px;
  }
}
.btn.become_a_member:hover {
  background: #6e33e5;
}
.btn.become_a_member.without_small p {
  top: 0;
}
.btn.become_a_member.without_small p small {
  display: none;
}
.btn.become_a_member.without_small p b {
  margin-bottom: 0;
}
.btn.become_a_member picture img {
  margin-left: -20px;
  min-width: 32px;
  width: 32px;
  margin-right: 15px;
}
.btn.become_a_member p {
  margin-bottom: 0 !important;
  text-align: left !important;
  position: relative;
  top: 2px;
}
.btn.become_a_member p b {
  display: block;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 24px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
  margin-bottom: -2px;
}
@media (max-width: 767px) {
  .btn.become_a_member p b {
    font-size: 18px;
  }
}
.btn.become_a_member p small {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
}
@media (max-width: 767px) {
  .btn.become_a_member p small {
    font-size: 12px;
  }
}
.btn.become_a_member p small span {
  font-weight: 600;
}
.btn.btn-purple, .btn.btn_purple {
  color: #fff;
  background: #5E1DE1;
  font-weight: 500;
}
.btn.btn-purple.round, .btn.btn_purple.round {
  letter-spacing: 2px;
  border-radius: 60px;
  cursor: pointer;
  color: #fff !important;
}
.btn.btn-purple.with_icon, .btn.btn_purple.with_icon {
  font-size: 18px;
  padding: 15px 35px 15px 30px;
  border-radius: 6px;
}
@media (max-width: 479px) {
  .btn.btn-purple.with_icon, .btn.btn_purple.with_icon {
    padding-left: 20px;
  }
}
.btn.btn-purple.with_icon picture img, .btn.btn_purple.with_icon picture img {
  width: 55px;
  margin-right: 22px;
}
@media (max-width: 767px) {
  .btn.btn-purple.with_icon picture img, .btn.btn_purple.with_icon picture img {
    width: 35px;
    margin-right: 15px;
  }
}
.btn.btn-purple:hover, .btn.btn_purple:hover {
  background: #6e33e5;
  color: #fff;
}
.btn.btn-purple:focus, .btn.btn_purple:focus {
  color: #fff;
}
.btn.btn-yellow {
  background: #5E1DE1;
}
.btn.btn-yellow.round {
  padding: 12px 38px;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 6px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff !important;
}
@media (max-width: 767px) {
  .btn.btn-yellow.round {
    letter-spacing: 2px;
    font-size: 13px;
  }
}
@media (max-width: 639px) {
  .btn.btn-yellow.round {
    padding: 9px 30px;
  }
}
.btn.btn-yellow:hover {
  background: #6e33e5;
  color: #fff;
}
.btn.btn-yellow:focus {
  color: #fff;
}
.btn.btn-main-color {
  padding: 6.5px 35px 6.5px 45px;
  background: #5E1DE1;
  letter-spacing: 3.2px;
  color: #fff;
}
.btn.btn-main-color:hover {
  background: #6e33e5;
  color: #fff;
}
.btn.btn-main-color:focus {
  color: #fff;
}
.btn.btn-main-color.forgot_pass {
  font: 700 14px/20px;
  text-transform: uppercase;
  margin: 25px auto 25px;
  letter-spacing: 2px;
  padding: 12px 0;
  width: 100%;
}
.btn.btn-main-color.disabled {
  background: #ff0000;
  opacity: 1;
}
.btn.btn-main-color.sign-up.free {
  padding: 19px 100px 13px 33px;
  font: 700 24px;
  margin: 51px auto 64px;
  letter-spacing: 0;
  text-align: left;
  line-height: 1;
  display: table;
}
.btn.btn-main-color.sign-up.free .icon-login {
  margin: 7px 25px 12px 0;
  font-size: 34px;
  display: table;
  float: left;
}
.btn.btn-main-color.sign-up.free small {
  font: 500 13px;
  letter-spacing: 0.2px;
}
.btn.btn-main-color.navbar-toggle {
  padding: 6.5px 0;
  width: 125px;
}
.btn.btn-main-color.navbar-toggle .icon-menu {
  font-size: 20px;
  font-weight: 100;
  line-height: 16px;
  margin: -3px 0 0px;
  vertical-align: middle;
}
.btn.btn-main-color.navbar-toggle:focus {
  color: #fff;
}
.btn.btn_gradient {
  background: linear-gradient(90deg, #5700e7 0%, #9900fa 100%);
  box-shadow: 0px 8px 30px rgba(94, 29, 225, 0.4);
  border-radius: 6px;
  font-size: 16px;
  line-height: 32px;
  font-family: "Inter";
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 25px;
  color: #fff;
}
.btn.btn_gradient:hover {
  opacity: 0.85;
}
.btn.btn_gradient.with_img {
  padding: 8px 25px 8px 9px;
}
.btn.btn_gradient.with_img img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.btn.btn-empty {
  border: 2px solid #5E1DE1;
  font: 500 13px;
  background: transparent;
  color: #5E1DE1;
  padding: 2px;
  width: 100%;
  margin: 0;
}
.btn.btn-empty:hover {
  background: #5E1DE1;
  color: #fff;
}
.btn.btn-empty.add_to_calendar {
  padding: 8px;
}
.btn.btn_pink {
  background: #5E1DE1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  border: none;
  transition: all ease 0.3s;
  padding: 8px 38px;
  letter-spacing: 1px;
}
.btn.btn_pink:hover {
  opacity: 0.8;
}
.btn.btn_pink.btn_play {
  padding: 5px 25px 5px 5px !important;
}
.btn.btn_pink.btn_play i {
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 40px;
  height: 40px;
  border-radius: 80px;
  background: #fff;
  color: #5E1DE1;
  margin-right: 14px;
}
.btn.btn_pink.with_icon {
  padding-left: 5px;
}
.btn.btn_pink.with_icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
  height: 40px;
  width: 40px;
}
.btn.btn_pink.with_icon span {
  display: inline-flex;
  white-space: normal;
  margin-left: 15px;
  width: calc(100% - 55px);
}
.btn.btn_pink.with_img {
  padding: 8px 25px 8px 9px;
}
.btn.btn_pink.with_img img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

textarea:focus,
textarea.form-control:focus,
input:focus,
input.form-control:focus {
  border-color: #5E1DE1;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 167, 99, 0.15), 0 0 8px rgba(0, 167, 99, 0.15);
  box-shadow: inset 0 1px 1px rgba(0, 167, 99, 0.15), 0 0 8px rgba(0, 167, 99, 0.15);
}

input,
input.form-control,
button.dropdown-toggle {
  font: 400 15px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: none;
  padding: 19px 20px 20px;
  color: #595959;
}

input,
input.form-control {
  padding: 0 22px;
  height: 44px;
}
input::-webkit-input-placeholder,
input.form-control::-webkit-input-placeholder {
  color: #777;
}
input::-moz-placeholder,
input.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #777;
}
input:-ms-input-placeholder,
input.form-control:-ms-input-placeholder {
  color: #777;
}
input:-moz-placeholder,
input.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #777;
}

.btn-group {
  width: 100%;
}

#btn_side_txt {
  font: 400 13px;
  position: absolute;
  display: block;
  bottom: 70px;
  margin: auto;
  width: 80%;
  right: 0;
  left: 0;
}
#btn_side_txt .side {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
  padding: 24px 0 0;
  width: 43%;
}
#btn_side_txt .side.side-left {
  text-align: left;
  float: left;
}
#btn_side_txt .side.side-right {
  text-align: right;
  float: right;
}
#btn_side_txt i.fa {
  color: #5E1DE1;
  padding: 0 5px;
}

.video.video-play #btn_side_txt {
  bottom: 56px;
  width: 80%;
}
.video.video-play #btn_side_txt .side {
  width: 40%;
}

body .switcher {
  text-align: center;
}
body .switcher .fieldset {
  display: inline-block;
  position: relative;
  padding: 2px;
  border-radius: 50em;
  background: #E9E1F8;
  margin-bottom: 5px;
  transition: all 0.2s;
}
body .switcher .fieldset:hover {
  box-shadow: 0px 0px 10px 2px rgba(87, 46, 192, 0.1);
}
body .switcher input[type=radio] {
  position: absolute;
  opacity: 0;
}
body .switcher label {
  position: relative;
  z-index: 1;
  display: inline-block;
  float: left;
  width: 100px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  color: #7844E6;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 13px;
}
body .switcher .switch {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 30px;
  width: 50%;
  background: linear-gradient(63.63deg, #4a1be7 0.53%, #7d42fa 100%), #c4c4c4 !important;
  border-radius: 50em;
  transition: transform 0.5s;
}
body .switcher input[type=radio]:checked + label + .switch,
body .switcher input[type=radio]:checked + label:nth-of-type(n) + .switch {
  transform: translateX(100%);
  color: #fff !important;
}
body .switcher input[type=radio]:checked + label,
body .switcher input:checked {
  color: #fff !important;
  transition-duration: 1s;
}

body .switcher_2 {
  text-align: center;
}
body .switcher_2 .fieldset {
  display: inline-block;
  position: relative;
  padding: 2px;
  border-radius: 50em;
  background: #E9E1F8;
  margin-bottom: 5px;
  transition: all 0.2s;
}
body .switcher_2 .fieldset:hover {
  box-shadow: 0px 0px 10px 2px rgba(87, 46, 192, 0.1);
}
body .switcher_2 input[type=radio] {
  position: absolute;
  opacity: 0;
}
body .switcher_2 label {
  position: relative;
  z-index: 1;
  display: inline-block;
  float: left;
  width: 100px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  color: #7844E6;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 13px;
}
body .switcher_2 .switch_2 {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 30px;
  width: 50%;
  background: linear-gradient(63.63deg, #4a1be7 0.53%, #7d42fa 100%), #c4c4c4 !important;
  border-radius: 50em;
  transition: transform 0.5s;
}
body .switcher_2 input[type=radio]:checked + label + .switch_2,
body .switcher_2 input[type=radio]:checked + label:nth-of-type(n) + .switch_2 {
  transform: translateX(100%);
  color: #fff !important;
}
body .switcher_2 input[type=radio]:checked + label,
body .switcher_2 input:checked {
  color: #fff !important;
  transition-duration: 1s;
}

body .switcher_3 {
  text-align: center;
}
body .switcher_3 .fieldset {
  display: inline-block;
  position: relative;
  padding: 2px;
  border-radius: 50em;
  background: #E9E1F8;
  margin-bottom: 5px;
  transition: all 0.2s;
}
body .switcher_3 .fieldset:hover {
  box-shadow: 0px 0px 10px 2px rgba(87, 46, 192, 0.1);
}
body .switcher_3 input[type=radio] {
  position: absolute;
  opacity: 0;
}
body .switcher_3 label {
  position: relative;
  z-index: 1;
  display: inline-block;
  float: left;
  width: 100px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  color: #7844E6;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 13px;
}
body .switcher_3 .switch_3 {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 30px;
  width: 33.33%;
  background: linear-gradient(63.63deg, #4a1be7 0.53%, #7d42fa 100%), #c4c4c4 !important;
  border-radius: 50em;
  transition: transform 0.5s;
}
body .switcher_3.monthly .switch_3 {
  left: 2px;
}
body .switcher_3.yearly .switch_3 {
  left: 33.33%;
}
body .switcher_3.special .switch_3 {
  left: 66.66%;
}
body .switcher_3 input[type=radio]:checked + label + .switch_3,
body .switcher_3 input[type=radio]:checked + label:nth-of-type(n) + .switch_3 {
  color: #fff !important;
}
body .switcher_3 input[type=radio]:checked + label,
body .switcher_3 input:checked {
  color: #fff !important;
  transition-duration: 1s;
}

.dropdown-toggle.btn-default {
  color: #292b2c;
  background-color: #fff;
  border-color: #ccc;
}

.bootstrap-select.show > .dropdown-menu > .dropdown-menu {
  padding: 0 0 10px;
  display: block;
  min-width: 300px;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden {
  display: none;
  min-width: 300px;
}

.bootstrap-select .bs-searchbox .form-control {
  height: 32px;
  margin: 0 0 5px;
  padding: 0 14px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark:after {
  content: "\e810";
  font-family: "fontello", Serif;
}

/* Make filled out selects be the same size as empty selects */
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline !important;
}

.bootstrap-select.btn-group.proff_assoc .dropdown-menu {
  min-height: 315px !important;
}

/* Apply CSS to iOS affected versions only */
body.iosBugFixCaret.modal-open {
  position: fixed;
  width: 100%;
}

.bootstrap-select.show .dropdown-menu.open {
  border-color: #5E1DE1;
  min-width: 300px;
  transition: all 0.4s;
}
.bootstrap-select.show .dropdown-menu.open li.selected a, .bootstrap-select.show .dropdown-menu.open li.selected:hover a {
  color: #fff;
  background: #5E1DE1;
}
.bootstrap-select.show .dropdown-menu.open li.selected a .check-mark:after, .bootstrap-select.show .dropdown-menu.open li.selected:hover a .check-mark:after {
  font-size: 16px;
}

.btn.dropdown-toggle {
  font-size: 15px;
  font-weight: 400;
  color: #777;
  border: 1px solid #5E1DE1;
  padding: 19px 18px;
  border-radius: 0px;
  text-align: left;
  color: #5E1DE1 !important;
}
@media (max-width: 639px) {
  .btn.dropdown-toggle {
    padding: 11px 15px;
  }
}
.btn.dropdown-toggle:hover, .btn.dropdown-toggle:focus {
  outline: none !important;
  cursor: pointer;
}
.btn.dropdown-toggle:after {
  position: absolute !important;
  content: "\e80a" !important;
  font-family: "fontello", serif;
  font-size: 20px !important;
  border: none;
  right: 10px;
  top: 26%;
  font-weight: bold;
  color: #5E1DE1 !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border: initial !important;
}
@media (max-width: 639px) {
  .btn.dropdown-toggle:after {
    right: 25px;
    top: 25%;
  }
}

.bootstrap-select {
  text-shadow: none;
}
.bootstrap-select.btn-group.show .notify {
  border: 1px solid #5E1DE1;
  padding: 8px 15px;
  color: #5E1DE1;
  opacity: 1;
}
.bootstrap-select .check-mark {
  line-height: 14px;
}
.bootstrap-select .check-mark:after {
  font-family: "FontAwesome";
  content: "\f00c";
}
.bootstrap-select button {
  overflow: hidden;
  text-overflow: ellipsis;
}
.bootstrap-select .bs-searchbox {
  padding: 2px 22px;
}
.bootstrap-select .bs-searchbox input.form-control {
  padding: 0 15px;
  height: 32px;
  margin: 0;
}
.bootstrap-select .dropdown-menu li.active > a {
  color: #fff !important;
  background-color: #5E1DE1 !important;
}
.bootstrap-select .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 3px 1.5rem;
  clear: both;
  font-weight: 400;
  color: #292b2c;
  text-align: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  background: 0 0;
  border: 0;
  text-decoration: none;
  white-space: initial;
  z-index: 9999;
}
@media (max-width: 639px) {
  .bootstrap-select .dropdown-menu li a {
    font-size: 14px;
    padding: 3px 12px;
  }
}
.bootstrap-select .dropdown-menu li a:hover {
  background-color: #f4f4f4;
}
.bootstrap-select .dropdown-menu li a.new small.text-muted {
  color: green !important;
}
.bootstrap-select .dropdown-menu li a.line_throuh span.text {
  text-decoration: line-through;
}
.bootstrap-select .dropdown-menu li small.text-muted {
  font-size: 14px;
  font-weight: 700;
  color: #f95c5c !important;
  text-decoration: none;
  display: inline-block;
}
.bootstrap-select .dropdown-menu li small.text-muted {
  font: 400 14px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  color: #f95c5c;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.bootstrap-select select {
  width: 1px !important;
}
.bootstrap-select button.btn.dropdown-toggle {
  border-radius: 0;
  border: 1px solid #ddd;
  width: 100%;
}
.bootstrap-select button.btn.dropdown-toggle:hover, .bootstrap-select button.btn.dropdown-toggle:focus {
  border: 1px solid #5E1DE1;
  box-shadow: none !important;
  outline: none !important;
  background: #fff;
  color: #5E1DE1;
}
.bootstrap-select.open.dropup button.btn.dropdown-toggle {
  border: 1px solid #5E1DE1;
  box-shadow: none;
}
.bootstrap-select.open.dropup .dropdown-menu.open {
  margin: 0 0 -2px;
  border: 1px solid #cab0ff;
  border-radius: 6px;
  box-shadow: none;
}
.bootstrap-select.open button.btn.dropdown-toggle {
  border: 1px solid #5E1DE1;
  -webkit-box-shadow: none;
  outline: none !important;
  color: #5E1DE1;
  box-shadow: none;
  background: #fff;
}
.bootstrap-select.open button.btn.dropdown-toggle:hover {
  background: #fff;
}
.bootstrap-select.open .dropdown-menu {
  display: block;
  margin: 0;
}
.bootstrap-select.open .dropdown-menu.open {
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccb3ff;
}
.bootstrap-select .dropdown-menu {
  margin-top: 0px !important;
  max-width: 100%;
  padding: 0;
}
.bootstrap-select .dropdown-menu > li {
  background: #fff;
}
.bootstrap-select .dropdown-menu > li:hover {
  background: #fff;
}
.bootstrap-select .dropdown-menu > li.selected a {
  color: #fff;
  background: #5E1DE1;
}
.bootstrap-select .dropdown-menu > li.selected a:hover, .bootstrap-select .dropdown-menu > li.selected a:focus {
  background: #5E1DE1;
}
.bootstrap-select .dropdown-menu > li > a {
  padding: 6px 15px;
  white-space: initial;
  max-width: 100%;
}
.bootstrap-select .dropdown-menu > li > a:hover, .bootstrap-select .dropdown-menu > li > a:focus {
  color: #fff;
  background: #5E1DE1;
}
.bootstrap-select .dropdown-menu > li > a .check-mark:after {
  content: "✓";
  font-family: "entypo";
}
.bootstrap-select .dropdown-menu > li:nth-child(2n) {
  background-color: rgba(144, 66, 255, 0.0588235294);
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  white-space: normal;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  background: transparent;
  box-sizing: border-box;
  vertical-align: middle;
  margin: 0 5px 13px 0;
  position: relative;
  box-shadow: none;
  line-height: 1em;
  border-radius: 0;
  cursor: pointer;
  display: inline;
  outline: none;
  border: none;
  height: 24px;
  width: 24px;
  float: left;
  padding: 0;
  top: 0;
}
input[type=checkbox]:before {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  box-sizing: border-box;
  position: absolute;
  border-radius: 6px;
  height: 26px;
  content: "";
  width: 26px;
  z-index: 1;
  left: 0;
  top: 0;
}
input[type=checkbox]:checked:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-color: #5E1DE1;
  border-right-style: none;
  border-top-style: none;
  border-radius: 0;
  height: 9px;
  width: 18px;
  left: 4px;
  top: 6px;
}
input[type=checkbox]:after {
  box-sizing: border-box;
  border-radius: 6px;
  position: absolute;
  background: #fff;
  cursor: pointer;
  height: 26px;
  width: 26px;
  content: "";
  left: -1px;
  top: -1px;
  border: 1px solid rgba(112, 50, 200, 0.3411764706);
}

body:not(.cookie_accepted) {
  padding-bottom: 187px;
}
@media (min-width: 375px) {
  body:not(.cookie_accepted) {
    padding-bottom: 169px;
  }
}
@media (min-width: 768px) {
  body:not(.cookie_accepted) {
    padding-bottom: 151px;
  }
}

body.cookie_accepted:not(.contact-collapsed) .footer_copy {
  padding-bottom: 100px;
}

#cookie_banner {
  display: none;
  background: #fff;
  height: auto;
  left: 0;
  width: 100%;
  z-index: 100000000;
  border-bottom: 1px solid #cbd6e2;
  border-top: 1px solid #cbd6e2;
  color: #33475b;
  font-family: inherit;
  font-weight: 400;
  text-align: left;
  text-shadow: none;
  font-size: 12px;
  line-height: 18px;
  position: fixed;
  border-bottom: 0;
  bottom: 0;
  top: auto;
  box-shadow: 0 -1px 3px #eaf0f6;
}
#cookie_banner .inner {
  background: #fff;
  margin: 0 auto;
  max-width: 1000px;
  padding: 20px;
}
#cookie_banner .inner .wording {
  margin-bottom: 12px;
}
#cookie_banner .inner .wording p {
  margin: 0 0 12px;
  color: #33475b;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  text-align: left;
  text-shadow: none;
}
#cookie_banner .inner .wording p a {
  color: #0054b3;
}
#cookie_banner .inner .btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 0 3px;
  justify-content: center;
}
#cookie_banner .inner .btns .btns_group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#cookie_banner button.accept,
#cookie_banner button.decline {
  border: 1px solid #5e1de1;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  text-align: center;
  text-shadow: none;
  padding: 10px 0;
  margin: 6px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  width: 140px;
}
#cookie_banner button.accept {
  background-color: #5e1de1;
  color: #fff;
}
#cookie_banner button.accept:hover {
  background-color: #fff;
  color: #5e1de1;
}
#cookie_banner button.decline {
  background-color: #fff;
  color: #5e1de1;
}
#cookie_banner button.decline:hover {
  background-color: #5e1de1;
  color: #fff;
}

.close_bt_wr button.close_cookie_banner {
  width: 15px;
  height: 15px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  cursor: pointer;
}
.close_bt_wr button.close_cookie_banner:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top left, rgba(94, 29, 225, 0) 0%, rgba(94, 29, 225, 0) calc(50% - 0.8px), rgb(94, 29, 255) 50%, rgba(94, 29, 225, 0) calc(50% + 0.8px), rgba(94, 29, 225, 0) 100%), linear-gradient(to top right, rgba(94, 29, 225, 0) 0%, rgba(94, 29, 225, 0) calc(50% - 0.8px), rgb(94, 29, 255) 50%, rgba(94, 29, 225, 0) calc(50% + 0.8px), rgba(94, 29, 225, 0) 100%);
}
.close_bt_wr button.close_cookie_banner:before:before:hover {
  background: linear-gradient(to top left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(50% - 0.8px), rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) calc(50% + 0.8px), rgba(0, 0, 0, 0) 100%), linear-gradient(to top right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(50% - 0.8px), rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) calc(50% + 0.8px), rgba(0, 0, 0, 0) 100%);
}

#cookie_banner .inner .close_bt_wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.position_absolute {
  position: absolute !important;
}

.position_relative {
  position: relative !important;
}

.position_fixed {
  position: fixed !important;
}

.d_initial,
.d_i {
  display: initial !important;
}

.no_video .video .trigger_video {
  pointer-events: none;
  display: none;
}

.c_white,
.c_fff {
  color: #fff !important;
}

.c_000 {
  color: #000 !important;
}

.c_main {
  color: #5E1DE1;
}

.c_dark {
  color: #0F0F3D;
}

.opacity_0 {
  opacity: 0;
}

.c_lpink {
  color: #D5B0FF;
}

.c_dpink {
  color: #AA2294;
}

.c_pink {
  color: #D167FF;
}

.c_purple {
  color: #6335C3;
}

.mw_250,
.mw250 {
  max-width: 250px;
}

.mw_300,
.mw300 {
  max-width: 300px;
}

.mw_350,
.mw350 {
  max-width: 350px;
}

.mw_400,
.mw400 {
  max-width: 400px;
}

.mw_450,
.mw450 {
  max-width: 450px;
}

.mw_500,
.mw500 {
  max-width: 500px;
}

.mw_550,
.mw550 {
  max-width: 550px;
}

.mw_600,
.mw600 {
  max-width: 600px;
}

.mw_650,
.mw650 {
  max-width: 650px;
}

.mw_700,
.mw700 {
  max-width: 700px;
}

.mw_750,
.mw750 {
  max-width: 750px;
}

.mw_800,
.mw800 {
  max-width: 800px;
}

.mw_850,
.mw850 {
  max-width: 850px;
}

.mw_900,
.mw900 {
  max-width: 900px;
}

.mw_950,
.mw950 {
  max-width: 950px;
}

.order_1 {
  order: 1;
}

.order_2 {
  order: 2;
}

.order_3 {
  order: 3;
}

.order_4 {
  order: 4;
}

.order_5 {
  order: 5;
}

.order_6 {
  order: 6;
}

.order_7 {
  order: 7;
}

.order_8 {
  order: 8;
}

@media (max-width: 767px) {
  .sm_order_1 {
    order: 1;
  }
}

@media (max-width: 767px) {
  .sm_order_2 {
    order: 2;
  }
}

@media (max-width: 767px) {
  .sm_order_3 {
    order: 3;
  }
}

@media (max-width: 767px) {
  .sm_order_4 {
    order: 4;
  }
}

@media (max-width: 767px) {
  .sm_order_5 {
    order: 5;
  }
}

@media (max-width: 767px) {
  .sm_order_6 {
    order: 6;
  }
}

@media (max-width: 767px) {
  .sm_order_7 {
    order: 7;
  }
}

@media (max-width: 767px) {
  .sm_order_8 {
    order: 8;
  }
}

.display_block {
  display: block !important;
}

.display_inline_block {
  display: inline-block;
}

.display_flex {
  display: flex !important;
}

.display_grid {
  display: grid !important;
}

.display_none {
  display: none !important;
}

.fw100 {
  font-weight: 100 !important;
}

.fw300 {
  font-weight: 300 !important;
}

.fw400 {
  font-weight: 400 !important;
}

.fw500 {
  font-weight: 500 !important;
}

.fw600 {
  font-weight: 600 !important;
}

.fw700 {
  font-weight: 700 !important;
}

.lh120 {
  line-height: 120% !important;
}

.lh130 {
  line-height: 130% !important;
}

.lh140 {
  line-height: 140% !important;
}

.lh150 {
  line-height: 150% !important;
}

.lh160 {
  line-height: 160% !important;
}

.lh170 {
  line-height: 170% !important;
}

.lh180 {
  line-height: 180% !important;
}

.italic {
  font-style: italic;
}

.ff_inter,
.inter,
.Inter {
  font-family: "Inter" !important;
}

.ff_poppins,
.poppins,
.Poppins {
  font-family: "Poppins" !important;
}

@media (max-width: 1699px) {
  .hide_lg {
    display: none !important;
  }
}

@media (max-width: 1300px) {
  .hide_lm {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hide_md {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hide_sm {
    display: none !important;
  }
}

@media (max-width: 639px) {
  .hide_xs {
    display: none !important;
  }
}

@media (max-width: 479px) {
  .hide_xxs {
    display: none !important;
  }
}

.show_sm {
  display: none !important;
}
@media (max-width: 767px) {
  .show_sm {
    display: block !important;
  }
}

.show_xs {
  display: none !important;
}
@media (max-width: 639px) {
  .show_xs {
    display: block !important;
  }
}

.show_xxs {
  display: none !important;
}
@media (max-width: 479px) {
  .show_xxs {
    display: block !important;
  }
}

.margin_auto,
.m_a {
  margin-left: auto;
  margin-right: auto;
}

.text_center,
.t_c {
  text-align: center !important;
}

.text_left,
.t_l {
  text-align: left !important;
}

.br6 {
  border-radius: 6px;
}

.br8 {
  border-radius: 8px;
}

.cursor_pointer {
  cursor: pointer;
}

.no_click_wrap {
  pointer-events: none;
}
.no_click_wrap * {
  pointer-events: none;
}

.img_center {
  display: block;
  text-align: center;
}

.h1,
.h64,
.h2,
.h56,
.h3,
.h48,
.sq25_3_reasons .item p:nth-child(1),
.v_short .sq25_form_descr h2,
.h4,
.h40,
.rec25_bnt_top_stats .item span:nth-child(1),
.upsel_price_build .price_block .mid .price,
.upsell_2025_stats p span:nth-child(1),
.sq25_success .slider_quote_reviews .rev .descr .copy,
body .step_1 b,
body .step_2 b,
body .step_3 b,
#banner.pre_smmt .bnr_top h1,
.reg_form h2,
.h5,
.h32,
.upsell_content_reviews .reviews_wrap .review .quote,
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl,
.showcase_steps .wrap .step .ttl,
.sls_modern_way .wrap .item p,
.circle_content_steps .wrap .step .ttl,
#banner.pre_smmt .bnr_top.bnr_fs_25 h1,
#banner.pre_smmt .bnr_top.bnr_ps_25 h1,
.h6,
.h26 {
  letter-spacing: 0;
  line-height: 120%;
  margin-bottom: 0;
  font-family: "Poppins";
}

.h1,
.h64 {
  font-size: 64px !important;
}
@media (max-width: 1300px) {
  .h1,
  .h64 {
    font-size: 56px !important;
  }
}
@media (max-width: 991px) {
  .h1,
  .h64 {
    font-size: 48px !important;
  }
}
@media (max-width: 767px) {
  .h1,
  .h64 {
    font-size: 40px !important;
  }
}
@media (max-width: 639px) {
  .h1,
  .h64 {
    font-size: 32px !important;
  }
}
@media (max-width: 479px) {
  .h1,
  .h64 {
    font-size: 26px !important;
  }
}

.h2,
.h56 {
  font-size: 56px !important;
}
@media (max-width: 1300px) {
  .h2,
  .h56 {
    font-size: 48px !important;
  }
}
@media (max-width: 991px) {
  .h2,
  .h56 {
    font-size: 42px !important;
  }
}
@media (max-width: 767px) {
  .h2,
  .h56 {
    font-size: 36px !important;
  }
}
@media (max-width: 639px) {
  .h2,
  .h56 {
    font-size: 30px !important;
  }
}
@media (max-width: 479px) {
  .h2,
  .h56 {
    font-size: 24px !important;
  }
}

.h3,
.h48,
.sq25_3_reasons .item p:nth-child(1),
.v_short .sq25_form_descr h2 {
  font-size: 48px !important;
}
@media (max-width: 1300px) {
  .h3,
  .h48,
  .sq25_3_reasons .item p:nth-child(1),
  .v_short .sq25_form_descr h2 {
    font-size: 42px !important;
  }
}
@media (max-width: 991px) {
  .h3,
  .h48,
  .sq25_3_reasons .item p:nth-child(1),
  .v_short .sq25_form_descr h2 {
    font-size: 36px !important;
  }
}
@media (max-width: 767px) {
  .h3,
  .h48,
  .sq25_3_reasons .item p:nth-child(1),
  .v_short .sq25_form_descr h2 {
    font-size: 30px !important;
  }
}
@media (max-width: 639px) {
  .h3,
  .h48,
  .sq25_3_reasons .item p:nth-child(1),
  .v_short .sq25_form_descr h2 {
    font-size: 26px !important;
  }
}
@media (max-width: 479px) {
  .h3,
  .h48,
  .sq25_3_reasons .item p:nth-child(1),
  .v_short .sq25_form_descr h2 {
    font-size: 22px !important;
  }
}

.h4,
.h40,
.rec25_bnt_top_stats .item span:nth-child(1),
.upsel_price_build .price_block .mid .price,
.upsell_2025_stats p span:nth-child(1),
.sq25_success .slider_quote_reviews .rev .descr .copy,
body .step_1 b,
body .step_2 b,
body .step_3 b,
#banner.pre_smmt .bnr_top h1,
.reg_form h2 {
  font-size: 40px !important;
}
@media (max-width: 1300px) {
  .h4,
  .h40,
  .rec25_bnt_top_stats .item span:nth-child(1),
  .upsel_price_build .price_block .mid .price,
  .upsell_2025_stats p span:nth-child(1),
  .sq25_success .slider_quote_reviews .rev .descr .copy,
  body .step_1 b,
  body .step_2 b,
  body .step_3 b,
  #banner.pre_smmt .bnr_top h1,
  .reg_form h2 {
    font-size: 36px !important;
  }
}
@media (max-width: 991px) {
  .h4,
  .h40,
  .rec25_bnt_top_stats .item span:nth-child(1),
  .upsel_price_build .price_block .mid .price,
  .upsell_2025_stats p span:nth-child(1),
  .sq25_success .slider_quote_reviews .rev .descr .copy,
  body .step_1 b,
  body .step_2 b,
  body .step_3 b,
  #banner.pre_smmt .bnr_top h1,
  .reg_form h2 {
    font-size: 32px !important;
  }
}
@media (max-width: 767px) {
  .h4,
  .h40,
  .rec25_bnt_top_stats .item span:nth-child(1),
  .upsel_price_build .price_block .mid .price,
  .upsell_2025_stats p span:nth-child(1),
  .sq25_success .slider_quote_reviews .rev .descr .copy,
  body .step_1 b,
  body .step_2 b,
  body .step_3 b,
  #banner.pre_smmt .bnr_top h1,
  .reg_form h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 639px) {
  .h4,
  .h40,
  .rec25_bnt_top_stats .item span:nth-child(1),
  .upsel_price_build .price_block .mid .price,
  .upsell_2025_stats p span:nth-child(1),
  .sq25_success .slider_quote_reviews .rev .descr .copy,
  body .step_1 b,
  body .step_2 b,
  body .step_3 b,
  #banner.pre_smmt .bnr_top h1,
  .reg_form h2 {
    font-size: 24px !important;
  }
}
@media (max-width: 479px) {
  .h4,
  .h40,
  .rec25_bnt_top_stats .item span:nth-child(1),
  .upsel_price_build .price_block .mid .price,
  .upsell_2025_stats p span:nth-child(1),
  .sq25_success .slider_quote_reviews .rev .descr .copy,
  body .step_1 b,
  body .step_2 b,
  body .step_3 b,
  #banner.pre_smmt .bnr_top h1,
  .reg_form h2 {
    font-size: 20px !important;
  }
}

.h5,
.h32,
.upsell_content_reviews .reviews_wrap .review .quote,
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl,
.showcase_steps .wrap .step .ttl,
.sls_modern_way .wrap .item p,
.circle_content_steps .wrap .step .ttl,
#banner.pre_smmt .bnr_top.bnr_fs_25 h1,
#banner.pre_smmt .bnr_top.bnr_ps_25 h1 {
  font-size: 32px !important;
}
@media (max-width: 1300px) {
  .h5,
  .h32,
  .upsell_content_reviews .reviews_wrap .review .quote,
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl,
  .showcase_steps .wrap .step .ttl,
  .sls_modern_way .wrap .item p,
  .circle_content_steps .wrap .step .ttl,
  #banner.pre_smmt .bnr_top.bnr_fs_25 h1,
  #banner.pre_smmt .bnr_top.bnr_ps_25 h1 {
    font-size: 28px !important;
  }
}
@media (max-width: 991px) {
  .h5,
  .h32,
  .upsell_content_reviews .reviews_wrap .review .quote,
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl,
  .showcase_steps .wrap .step .ttl,
  .sls_modern_way .wrap .item p,
  .circle_content_steps .wrap .step .ttl,
  #banner.pre_smmt .bnr_top.bnr_fs_25 h1,
  #banner.pre_smmt .bnr_top.bnr_ps_25 h1 {
    font-size: 24px !important;
  }
}
@media (max-width: 767px) {
  .h5,
  .h32,
  .upsell_content_reviews .reviews_wrap .review .quote,
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl,
  .showcase_steps .wrap .step .ttl,
  .sls_modern_way .wrap .item p,
  .circle_content_steps .wrap .step .ttl,
  #banner.pre_smmt .bnr_top.bnr_fs_25 h1,
  #banner.pre_smmt .bnr_top.bnr_ps_25 h1 {
    font-size: 22px !important;
  }
}
@media (max-width: 639px) {
  .h5,
  .h32,
  .upsell_content_reviews .reviews_wrap .review .quote,
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl,
  .showcase_steps .wrap .step .ttl,
  .sls_modern_way .wrap .item p,
  .circle_content_steps .wrap .step .ttl,
  #banner.pre_smmt .bnr_top.bnr_fs_25 h1,
  #banner.pre_smmt .bnr_top.bnr_ps_25 h1 {
    font-size: 20px !important;
  }
}
@media (max-width: 479px) {
  .h5,
  .h32,
  .upsell_content_reviews .reviews_wrap .review .quote,
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl,
  .showcase_steps .wrap .step .ttl,
  .sls_modern_way .wrap .item p,
  .circle_content_steps .wrap .step .ttl,
  #banner.pre_smmt .bnr_top.bnr_fs_25 h1,
  #banner.pre_smmt .bnr_top.bnr_ps_25 h1 {
    font-size: 18px !important;
  }
}

.h6,
.h26 {
  font-size: 26px !important;
}
@media (max-width: 1300px) {
  .h6,
  .h26 {
    font-size: 24px !important;
  }
}
@media (max-width: 991px) {
  .h6,
  .h26 {
    font-size: 22px !important;
  }
}
@media (max-width: 767px) {
  .h6,
  .h26 {
    font-size: 20px !important;
  }
}
@media (max-width: 639px) {
  .h6,
  .h26 {
    font-size: 18px !important;
  }
}
@media (max-width: 479px) {
  .h6,
  .h26 {
    font-size: 16px !important;
  }
}

.p1,
.p26,
.rec25_top_3 .item .descr .ttl,
.sq25_bonus_tool .body .container > p b,
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .quote,
.p2,
.p24,
.top_10_timer p,
.p3,
.p22,
.upsell_content_reviews .reviews_wrap .review .name span:nth-child(1),
.upsell_2025_content_will_transform ul li,
.upsell_content_sub_bnr_top .grey_wrap ul li,
.upsell_2025_stats p span:nth-child(2),
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub,
.sq25_3_reasons .item p:nth-child(2),
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
.showcase_steps .wrap .step .sub,
.showcase_bnr_top .top_list p,
.sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b,
.circle_content_steps .wrap .step .sub,
.circle_bnr_top .list_wrap p,
.modal_sssn .sssn_meta h1,
.ses_wrap .sssn.big .media-body .ssn_ttl,
#program_faq .card .card-body li,
#program_faq .card .card-body p,
#program_faq .card .card-header h5 span b,
.reg_form h5,
.p4,
.p18,
.rec25_top_3 .item .descr .copy,
.upsel_price_build .price_block .mid .sub,
.upsell_bnr_what_inside .items_wrap .item p:nth-child(3),
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .txt,
.sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(1),
.sq25_become_a_member .item_wrap .item,
.showcase_steps .wrap .step .txt,
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
.sl24_premium_member_body .sl24_premium_member_body_slider_features .item .txt,
.sls24_mastery_sessions .sls24_mastery_sessions_slider .item p,
.sls24_mastery_sessions .wrap,
.sls24_unlimited_access .wrap .left > p,
.sls24_unlimited_access .wrap .right > p,
.circle_content_steps .wrap .step .txt,
body.single-presenter #banner.presenter .media-body .descr p,
body.single-presenter #banner.presenter .media-body h4,
.modal_sssn .prsntrs_wrap .media .media-body h3,
body .step_1,
body .step_2,
body .step_3,
.card .card-body ul li,
#modal_golden_ticket_activated .modal-body .alert,
#modal_upgrade_required .modal-body .alert,
#modal_upgrade_premium .modal-body .alert,
#modal_upgrade_any .modal-body .alert,
#modal_upgrade_premium_3_plans .modal-body .alert,
.btn.btn-purple,
.btn.btn_purple,
.p5,
.p16,
.upsell_content_reviews .reviews_wrap .review .name span:nth-child(2),
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2),
.p6,
.p14,
.sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(2),
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2),
.submit_wrap .head .wrap .copy_selected,
.modal_sssn .prsntrs_wrap .media .media-body ul li,
.modal_sssn .sssn_meta .date_time {
  margin-bottom: 0;
  font-family: "Inter";
}

.p26, .rec25_top_3 .item .descr .ttl, .sq25_bonus_tool .body .container > p b, .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
  font-size: 26px !important;
}
@media (max-width: 1300px) {
  .p26, .rec25_top_3 .item .descr .ttl, .sq25_bonus_tool .body .container > p b, .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
    font-size: 26px !important;
  }
}
@media (max-width: 991px) {
  .p26, .rec25_top_3 .item .descr .ttl, .sq25_bonus_tool .body .container > p b, .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
    font-size: 24px !important;
  }
}
@media (max-width: 767px) {
  .p26, .rec25_top_3 .item .descr .ttl, .sq25_bonus_tool .body .container > p b, .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
    font-size: 22px !important;
  }
}
@media (max-width: 639px) {
  .p26, .rec25_top_3 .item .descr .ttl, .sq25_bonus_tool .body .container > p b, .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
    font-size: 20px !important;
  }
}
@media (max-width: 479px) {
  .p26, .rec25_top_3 .item .descr .ttl, .sq25_bonus_tool .body .container > p b, .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
    font-size: 18px !important;
  }
}

.p1,
.p24,
.top_10_timer p {
  font-size: 24px !important;
}
@media (max-width: 1300px) {
  .p1,
  .p24,
  .top_10_timer p {
    font-size: 24px !important;
  }
}
@media (max-width: 991px) {
  .p1,
  .p24,
  .top_10_timer p {
    font-size: 22px !important;
  }
}
@media (max-width: 767px) {
  .p1,
  .p24,
  .top_10_timer p {
    font-size: 20px !important;
  }
}
@media (max-width: 639px) {
  .p1,
  .p24,
  .top_10_timer p {
    font-size: 18px !important;
  }
}
@media (max-width: 479px) {
  .p1,
  .p24,
  .top_10_timer p {
    font-size: 16px !important;
  }
}

.p2,
.p22,
.upsell_content_reviews .reviews_wrap .review .name span:nth-child(1),
.upsell_2025_content_will_transform ul li,
.upsell_content_sub_bnr_top .grey_wrap ul li,
.upsell_2025_stats p span:nth-child(2),
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub,
.sq25_3_reasons .item p:nth-child(2),
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
.showcase_steps .wrap .step .sub,
.showcase_bnr_top .top_list p,
.sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b,
.circle_content_steps .wrap .step .sub,
.circle_bnr_top .list_wrap p,
.modal_sssn .sssn_meta h1,
.ses_wrap .sssn.big .media-body .ssn_ttl,
#program_faq .card .card-body li,
#program_faq .card .card-body p,
#program_faq .card .card-header h5 span b,
.reg_form h5 {
  font-size: 22px !important;
}
@media (max-width: 1300px) {
  .p2,
  .p22,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(1),
  .upsell_2025_content_will_transform ul li,
  .upsell_content_sub_bnr_top .grey_wrap ul li,
  .upsell_2025_stats p span:nth-child(2),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub,
  .sq25_3_reasons .item p:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .showcase_steps .wrap .step .sub,
  .showcase_bnr_top .top_list p,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b,
  .circle_content_steps .wrap .step .sub,
  .circle_bnr_top .list_wrap p,
  .modal_sssn .sssn_meta h1,
  .ses_wrap .sssn.big .media-body .ssn_ttl,
  #program_faq .card .card-body li,
  #program_faq .card .card-body p,
  #program_faq .card .card-header h5 span b,
  .reg_form h5 {
    font-size: 22px !important;
  }
}
@media (max-width: 991px) {
  .p2,
  .p22,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(1),
  .upsell_2025_content_will_transform ul li,
  .upsell_content_sub_bnr_top .grey_wrap ul li,
  .upsell_2025_stats p span:nth-child(2),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub,
  .sq25_3_reasons .item p:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .showcase_steps .wrap .step .sub,
  .showcase_bnr_top .top_list p,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b,
  .circle_content_steps .wrap .step .sub,
  .circle_bnr_top .list_wrap p,
  .modal_sssn .sssn_meta h1,
  .ses_wrap .sssn.big .media-body .ssn_ttl,
  #program_faq .card .card-body li,
  #program_faq .card .card-body p,
  #program_faq .card .card-header h5 span b,
  .reg_form h5 {
    font-size: 20px !important;
  }
}
@media (max-width: 767px) {
  .p2,
  .p22,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(1),
  .upsell_2025_content_will_transform ul li,
  .upsell_content_sub_bnr_top .grey_wrap ul li,
  .upsell_2025_stats p span:nth-child(2),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub,
  .sq25_3_reasons .item p:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .showcase_steps .wrap .step .sub,
  .showcase_bnr_top .top_list p,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b,
  .circle_content_steps .wrap .step .sub,
  .circle_bnr_top .list_wrap p,
  .modal_sssn .sssn_meta h1,
  .ses_wrap .sssn.big .media-body .ssn_ttl,
  #program_faq .card .card-body li,
  #program_faq .card .card-body p,
  #program_faq .card .card-header h5 span b,
  .reg_form h5 {
    font-size: 18px !important;
  }
}
@media (max-width: 639px) {
  .p2,
  .p22,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(1),
  .upsell_2025_content_will_transform ul li,
  .upsell_content_sub_bnr_top .grey_wrap ul li,
  .upsell_2025_stats p span:nth-child(2),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub,
  .sq25_3_reasons .item p:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .showcase_steps .wrap .step .sub,
  .showcase_bnr_top .top_list p,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b,
  .circle_content_steps .wrap .step .sub,
  .circle_bnr_top .list_wrap p,
  .modal_sssn .sssn_meta h1,
  .ses_wrap .sssn.big .media-body .ssn_ttl,
  #program_faq .card .card-body li,
  #program_faq .card .card-body p,
  #program_faq .card .card-header h5 span b,
  .reg_form h5 {
    font-size: 16px !important;
  }
}
@media (max-width: 479px) {
  .p2,
  .p22,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(1),
  .upsell_2025_content_will_transform ul li,
  .upsell_content_sub_bnr_top .grey_wrap ul li,
  .upsell_2025_stats p span:nth-child(2),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub,
  .sq25_3_reasons .item p:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .showcase_steps .wrap .step .sub,
  .showcase_bnr_top .top_list p,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b,
  .circle_content_steps .wrap .step .sub,
  .circle_bnr_top .list_wrap p,
  .modal_sssn .sssn_meta h1,
  .ses_wrap .sssn.big .media-body .ssn_ttl,
  #program_faq .card .card-body li,
  #program_faq .card .card-body p,
  #program_faq .card .card-header h5 span b,
  .reg_form h5 {
    font-size: 16px !important;
  }
}

.p3,
.p20,
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote,
.modal_sssn .suport_video_page_descr .title,
body .hs_form_wrap.descr_top .descr .sub {
  font-size: 20px !important;
}
@media (max-width: 1300px) {
  .p3,
  .p20,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote,
  .modal_sssn .suport_video_page_descr .title,
  body .hs_form_wrap.descr_top .descr .sub {
    font-size: 20px !important;
  }
}
@media (max-width: 991px) {
  .p3,
  .p20,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote,
  .modal_sssn .suport_video_page_descr .title,
  body .hs_form_wrap.descr_top .descr .sub {
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  .p3,
  .p20,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote,
  .modal_sssn .suport_video_page_descr .title,
  body .hs_form_wrap.descr_top .descr .sub {
    font-size: 16px !important;
  }
}
@media (max-width: 639px) {
  .p3,
  .p20,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote,
  .modal_sssn .suport_video_page_descr .title,
  body .hs_form_wrap.descr_top .descr .sub {
    font-size: 14px !important;
  }
}
@media (max-width: 479px) {
  .p3,
  .p20,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote,
  .modal_sssn .suport_video_page_descr .title,
  body .hs_form_wrap.descr_top .descr .sub {
    font-size: 14px !important;
  }
}

.p4,
.p18,
.rec25_top_3 .item .descr .copy,
.upsel_price_build .price_block .mid .sub,
.upsell_bnr_what_inside .items_wrap .item p:nth-child(3),
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .txt,
.sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(1),
.sq25_become_a_member .item_wrap .item,
.showcase_steps .wrap .step .txt,
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
.sl24_premium_member_body .sl24_premium_member_body_slider_features .item .txt,
.sls24_mastery_sessions .sls24_mastery_sessions_slider .item p,
.sls24_mastery_sessions .wrap,
.sls24_unlimited_access .wrap .left > p,
.sls24_unlimited_access .wrap .right > p,
.circle_content_steps .wrap .step .txt,
body.single-presenter #banner.presenter .media-body .descr p,
body.single-presenter #banner.presenter .media-body h4,
.modal_sssn .prsntrs_wrap .media .media-body h3,
body .step_1,
body .step_2,
body .step_3,
.card .card-body ul li,
#modal_golden_ticket_activated .modal-body .alert,
#modal_upgrade_required .modal-body .alert,
#modal_upgrade_premium .modal-body .alert,
#modal_upgrade_any .modal-body .alert,
#modal_upgrade_premium_3_plans .modal-body .alert,
.btn.btn-purple,
.btn.btn_purple {
  font-size: 18px !important;
}
@media (max-width: 1300px) {
  .p4,
  .p18,
  .rec25_top_3 .item .descr .copy,
  .upsel_price_build .price_block .mid .sub,
  .upsell_bnr_what_inside .items_wrap .item p:nth-child(3),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .txt,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(1),
  .sq25_become_a_member .item_wrap .item,
  .showcase_steps .wrap .step .txt,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .item .txt,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p,
  .sls24_mastery_sessions .wrap,
  .sls24_unlimited_access .wrap .left > p,
  .sls24_unlimited_access .wrap .right > p,
  .circle_content_steps .wrap .step .txt,
  body.single-presenter #banner.presenter .media-body .descr p,
  body.single-presenter #banner.presenter .media-body h4,
  .modal_sssn .prsntrs_wrap .media .media-body h3,
  body .step_1,
  body .step_2,
  body .step_3,
  .card .card-body ul li,
  #modal_golden_ticket_activated .modal-body .alert,
  #modal_upgrade_required .modal-body .alert,
  #modal_upgrade_premium .modal-body .alert,
  #modal_upgrade_any .modal-body .alert,
  #modal_upgrade_premium_3_plans .modal-body .alert,
  .btn.btn-purple,
  .btn.btn_purple {
    font-size: 18px !important;
  }
}
@media (max-width: 991px) {
  .p4,
  .p18,
  .rec25_top_3 .item .descr .copy,
  .upsel_price_build .price_block .mid .sub,
  .upsell_bnr_what_inside .items_wrap .item p:nth-child(3),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .txt,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(1),
  .sq25_become_a_member .item_wrap .item,
  .showcase_steps .wrap .step .txt,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .item .txt,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p,
  .sls24_mastery_sessions .wrap,
  .sls24_unlimited_access .wrap .left > p,
  .sls24_unlimited_access .wrap .right > p,
  .circle_content_steps .wrap .step .txt,
  body.single-presenter #banner.presenter .media-body .descr p,
  body.single-presenter #banner.presenter .media-body h4,
  .modal_sssn .prsntrs_wrap .media .media-body h3,
  body .step_1,
  body .step_2,
  body .step_3,
  .card .card-body ul li,
  #modal_golden_ticket_activated .modal-body .alert,
  #modal_upgrade_required .modal-body .alert,
  #modal_upgrade_premium .modal-body .alert,
  #modal_upgrade_any .modal-body .alert,
  #modal_upgrade_premium_3_plans .modal-body .alert,
  .btn.btn-purple,
  .btn.btn_purple {
    font-size: 16px !important;
  }
}
@media (max-width: 767px) {
  .p4,
  .p18,
  .rec25_top_3 .item .descr .copy,
  .upsel_price_build .price_block .mid .sub,
  .upsell_bnr_what_inside .items_wrap .item p:nth-child(3),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .txt,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(1),
  .sq25_become_a_member .item_wrap .item,
  .showcase_steps .wrap .step .txt,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .item .txt,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p,
  .sls24_mastery_sessions .wrap,
  .sls24_unlimited_access .wrap .left > p,
  .sls24_unlimited_access .wrap .right > p,
  .circle_content_steps .wrap .step .txt,
  body.single-presenter #banner.presenter .media-body .descr p,
  body.single-presenter #banner.presenter .media-body h4,
  .modal_sssn .prsntrs_wrap .media .media-body h3,
  body .step_1,
  body .step_2,
  body .step_3,
  .card .card-body ul li,
  #modal_golden_ticket_activated .modal-body .alert,
  #modal_upgrade_required .modal-body .alert,
  #modal_upgrade_premium .modal-body .alert,
  #modal_upgrade_any .modal-body .alert,
  #modal_upgrade_premium_3_plans .modal-body .alert,
  .btn.btn-purple,
  .btn.btn_purple {
    font-size: 16px !important;
  }
}
@media (max-width: 639px) {
  .p4,
  .p18,
  .rec25_top_3 .item .descr .copy,
  .upsel_price_build .price_block .mid .sub,
  .upsell_bnr_what_inside .items_wrap .item p:nth-child(3),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .txt,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(1),
  .sq25_become_a_member .item_wrap .item,
  .showcase_steps .wrap .step .txt,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .item .txt,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p,
  .sls24_mastery_sessions .wrap,
  .sls24_unlimited_access .wrap .left > p,
  .sls24_unlimited_access .wrap .right > p,
  .circle_content_steps .wrap .step .txt,
  body.single-presenter #banner.presenter .media-body .descr p,
  body.single-presenter #banner.presenter .media-body h4,
  .modal_sssn .prsntrs_wrap .media .media-body h3,
  body .step_1,
  body .step_2,
  body .step_3,
  .card .card-body ul li,
  #modal_golden_ticket_activated .modal-body .alert,
  #modal_upgrade_required .modal-body .alert,
  #modal_upgrade_premium .modal-body .alert,
  #modal_upgrade_any .modal-body .alert,
  #modal_upgrade_premium_3_plans .modal-body .alert,
  .btn.btn-purple,
  .btn.btn_purple {
    font-size: 14px !important;
  }
}
@media (max-width: 479px) {
  .p4,
  .p18,
  .rec25_top_3 .item .descr .copy,
  .upsel_price_build .price_block .mid .sub,
  .upsell_bnr_what_inside .items_wrap .item p:nth-child(3),
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .txt,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(1),
  .sq25_become_a_member .item_wrap .item,
  .showcase_steps .wrap .step .txt,
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1),
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .item .txt,
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p,
  .sls24_mastery_sessions .wrap,
  .sls24_unlimited_access .wrap .left > p,
  .sls24_unlimited_access .wrap .right > p,
  .circle_content_steps .wrap .step .txt,
  body.single-presenter #banner.presenter .media-body .descr p,
  body.single-presenter #banner.presenter .media-body h4,
  .modal_sssn .prsntrs_wrap .media .media-body h3,
  body .step_1,
  body .step_2,
  body .step_3,
  .card .card-body ul li,
  #modal_golden_ticket_activated .modal-body .alert,
  #modal_upgrade_required .modal-body .alert,
  #modal_upgrade_premium .modal-body .alert,
  #modal_upgrade_any .modal-body .alert,
  #modal_upgrade_premium_3_plans .modal-body .alert,
  .btn.btn-purple,
  .btn.btn_purple {
    font-size: 14px !important;
  }
}

.p5,
.p16,
.upsell_content_reviews .reviews_wrap .review .name span:nth-child(2),
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2) {
  font-size: 16px !important;
}
@media (max-width: 1300px) {
  .p5,
  .p16,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2) {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .p5,
  .p16,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2) {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .p5,
  .p16,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2) {
    font-size: 14px !important;
  }
}
@media (max-width: 639px) {
  .p5,
  .p16,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2) {
    font-size: 12px !important;
  }
}
@media (max-width: 479px) {
  .p5,
  .p16,
  .upsell_content_reviews .reviews_wrap .review .name span:nth-child(2),
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2) {
    font-size: 12px !important;
  }
}

.p6,
.p14,
.sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(2),
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2),
.submit_wrap .head .wrap .copy_selected,
.modal_sssn .prsntrs_wrap .media .media-body ul li,
.modal_sssn .sssn_meta .date_time {
  font-size: 14px !important;
}
@media (max-width: 1300px) {
  .p6,
  .p14,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(2),
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2),
  .submit_wrap .head .wrap .copy_selected,
  .modal_sssn .prsntrs_wrap .media .media-body ul li,
  .modal_sssn .sssn_meta .date_time {
    font-size: 14px !important;
  }
}
@media (max-width: 991px) {
  .p6,
  .p14,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(2),
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2),
  .submit_wrap .head .wrap .copy_selected,
  .modal_sssn .prsntrs_wrap .media .media-body ul li,
  .modal_sssn .sssn_meta .date_time {
    font-size: 12px !important;
  }
}
@media (max-width: 767px) {
  .p6,
  .p14,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(2),
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2),
  .submit_wrap .head .wrap .copy_selected,
  .modal_sssn .prsntrs_wrap .media .media-body ul li,
  .modal_sssn .sssn_meta .date_time {
    font-size: 12px !important;
  }
}
@media (max-width: 639px) {
  .p6,
  .p14,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(2),
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2),
  .submit_wrap .head .wrap .copy_selected,
  .modal_sssn .prsntrs_wrap .media .media-body ul li,
  .modal_sssn .sssn_meta .date_time {
    font-size: 10px !important;
  }
}
@media (max-width: 479px) {
  .p6,
  .p14,
  .sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(2),
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2),
  .submit_wrap .head .wrap .copy_selected,
  .modal_sssn .prsntrs_wrap .media .media-body ul li,
  .modal_sssn .sssn_meta .date_time {
    font-size: 10px !important;
  }
}

.p12, .rec25_top_3 .item .descr .sub {
  font-size: 12px !important;
}
@media (max-width: 1300px) {
  .p12, .rec25_top_3 .item .descr .sub {
    font-size: 12px !important;
  }
}
@media (max-width: 991px) {
  .p12, .rec25_top_3 .item .descr .sub {
    font-size: 10px !important;
  }
}
@media (max-width: 767px) {
  .p12, .rec25_top_3 .item .descr .sub {
    font-size: 10px !important;
  }
}
@media (max-width: 639px) {
  .p12, .rec25_top_3 .item .descr .sub {
    font-size: 10px !important;
  }
}
@media (max-width: 479px) {
  .p12, .rec25_top_3 .item .descr .sub {
    font-size: 8px !important;
  }
}

.mt_0,
.mt0 {
  margin-top: 0px !important;
}

.mt_5,
.mt5 {
  margin-top: 5px !important;
}
@media (max-width: 1300px) {
  .mt_5,
  .mt5 {
    margin-top: 4px !important;
  }
}
@media (max-width: 991px) {
  .mt_5,
  .mt5 {
    margin-top: 3px !important;
  }
}
@media (max-width: 767px) {
  .mt_5,
  .mt5 {
    margin-top: 2px !important;
  }
}
@media (max-width: 639px) {
  .mt_5,
  .mt5 {
    margin-top: 1px !important;
  }
}
@media (max-width: 479px) {
  .mt_5,
  .mt5 {
    margin-top: 0px !important;
  }
}

.mt_10,
.mt10 {
  margin-top: 10px !important;
}
@media (max-width: 1300px) {
  .mt_10,
  .mt10 {
    margin-top: 8px !important;
  }
}
@media (max-width: 991px) {
  .mt_10,
  .mt10 {
    margin-top: 6px !important;
  }
}
@media (max-width: 767px) {
  .mt_10,
  .mt10 {
    margin-top: 4px !important;
  }
}
@media (max-width: 639px) {
  .mt_10,
  .mt10 {
    margin-top: 3px !important;
  }
}
@media (max-width: 479px) {
  .mt_10,
  .mt10 {
    margin-top: 2px !important;
  }
}

.mt_15,
.mt15 {
  margin-top: 15px !important;
}
@media (max-width: 1300px) {
  .mt_15,
  .mt15 {
    margin-top: 12px !important;
  }
}
@media (max-width: 991px) {
  .mt_15,
  .mt15 {
    margin-top: 10px !important;
  }
}
@media (max-width: 767px) {
  .mt_15,
  .mt15 {
    margin-top: 8px !important;
  }
}
@media (max-width: 639px) {
  .mt_15,
  .mt15 {
    margin-top: 6px !important;
  }
}
@media (max-width: 479px) {
  .mt_15,
  .mt15 {
    margin-top: 4px !important;
  }
}

.mt_20,
.mt20 {
  margin-top: 20px !important;
}
@media (max-width: 1300px) {
  .mt_20,
  .mt20 {
    margin-top: 16px !important;
  }
}
@media (max-width: 991px) {
  .mt_20,
  .mt20 {
    margin-top: 12px !important;
  }
}
@media (max-width: 767px) {
  .mt_20,
  .mt20 {
    margin-top: 10px !important;
  }
}
@media (max-width: 639px) {
  .mt_20,
  .mt20 {
    margin-top: 8px !important;
  }
}
@media (max-width: 479px) {
  .mt_20,
  .mt20 {
    margin-top: 6px !important;
  }
}

.mt_25,
.mt25 {
  margin-top: 25px !important;
}
@media (max-width: 1300px) {
  .mt_25,
  .mt25 {
    margin-top: 20px !important;
  }
}
@media (max-width: 991px) {
  .mt_25,
  .mt25 {
    margin-top: 16px !important;
  }
}
@media (max-width: 767px) {
  .mt_25,
  .mt25 {
    margin-top: 12px !important;
  }
}
@media (max-width: 639px) {
  .mt_25,
  .mt25 {
    margin-top: 10px !important;
  }
}
@media (max-width: 479px) {
  .mt_25,
  .mt25 {
    margin-top: 8px !important;
  }
}

.mt_30,
.mt30 {
  margin-top: 30px !important;
}
@media (max-width: 1300px) {
  .mt_30,
  .mt30 {
    margin-top: 25px !important;
  }
}
@media (max-width: 991px) {
  .mt_30,
  .mt30 {
    margin-top: 20px !important;
  }
}
@media (max-width: 767px) {
  .mt_30,
  .mt30 {
    margin-top: 16px !important;
  }
}
@media (max-width: 639px) {
  .mt_30,
  .mt30 {
    margin-top: 12px !important;
  }
}
@media (max-width: 479px) {
  .mt_30,
  .mt30 {
    margin-top: 10px !important;
  }
}

.mt_40,
.mt40 {
  margin-top: 40px !important;
}
@media (max-width: 1300px) {
  .mt_40,
  .mt40 {
    margin-top: 30px !important;
  }
}
@media (max-width: 991px) {
  .mt_40,
  .mt40 {
    margin-top: 25px !important;
  }
}
@media (max-width: 767px) {
  .mt_40,
  .mt40 {
    margin-top: 20px !important;
  }
}
@media (max-width: 639px) {
  .mt_40,
  .mt40 {
    margin-top: 16px !important;
  }
}
@media (max-width: 479px) {
  .mt_40,
  .mt40 {
    margin-top: 12px !important;
  }
}

.mt_50,
.mt50 {
  margin-top: 50px !important;
}
@media (max-width: 1300px) {
  .mt_50,
  .mt50 {
    margin-top: 40px !important;
  }
}
@media (max-width: 991px) {
  .mt_50,
  .mt50 {
    margin-top: 30px !important;
  }
}
@media (max-width: 767px) {
  .mt_50,
  .mt50 {
    margin-top: 25px !important;
  }
}
@media (max-width: 639px) {
  .mt_50,
  .mt50 {
    margin-top: 20px !important;
  }
}
@media (max-width: 479px) {
  .mt_50,
  .mt50 {
    margin-top: 16px !important;
  }
}

.mt_60,
.mt60 {
  margin-top: 60px !important;
}
@media (max-width: 1300px) {
  .mt_60,
  .mt60 {
    margin-top: 50px !important;
  }
}
@media (max-width: 991px) {
  .mt_60,
  .mt60 {
    margin-top: 40px !important;
  }
}
@media (max-width: 767px) {
  .mt_60,
  .mt60 {
    margin-top: 30px !important;
  }
}
@media (max-width: 639px) {
  .mt_60,
  .mt60 {
    margin-top: 25px !important;
  }
}
@media (max-width: 479px) {
  .mt_60,
  .mt60 {
    margin-top: 20px !important;
  }
}

.mt_80,
.mt80 {
  margin-top: 80px !important;
}
@media (max-width: 1300px) {
  .mt_80,
  .mt80 {
    margin-top: 60px !important;
  }
}
@media (max-width: 991px) {
  .mt_80,
  .mt80 {
    margin-top: 50px !important;
  }
}
@media (max-width: 767px) {
  .mt_80,
  .mt80 {
    margin-top: 40px !important;
  }
}
@media (max-width: 639px) {
  .mt_80,
  .mt80 {
    margin-top: 30px !important;
  }
}
@media (max-width: 479px) {
  .mt_80,
  .mt80 {
    margin-top: 25px !important;
  }
}

.mt_100,
.mt100 {
  margin-top: 100px !important;
}
@media (max-width: 1300px) {
  .mt_100,
  .mt100 {
    margin-top: 80px !important;
  }
}
@media (max-width: 991px) {
  .mt_100,
  .mt100 {
    margin-top: 60px !important;
  }
}
@media (max-width: 767px) {
  .mt_100,
  .mt100 {
    margin-top: 50px !important;
  }
}
@media (max-width: 639px) {
  .mt_100,
  .mt100 {
    margin-top: 40px !important;
  }
}
@media (max-width: 479px) {
  .mt_100,
  .mt100 {
    margin-top: 30px !important;
  }
}

.mt_120,
.mt120 {
  margin-top: 120px !important;
}
@media (max-width: 1300px) {
  .mt_120,
  .mt120 {
    margin-top: 100px !important;
  }
}
@media (max-width: 991px) {
  .mt_120,
  .mt120 {
    margin-top: 80px !important;
  }
}
@media (max-width: 767px) {
  .mt_120,
  .mt120 {
    margin-top: 60px !important;
  }
}
@media (max-width: 639px) {
  .mt_120,
  .mt120 {
    margin-top: 50px !important;
  }
}
@media (max-width: 479px) {
  .mt_120,
  .mt120 {
    margin-top: 40px !important;
  }
}

.mt_160,
.mt160 {
  margin-top: 160px !important;
}
@media (max-width: 1300px) {
  .mt_160,
  .mt160 {
    margin-top: 120px !important;
  }
}
@media (max-width: 991px) {
  .mt_160,
  .mt160 {
    margin-top: 100px !important;
  }
}
@media (max-width: 767px) {
  .mt_160,
  .mt160 {
    margin-top: 80px !important;
  }
}
@media (max-width: 639px) {
  .mt_160,
  .mt160 {
    margin-top: 60px !important;
  }
}
@media (max-width: 479px) {
  .mt_160,
  .mt160 {
    margin-top: 50px !important;
  }
}

.mt_200,
.mt200 {
  margin-top: 200px !important;
}
@media (max-width: 1300px) {
  .mt_200,
  .mt200 {
    margin-top: 160px !important;
  }
}
@media (max-width: 991px) {
  .mt_200,
  .mt200 {
    margin-top: 120px !important;
  }
}
@media (max-width: 767px) {
  .mt_200,
  .mt200 {
    margin-top: 100px !important;
  }
}
@media (max-width: 639px) {
  .mt_200,
  .mt200 {
    margin-top: 80px !important;
  }
}
@media (max-width: 479px) {
  .mt_200,
  .mt200 {
    margin-top: 60px !important;
  }
}

.mt_250,
.mt250 {
  margin-top: 250px !important;
}
@media (max-width: 1300px) {
  .mt_250,
  .mt250 {
    margin-top: 200px !important;
  }
}
@media (max-width: 991px) {
  .mt_250,
  .mt250 {
    margin-top: 160px !important;
  }
}
@media (max-width: 767px) {
  .mt_250,
  .mt250 {
    margin-top: 120px !important;
  }
}
@media (max-width: 639px) {
  .mt_250,
  .mt250 {
    margin-top: 100px !important;
  }
}
@media (max-width: 479px) {
  .mt_250,
  .mt250 {
    margin-top: 80px !important;
  }
}

.mt_300,
.mt300 {
  margin-top: 300px !important;
}
@media (max-width: 1300px) {
  .mt_300,
  .mt300 {
    margin-top: 250px !important;
  }
}
@media (max-width: 991px) {
  .mt_300,
  .mt300 {
    margin-top: 200px !important;
  }
}
@media (max-width: 767px) {
  .mt_300,
  .mt300 {
    margin-top: 160px !important;
  }
}
@media (max-width: 639px) {
  .mt_300,
  .mt300 {
    margin-top: 120px !important;
  }
}
@media (max-width: 479px) {
  .mt_300,
  .mt300 {
    margin-top: 100px !important;
  }
}

.mb_0,
.mb0 {
  margin-bottom: 0px !important;
}

.mb_5,
.mb5 {
  margin-bottom: 5px !important;
}
@media (max-width: 1300px) {
  .mb_5,
  .mb5 {
    margin-bottom: 4px !important;
  }
}
@media (max-width: 991px) {
  .mb_5,
  .mb5 {
    margin-bottom: 3px !important;
  }
}
@media (max-width: 767px) {
  .mb_5,
  .mb5 {
    margin-bottom: 2px !important;
  }
}
@media (max-width: 639px) {
  .mb_5,
  .mb5 {
    margin-bottom: 1px !important;
  }
}
@media (max-width: 479px) {
  .mb_5,
  .mb5 {
    margin-bottom: 0px !important;
  }
}

.mb_10,
.mb10 {
  margin-bottom: 10px !important;
}
@media (max-width: 1300px) {
  .mb_10,
  .mb10 {
    margin-bottom: 8px !important;
  }
}
@media (max-width: 991px) {
  .mb_10,
  .mb10 {
    margin-bottom: 6px !important;
  }
}
@media (max-width: 767px) {
  .mb_10,
  .mb10 {
    margin-bottom: 4px !important;
  }
}
@media (max-width: 639px) {
  .mb_10,
  .mb10 {
    margin-bottom: 3px !important;
  }
}
@media (max-width: 479px) {
  .mb_10,
  .mb10 {
    margin-bottom: 2px !important;
  }
}

.mb_15,
.mb15 {
  margin-bottom: 15px !important;
}
@media (max-width: 1300px) {
  .mb_15,
  .mb15 {
    margin-bottom: 12px !important;
  }
}
@media (max-width: 991px) {
  .mb_15,
  .mb15 {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 767px) {
  .mb_15,
  .mb15 {
    margin-bottom: 8px !important;
  }
}
@media (max-width: 639px) {
  .mb_15,
  .mb15 {
    margin-bottom: 6px !important;
  }
}
@media (max-width: 479px) {
  .mb_15,
  .mb15 {
    margin-bottom: 4px !important;
  }
}

.mb_20,
.mb20 {
  margin-bottom: 20px !important;
}
@media (max-width: 1300px) {
  .mb_20,
  .mb20 {
    margin-bottom: 16px !important;
  }
}
@media (max-width: 991px) {
  .mb_20,
  .mb20 {
    margin-bottom: 12px !important;
  }
}
@media (max-width: 767px) {
  .mb_20,
  .mb20 {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 639px) {
  .mb_20,
  .mb20 {
    margin-bottom: 8px !important;
  }
}
@media (max-width: 479px) {
  .mb_20,
  .mb20 {
    margin-bottom: 6px !important;
  }
}

.mb_25,
.mb25 {
  margin-bottom: 25px !important;
}
@media (max-width: 1300px) {
  .mb_25,
  .mb25 {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 991px) {
  .mb_25,
  .mb25 {
    margin-bottom: 16px !important;
  }
}
@media (max-width: 767px) {
  .mb_25,
  .mb25 {
    margin-bottom: 12px !important;
  }
}
@media (max-width: 639px) {
  .mb_25,
  .mb25 {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 479px) {
  .mb_25,
  .mb25 {
    margin-bottom: 8px !important;
  }
}

.mb_30,
.mb30 {
  margin-bottom: 30px !important;
}
@media (max-width: 1300px) {
  .mb_30,
  .mb30 {
    margin-bottom: 25px !important;
  }
}
@media (max-width: 991px) {
  .mb_30,
  .mb30 {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 767px) {
  .mb_30,
  .mb30 {
    margin-bottom: 16px !important;
  }
}
@media (max-width: 639px) {
  .mb_30,
  .mb30 {
    margin-bottom: 12px !important;
  }
}
@media (max-width: 479px) {
  .mb_30,
  .mb30 {
    margin-bottom: 10px !important;
  }
}

.mb_40,
.mb40 {
  margin-bottom: 40px !important;
}
@media (max-width: 1300px) {
  .mb_40,
  .mb40 {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 991px) {
  .mb_40,
  .mb40 {
    margin-bottom: 25px !important;
  }
}
@media (max-width: 767px) {
  .mb_40,
  .mb40 {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 639px) {
  .mb_40,
  .mb40 {
    margin-bottom: 16px !important;
  }
}
@media (max-width: 479px) {
  .mb_40,
  .mb40 {
    margin-bottom: 12px !important;
  }
}

.mb_50,
.mb50 {
  margin-bottom: 50px !important;
}
@media (max-width: 1300px) {
  .mb_50,
  .mb50 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 991px) {
  .mb_50,
  .mb50 {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .mb_50,
  .mb50 {
    margin-bottom: 25px !important;
  }
}
@media (max-width: 639px) {
  .mb_50,
  .mb50 {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 479px) {
  .mb_50,
  .mb50 {
    margin-bottom: 16px !important;
  }
}

.mb_60,
.mb60 {
  margin-bottom: 60px !important;
}
@media (max-width: 1300px) {
  .mb_60,
  .mb60 {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 991px) {
  .mb_60,
  .mb60 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 767px) {
  .mb_60,
  .mb60 {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 639px) {
  .mb_60,
  .mb60 {
    margin-bottom: 25px !important;
  }
}
@media (max-width: 479px) {
  .mb_60,
  .mb60 {
    margin-bottom: 20px !important;
  }
}

.mb_80,
.mb80 {
  margin-bottom: 80px !important;
}
@media (max-width: 1300px) {
  .mb_80,
  .mb80 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 991px) {
  .mb_80,
  .mb80 {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 767px) {
  .mb_80,
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 639px) {
  .mb_80,
  .mb80 {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 479px) {
  .mb_80,
  .mb80 {
    margin-bottom: 25px !important;
  }
}

.mb_100,
.mb100 {
  margin-bottom: 100px !important;
}
@media (max-width: 1300px) {
  .mb_100,
  .mb100 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .mb_100,
  .mb100 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .mb_100,
  .mb100 {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 639px) {
  .mb_100,
  .mb100 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 479px) {
  .mb_100,
  .mb100 {
    margin-bottom: 30px !important;
  }
}

.mb_120,
.mb120 {
  margin-bottom: 120px !important;
}
@media (max-width: 1300px) {
  .mb_120,
  .mb120 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 991px) {
  .mb_120,
  .mb120 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 767px) {
  .mb_120,
  .mb120 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 639px) {
  .mb_120,
  .mb120 {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 479px) {
  .mb_120,
  .mb120 {
    margin-bottom: 40px !important;
  }
}

.mb_160,
.mb160 {
  margin-bottom: 160px !important;
}
@media (max-width: 1300px) {
  .mb_160,
  .mb160 {
    margin-bottom: 120px !important;
  }
}
@media (max-width: 991px) {
  .mb_160,
  .mb160 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 767px) {
  .mb_160,
  .mb160 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 639px) {
  .mb_160,
  .mb160 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 479px) {
  .mb_160,
  .mb160 {
    margin-bottom: 50px !important;
  }
}

.mb_200,
.mb200 {
  margin-bottom: 200px !important;
}
@media (max-width: 1300px) {
  .mb_200,
  .mb200 {
    margin-bottom: 160px !important;
  }
}
@media (max-width: 991px) {
  .mb_200,
  .mb200 {
    margin-bottom: 120px !important;
  }
}
@media (max-width: 767px) {
  .mb_200,
  .mb200 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 639px) {
  .mb_200,
  .mb200 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 479px) {
  .mb_200,
  .mb200 {
    margin-bottom: 60px !important;
  }
}

.mb_250,
.mb250 {
  margin-bottom: 250px !important;
}
@media (max-width: 1300px) {
  .mb_250,
  .mb250 {
    margin-bottom: 200px !important;
  }
}
@media (max-width: 991px) {
  .mb_250,
  .mb250 {
    margin-bottom: 160px !important;
  }
}
@media (max-width: 767px) {
  .mb_250,
  .mb250 {
    margin-bottom: 120px !important;
  }
}
@media (max-width: 639px) {
  .mb_250,
  .mb250 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 479px) {
  .mb_250,
  .mb250 {
    margin-bottom: 80px !important;
  }
}

.mb_300,
.mb300 {
  margin-bottom: 300px !important;
}
@media (max-width: 1300px) {
  .mb_300,
  .mb300 {
    margin-bottom: 250px !important;
  }
}
@media (max-width: 991px) {
  .mb_300,
  .mb300 {
    margin-bottom: 200px !important;
  }
}
@media (max-width: 767px) {
  .mb_300,
  .mb300 {
    margin-bottom: 160px !important;
  }
}
@media (max-width: 639px) {
  .mb_300,
  .mb300 {
    margin-bottom: 120px !important;
  }
}
@media (max-width: 479px) {
  .mb_300,
  .mb300 {
    margin-bottom: 100px !important;
  }
}

.pt_0,
.pt0 {
  padding-top: 0px !important;
}

.pt_5,
.pt5 {
  padding-top: 5px !important;
}
@media (max-width: 1300px) {
  .pt_5,
  .pt5 {
    padding-top: 4px !important;
  }
}
@media (max-width: 991px) {
  .pt_5,
  .pt5 {
    padding-top: 3px !important;
  }
}
@media (max-width: 767px) {
  .pt_5,
  .pt5 {
    padding-top: 2px !important;
  }
}
@media (max-width: 639px) {
  .pt_5,
  .pt5 {
    padding-top: 1px !important;
  }
}
@media (max-width: 479px) {
  .pt_5,
  .pt5 {
    padding-top: 0px !important;
  }
}

.pt_10,
.pt10 {
  padding-top: 10px !important;
}
@media (max-width: 1300px) {
  .pt_10,
  .pt10 {
    padding-top: 8px !important;
  }
}
@media (max-width: 991px) {
  .pt_10,
  .pt10 {
    padding-top: 6px !important;
  }
}
@media (max-width: 767px) {
  .pt_10,
  .pt10 {
    padding-top: 4px !important;
  }
}
@media (max-width: 639px) {
  .pt_10,
  .pt10 {
    padding-top: 3px !important;
  }
}
@media (max-width: 479px) {
  .pt_10,
  .pt10 {
    padding-top: 2px !important;
  }
}

.pt_15,
.pt15 {
  padding-top: 15px !important;
}
@media (max-width: 1300px) {
  .pt_15,
  .pt15 {
    padding-top: 12px !important;
  }
}
@media (max-width: 991px) {
  .pt_15,
  .pt15 {
    padding-top: 10px !important;
  }
}
@media (max-width: 767px) {
  .pt_15,
  .pt15 {
    padding-top: 8px !important;
  }
}
@media (max-width: 639px) {
  .pt_15,
  .pt15 {
    padding-top: 6px !important;
  }
}
@media (max-width: 479px) {
  .pt_15,
  .pt15 {
    padding-top: 4px !important;
  }
}

.pt_20,
.pt20 {
  padding-top: 20px !important;
}
@media (max-width: 1300px) {
  .pt_20,
  .pt20 {
    padding-top: 16px !important;
  }
}
@media (max-width: 991px) {
  .pt_20,
  .pt20 {
    padding-top: 12px !important;
  }
}
@media (max-width: 767px) {
  .pt_20,
  .pt20 {
    padding-top: 10px !important;
  }
}
@media (max-width: 639px) {
  .pt_20,
  .pt20 {
    padding-top: 8px !important;
  }
}
@media (max-width: 479px) {
  .pt_20,
  .pt20 {
    padding-top: 6px !important;
  }
}

.pt_25,
.pt25 {
  padding-top: 25px !important;
}
@media (max-width: 1300px) {
  .pt_25,
  .pt25 {
    padding-top: 20px !important;
  }
}
@media (max-width: 991px) {
  .pt_25,
  .pt25 {
    padding-top: 16px !important;
  }
}
@media (max-width: 767px) {
  .pt_25,
  .pt25 {
    padding-top: 12px !important;
  }
}
@media (max-width: 639px) {
  .pt_25,
  .pt25 {
    padding-top: 10px !important;
  }
}
@media (max-width: 479px) {
  .pt_25,
  .pt25 {
    padding-top: 8px !important;
  }
}

.pt_30,
.pt30 {
  padding-top: 30px !important;
}
@media (max-width: 1300px) {
  .pt_30,
  .pt30 {
    padding-top: 25px !important;
  }
}
@media (max-width: 991px) {
  .pt_30,
  .pt30 {
    padding-top: 20px !important;
  }
}
@media (max-width: 767px) {
  .pt_30,
  .pt30 {
    padding-top: 16px !important;
  }
}
@media (max-width: 639px) {
  .pt_30,
  .pt30 {
    padding-top: 12px !important;
  }
}
@media (max-width: 479px) {
  .pt_30,
  .pt30 {
    padding-top: 10px !important;
  }
}

.pt_40,
.pt40 {
  padding-top: 40px !important;
}
@media (max-width: 1300px) {
  .pt_40,
  .pt40 {
    padding-top: 30px !important;
  }
}
@media (max-width: 991px) {
  .pt_40,
  .pt40 {
    padding-top: 25px !important;
  }
}
@media (max-width: 767px) {
  .pt_40,
  .pt40 {
    padding-top: 20px !important;
  }
}
@media (max-width: 639px) {
  .pt_40,
  .pt40 {
    padding-top: 16px !important;
  }
}
@media (max-width: 479px) {
  .pt_40,
  .pt40 {
    padding-top: 12px !important;
  }
}

.pt_50,
.pt50 {
  padding-top: 50px !important;
}
@media (max-width: 1300px) {
  .pt_50,
  .pt50 {
    padding-top: 40px !important;
  }
}
@media (max-width: 991px) {
  .pt_50,
  .pt50 {
    padding-top: 30px !important;
  }
}
@media (max-width: 767px) {
  .pt_50,
  .pt50 {
    padding-top: 25px !important;
  }
}
@media (max-width: 639px) {
  .pt_50,
  .pt50 {
    padding-top: 20px !important;
  }
}
@media (max-width: 479px) {
  .pt_50,
  .pt50 {
    padding-top: 16px !important;
  }
}

.pt_60, #modal_golden_ticket_activated .modal-body,
#modal_upgrade_required .modal-body,
#modal_upgrade_premium .modal-body,
#modal_upgrade_any .modal-body,
#modal_upgrade_premium_3_plans .modal-body,
.pt60 {
  padding-top: 60px !important;
}
@media (max-width: 1300px) {
  .pt_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pt60 {
    padding-top: 50px !important;
  }
}
@media (max-width: 991px) {
  .pt_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pt60 {
    padding-top: 40px !important;
  }
}
@media (max-width: 767px) {
  .pt_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pt60 {
    padding-top: 30px !important;
  }
}
@media (max-width: 639px) {
  .pt_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pt60 {
    padding-top: 25px !important;
  }
}
@media (max-width: 479px) {
  .pt_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pt60 {
    padding-top: 20px !important;
  }
}

.pt_80,
.pt80 {
  padding-top: 80px !important;
}
@media (max-width: 1300px) {
  .pt_80,
  .pt80 {
    padding-top: 60px !important;
  }
}
@media (max-width: 991px) {
  .pt_80,
  .pt80 {
    padding-top: 50px !important;
  }
}
@media (max-width: 767px) {
  .pt_80,
  .pt80 {
    padding-top: 40px !important;
  }
}
@media (max-width: 639px) {
  .pt_80,
  .pt80 {
    padding-top: 30px !important;
  }
}
@media (max-width: 479px) {
  .pt_80,
  .pt80 {
    padding-top: 25px !important;
  }
}

.pt_100,
.pt100 {
  padding-top: 100px !important;
}
@media (max-width: 1300px) {
  .pt_100,
  .pt100 {
    padding-top: 80px !important;
  }
}
@media (max-width: 991px) {
  .pt_100,
  .pt100 {
    padding-top: 60px !important;
  }
}
@media (max-width: 767px) {
  .pt_100,
  .pt100 {
    padding-top: 50px !important;
  }
}
@media (max-width: 639px) {
  .pt_100,
  .pt100 {
    padding-top: 40px !important;
  }
}
@media (max-width: 479px) {
  .pt_100,
  .pt100 {
    padding-top: 30px !important;
  }
}

.pt_120,
.pt120 {
  padding-top: 120px !important;
}
@media (max-width: 1300px) {
  .pt_120,
  .pt120 {
    padding-top: 100px !important;
  }
}
@media (max-width: 991px) {
  .pt_120,
  .pt120 {
    padding-top: 80px !important;
  }
}
@media (max-width: 767px) {
  .pt_120,
  .pt120 {
    padding-top: 60px !important;
  }
}
@media (max-width: 639px) {
  .pt_120,
  .pt120 {
    padding-top: 50px !important;
  }
}
@media (max-width: 479px) {
  .pt_120,
  .pt120 {
    padding-top: 40px !important;
  }
}

.pt_160,
.pt160 {
  padding-top: 160px !important;
}
@media (max-width: 1300px) {
  .pt_160,
  .pt160 {
    padding-top: 120px !important;
  }
}
@media (max-width: 991px) {
  .pt_160,
  .pt160 {
    padding-top: 100px !important;
  }
}
@media (max-width: 767px) {
  .pt_160,
  .pt160 {
    padding-top: 80px !important;
  }
}
@media (max-width: 639px) {
  .pt_160,
  .pt160 {
    padding-top: 60px !important;
  }
}
@media (max-width: 479px) {
  .pt_160,
  .pt160 {
    padding-top: 50px !important;
  }
}

.pt_200,
.pt200 {
  padding-top: 200px !important;
}
@media (max-width: 1300px) {
  .pt_200,
  .pt200 {
    padding-top: 160px !important;
  }
}
@media (max-width: 991px) {
  .pt_200,
  .pt200 {
    padding-top: 120px !important;
  }
}
@media (max-width: 767px) {
  .pt_200,
  .pt200 {
    padding-top: 100px !important;
  }
}
@media (max-width: 639px) {
  .pt_200,
  .pt200 {
    padding-top: 80px !important;
  }
}
@media (max-width: 479px) {
  .pt_200,
  .pt200 {
    padding-top: 60px !important;
  }
}

.pt_250,
.pt250 {
  padding-top: 250px !important;
}
@media (max-width: 1300px) {
  .pt_250,
  .pt250 {
    padding-top: 200px !important;
  }
}
@media (max-width: 991px) {
  .pt_250,
  .pt250 {
    padding-top: 160px !important;
  }
}
@media (max-width: 767px) {
  .pt_250,
  .pt250 {
    padding-top: 120px !important;
  }
}
@media (max-width: 639px) {
  .pt_250,
  .pt250 {
    padding-top: 100px !important;
  }
}
@media (max-width: 479px) {
  .pt_250,
  .pt250 {
    padding-top: 80px !important;
  }
}

.pt_300,
.pt300 {
  padding-top: 300px !important;
}
@media (max-width: 1300px) {
  .pt_300,
  .pt300 {
    padding-top: 250px !important;
  }
}
@media (max-width: 991px) {
  .pt_300,
  .pt300 {
    padding-top: 200px !important;
  }
}
@media (max-width: 767px) {
  .pt_300,
  .pt300 {
    padding-top: 160px !important;
  }
}
@media (max-width: 639px) {
  .pt_300,
  .pt300 {
    padding-top: 120px !important;
  }
}
@media (max-width: 479px) {
  .pt_300,
  .pt300 {
    padding-top: 100px !important;
  }
}

.pb_0,
.pb0 {
  padding-bottom: 0px !important;
}

.pb_5,
.pb5 {
  padding-bottom: 5px !important;
}
@media (max-width: 1300px) {
  .pb_5,
  .pb5 {
    padding-bottom: 4px !important;
  }
}
@media (max-width: 991px) {
  .pb_5,
  .pb5 {
    padding-bottom: 3px !important;
  }
}
@media (max-width: 767px) {
  .pb_5,
  .pb5 {
    padding-bottom: 2px !important;
  }
}
@media (max-width: 639px) {
  .pb_5,
  .pb5 {
    padding-bottom: 1px !important;
  }
}
@media (max-width: 479px) {
  .pb_5,
  .pb5 {
    padding-bottom: 0px !important;
  }
}

.pb_10,
.pb10 {
  padding-bottom: 10px !important;
}
@media (max-width: 1300px) {
  .pb_10,
  .pb10 {
    padding-bottom: 8px !important;
  }
}
@media (max-width: 991px) {
  .pb_10,
  .pb10 {
    padding-bottom: 6px !important;
  }
}
@media (max-width: 767px) {
  .pb_10,
  .pb10 {
    padding-bottom: 4px !important;
  }
}
@media (max-width: 639px) {
  .pb_10,
  .pb10 {
    padding-bottom: 3px !important;
  }
}
@media (max-width: 479px) {
  .pb_10,
  .pb10 {
    padding-bottom: 2px !important;
  }
}

.pb_15,
.pb15 {
  padding-bottom: 15px !important;
}
@media (max-width: 1300px) {
  .pb_15,
  .pb15 {
    padding-bottom: 12px !important;
  }
}
@media (max-width: 991px) {
  .pb_15,
  .pb15 {
    padding-bottom: 10px !important;
  }
}
@media (max-width: 767px) {
  .pb_15,
  .pb15 {
    padding-bottom: 8px !important;
  }
}
@media (max-width: 639px) {
  .pb_15,
  .pb15 {
    padding-bottom: 6px !important;
  }
}
@media (max-width: 479px) {
  .pb_15,
  .pb15 {
    padding-bottom: 4px !important;
  }
}

.pb_20,
.pb20 {
  padding-bottom: 20px !important;
}
@media (max-width: 1300px) {
  .pb_20,
  .pb20 {
    padding-bottom: 16px !important;
  }
}
@media (max-width: 991px) {
  .pb_20,
  .pb20 {
    padding-bottom: 12px !important;
  }
}
@media (max-width: 767px) {
  .pb_20,
  .pb20 {
    padding-bottom: 10px !important;
  }
}
@media (max-width: 639px) {
  .pb_20,
  .pb20 {
    padding-bottom: 8px !important;
  }
}
@media (max-width: 479px) {
  .pb_20,
  .pb20 {
    padding-bottom: 6px !important;
  }
}

.pb_25,
.pb25 {
  padding-bottom: 25px !important;
}
@media (max-width: 1300px) {
  .pb_25,
  .pb25 {
    padding-bottom: 20px !important;
  }
}
@media (max-width: 991px) {
  .pb_25,
  .pb25 {
    padding-bottom: 16px !important;
  }
}
@media (max-width: 767px) {
  .pb_25,
  .pb25 {
    padding-bottom: 12px !important;
  }
}
@media (max-width: 639px) {
  .pb_25,
  .pb25 {
    padding-bottom: 10px !important;
  }
}
@media (max-width: 479px) {
  .pb_25,
  .pb25 {
    padding-bottom: 8px !important;
  }
}

.pb_30, #modal_golden_ticket_activated .modal-body,
.pb30 {
  padding-bottom: 30px !important;
}
@media (max-width: 1300px) {
  .pb_30, #modal_golden_ticket_activated .modal-body,
  .pb30 {
    padding-bottom: 25px !important;
  }
}
@media (max-width: 991px) {
  .pb_30, #modal_golden_ticket_activated .modal-body,
  .pb30 {
    padding-bottom: 20px !important;
  }
}
@media (max-width: 767px) {
  .pb_30, #modal_golden_ticket_activated .modal-body,
  .pb30 {
    padding-bottom: 16px !important;
  }
}
@media (max-width: 639px) {
  .pb_30, #modal_golden_ticket_activated .modal-body,
  .pb30 {
    padding-bottom: 12px !important;
  }
}
@media (max-width: 479px) {
  .pb_30, #modal_golden_ticket_activated .modal-body,
  .pb30 {
    padding-bottom: 10px !important;
  }
}

.pb_40,
.pb40 {
  padding-bottom: 40px !important;
}
@media (max-width: 1300px) {
  .pb_40,
  .pb40 {
    padding-bottom: 30px !important;
  }
}
@media (max-width: 991px) {
  .pb_40,
  .pb40 {
    padding-bottom: 25px !important;
  }
}
@media (max-width: 767px) {
  .pb_40,
  .pb40 {
    padding-bottom: 20px !important;
  }
}
@media (max-width: 639px) {
  .pb_40,
  .pb40 {
    padding-bottom: 16px !important;
  }
}
@media (max-width: 479px) {
  .pb_40,
  .pb40 {
    padding-bottom: 12px !important;
  }
}

.pb_50,
.pb50 {
  padding-bottom: 50px !important;
}
@media (max-width: 1300px) {
  .pb_50,
  .pb50 {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 991px) {
  .pb_50,
  .pb50 {
    padding-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .pb_50,
  .pb50 {
    padding-bottom: 25px !important;
  }
}
@media (max-width: 639px) {
  .pb_50,
  .pb50 {
    padding-bottom: 20px !important;
  }
}
@media (max-width: 479px) {
  .pb_50,
  .pb50 {
    padding-bottom: 16px !important;
  }
}

.pb_60, #modal_golden_ticket_activated .modal-body,
#modal_upgrade_required .modal-body,
#modal_upgrade_premium .modal-body,
#modal_upgrade_any .modal-body,
#modal_upgrade_premium_3_plans .modal-body,
.pb60 {
  padding-bottom: 60px !important;
}
@media (max-width: 1300px) {
  .pb_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pb60 {
    padding-bottom: 50px !important;
  }
}
@media (max-width: 991px) {
  .pb_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pb60 {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 767px) {
  .pb_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pb60 {
    padding-bottom: 30px !important;
  }
}
@media (max-width: 639px) {
  .pb_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pb60 {
    padding-bottom: 25px !important;
  }
}
@media (max-width: 479px) {
  .pb_60, #modal_golden_ticket_activated .modal-body,
  #modal_upgrade_required .modal-body,
  #modal_upgrade_premium .modal-body,
  #modal_upgrade_any .modal-body,
  #modal_upgrade_premium_3_plans .modal-body,
  .pb60 {
    padding-bottom: 20px !important;
  }
}

.pb_80,
.pb80 {
  padding-bottom: 80px !important;
}
@media (max-width: 1300px) {
  .pb_80,
  .pb80 {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 991px) {
  .pb_80,
  .pb80 {
    padding-bottom: 50px !important;
  }
}
@media (max-width: 767px) {
  .pb_80,
  .pb80 {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 639px) {
  .pb_80,
  .pb80 {
    padding-bottom: 30px !important;
  }
}
@media (max-width: 479px) {
  .pb_80,
  .pb80 {
    padding-bottom: 25px !important;
  }
}

.pb_100,
.pb100 {
  padding-bottom: 100px !important;
}
@media (max-width: 1300px) {
  .pb_100,
  .pb100 {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .pb_100,
  .pb100 {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .pb_100,
  .pb100 {
    padding-bottom: 50px !important;
  }
}
@media (max-width: 639px) {
  .pb_100,
  .pb100 {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 479px) {
  .pb_100,
  .pb100 {
    padding-bottom: 30px !important;
  }
}

.pb_120,
.pb120 {
  padding-bottom: 120px !important;
}
@media (max-width: 1300px) {
  .pb_120,
  .pb120 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 991px) {
  .pb_120,
  .pb120 {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 767px) {
  .pb_120,
  .pb120 {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 639px) {
  .pb_120,
  .pb120 {
    padding-bottom: 50px !important;
  }
}
@media (max-width: 479px) {
  .pb_120,
  .pb120 {
    padding-bottom: 40px !important;
  }
}

.pb_160,
.pb160 {
  padding-bottom: 160px !important;
}
@media (max-width: 1300px) {
  .pb_160,
  .pb160 {
    padding-bottom: 120px !important;
  }
}
@media (max-width: 991px) {
  .pb_160,
  .pb160 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 767px) {
  .pb_160,
  .pb160 {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 639px) {
  .pb_160,
  .pb160 {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 479px) {
  .pb_160,
  .pb160 {
    padding-bottom: 50px !important;
  }
}

.pb_200,
.pb200 {
  padding-bottom: 200px !important;
}
@media (max-width: 1300px) {
  .pb_200,
  .pb200 {
    padding-bottom: 160px !important;
  }
}
@media (max-width: 991px) {
  .pb_200,
  .pb200 {
    padding-bottom: 120px !important;
  }
}
@media (max-width: 767px) {
  .pb_200,
  .pb200 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 639px) {
  .pb_200,
  .pb200 {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 479px) {
  .pb_200,
  .pb200 {
    padding-bottom: 60px !important;
  }
}

.pb_250,
.pb250 {
  padding-bottom: 250px !important;
}
@media (max-width: 1300px) {
  .pb_250,
  .pb250 {
    padding-bottom: 200px !important;
  }
}
@media (max-width: 991px) {
  .pb_250,
  .pb250 {
    padding-bottom: 160px !important;
  }
}
@media (max-width: 767px) {
  .pb_250,
  .pb250 {
    padding-bottom: 120px !important;
  }
}
@media (max-width: 639px) {
  .pb_250,
  .pb250 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 479px) {
  .pb_250,
  .pb250 {
    padding-bottom: 80px !important;
  }
}

.pb_300,
.pb300 {
  padding-bottom: 300px !important;
}
@media (max-width: 1300px) {
  .pb_300,
  .pb300 {
    padding-bottom: 250px !important;
  }
}
@media (max-width: 991px) {
  .pb_300,
  .pb300 {
    padding-bottom: 200px !important;
  }
}
@media (max-width: 767px) {
  .pb_300,
  .pb300 {
    padding-bottom: 160px !important;
  }
}
@media (max-width: 639px) {
  .pb_300,
  .pb300 {
    padding-bottom: 120px !important;
  }
}
@media (max-width: 479px) {
  .pb_300,
  .pb300 {
    padding-bottom: 100px !important;
  }
}

.admin-bar .mm-ocd {
  z-index: 99999;
}

.mmenu_start .m_btns {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding-top: 20px;
}
.mmenu_start .m_btns:before {
  display: none;
}
.mmenu_start .m_btns .m_login {
  color: #1d1d51;
  border: 1px solid #000;
  border-radius: 60px;
  margin-right: 18px;
}
.mmenu_start .m_btns .get_started {
  background: #5E1DE1;
  font-weight: 600;
  color: #fff;
  border: 1px solid #5E1DE1;
}
.mmenu_start .m_btns .get_started:hover {
  background: #6e33e5;
}
.mmenu_start .m_btns a {
  padding: 5px 18px;
  font-size: 12px;
  font-weight: 600;
  width: initial;
}
.mmenu_start .m_coaching_platform {
  position: relative;
  padding-top: 20px;
  padding-bottom: 55px;
  padding-right: 20px;
  background: #eaeaea;
}
.mmenu_start .m_coaching_platform > a {
  position: absolute;
  bottom: 5px;
  color: #6335C3;
}
.mmenu_start .m_coaching_platform > a:after {
  content: "" !important;
  display: block !important;
  visibility: initial !important;
  position: absolute;
  width: 16px;
  height: 11px;
  top: calc(50% - 5px);
  right: -20px;
  transition: all 0.3s;
  font-weight: 400;
  background: url(../img/icons/logo_square.svg) no-repeat 50% 50%;
}
@media (max-width: 991px) {
  .mmenu_start .m_coaching_platform > a:after {
    display: none !important;
  }
}
.mmenu_start .m_coaching_platform:before {
  display: block;
  content: "";
  position: relative;
  margin-left: 20px;
  width: calc(100% - 20px);
  max-width: 300px;
  height: 138px;
  background-size: contain;
  z-index: 1;
  background: url(../img/pages/home/platform.jpg) no-repeat 50% 50%;
  margin-bottom: 15px;
  background-size: cover;
  transform: initial;
  border: none;
  top: initial;
  left: initial;
  bottom: initial;
  right: initial;
}
.mmenu_start .m_coaching_platform:after {
  display: block;
  position: relative;
  width: 100%;
  padding-right: 20px;
  max-width: 340px;
  height: 100%;
  font-size: 10px;
  line-height: 15px;
  font-family: "Inter", serif;
  opacity: 1;
  color: #4F4F4F;
  border: none;
  content: "The all-in-one platform for enabling coaching at scale. Connect with clients and run your coaching practice efficiently in one platform.";
}
@media (max-width: 991px) {
  .mmenu_start .m_coaching_platform:after {
    max-width: 320px;
  }
}
.mmenu_start .solution_nav .sub-menu .first li a {
  position: relative;
  padding-left: 60px;
}
.mmenu_start .solution_nav .sub-menu .first li a:after {
  position: absolute;
  content: "";
  top: 7px;
  left: 15px;
  width: 32px;
  height: 32px;
  opacity: 1;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  border-radius: initial !important;
  background-position: 50% 50% !important;
  z-index: 2;
  border: none;
  outline: none;
}
.mmenu_start .solution_nav .sub-menu .first li:nth-child(1) > a:after {
  background: url(../img/icons/mm_s_1.svg);
}
.mmenu_start .solution_nav .sub-menu .first li:nth-child(2) > a:after {
  background: url(../img/icons/mm_s_2.svg);
}
.mmenu_start .solution_nav .sub-menu .first li:nth-child(3) > a:after {
  background: url(../img/icons/mm_s_3.svg);
}
.mmenu_start .solution_nav .sub-menu .second li a {
  position: relative;
  padding-left: 60px;
}
.mmenu_start .solution_nav .sub-menu .second li a:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  left: 18px;
  width: 28px;
  height: 28px;
  opacity: 1;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  border-radius: initial !important;
  background-position: 50% 50% !important;
  z-index: 2;
  border: none;
  outline: none;
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(1) > a:after {
  background: url(../img/logos/t50_badge.png);
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(2) > a:after {
  background: url(../img/icons/p_summit.svg);
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(3) > a:after {
  background: url(../img/icons/p2.png);
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(4) > a:after {
  background: url(../img/icons/p3.png);
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(5) > a:after {
  background: url(../img/icons/p4.png);
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(6) > a:after {
  background: url(../img/icons/p5_v3.svg);
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(7) > a:after {
  background: url(../img/icons/p_rd.svg);
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(8) > a:after {
  background: url(../img/icons/p_mg.svg);
}
.mmenu_start .solution_nav .sub-menu .second li:nth-child(8) > a:before {
  content: "";
  background: url(../img/icons/ico_free.svg) center/contain no-repeat;
  width: 23px;
  height: 8px;
  display: block;
  position: absolute;
  bottom: 4px;
  left: 21px;
}
@media (max-width: 432px) {
  .mmenu_start .solution_nav .sub-menu .second li:nth-child(8) > a:before {
    bottom: 12px;
  }
}

body .mm-spn.mm-spn--navbar ul:before {
  display: none;
}
body .mm-spn li:after,
body .mm-spn a:not(:last-child):after {
  border-color: #9f9f9f;
}
body .mm-spn.mm-spn--navbar:after {
  opacity: 1;
}
body .mm-spn.mm-spn--navbar.mm-spn--main:after {
  background: url(../img/logos/logo.webp) no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  content: "";
  height: 48px;
  width: 50%;
  left: 20px;
  opacity: 1;
}
body .mm-spn.mm-spn--navbar:after {
  font-weight: 600;
  color: #0f0f3d;
}
body .mm-spn li:before {
  top: 23px;
  border-color: #7844e6;
  opacity: 1;
}
body .mm-spn.mm-spn--navbar:before {
  border-color: #7844e6;
  opacity: 1;
}
body .mm-spn li a {
  padding-top: 16px;
  padding-bottom: 16px;
}
body .mm-spn li a,
body .mm-spn li a h6 {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #0f0f3d;
}
body .mm-spn li a br,
body .mm-spn li a h6 br {
  display: none;
}
body .mm-spn li a p {
  display: none;
}

.img_wr {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 5px;
  overflow: hidden;
}
.img_wr img {
  display: block;
  width: initial !important;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin: 0 !important;
}

#pre_smmt_sssns.fs .img_wr {
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

#calendar .img_wr {
  height: 100%;
}
#calendar .img_wr img {
  max-width: initial;
}

#cal-week .img_wr {
  height: 94px;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  visibility: visible;
  overflow: auto; /* Scroll on this element otherwise element can't have a padding applied properly */
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: inherit;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 7px;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 6px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.modal-dialog.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

#modal_upgrade_required.loading:before, .sq25_success .head .slider_videos_reviews #modal_upgrade_required.video.video_buffer:before, #modal_upgrade_required.loading:after, .sq25_success .head .slider_videos_reviews #modal_upgrade_required.video.video_buffer:after,
#modal_upgrade_premium.loading:before,
.sq25_success .head .slider_videos_reviews #modal_upgrade_premium.video.video_buffer:before,
#modal_upgrade_premium.loading:after,
.sq25_success .head .slider_videos_reviews #modal_upgrade_premium.video.video_buffer:after,
#modal_upgrade_any.loading:before,
.sq25_success .head .slider_videos_reviews #modal_upgrade_any.video.video_buffer:before,
#modal_upgrade_any.loading:after,
.sq25_success .head .slider_videos_reviews #modal_upgrade_any.video.video_buffer:after {
  display: none;
}
#modal_upgrade_required.loading .modal-content, .sq25_success .head .slider_videos_reviews #modal_upgrade_required.video.video_buffer .modal-content,
#modal_upgrade_premium.loading .modal-content,
.sq25_success .head .slider_videos_reviews #modal_upgrade_premium.video.video_buffer .modal-content,
#modal_upgrade_any.loading .modal-content,
.sq25_success .head .slider_videos_reviews #modal_upgrade_any.video.video_buffer .modal-content {
  position: relative;
}
#modal_upgrade_required.loading .modal-content:before, .sq25_success .head .slider_videos_reviews #modal_upgrade_required.video.video_buffer .modal-content:before,
#modal_upgrade_premium.loading .modal-content:before,
.sq25_success .head .slider_videos_reviews #modal_upgrade_premium.video.video_buffer .modal-content:before,
#modal_upgrade_any.loading .modal-content:before,
.sq25_success .head .slider_videos_reviews #modal_upgrade_any.video.video_buffer .modal-content:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 11;
  background: rgba(255, 255, 255, 0.7843137255);
}
#modal_upgrade_required.loading .modal-content:after, .sq25_success .head .slider_videos_reviews #modal_upgrade_required.video.video_buffer .modal-content:after,
#modal_upgrade_premium.loading .modal-content:after,
.sq25_success .head .slider_videos_reviews #modal_upgrade_premium.video.video_buffer .modal-content:after,
#modal_upgrade_any.loading .modal-content:after,
.sq25_success .head .slider_videos_reviews #modal_upgrade_any.video.video_buffer .modal-content:after {
  position: absolute;
  z-index: 12;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  opacity: 0.7;
  animation: lds-dual-ring 1.5s linear infinite;
}

.modal.audio audio {
  width: 100%;
}
.modal .modal-dialog {
  max-width: 725px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 767px) {
  .modal .modal-dialog {
    margin: 10px auto;
  }
}
.modal .modal-title {
  font-size: 24px;
}
@media (max-width: 991px) {
  .modal .modal-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .modal .modal-title {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  .modal .modal-title {
    font-size: 18px;
    text-align: left;
  }
}
@media (max-width: 479px) {
  .modal .modal-title {
    font-size: 16px;
  }
}
.modal .modal-content {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  border-width: 0;
}
.modal .modal-header {
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%);
  padding: 20px 15px;
  text-align: center;
  position: relative;
  display: block;
  color: #fff;
}
@media (max-width: 639px) {
  .modal .modal-header {
    padding: 8px 15px;
  }
}
.modal .modal-header h5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 0 28px;
  letter-spacing: 5px;
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .modal .modal-header h5 {
    display: none;
  }
}
.modal .modal-header h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 34px 0 25px;
}
@media (max-width: 767px) {
  .modal .modal-header h3 {
    font-size: 24px;
    margin: 10px 0;
  }
}
.modal .modal-header button {
  position: absolute;
  cursor: pointer;
  font-size: 40px;
  right: 19px;
  color: #fff;
  z-index: 1;
  opacity: 1;
  top: 13px;
}
.modal .modal-header button:hover {
  transition: all 0.3s ease-in-out;
}
.modal .modal-header button:focus {
  outline: none;
}
@media (max-width: 767px) {
  .modal .modal-header button {
    font-size: 32px;
    right: 30px;
    padding: 0;
    top: 20px;
  }
}
.modal.ty .modal-body {
  background: #e5e5e5;
  text-align: center;
}
.modal.ty .modal-body .txt_wrap {
  padding: 30px 0 35px;
}
.modal.ty .modal-body h3 {
  font-size: 26px;
  line-height: 1.45em;
  font-weight: 700;
  color: #5E1DE1;
  margin: 0;
}
@media (max-width: 767px) {
  .modal.ty .modal-body h3 {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .modal.ty .modal-body h3 {
    font-size: 22px;
  }
}
.modal.ty .modal-body p {
  font-size: 20px;
  line-height: 1.8em;
  color: #555;
  max-width: 535px;
  margin: 0 auto;
}
.modal.ty .modal-body p b {
  color: #5E1DE1;
}
@media (max-width: 767px) {
  .modal.ty .modal-body p {
    font-size: 18px;
    line-height: 1.45em;
    max-width: 480px;
  }
}
@media (max-width: 479px) {
  .modal.ty .modal-body p {
    font-size: 16px;
  }
}
.modal.rec .modal-body {
  margin: -1px 0 0;
  padding: 0;
}
.modal.cert_team .modal-dialog {
  max-width: 1100px;
}
.modal.cert_team .modal-content {
  padding: 56px 95px;
  border-radius: 0;
}
@media (max-width: 1919px) {
  .modal.cert_team .modal-content {
    padding: 30px 65px;
  }
}
@media (max-width: 1699px) {
  .modal.cert_team .modal-content {
    padding: 20px 45px;
  }
}
@media (max-width: 991px) {
  .modal.cert_team .modal-content {
    padding: 0 15px 20px;
  }
}
@media (max-width: 639px) {
  .modal.cert_team .modal-content {
    padding: 0 15px 20px;
  }
}
.modal.cert_team .modal-header {
  background: #fff;
  margin: 0 0 56px;
  border: none;
  padding: 0;
}
@media (max-width: 1919px) {
  .modal.cert_team .modal-header {
    margin: 0 0 45px;
  }
}
@media (max-width: 1699px) {
  .modal.cert_team .modal-header {
    margin: 0 0 30px;
  }
}
@media (max-width: 479px) {
  .modal.cert_team .modal-header {
    padding: 0 15px 0;
    margin: 0 -15px 20px;
  }
}
.modal.cert_team .modal-header:after {
  border-bottom: 1px solid #ddd;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 7px;
  z-index: 0;
}
@media (max-width: 639px) {
  .modal.cert_team .modal-header:after {
    display: none;
  }
}
.modal.cert_team .modal-header h4 {
  font-size: 18px;
  line-height: 1.45em;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #ddd;
  text-transform: none;
  padding: 12px 0;
  position: relative;
  letter-spacing: 0;
  background: #fff;
  text-align: left;
  display: block;
  width: initial;
  z-index: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .modal.cert_team .modal-header h4 {
    font-size: 16px;
  }
}
.modal.cert_team .modal-header button {
  font-size: 14px;
  line-height: 1.45em;
  font-weight: 700;
  color: #5E1DE1;
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  bottom: 1px;
  position: absolute;
  background: #fff;
  z-index: 2;
  margin: 0;
  right: 0;
  top: 5px;
}
@media (max-width: 479px) {
  .modal.cert_team .modal-header button {
    right: 15px;
    padding: 0;
    top: 1px;
  }
}
.modal.cert_team .modal-header button:before {
  display: inline-block;
  content: "Close ";
}
@media (max-width: 639px) {
  .modal.cert_team .modal-header button:before {
    display: none;
  }
}
.modal.cert_team .modal-header button span {
  vertical-align: bottom;
  font-size: 22px;
  margin-left: 5px;
  line-height: 1;
}
.modal.cert_team .modal-body {
  padding: 0;
}
.modal.cert_team .container {
  padding: 0;
}
.modal.coming_soon .modal-body {
  background: #e5e5e5;
  text-align: center;
}
.modal.coming_soon .modal-body h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 10px;
}
@media (max-width: 767px) {
  .modal.coming_soon .modal-body h3 {
    font-size: 26px;
  }
}
@media (max-width: 479px) {
  .modal.coming_soon .modal-body h3 {
    font-size: 22px;
    margin: 20px 0 5px;
  }
}
.modal.coming_soon .modal-body p {
  font-size: 20px;
  line-height: 1.65em;
  color: #555;
  margin: 0 auto 26px;
  max-width: 535px;
}
@media (max-width: 767px) {
  .modal.coming_soon .modal-body p {
    font-size: 18px;
    line-height: 1.45em;
    margin: 0 auto 20px;
    max-width: 480px;
  }
}
@media (max-width: 479px) {
  .modal.coming_soon .modal-body p {
    font-size: 16px;
  }
}
.modal.coming_soon .modal-body h4 {
  font-size: 20px;
  line-height: 1.65em;
  font-weight: 700;
  color: #5E1DE1;
  margin: 0 0 40px;
}
@media (max-width: 479px) {
  .modal.coming_soon .modal-body h4 {
    font-size: 16px;
    margin: 0 0 30px;
  }
}
.modal.gdpr .modal-title {
  font-size: 24px;
}
@media (max-width: 991px) {
  .modal.gdpr .modal-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .modal.gdpr .modal-title {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  .modal.gdpr .modal-title {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .modal.gdpr .modal-title {
    font-size: 16px;
    text-align: left;
  }
}
.modal.gdpr .modal-body {
  padding: 0;
}
.modal.gdpr .txt_wrap {
  text-align: center;
  padding: 0 0 20px;
  max-width: 480px;
  margin: 0 auto;
}
.modal.gdpr .txt_wrap h3 {
  font: 600 28px/1.45em "Poppins";
  color: #5E1DE1;
  margin: 0 0 5px;
}
@media (max-width: 991px) {
  .modal.gdpr .txt_wrap h3 {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .modal.gdpr .txt_wrap h3 {
    margin: 20px 0 5px;
    font-size: 20px;
  }
}
.modal.gdpr .txt_wrap p {
  font-size: 17px;
  line-height: 1.45em;
  font-weight: 400;
}
@media (max-width: 991px) {
  .modal.gdpr .txt_wrap p {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .modal.gdpr .txt_wrap p {
    font-size: 15px;
    margin: 0;
  }
}
.modal.gdpr .txt_wrap p a {
  color: #5E1DE1;
  font-weight: 700;
}
.modal.gdpr .form_wrap input.form-control {
  margin-bottom: 40px;
}
@media (max-width: 639px) {
  .modal.gdpr .form_wrap input.form-control {
    margin-bottom: 20px;
  }
}
.modal.gdpr .form_wrap input[type=checkbox] {
  margin: 7px 5px 0 0;
}
@media (max-width: 479px) {
  .modal.gdpr .form_wrap input[type=checkbox] {
    margin: 3px 5px 20px 0;
  }
}
.modal.gdpr .form_wrap input[type=checkbox] + p.red_txt {
  transition: max-height 0.4s ease;
  overflow: hidden;
  max-height: 0;
  color: red;
}
.modal.gdpr .form_wrap input[type=checkbox]:checked + p.red_txt {
  max-height: 80px;
}
.modal.gdpr .form_wrap label {
  line-height: 1.45em;
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 15px;
  display: block;
}
.modal.gdpr .form_wrap .btn {
  font: 700 18px "Poppins";
  letter-spacing: 3px;
  margin: 0 0 20px;
  padding: 15px;
  width: 100%;
}
@media (max-width: 479px) {
  .modal.gdpr .form_wrap .btn {
    font-size: 16px;
    padding: 10px;
  }
}
.modal.gdpr .alert {
  text-align: center;
  font-size: 16px;
  display: none;
}
.modal.pass_recovery.sendpassword .txt {
  display: none;
}
.modal.pass_recovery.sendpassword font {
  margin: 30px 0 20px;
  text-align: center;
  display: block;
}
.modal.pass_recovery .modal-content {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .modal.pass_recovery .modal-header {
    padding: 15px;
  }
}
.modal.pass_recovery .modal-title {
  letter-spacing: 1px;
  font-size: 26px;
}
@media (max-width: 991px) {
  .modal.pass_recovery .modal-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .modal.pass_recovery .modal-title {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  .modal.pass_recovery .modal-title {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .modal.pass_recovery .modal-title {
    font-size: 15px;
    text-align: left;
  }
}
.modal.pass_recovery .modal-body {
  background: #f2f2f2;
  text-align: left;
  padding: 30px 40px 50px;
}
@media (max-width: 639px) {
  .modal.pass_recovery .modal-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.modal.pass_recovery .modal-body h3 {
  font-size: 24px;
  line-height: 33px;
  color: #5E1DE1;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .modal.pass_recovery .modal-body h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 479px) {
  .modal.pass_recovery .modal-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 24px;
  }
}
.modal.pass_recovery .modal-body p {
  font-size: 14px;
  line-height: 19px;
  color: #000;
  margin: 30px auto 26px;
  max-width: 535px;
}
@media (max-width: 767px) {
  .modal.pass_recovery .modal-body p {
    margin-top: 10px;
  }
}
.modal.pass_recovery .modal-body p b {
  color: #5E1DE1;
}
.modal.pass_recovery .modal-body form label {
  display: block;
  color: #000;
  font: 600 15px/1.6em "Poppins";
  max-width: 350px;
  margin: 35px auto 4px;
}
@media (max-width: 639px) {
  .modal.pass_recovery .modal-body form label {
    margin: 15px 0 2px;
  }
}
@media (max-width: 479px) {
  .modal.pass_recovery .modal-body form label {
    font-size: 13px;
  }
}
.modal.pass_recovery .modal-body form input {
  display: block;
  margin: 0 auto;
  max-width: 350px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  height: 58px;
  width: 100%;
  transition: all 0.2s;
}
@media (max-width: 639px) {
  .modal.pass_recovery .modal-body form input {
    height: 44px;
  }
}
.modal.reg.nt .modal-content {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.modal.reg.nt .modal-body {
  padding: 50px 80px;
}
@media (max-width: 767px) {
  .modal.reg.nt .modal-body {
    padding: 40px 30px;
  }
}
@media (max-width: 479px) {
  .modal.reg.nt .modal-body {
    padding: 30px 15px;
  }
}
.modal.reg.nt .modal-body .ifs_reg {
  padding: 0;
}
.modal.reg.nt form {
  background: none;
}
.modal.reg.nt .txt_wrap {
  text-align: center;
  padding: 0 0 20px;
}
.modal.reg.nt .txt_wrap h3 {
  font: 700 36px "Poppins";
  color: #5E1DE1;
  margin: 0;
}
@media (max-width: 767px) {
  .modal.reg.nt .txt_wrap h3 {
    font-size: 32px;
  }
}
@media (max-width: 639px) {
  .modal.reg.nt .txt_wrap h3 {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  .modal.reg.nt .txt_wrap h3 {
    font-size: 24px;
  }
}
.modal.reg.nt .txt_wrap p {
  font: 400 22px "Poppins";
  margin: 0 auto 15px;
  max-width: 420px;
  color: #000;
}
@media (max-width: 767px) {
  .modal.reg.nt .txt_wrap p {
    margin: 0 auto 5px;
    max-width: 380px;
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .modal.reg.nt .txt_wrap p {
    font-size: 18px;
  }
}
.modal.reg.nt .ifs_reg.show_mssg .alert {
  max-height: 200px;
  display: block;
}
.modal.reg.nt .ifs_reg label {
  margin: 0;
}
.modal.reg.nt .ifs_reg .alert {
  transition: all 0.3s linear;
  font: 600 16px "Poppins";
  margin: 15px 0 0;
  max-height: 0;
  display: none;
}
.modal.reg .modal-header .txt_wrap {
  padding: 0 80px 30px;
  text-align: left;
}
@media (max-width: 1919px) {
  .modal.reg .modal-header .txt_wrap {
    padding: 0 45px 30px;
  }
}
@media (max-width: 639px) {
  .modal.reg .modal-header .txt_wrap {
    padding: 0 0;
  }
}
.modal.reg .modal-header h3 {
  margin-bottom: 13px;
}
@media (max-width: 639px) {
  .modal.reg .modal-header h3 {
    margin-bottom: 0;
  }
}
.modal.reg .modal-header p {
  line-height: 1.65em;
  font-size: 20px;
  margin: 0;
}
@media (max-width: 991px) {
  .modal.reg .modal-header p {
    line-height: 1.45em;
    font-size: 18px;
  }
}
.modal.reg .modal-body {
  padding: 0;
}
.modal.reg .modal-footer {
  background-color: #f3f6f0;
  text-align: center;
}
.modal.reg .modal-footer p.descr {
  font: 400 15px "Poppins";
  text-align: center;
  font-style: italic;
  margin: 15px 0;
  color: #000;
}
.modal.reg .modal-footer .btn.btn-empty {
  font: 700 14px "Poppins";
  border: 2px solid #29ad01;
  background: transparent;
  letter-spacing: 3px;
  margin: 0 auto 20px;
  max-width: 362px;
  color: #29ad01;
  padding: 8px;
  width: 100%;
}
.modal.reg .modal-footer .btn.btn-empty:hover {
  background: #29ad01;
  color: #fff;
}
.modal.reg .step {
  text-align: center;
}
.modal.reg .step h3 {
  font: 700 36px "Poppins";
  color: #5E1DE1;
  margin: 0;
}
@media (max-width: 767px) {
  .modal.reg .step h3 {
    font-size: 32px;
  }
}
@media (max-width: 639px) {
  .modal.reg .step h3 {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  .modal.reg .step h3 {
    font-size: 24px;
  }
}
.modal.reg .step p.descr {
  font: 400 22px "Poppins";
  margin: 0 auto 15px;
  max-width: 420px;
  color: #000;
}
@media (max-width: 767px) {
  .modal.reg .step p.descr {
    margin: 0 auto 5px;
    max-width: 380px;
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .modal.reg .step p.descr {
    font-size: 18px;
  }
}
.modal.reg .step p.small {
  font: 400 15px "Poppins";
  color: #000;
  margin: 0 0 40px;
}
@media (max-width: 479px) {
  .modal.reg .step p.small {
    font-size: 14px;
  }
}
.modal.reg .step p.small b {
  color: #5E1DE1;
}
.modal.reg .count_wrap.count_1 .s {
  display: none;
}
.modal.confirm_upgrade .wrap {
  padding: 40px 0 50px;
  text-align: center;
}
@media (max-width: 479px) {
  .modal.confirm_upgrade .wrap {
    padding: 20px 0 40px;
  }
}
.modal.confirm_upgrade h3 {
  font: 700 36px "Poppins";
  color: #5E1DE1;
  margin: 0 0 5px;
}
@media (max-width: 991px) {
  .modal.confirm_upgrade h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .modal.confirm_upgrade h3 {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .modal.confirm_upgrade h3 {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .modal.confirm_upgrade h3 {
    font-size: 22px;
  }
}
.modal.confirm_upgrade p {
  font: 400 22px "Poppins";
  margin: 0 auto 15px;
  max-width: 580px;
  color: #000;
}
@media (max-width: 767px) {
  .modal.confirm_upgrade p {
    max-width: 460px;
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .modal.confirm_upgrade p {
    font-size: 16px;
  }
}
.modal.confirm_upgrade p b {
  color: #5E1DE1;
}
.modal.confirm_upgrade .btn {
  font: 700 18px "Poppins";
  letter-spacing: 3px;
  max-width: 320px;
  padding: 15px;
  width: 100%;
}
@media (max-width: 479px) {
  .modal.confirm_upgrade .btn {
    font-size: 16px;
    padding: 10px;
  }
}
.modal.video .modal-dialog, .modal.with_video .modal-dialog {
  max-width: 1000px;
}
.modal.video .close, .modal.with_video .close {
  background: #5E1DE1;
  position: absolute;
  line-height: 40px;
  cursor: pointer;
  font-size: 40px;
  display: table;
  height: 40px;
  right: 16px;
  width: 40px;
  color: #fff;
  z-index: 1;
  opacity: 1;
  padding: 0;
  top: 16px;
}
.modal.video .close:hover, .modal.with_video .close:hover {
  transition: all 0.3s linear;
  background: #6e33e5;
}
.modal.video .modal-content, .modal.with_video .modal-content {
  background: transparent;
  border: none;
}
.modal.video .modal-header, .modal.with_video .modal-header {
  background: transparent;
  border: none;
}
@media (max-width: 767px) {
  .modal.video .modal-header h4, .modal.with_video .modal-header h4 {
    font-size: 22px;
  }
}
@media (max-width: 479px) {
  .modal.video .modal-header h4, .modal.with_video .modal-header h4 {
    line-height: 1.15em;
    text-align: left;
    font-size: 16px;
  }
}
.modal.video .modal-body, .modal.with_video .modal-body {
  padding: 0;
}
.modal.sales_confirm .modal-title {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 22px;
}
@media (max-width: 479px) {
  .modal.sales_confirm .modal-title {
    font-size: 18px;
  }
}
.modal.sales_confirm .modal-body {
  background: #f5f5f5;
  padding: 0;
}
.modal.sales_confirm h3 {
  line-height: 1.45em;
  color: #5E1DE1;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
}
@media (max-width: 479px) {
  .modal.sales_confirm h3 {
    font-size: 24px;
  }
}
.modal.sales_confirm#modal_sales_confirm p.descr {
  line-height: 1.45em;
  margin: 0 auto 30px;
  font-size: 24px;
  max-width: 100%;
  padding: 0;
}
@media (max-width: 767px) {
  .modal.sales_confirm#modal_sales_confirm p.descr {
    font-size: 22px;
  }
}
@media (max-width: 639px) {
  .modal.sales_confirm#modal_sales_confirm p.descr {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .modal.sales_confirm#modal_sales_confirm p.descr {
    font-size: 16px;
  }
}
.modal.sales_confirm form#check_email {
  padding: 55px 110px 75px;
  background: transparent;
  text-align: left;
}
@media (max-width: 767px) {
  .modal.sales_confirm form#check_email {
    padding: 45px 60px 75px;
  }
}
@media (max-width: 639px) {
  .modal.sales_confirm form#check_email {
    padding: 25px 45px 75px;
  }
}
@media (max-width: 479px) {
  .modal.sales_confirm form#check_email {
    padding: 25px 15px 55px;
  }
}
.modal.sales_confirm form#check_email .form-control {
  border: 1px solid #ddd;
  margin: 3px 0 0;
}
@media (max-width: 639px) {
  .modal.sales_confirm form#check_email span.field_ttl {
    display: none;
  }
}
@media (max-width: 639px) {
  .modal.sales_confirm form#check_email label {
    margin: 0 0 5px;
  }
}
.modal.upsell_confirm {
  text-align: center;
}
.modal.upsell_confirm .modal-title {
  font-weight: 600;
  font-size: 22px;
}
@media (max-width: 479px) {
  .modal.upsell_confirm .modal-title {
    font-size: 18px;
  }
}
.modal.upsell_confirm h3 {
  line-height: 1.45em;
  color: #5E1DE1;
  font-weight: 700;
  font-size: 28px;
  margin: 30px 0 0;
}
@media (max-width: 991px) {
  .modal.upsell_confirm h3 {
    margin-bottom: 5px;
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .modal.upsell_confirm h3 {
    margin-top: 20px;
    font-size: 22px;
  }
}
.modal.upsell_confirm p {
  line-height: 1.65em;
  font-size: 20px;
  margin: 0 auto 36px;
  max-width: 620px;
}
@media (max-width: 991px) {
  .modal.upsell_confirm p {
    line-height: 1.45em;
    margin: 0 auto 22px;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .modal.upsell_confirm p {
    font-size: 16px;
  }
}
.modal.upsell_confirm p.last {
  margin: 0 auto;
}
.modal.upsell_confirm p b {
  color: #5E1DE1;
  font-size: 22px;
}
@media (max-width: 991px) {
  .modal.upsell_confirm p b {
    line-height: 1.45em;
    margin: 0 auto 22px;
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .modal.upsell_confirm p b {
    font-size: 16px;
  }
}
.modal.upsell_confirm .btn.btn-gradient {
  margin: 20px auto 40px;
  padding: 15px 70px;
  letter-spacing: 5px;
  font-size: 18px;
}
@media (max-width: 479px) {
  .modal.upsell_confirm .btn.btn-gradient {
    margin-bottom: 30px;
    font-size: 16px;
    padding: 12px;
  }
}
.modal.message .modal-body {
  text-align: center;
}
.modal.message h3 {
  font: 700 28px "Poppins";
  color: #5E1DE1;
  margin: 36px 0 0;
}
@media (max-width: 991px) {
  .modal.message h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .modal.message h3 {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .modal.message h3 {
    font-size: 22px;
    margin: 30px 0 0;
  }
}
.modal.message p.descr {
  font: 400 20px/1.47em "Poppins";
  margin: 10px 0 0;
  padding: 0 70px;
  color: #000;
}
@media (max-width: 639px) {
  .modal.message p.descr {
    font-size: 18px;
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 479px) {
  .modal.message p.descr {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .modal.message p.descr br {
    display: none;
  }
}
.modal.message p.small_descr {
  font: 700 italic 13px/1.4em "Poppins";
  letter-spacing: -0.5px;
  margin: 30px 0 15px;
  color: #000;
}
.modal.message p.small {
  font: 400 italic 13px "Poppins";
  color: #000;
  letter-spacing: -0.4px;
  margin: 17px 0 18px;
}
.modal.message .btn {
  font: 700 18px "Poppins";
  margin: 20px auto 60px;
  letter-spacing: 1px;
  max-width: 362px;
  padding: 12px;
  width: 100%;
}
@media (max-width: 479px) {
  .modal.message .btn {
    margin: 10px auto 40px;
    font-size: 16px;
    padding: 8px;
  }
}
.modal.message .btn.btn-blue {
  background: #3b5998;
  font-size: 16px;
  padding: 13px;
}
.modal.message .btn.btn-blue:hover {
  background: #5771a6;
}
.modal.message.change_pass #changepasswordform {
  margin: 5px auto 0;
  max-width: 480px;
}
@media (max-width: 479px) {
  .modal.message.change_pass #changepasswordform {
    font-size: 15px;
  }
}
.modal.message.change_pass #changepasswordform #i4w-password-change-submit {
  margin: 10px 0 50px;
}
@media (max-width: 479px) {
  .modal.message.change_pass #changepasswordform #i4w-password-change-submit {
    margin: 10px 0 40px;
  }
}
.modal.change_avatar .modal-body {
  background: #f5f5f5;
}
.modal.change_avatar #basic-local-avatar {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: transparent;
  vertical-align: middle;
  border: 2px dashed #ddd;
  margin: 15px auto;
  max-width: 100%;
  height: initial;
  display: table;
  padding: 15px;
}
.modal.change_avatar #basic-local-avatar:hover, .modal.change_avatar #basic-local-avatar:focus {
  border: 2px dashed #5E1DE1;
  box-shadow: none;
  outline: none;
}
.modal.change_avatar img.avatar {
  display: block;
  border-radius: 50%;
  margin: 30px auto 0;
}
.modal.change_avatar input[type=checkbox] {
  margin: -4px 5px 0;
  float: none;
}
.modal.change_avatar input[type=checkbox]:after {
  border: 2px solid #5E1DE1;
}
.modal.change_avatar input[type=checkbox]:checked:after {
  border-color: transparent;
}
.modal.change_avatar input[type=submit] {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font: 700 15px "Poppins";
  display: block;
  text-transform: uppercase;
  background: #5E1DE1;
  border-radius: 100px;
  letter-spacing: 1px;
  white-space: normal;
  text-shadow: none;
  margin: 0 auto 40px;
  padding: 0 40px;
  color: #fff;
  border: 0;
}
@media (max-width: 767px) {
  .modal.change_avatar input[type=submit] {
    margin: 0 auto 25px;
    font-size: 13px;
    height: 38px;
  }
}
.modal.change_avatar input[type=submit]:hover {
  background: #6e33e5;
}
.modal.change_avatar input[type=submit].active.focus, .modal.change_avatar input[type=submit].active:focus, .modal.change_avatar input[type=submit].focus, .modal.change_avatar input[type=submit]:active.focus, .modal.change_avatar input[type=submit]:active:focus, .modal.change_avatar input[type=submit]:focus {
  outline: none;
}
.modal.change_avatar p.description {
  margin: 10px auto 25px;
  max-width: 480px;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .modal.change_avatar p.description {
    font-size: 14px;
  }
}
.modal.modal_verification .auth0-lock-header-welcome img {
  max-width: calc(100% - 20px);
  height: auto;
  margin: 10px;
}
.modal.modal_verification .modal-body {
  text-align: center;
}

#single_reg .sssn_info {
  text-align: left;
}
#single_reg .sssn_info img {
  margin: 25px 0 0;
  width: 65px;
}
#single_reg .sssn_info h4.spkr_name {
  font: 700 17px "Poppins";
  margin: 20px 0 0 32px;
  color: #5E1DE1;
}
#single_reg .sssn_info h3.ssn_ttl {
  font: 700 20px "Poppins";
  color: #000;
  margin: 7px 0 8px 32px;
}
#single_reg .sssn_info p.date_time {
  font: 400 13px "Poppins";
  color: #000;
  margin: 8px 0 47px 32px;
}
#single_reg .sssn_info p.date_time b {
  color: #5E1DE1;
  font-weight: 700;
}
#single_reg #sign-up-form_modal input[type=checkbox] {
  display: none;
}
#single_reg .modal-footer p.descr {
  margin: 20px 0;
}
#single_reg .modal-footer p.descr a {
  color: #5E1DE1;
  font-weight: 700;
}

#tnxModal.modal.in .modal-body {
  text-align: center;
}
#tnxModal .btn-icon {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: #5E1DE1;
  border-radius: 50%;
  line-height: 53px;
  margin-top: 50px;
  font-size: 36px;
  color: #fff;
  width: 54px;
  padding: 0;
}
#tnxModal .btn-icon:hover {
  background-color: #e4eade;
  color: #5E1DE1;
}
#tnxModal .btn-icon i {
  padding: 0;
  margin: 0;
}
#tnxModal h4 {
  font: 700 26px "Poppins";
  letter-spacing: 0.5px;
  margin: 18px 0 13px;
  line-height: 1.3em;
  color: #000;
}
#tnxModal p {
  font: 400 14px "Poppins";
  margin-bottom: 24px;
  line-height: 24px;
  color: #777;
}
#tnxModal p b {
  color: #000;
}
#tnxModal img.logo {
  margin: 10px 0 50px;
}
#tnxModal .inner_lg {
  padding: 0 32px;
}
#tnxModal .modal-footer {
  padding: 15px 30px;
}
#tnxModal .modal-footer p {
  font: 400 13px "Poppins";
  position: relative;
  line-height: 39px;
  color: #777;
  padding: 0;
  margin: 0;
}
#tnxModal .modal-footer p i.fa {
  color: #5E1DE1;
  padding: 0 5px;
}

#cinemaThankYou .btn.btn-main-color.continue {
  font: 700 17px "Poppins";
  margin: 20px 0 86px;
  letter-spacing: 1.6px;
  padding: 12px 42px;
}

#modal_clndr .modal-content {
  overflow: visible;
}
#modal_clndr .modal-body {
  background: #ededed;
  padding: 0;
  border-radius: 0 0 6px 6px;
}
#modal_clndr .modal-body .dropdown-menu {
  right: 0;
}
#modal_clndr .modal-body .dropdown-toggle {
  padding-right: 40px;
}
#modal_clndr .modal-body .dropdown-toggle span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#modal_clndr .btn_gradient_purple {
  text-transform: inherit;
  background: #5E1DE1;
  font-size: 16px;
  display: block;
  margin: 35px auto 0;
  padding: 10px 18px;
  max-width: 300px;
  border-radius: 50px;
}
@media (max-width: 639px) {
  #modal_clndr .btn_gradient_purple {
    font-size: 16px;
  }
}
#modal_clndr .btn_gradient_purple:hover {
  background: #6e33e5;
}
@media (min-width: 768px) {
  #modal_clndr .modal-dialog {
    width: 535px;
  }
}
#modal_clndr .modal-header .close {
  display: none;
}
#modal_clndr .modal-header h4 {
  font: 400 22px/1.5em "Poppins";
  padding: 5px 15px 10px;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}
@media (max-width: 479px) {
  #modal_clndr .modal-header h4 {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media (max-width: 479px) {
  #modal_clndr .modal-header h4 br {
    display: none;
  }
}
#modal_clndr form {
  max-width: 430px;
  padding: 50px 0;
  margin: 0 auto;
}
@media (max-width: 479px) {
  #modal_clndr form {
    padding: 60px 15px;
  }
}
#modal_clndr form label {
  font: 400 15px/1.5em "Poppins";
  width: 100%;
}
#modal_clndr form input.form-control {
  border-radius: 6px;
  margin: 5px 0 10px;
  background: #fff;
  height: 60px;
}
@media (max-width: 639px) {
  #modal_clndr form input.form-control {
    height: 44px;
  }
}
#modal_clndr form .required {
  display: none;
}
#modal_clndr form .dropdown-toggle {
  border: 1px solid #00a763;
  border-radius: 6px;
}
#modal_clndr form .wp-submit2,
#modal_clndr form .btn.btn-main-color {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font: 700 17px/48px "Poppins";
  text-transform: uppercase;
  background: #5E1DE1;
  letter-spacing: 3.2px;
  height: initial;
  display: table;
  width: 100%;
  color: #fff;
  padding: 0;
}
@media (max-width: 479px) {
  #modal_clndr form .wp-submit2,
  #modal_clndr form .btn.btn-main-color {
    font: 700 15px/44px "Poppins";
  }
}
#modal_clndr form .wp-submit2:hover,
#modal_clndr form .btn.btn-main-color:hover {
  background: #6e33e5;
}
#modal_clndr form input {
  width: 100% !important;
  border: 1px solid #ddd;
  margin: 5px 0;
}
@media (max-width: 639px) {
  #modal_clndr form input {
    height: 44px;
  }
}

#get_access .modal-body {
  text-align: center;
}
#get_access #check_email {
  margin: 20px auto 0;
  max-width: 450px;
}
#get_access #check_email input.form-control {
  margin: 5px auto;
}
#get_access h3 {
  font: 700 28px "Poppins";
  color: #5E1DE1;
  margin: 36px 0 0;
}
#get_access p.descr {
  font: 400 26px/1.47em "Poppins";
  margin: 0 0 4px;
  padding: 0 70px;
  color: #000;
}
#get_access .btn.btn-main-color {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 20px 0 60px;
  font-size: 18px;
  padding: 10px;
  width: 100%;
}

.modal.preparing .loader {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  position: relative;
  margin-top: -20px;
  border: 4px solid #fff;
  border-top: 4px solid #6335C3;
}

.modal.black {
  backdrop-filter: blur(5px);
  z-index: 999999999;
}
@media (max-width: 639px) {
  .modal.black .modal-dialog {
    min-height: 560px;
  }
}
.modal.black .modal-content {
  background: transparent;
  color: #ffffff;
  min-height: 560px;
}
.modal.black .modal-header {
  padding: 25px 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(10, 0, 18, 0.9);
  position: relative;
  flex-direction: column;
  border: 0;
}
.modal.black .modal-body {
  background: rgba(10, 0, 18, 0.85);
  padding: 40px 130px 60px;
  flex: initial;
  text-align: center;
}
@media (max-width: 991px) {
  .modal.black .modal-body {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .modal.black .modal-body {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.modal.black .modal-body h3 {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}
.modal.black .modal-body p {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
}
.modal.black .modal-body p a {
  color: #5E1DE1;
}
.modal.black .modal-body ul,
.modal.black .modal-body ol {
  font-size: 16px;
}
.modal.black .modal-body label {
  display: block;
  color: #ffffff;
  margin: 0;
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.modal.black .modal-body label input {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 25px;
  border: 0;
  background: #ffffff;
  border-radius: 6px;
  font-style: normal;
  font-size: 18px;
}
.modal.black .modal-body button[type=submit] {
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%), #c4c4c4;
  border: 0;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 30px;
  margin: 0 auto 30px;
  display: block;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 24px;
  transition: 0.2s;
  cursor: pointer;
}
.modal.black .modal-body button[type=submit] svg {
  display: none !important;
}
.modal.black .modal-body button[type=submit]:hover {
  opacity: 0.8;
}
.modal.black .modal-body .auth0-lock-cred-pane {
  background: transparent;
}
.modal.black .modal-body .auth0-lock-center {
  padding: 0;
}
.modal.black .modal-body .alert {
  text-align: center;
}
.modal.black .modal-body .alert br {
  display: none;
}
.modal.black .modal-body .alert:empty {
  display: none;
}
@media (max-width: 639px) {
  .modal.black .modal-body {
    padding: 40px;
  }
}
.modal.black .auth0-lock.auth0-lock .auth0-lock-cred-pane-internal-wrapper {
  height: auto;
}
.modal.black .auth0-lock.auth0-lock .auth0-lock-confirmation {
  height: 300px;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 639px) {
  .modal.black {
    margin-top: 30px;
  }
}

.modal-backdrop.show {
  opacity: 0.75;
}

.no_close_btn .close {
  display: none !important;
}

.modal_pricing_ty .modal-dialog {
  max-width: 800px;
}
.modal_pricing_ty .modal-header {
  border: none;
  background: none;
  padding: 0;
  height: 0;
}
.modal_pricing_ty .modal-header .close {
  color: #aeaeae;
  transition: all 0.2s;
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 1;
}
.modal_pricing_ty .modal-header .close:hover {
  opacity: 0.8;
}
.modal_pricing_ty .modal-body {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.modal_pricing_ty .modal-body > div {
  width: 50%;
}
@media (max-width: 767px) {
  .modal_pricing_ty .modal-body > div {
    width: 100%;
  }
}
.modal_pricing_ty .modal-body > div.left {
  background-color: #6335c3;
  background-image: url(../img/bg/purple_linear_gradient.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .modal_pricing_ty .modal-body > div.left {
    display: none;
  }
}
.modal_pricing_ty .modal-body > div.left.hogan {
  background: linear-gradient(0deg, #4F1246 0%, #4F1246 100%), linear-gradient(23deg, #320C80 2.91%, rgba(71, 27, 162, 0.82) 47.62%, rgba(100, 48, 208, 0) 98%), #6335C3;
}
.modal_pricing_ty .modal-body > div.left .logo img {
  position: absolute;
  top: 20px;
  left: calc(50% - 55px);
  width: 110px;
}
.modal_pricing_ty .modal-body > div.left .label img {
  max-width: 240px;
  width: 100%;
}
.modal_pricing_ty .modal-body > div.right {
  padding: 100px 28px;
  text-align: center;
}
@media (max-width: 639px) {
  .modal_pricing_ty .modal-body > div.right {
    padding: 80px 28px;
  }
}
.modal_pricing_ty .modal-body > div.right.hogan p {
  color: #0F0F3D;
}
.modal_pricing_ty .modal-body > div.right h5 {
  font-size: 26px;
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 50px;
}
.modal_pricing_ty .modal-body > div.right p {
  font-size: 18px;
  line-height: 130%;
  font-family: "Inter";
  color: #6335c3;
  font-weight: 600;
  margin-bottom: 30px;
}
.modal_pricing_ty .modal-body > div.right .complete img {
  max-width: 68px;
  margin-bottom: 15px;
  margin-bottom: 50px;
}
.modal_pricing_ty .modal-body > div.right .btn.btn_pink {
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  padding: 15px 35px !important;
  float: none;
  color: #fff !important;
  text-shadow: initial !important;
}
.modal_pricing_ty .modal-body > div.right .btn.btn_pink:hover {
  color: #fff !important;
  opacity: 0.8;
}

#modal_certificates_blocked .modal-body {
  padding: 40px 60px;
}
@media (max-width: 767px) {
  #modal_certificates_blocked .modal-body {
    padding: 30px 20px;
  }
}

#modal_invite_friend .modal-dialog {
  max-width: 1010px;
}
#modal_invite_friend .modal-content {
  border-radius: 6px;
  overflow: hidden;
}
#modal_invite_friend .modal-header {
  padding: 0;
  margin: 0;
  height: 0;
  border: initial;
}
#modal_invite_friend .modal-header .close {
  color: #fff;
}
#modal_invite_friend .modal-body {
  padding: 0;
  text-align: center;
}
#modal_invite_friend .modal-body p {
  margin-bottom: 0;
  color: #fff;
}
#modal_invite_friend .top {
  background: #341E63;
  padding: 50px 15px;
}
#modal_invite_friend .top .ttl {
  margin-bottom: 10px;
}
#modal_invite_friend .top .ttl span {
  color: #D5B0FF;
}
#modal_invite_friend .top .txt {
  color: #D5B0FF;
}
#modal_invite_friend .bottom {
  background: #241642;
  padding: 60px 100px;
}
@media (max-width: 767px) {
  #modal_invite_friend .bottom {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#modal_invite_friend .bottom .refer_ava img {
  max-width: 100px;
  margin-bottom: 20px;
}
#modal_invite_friend .bottom .name {
  letter-spacing: -0.6px;
}
#modal_invite_friend .bottom .sub {
  color: #D5B0FF;
  margin-bottom: 50px;
}
#modal_invite_friend .bottom .wrap {
  border-radius: 6px;
  border: 1px solid #3D2472;
  background: #2A194D;
  max-width: 726px;
  margin: 0 auto 40px;
  padding: 40px 15px;
  position: relative;
}
#modal_invite_friend .bottom .wrap .label {
  color: #D5B0FF;
  font-size: 13px;
  letter-spacing: 2.34px;
  text-transform: uppercase;
  border-radius: 6px;
  background: #37206A;
  width: 230px;
  height: 33px;
  line-height: 33px;
  position: absolute;
  top: -18px;
  left: calc(50% - 115px);
}
#modal_invite_friend .bottom .btn_purple {
  font-size: 14px !important;
  width: 200px;
  height: 60px;
  line-height: 60px;
  padding: 0;
}

#modal_golden_ticket_activated .modal-dialog,
#modal_upgrade_required .modal-dialog,
#modal_upgrade_premium .modal-dialog,
#modal_upgrade_any .modal-dialog,
#modal_upgrade_premium_3_plans .modal-dialog {
  max-width: 880px;
}
#modal_golden_ticket_activated .modal-header,
#modal_upgrade_required .modal-header,
#modal_upgrade_premium .modal-header,
#modal_upgrade_any .modal-header,
#modal_upgrade_premium_3_plans .modal-header {
  border: none;
  background: none;
  padding: 0;
  height: 0;
}
#modal_golden_ticket_activated .modal-header .close,
#modal_upgrade_required .modal-header .close,
#modal_upgrade_premium .modal-header .close,
#modal_upgrade_any .modal-header .close,
#modal_upgrade_premium_3_plans .modal-header .close {
  color: #5725ec;
  font-weight: 300;
}
#modal_golden_ticket_activated .modal-body,
#modal_upgrade_required .modal-body,
#modal_upgrade_premium .modal-body,
#modal_upgrade_any .modal-body,
#modal_upgrade_premium_3_plans .modal-body {
  background: #f5f5f5;
}
#modal_golden_ticket_activated .modal-body .upgrade,
#modal_upgrade_required .modal-body .upgrade,
#modal_upgrade_premium .modal-body .upgrade,
#modal_upgrade_any .modal-body .upgrade,
#modal_upgrade_premium_3_plans .modal-body .upgrade {
  text-align: center;
}
#modal_golden_ticket_activated .modal-body .upgrade img,
#modal_upgrade_required .modal-body .upgrade img,
#modal_upgrade_premium .modal-body .upgrade img,
#modal_upgrade_any .modal-body .upgrade img,
#modal_upgrade_premium_3_plans .modal-body .upgrade img {
  display: block;
  margin: 0 auto;
  max-width: 65px;
}
#modal_golden_ticket_activated .modal-body p,
#modal_upgrade_required .modal-body p,
#modal_upgrade_premium .modal-body p,
#modal_upgrade_any .modal-body p,
#modal_upgrade_premium_3_plans .modal-body p {
  color: #0f0f3d;
}
#modal_golden_ticket_activated .modal-body .sub,
#modal_upgrade_required .modal-body .sub,
#modal_upgrade_premium .modal-body .sub,
#modal_upgrade_any .modal-body .sub,
#modal_upgrade_premium_3_plans .modal-body .sub {
  max-width: 573px;
  margin: 0 auto 0px;
}
#modal_golden_ticket_activated .modal-body .alert,
#modal_upgrade_required .modal-body .alert,
#modal_upgrade_premium .modal-body .alert,
#modal_upgrade_any .modal-body .alert,
#modal_upgrade_premium_3_plans .modal-body .alert {
  margin: 20px auto;
  text-align: center;
  max-width: 735px;
  display: none;
}
#modal_golden_ticket_activated .modal-body .alert p,
#modal_upgrade_required .modal-body .alert p,
#modal_upgrade_premium .modal-body .alert p,
#modal_upgrade_any .modal-body .alert p,
#modal_upgrade_premium_3_plans .modal-body .alert p {
  margin-bottom: 0;
}
#modal_golden_ticket_activated .modal-body .wrap,
#modal_upgrade_required .modal-body .wrap,
#modal_upgrade_premium .modal-body .wrap,
#modal_upgrade_any .modal-body .wrap,
#modal_upgrade_premium_3_plans .modal-body .wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 991px) {
  #modal_golden_ticket_activated .modal-body .wrap,
  #modal_upgrade_required .modal-body .wrap,
  #modal_upgrade_premium .modal-body .wrap,
  #modal_upgrade_any .modal-body .wrap,
  #modal_upgrade_premium_3_plans .modal-body .wrap {
    flex-wrap: wrap;
    max-width: 440px;
    margin: 10px auto 0;
  }
}
#modal_golden_ticket_activated .modal-body .wrap .top,
#modal_upgrade_required .modal-body .wrap .top,
#modal_upgrade_premium .modal-body .wrap .top,
#modal_upgrade_any .modal-body .wrap .top,
#modal_upgrade_premium_3_plans .modal-body .wrap .top {
  text-align: left;
}
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap,
#modal_upgrade_required .modal-body .wrap .pro_wrap,
#modal_upgrade_premium .modal-body .wrap .pro_wrap,
#modal_upgrade_any .modal-body .wrap .pro_wrap,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap {
  min-height: 377px;
}
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap.monthly .top_monthly,
#modal_upgrade_required .modal-body .wrap .pro_wrap.monthly .top_monthly,
#modal_upgrade_premium .modal-body .wrap .pro_wrap.monthly .top_monthly,
#modal_upgrade_any .modal-body .wrap .pro_wrap.monthly .top_monthly,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap.monthly .top_monthly {
  display: block;
}
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap.yearly .top_yearly,
#modal_upgrade_required .modal-body .wrap .pro_wrap.yearly .top_yearly,
#modal_upgrade_premium .modal-body .wrap .pro_wrap.yearly .top_yearly,
#modal_upgrade_any .modal-body .wrap .pro_wrap.yearly .top_yearly,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap.yearly .top_yearly {
  display: block;
}
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap.special .top_special,
#modal_upgrade_required .modal-body .wrap .pro_wrap.special .top_special,
#modal_upgrade_premium .modal-body .wrap .pro_wrap.special .top_special,
#modal_upgrade_any .modal-body .wrap .pro_wrap.special .top_special,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap.special .top_special {
  display: block;
}
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap.special .top_special span,
#modal_upgrade_required .modal-body .wrap .pro_wrap.special .top_special span,
#modal_upgrade_premium .modal-body .wrap .pro_wrap.special .top_special span,
#modal_upgrade_any .modal-body .wrap .pro_wrap.special .top_special span,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap.special .top_special span {
  font-size: 12px;
  color: #6335C3;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap.special .top_special ul li,
#modal_upgrade_required .modal-body .wrap .pro_wrap.special .top_special ul li,
#modal_upgrade_premium .modal-body .wrap .pro_wrap.special .top_special ul li,
#modal_upgrade_any .modal-body .wrap .pro_wrap.special .top_special ul li,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap.special .top_special ul li {
  color: #6335C3;
  font-weight: 600;
}
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap .top_monthly,
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap .top_yearly,
#modal_golden_ticket_activated .modal-body .wrap .pro_wrap .top_special,
#modal_upgrade_required .modal-body .wrap .pro_wrap .top_monthly,
#modal_upgrade_required .modal-body .wrap .pro_wrap .top_yearly,
#modal_upgrade_required .modal-body .wrap .pro_wrap .top_special,
#modal_upgrade_premium .modal-body .wrap .pro_wrap .top_monthly,
#modal_upgrade_premium .modal-body .wrap .pro_wrap .top_yearly,
#modal_upgrade_premium .modal-body .wrap .pro_wrap .top_special,
#modal_upgrade_any .modal-body .wrap .pro_wrap .top_monthly,
#modal_upgrade_any .modal-body .wrap .pro_wrap .top_yearly,
#modal_upgrade_any .modal-body .wrap .pro_wrap .top_special,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap .top_monthly,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap .top_yearly,
#modal_upgrade_premium_3_plans .modal-body .wrap .pro_wrap .top_special {
  display: none;
}
#modal_golden_ticket_activated .modal-body .wrap .col,
#modal_upgrade_required .modal-body .wrap .col,
#modal_upgrade_premium .modal-body .wrap .col,
#modal_upgrade_any .modal-body .wrap .col,
#modal_upgrade_premium_3_plans .modal-body .wrap .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  padding: 20px 20px 19px;
  border-radius: 6px;
  max-width: 262px;
  margin: 0 25px;
  background: #fff;
  border: initial;
}
@media (max-width: 991px) {
  #modal_golden_ticket_activated .modal-body .wrap .col,
  #modal_upgrade_required .modal-body .wrap .col,
  #modal_upgrade_premium .modal-body .wrap .col,
  #modal_upgrade_any .modal-body .wrap .col,
  #modal_upgrade_premium_3_plans .modal-body .wrap .col {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
  }
}
#modal_golden_ticket_activated .modal-body .wrap .col > a,
#modal_upgrade_required .modal-body .wrap .col > a,
#modal_upgrade_premium .modal-body .wrap .col > a,
#modal_upgrade_any .modal-body .wrap .col > a,
#modal_upgrade_premium_3_plans .modal-body .wrap .col > a {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
}
#modal_golden_ticket_activated .modal-body .wrap .col .bottom,
#modal_upgrade_required .modal-body .wrap .col .bottom,
#modal_upgrade_premium .modal-body .wrap .col .bottom,
#modal_upgrade_any .modal-body .wrap .col .bottom,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .bottom {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 10px;
  width: 100%;
}
#modal_golden_ticket_activated .modal-body .wrap .col .program img,
#modal_upgrade_required .modal-body .wrap .col .program img,
#modal_upgrade_premium .modal-body .wrap .col .program img,
#modal_upgrade_any .modal-body .wrap .col .program img,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .program img {
  width: 100%;
  max-width: 103px;
  max-height: 23px;
  margin-bottom: 25px;
}
#modal_golden_ticket_activated .modal-body .wrap .col *,
#modal_upgrade_required .modal-body .wrap .col *,
#modal_upgrade_premium .modal-body .wrap .col *,
#modal_upgrade_any .modal-body .wrap .col *,
#modal_upgrade_premium_3_plans .modal-body .wrap .col * {
  text-decoration: initial !important;
}
#modal_golden_ticket_activated .modal-body .wrap .col.premium,
#modal_upgrade_required .modal-body .wrap .col.premium,
#modal_upgrade_premium .modal-body .wrap .col.premium,
#modal_upgrade_any .modal-body .wrap .col.premium,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.premium {
  background: linear-gradient(90deg, #4A1BE7 0%, #7D42FA 100%), #FFF;
  border: transparent;
  color: #fff;
  position: relative;
}
#modal_golden_ticket_activated .modal-body .wrap .col.premium:before,
#modal_upgrade_required .modal-body .wrap .col.premium:before,
#modal_upgrade_premium .modal-body .wrap .col.premium:before,
#modal_upgrade_any .modal-body .wrap .col.premium:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.premium:before {
  position: absolute;
  top: -24px;
  left: calc(50% - 90px);
  content: "RECOMMENDED";
  color: #642FF1;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
  background: #fff;
  border-radius: 6px 6px 0 0;
  width: 180px;
  padding: 3px 0;
  text-align: center;
}
#modal_golden_ticket_activated .modal-body .wrap .col.premium *,
#modal_upgrade_required .modal-body .wrap .col.premium *,
#modal_upgrade_premium .modal-body .wrap .col.premium *,
#modal_upgrade_any .modal-body .wrap .col.premium *,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.premium * {
  color: #fff;
}
#modal_golden_ticket_activated .modal-body .wrap .col.premium .price_count p,
#modal_upgrade_required .modal-body .wrap .col.premium .price_count p,
#modal_upgrade_premium .modal-body .wrap .col.premium .price_count p,
#modal_upgrade_any .modal-body .wrap .col.premium .price_count p,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.premium .price_count p {
  color: #fff;
}
#modal_golden_ticket_activated .modal-body .wrap .col.premium .price_count p b,
#modal_upgrade_required .modal-body .wrap .col.premium .price_count p b,
#modal_upgrade_premium .modal-body .wrap .col.premium .price_count p b,
#modal_upgrade_any .modal-body .wrap .col.premium .price_count p b,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.premium .price_count p b {
  color: #fff !important;
  letter-spacing: -0.01px;
}
#modal_golden_ticket_activated .modal-body .wrap .col.premium .price_count hr,
#modal_upgrade_required .modal-body .wrap .col.premium .price_count hr,
#modal_upgrade_premium .modal-body .wrap .col.premium .price_count hr,
#modal_upgrade_any .modal-body .wrap .col.premium .price_count hr,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.premium .price_count hr {
  border-color: #fff;
}
#modal_golden_ticket_activated .modal-body .wrap .col.premium ul li:before,
#modal_upgrade_required .modal-body .wrap .col.premium ul li:before,
#modal_upgrade_premium .modal-body .wrap .col.premium ul li:before,
#modal_upgrade_any .modal-body .wrap .col.premium ul li:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.premium ul li:before {
  background: #fff;
  color: rgb(119, 119, 119);
}
#modal_golden_ticket_activated .modal-body .wrap .col.hvr,
#modal_upgrade_required .modal-body .wrap .col.hvr,
#modal_upgrade_premium .modal-body .wrap .col.hvr,
#modal_upgrade_any .modal-body .wrap .col.hvr,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.hvr {
  transition: all 0.3s;
}
#modal_golden_ticket_activated .modal-body .wrap .col.hvr:hover,
#modal_upgrade_required .modal-body .wrap .col.hvr:hover,
#modal_upgrade_premium .modal-body .wrap .col.hvr:hover,
#modal_upgrade_any .modal-body .wrap .col.hvr:hover,
#modal_upgrade_premium_3_plans .modal-body .wrap .col.hvr:hover {
  transform: translate(0px, -10px);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
}
@media (max-width: 767px) {
  #modal_golden_ticket_activated .modal-body .wrap .col.hvr:hover,
  #modal_upgrade_required .modal-body .wrap .col.hvr:hover,
  #modal_upgrade_premium .modal-body .wrap .col.hvr:hover,
  #modal_upgrade_any .modal-body .wrap .col.hvr:hover,
  #modal_upgrade_premium_3_plans .modal-body .wrap .col.hvr:hover {
    transform: initial;
  }
}
#modal_golden_ticket_activated .modal-body .wrap .col .price_count,
#modal_upgrade_required .modal-body .wrap .col .price_count,
#modal_upgrade_premium .modal-body .wrap .col .price_count,
#modal_upgrade_any .modal-body .wrap .col .price_count,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count {
  width: 100%;
  margin-bottom: 20px;
}
#modal_golden_ticket_activated .modal-body .wrap .col .price_count.monthly .p_month,
#modal_upgrade_required .modal-body .wrap .col .price_count.monthly .p_month,
#modal_upgrade_premium .modal-body .wrap .col .price_count.monthly .p_month,
#modal_upgrade_any .modal-body .wrap .col .price_count.monthly .p_month,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count.monthly .p_month {
  display: block;
}
#modal_golden_ticket_activated .modal-body .wrap .col .price_count.yearly .p_yearly,
#modal_upgrade_required .modal-body .wrap .col .price_count.yearly .p_yearly,
#modal_upgrade_premium .modal-body .wrap .col .price_count.yearly .p_yearly,
#modal_upgrade_any .modal-body .wrap .col .price_count.yearly .p_yearly,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count.yearly .p_yearly {
  display: block;
}
#modal_golden_ticket_activated .modal-body .wrap .col .price_count.special .p_special,
#modal_upgrade_required .modal-body .wrap .col .price_count.special .p_special,
#modal_upgrade_premium .modal-body .wrap .col .price_count.special .p_special,
#modal_upgrade_any .modal-body .wrap .col .price_count.special .p_special,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count.special .p_special {
  display: block;
}
#modal_golden_ticket_activated .modal-body .wrap .col .price_count hr,
#modal_upgrade_required .modal-body .wrap .col .price_count hr,
#modal_upgrade_premium .modal-body .wrap .col .price_count hr,
#modal_upgrade_any .modal-body .wrap .col .price_count hr,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count hr {
  margin: 15px 0;
}
#modal_golden_ticket_activated .modal-body .wrap .col .price_count p,
#modal_golden_ticket_activated .modal-body .wrap .col .price_count .wrap_special,
#modal_upgrade_required .modal-body .wrap .col .price_count p,
#modal_upgrade_required .modal-body .wrap .col .price_count .wrap_special,
#modal_upgrade_premium .modal-body .wrap .col .price_count p,
#modal_upgrade_premium .modal-body .wrap .col .price_count .wrap_special,
#modal_upgrade_any .modal-body .wrap .col .price_count p,
#modal_upgrade_any .modal-body .wrap .col .price_count .wrap_special,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count p,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count .wrap_special {
  color: #6335C3;
  font-size: 14px;
  margin-bottom: 0;
  display: none;
}
#modal_golden_ticket_activated .modal-body .wrap .col .price_count p b,
#modal_golden_ticket_activated .modal-body .wrap .col .price_count .wrap_special b,
#modal_upgrade_required .modal-body .wrap .col .price_count p b,
#modal_upgrade_required .modal-body .wrap .col .price_count .wrap_special b,
#modal_upgrade_premium .modal-body .wrap .col .price_count p b,
#modal_upgrade_premium .modal-body .wrap .col .price_count .wrap_special b,
#modal_upgrade_any .modal-body .wrap .col .price_count p b,
#modal_upgrade_any .modal-body .wrap .col .price_count .wrap_special b,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count p b,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .price_count .wrap_special b {
  font-size: 28px;
  font-weight: 600;
  color: #6335C3;
  letter-spacing: -0.01px;
}
#modal_golden_ticket_activated .modal-body .wrap .col p,
#modal_upgrade_required .modal-body .wrap .col p,
#modal_upgrade_premium .modal-body .wrap .col p,
#modal_upgrade_any .modal-body .wrap .col p,
#modal_upgrade_premium_3_plans .modal-body .wrap .col p {
  margin-bottom: 12px;
}
#modal_golden_ticket_activated .modal-body .wrap .col p,
#modal_golden_ticket_activated .modal-body .wrap .col li,
#modal_upgrade_required .modal-body .wrap .col p,
#modal_upgrade_required .modal-body .wrap .col li,
#modal_upgrade_premium .modal-body .wrap .col p,
#modal_upgrade_premium .modal-body .wrap .col li,
#modal_upgrade_any .modal-body .wrap .col p,
#modal_upgrade_any .modal-body .wrap .col li,
#modal_upgrade_premium_3_plans .modal-body .wrap .col p,
#modal_upgrade_premium_3_plans .modal-body .wrap .col li {
  list-style: none;
  color: #0f0f3d;
  font-size: 12px;
  line-height: 130%;
  font-weight: 500;
}
#modal_golden_ticket_activated .modal-body .wrap .col ul,
#modal_upgrade_required .modal-body .wrap .col ul,
#modal_upgrade_premium .modal-body .wrap .col ul,
#modal_upgrade_any .modal-body .wrap .col ul,
#modal_upgrade_premium_3_plans .modal-body .wrap .col ul {
  padding-left: 0;
  margin: 0 0 12px;
}
#modal_golden_ticket_activated .modal-body .wrap .col ul.purple li:before, #modal_golden_ticket_activated .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_1 li:before, .submit_wrap.active_step_3 #modal_golden_ticket_activated .modal-body .wrap .col ul.line_1 li:before,
#modal_golden_ticket_activated .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_2 li:before,
.submit_wrap.active_step_3 #modal_golden_ticket_activated .modal-body .wrap .col ul.line_2 li:before, #modal_golden_ticket_activated .modal-body .wrap .col .submit_wrap.active_step_2 ul.line_1 li:before, .submit_wrap.active_step_2 #modal_golden_ticket_activated .modal-body .wrap .col ul.line_1 li:before,
#modal_upgrade_required .modal-body .wrap .col ul.purple li:before,
#modal_upgrade_required .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_1 li:before,
.submit_wrap.active_step_3 #modal_upgrade_required .modal-body .wrap .col ul.line_1 li:before,
#modal_upgrade_required .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_2 li:before,
.submit_wrap.active_step_3 #modal_upgrade_required .modal-body .wrap .col ul.line_2 li:before,
#modal_upgrade_required .modal-body .wrap .col .submit_wrap.active_step_2 ul.line_1 li:before,
.submit_wrap.active_step_2 #modal_upgrade_required .modal-body .wrap .col ul.line_1 li:before,
#modal_upgrade_premium .modal-body .wrap .col ul.purple li:before,
#modal_upgrade_premium .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_1 li:before,
.submit_wrap.active_step_3 #modal_upgrade_premium .modal-body .wrap .col ul.line_1 li:before,
#modal_upgrade_premium .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_2 li:before,
.submit_wrap.active_step_3 #modal_upgrade_premium .modal-body .wrap .col ul.line_2 li:before,
#modal_upgrade_premium .modal-body .wrap .col .submit_wrap.active_step_2 ul.line_1 li:before,
.submit_wrap.active_step_2 #modal_upgrade_premium .modal-body .wrap .col ul.line_1 li:before,
#modal_upgrade_any .modal-body .wrap .col ul.purple li:before,
#modal_upgrade_any .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_1 li:before,
.submit_wrap.active_step_3 #modal_upgrade_any .modal-body .wrap .col ul.line_1 li:before,
#modal_upgrade_any .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_2 li:before,
.submit_wrap.active_step_3 #modal_upgrade_any .modal-body .wrap .col ul.line_2 li:before,
#modal_upgrade_any .modal-body .wrap .col .submit_wrap.active_step_2 ul.line_1 li:before,
.submit_wrap.active_step_2 #modal_upgrade_any .modal-body .wrap .col ul.line_1 li:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col ul.purple li:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_1 li:before,
.submit_wrap.active_step_3 #modal_upgrade_premium_3_plans .modal-body .wrap .col ul.line_1 li:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .submit_wrap.active_step_3 ul.line_2 li:before,
.submit_wrap.active_step_3 #modal_upgrade_premium_3_plans .modal-body .wrap .col ul.line_2 li:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .submit_wrap.active_step_2 ul.line_1 li:before,
.submit_wrap.active_step_2 #modal_upgrade_premium_3_plans .modal-body .wrap .col ul.line_1 li:before {
  background: #5E1DE1;
}
#modal_golden_ticket_activated .modal-body .wrap .col ul.yellow li:before,
#modal_upgrade_required .modal-body .wrap .col ul.yellow li:before,
#modal_upgrade_premium .modal-body .wrap .col ul.yellow li:before,
#modal_upgrade_any .modal-body .wrap .col ul.yellow li:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col ul.yellow li:before {
  background: rgb(252, 184, 6);
}
#modal_golden_ticket_activated .modal-body .wrap .col ul.pink li:before,
#modal_upgrade_required .modal-body .wrap .col ul.pink li:before,
#modal_upgrade_premium .modal-body .wrap .col ul.pink li:before,
#modal_upgrade_any .modal-body .wrap .col ul.pink li:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col ul.pink li:before {
  background: #fe628b;
}
#modal_golden_ticket_activated .modal-body .wrap .col ul li,
#modal_upgrade_required .modal-body .wrap .col ul li,
#modal_upgrade_premium .modal-body .wrap .col ul li,
#modal_upgrade_any .modal-body .wrap .col ul li,
#modal_upgrade_premium_3_plans .modal-body .wrap .col ul li {
  font-size: 12px;
  line-height: 130%;
  margin-bottom: 11px;
  position: relative;
  padding-left: 29px;
}
#modal_golden_ticket_activated .modal-body .wrap .col ul li:before,
#modal_upgrade_required .modal-body .wrap .col ul li:before,
#modal_upgrade_premium .modal-body .wrap .col ul li:before,
#modal_upgrade_any .modal-body .wrap .col ul li:before,
#modal_upgrade_premium_3_plans .modal-body .wrap .col ul li:before {
  position: absolute;
  left: 2px;
  top: 4px;
  content: "✓";
  font-family: "fontello";
  background: #ddd;
  border-radius: 60px;
  width: 13px;
  height: 13px;
  font-size: 7px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #fff;
}
#modal_golden_ticket_activated .modal-body .wrap .col .ps_link,
#modal_upgrade_required .modal-body .wrap .col .ps_link,
#modal_upgrade_premium .modal-body .wrap .col .ps_link,
#modal_upgrade_any .modal-body .wrap .col .ps_link,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .ps_link {
  font-size: 13px;
  font-weight: 500;
  border-radius: 60px;
  padding: 8px 30px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 5px;
  letter-spacing: 1px;
  background: var(--Button, linear-gradient(90deg, #4A1BE7 0%, #7D42FA 100%));
  color: #fff;
}
#modal_golden_ticket_activated .modal-body .wrap .col .ps_link.white,
#modal_upgrade_required .modal-body .wrap .col .ps_link.white,
#modal_upgrade_premium .modal-body .wrap .col .ps_link.white,
#modal_upgrade_any .modal-body .wrap .col .ps_link.white,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .ps_link.white {
  background: #fff;
  color: #642FF1;
}
#modal_golden_ticket_activated .modal-body .wrap .col .ps_link:hover img,
#modal_upgrade_required .modal-body .wrap .col .ps_link:hover img,
#modal_upgrade_premium .modal-body .wrap .col .ps_link:hover img,
#modal_upgrade_any .modal-body .wrap .col .ps_link:hover img,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .ps_link:hover img {
  margin-left: 6px;
}
#modal_golden_ticket_activated .modal-body .wrap .col .ps_link img,
#modal_upgrade_required .modal-body .wrap .col .ps_link img,
#modal_upgrade_premium .modal-body .wrap .col .ps_link img,
#modal_upgrade_any .modal-body .wrap .col .ps_link img,
#modal_upgrade_premium_3_plans .modal-body .wrap .col .ps_link img {
  transition: all 0.2s;
  max-width: 21px;
  margin-left: 3px;
}

#modal_after_movie .modal-dialog {
  max-width: 1100px;
}

#modal_redirect_nt .modal-body {
  padding: 40px 80px 60px;
}
@media (max-width: 767px) {
  #modal_redirect_nt .modal-body {
    padding: 40px 15px;
  }
}
#modal_redirect_nt .modal-body p {
  text-align: center;
  margin-bottom: 0;
}
#modal_redirect_nt .modal-body p a {
  color: #5E1DE1;
}

#modal_callback_ty .modal-header {
  padding: 30px 15px;
}

#modal_video_passes .modal-dialog {
  max-width: 1145px;
}
#modal_video_passes .modal-content {
  overflow: visible;
}
#modal_video_passes .modal-content .modal-body {
  padding: 0 60px;
  background: #000;
}
@media (max-width: 767px) {
  #modal_video_passes .modal-content .modal-body {
    padding: 0 10px;
  }
}

#modal_first_login .modal-dialog {
  max-width: 950px;
}
#modal_first_login .modal-header {
  height: 0;
  padding: 0;
}
#modal_first_login .modal-body {
  padding: 40px 80px 60px;
}
@media (max-width: 767px) {
  #modal_first_login .modal-body {
    padding: 40px 15px;
  }
}
#modal_first_login .logo img {
  max-width: 160px;
  width: 100%;
  margin: 0 auto 25px;
}
#modal_first_login ul,
#modal_first_login ol {
  text-align: left;
  font-size: 18px;
  line-height: 26px;
  margin-left: 0;
  padding-left: 0;
}
#modal_first_login ul li,
#modal_first_login ol li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 24px;
  list-style: none;
}
@media (max-width: 767px) {
  #modal_first_login ul li,
  #modal_first_login ol li {
    flex-wrap: wrap;
  }
}
#modal_first_login ul li span,
#modal_first_login ol li span {
  margin-right: 8px;
}
@media (max-width: 767px) {
  #modal_first_login ul li span,
  #modal_first_login ol li span {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
}
#modal_first_login ul li .btn,
#modal_first_login ol li .btn {
  min-width: 230px;
}
#modal_first_login h2 {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  #modal_first_login h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
#modal_first_login h4 {
  text-align: left;
  margin-bottom: 10px;
}

.modal.modal-blur .modal-dialog {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 25px;
}
.modal.modal-blur .modal-dialog .modal-content {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  box-shadow: 0px 0px 15px 0px rgba(231, 174, 65, 0.6);
}
.modal.modal-blur .modal-dialog .modal-content .modal-header {
  display: none;
}
.modal.modal-blur .modal-dialog .modal-content .modal-body {
  background: transparent;
}
.modal.modal-blur .modal-dialog .modal-content .modal-body form {
  max-width: 380px;
  margin: 0 auto;
  padding: 0 10px;
}
.modal.modal-blur .modal-dialog .modal-content .modal-body form .form-control[type=tel] {
  font-size: 24px;
  color: #747474;
  height: 60px;
}
@media (max-width: 767px) {
  .modal.modal-blur .modal-dialog .modal-content .modal-body form .form-control[type=tel] {
    font-size: 20px;
    height: 50px;
  }
}

#modal_cceu_error .modal-content {
  border-radius: 6px;
}
#modal_cceu_error .modal-header {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: url(../img/bg/purple.jpg) no-repeat 50% 50%;
}
#modal_cceu_error .modal-header h4 {
  color: #fff;
  font-size: 22px;
  margin: 15px auto;
}
#modal_cceu_error .modal-header h5 {
  padding: 22px 0;
  color: #fff;
}
#modal_cceu_error .modal-body .txt_wrap {
  padding: 50px 60px;
  text-align: center;
}
@media (max-width: 639px) {
  #modal_cceu_error .modal-body .txt_wrap {
    padding: 30px 15px;
  }
}
#modal_cceu_error .modal-body .txt_wrap h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
#modal_cceu_error .modal-body .txt_wrap p {
  font-size: 18px;
  line-height: 26px;
}
#modal_cceu_error .modal-body .txt_wrap a {
  text-decoration: underline;
  transition: all 0.2s;
}
#modal_cceu_error .modal-body .txt_wrap a:hover {
  text-decoration: none;
}

#modal_pro .modal-header h4,
#modal_premium .modal-header h4,
#modal_starter .modal-header h4 {
  font-size: 18px;
}
@media (max-width: 639px) {
  #modal_pro .modal-header h4,
  #modal_premium .modal-header h4,
  #modal_starter .modal-header h4 {
    padding-right: 0 30px 0 10px;
  }
}
#modal_pro .modal-header h5,
#modal_premium .modal-header h5,
#modal_starter .modal-header h5 {
  display: none !important;
}
#modal_pro .modal-header .txt_wrap,
#modal_premium .modal-header .txt_wrap,
#modal_starter .modal-header .txt_wrap {
  text-align: center;
  padding-bottom: 15px;
}
#modal_pro .modal-body,
#modal_premium .modal-body,
#modal_starter .modal-body {
  padding: 50px 30px;
  text-align: center;
}
@media (max-width: 767px) {
  #modal_pro .modal-body,
  #modal_premium .modal-body,
  #modal_starter .modal-body {
    padding: 30px 30px;
  }
}
@media (max-width: 479px) {
  #modal_pro .modal-body,
  #modal_premium .modal-body,
  #modal_starter .modal-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#modal_pro .modal-body .cta,
#modal_premium .modal-body .cta,
#modal_starter .modal-body .cta {
  text-emphasis: center;
}
@media (max-width: 479px) {
  #modal_pro .modal-body .cta,
  #modal_premium .modal-body .cta,
  #modal_starter .modal-body .cta {
    font-size: 13px;
    padding: 8px 30px;
  }
}

.modal.reg#confirmModal .modal-header h4 {
  font-size: 18px;
}
.modal.reg#confirmModal .modal-header h5 {
  display: none !important;
}
.modal.reg#confirmModal .modal-header .txt_wrap {
  text-align: center;
  padding-bottom: 15px;
}
.modal.reg#confirmModal .modal-body {
  padding: 70px 30px;
}
@media (max-width: 767px) {
  .modal.reg#confirmModal .modal-body {
    padding: 30px 30px;
  }
}
.modal.reg#confirmModal .modal-body .cta {
  text-emphasis: center;
}

#modal_welcome_modal .modal-dialog {
  max-width: 700px;
}
#modal_welcome_modal .modal-dialog .modal-header h4 {
  font-size: 22px;
  font-weight: 600;
  padding: 0 20px;
  text-align: center;
}
#modal_welcome_modal .modal-dialog .modal-body {
  padding: 60px 60px;
}
@media (max-width: 767px) {
  #modal_welcome_modal .modal-dialog .modal-body {
    padding: 30px;
  }
}
@media (max-width: 639px) {
  #modal_welcome_modal .modal-dialog .modal-body {
    padding: 30px 15px;
  }
}
#modal_welcome_modal .modal-dialog .modal-body p {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}

#modal_upsell_ty .modal-dialog,
#modal_upsell_confirm .modal-dialog {
  max-width: 700px;
}
@media (max-width: 1699px) {
  #modal_upsell_ty .modal-dialog,
  #modal_upsell_confirm .modal-dialog {
    max-width: 600px;
  }
}
#modal_upsell_ty .modal-dialog .modal-body,
#modal_upsell_confirm .modal-dialog .modal-body {
  padding: 0 50px;
}
@media (max-width: 479px) {
  #modal_upsell_ty .modal-dialog .modal-body,
  #modal_upsell_confirm .modal-dialog .modal-body {
    padding: 0 15px;
  }
}
#modal_upsell_ty .modal-dialog .modal-body .btn-icon,
#modal_upsell_confirm .modal-dialog .modal-body .btn-icon {
  background: none;
  position: absolute;
  font-size: 25px;
  padding: 10px;
  top: 0;
  right: 0;
  line-height: 1;
  opacity: 0.4;
  font-weight: 300;
  width: auto !important;
}
#modal_upsell_ty .modal-dialog .modal-body .btn-icon:hover,
#modal_upsell_confirm .modal-dialog .modal-body .btn-icon:hover {
  opacity: 1;
}

#modal_get_access .modal-body {
  padding-bottom: 30px;
}
#modal_get_access .modal-body button {
  margin-top: 30px;
}

#modal_community {
  pointer-events: none;
}
#modal_community .modal-content {
  pointer-events: initial;
}
#modal_community h3 {
  text-align: center;
}
#modal_community p.pass_tip {
  pointer-events: none;
  text-align: center;
  font-size: 14px;
  width: 100%;
  opacity: 0;
  transition: all 0.3s;
  margin-bottom: -15px;
  letter-spacing: 0.5px;
  text-align: center;
}
#modal_community .pass_wrap {
  position: relative;
  padding-top: 20px;
  max-width: 300px;
  margin: 0 auto;
}
#modal_community .pass_wrap:hover:before {
  transform: scale(1.2);
}
#modal_community .pass_wrap.copied:before {
  content: "✓";
  transform: initial;
}
#modal_community .pass_wrap:before {
  content: "\e758";
  position: absolute;
  pointer-events: none;
  top: 18px;
  right: 10px;
  font-size: 32px;
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  z-index: 2;
  color: #5E1DE1;
  transition: all 0.2s;
}
#modal_community .pass_input {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
  cursor: pointer;
  font-size: 26px;
  position: relative;
  z-index: 1;
}
#modal_community input {
  border: none;
  color: #5E1DE1;
}
#modal_community .btn {
  display: block;
  margin: 25px auto 0;
  color: #fff;
  max-width: 300px;
  padding: 10px 15px;
  letter-spacing: 0.5px;
}
#modal_community .modal-body {
  flex: initial;
}
#modal_community .trouble_login {
  display: block;
  text-align: center;
  color: #dc099e;
  margin: 20px auto 0;
  font-size: 15px;
  font-weight: 600;
}

#modal_login .modal-header {
  background: initial;
  padding: 0;
}
#modal_login .modal-header .close {
  color: #cd0082;
  top: 0;
  right: 12px;
}
#modal_login .modal-body {
  text-align: center;
  padding: 60px 15px;
}
#modal_login .modal-body h4 {
  max-width: 460px;
  margin: 0 auto 30px;
}
#modal_login .modal-body a.btn.btn-login {
  padding: 10px 35px;
  font-size: 18px;
  font-weight: 600;
  background: #cd0082;
}

#modal_community_help,
#modal_login_help {
  pointer-events: none;
}
#modal_community_help .modal-content,
#modal_login_help .modal-content {
  pointer-events: initial;
}
#modal_community_help .modal-dialog,
#modal_login_help .modal-dialog {
  max-width: 1200px;
}
#modal_community_help .modal-header,
#modal_login_help .modal-header {
  border-bottom: 1px solid #5f5f5f;
}
#modal_community_help .modal-body,
#modal_login_help .modal-body {
  padding: 0;
}

#modal_cdc_tmp .modal-body img {
  display: block;
  margin: 0 auto;
  max-width: 170px;
}

#modal_gdpr .modal-body form {
  padding: 60px;
}
@media (max-width: 767px) {
  #modal_gdpr .modal-body form {
    padding: 30px;
  }
}
@media (max-width: 479px) {
  #modal_gdpr .modal-body form {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#modal_gdpr .modal-body .txt_wrap .form_wrap label input {
  margin-right: 13px;
}
#modal_gdpr .modal-body .txt_wrap .form_wrap .btn_gradient_purple {
  border-radius: 60px;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

#modal_registered {
  pointer-events: none;
}
#modal_registered .modal-header {
  display: none;
}
#modal_registered .close {
  display: none;
}
@media (max-width: 479px) {
  #modal_registered .modal-header h4 {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  #modal_registered .modal-header {
    min-height: 80px;
  }
}
#modal_registered .modal-body {
  padding: 80px 130px 60px;
}
@media (max-width: 767px) {
  #modal_registered .modal-body {
    padding: 50px 70px 40px;
  }
}
@media (max-width: 639px) {
  #modal_registered .modal-body {
    padding: 40px 30px 30px;
  }
}
@media (max-width: 479px) {
  #modal_registered .modal-body {
    padding: 40px 20px 30px;
  }
}
#modal_registered .modal-body h3 {
  font-size: 24px;
}
@media (max-width: 479px) {
  #modal_registered .modal-body h3 {
    font-size: 22px;
  }
}
@media (max-width: 479px) {
  #modal_registered .modal-body {
    overflow-y: auto;
    max-height: calc(100vh - 146px);
    padding: 20px 40px;
  }
}

#modal_passes_upgrade {
  pointer-events: none;
}
#modal_passes_upgrade .modal-dialog {
  max-width: 800px;
}
#modal_passes_upgrade .modal-header {
  border: none;
  background: none;
  padding: 0;
  height: 0;
}
#modal_passes_upgrade .modal-header .close {
  display: none;
}
#modal_passes_upgrade .modal-body {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
#modal_passes_upgrade .modal-body > div {
  width: 50%;
}
@media (max-width: 767px) {
  #modal_passes_upgrade .modal-body > div {
    width: 100%;
  }
}
#modal_passes_upgrade .modal-body > div.left {
  background-color: #6335c3;
  background-image: url(../img/bg/purple_linear_gradient.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  #modal_passes_upgrade .modal-body > div.left {
    display: none;
  }
}
#modal_passes_upgrade .modal-body > div.left picture img {
  max-width: 240px;
  width: 100%;
}
#modal_passes_upgrade .modal-body > div.right {
  padding: 100px 41px;
  text-align: center;
}
@media (max-width: 639px) {
  #modal_passes_upgrade .modal-body > div.right {
    padding: 80px 30px;
  }
}
#modal_passes_upgrade .modal-body > div.right p {
  font-size: 23px;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  #modal_passes_upgrade .modal-body > div.right p {
    font-size: 20px;
    line-height: 120%;
  }
}
#modal_passes_upgrade .modal-body > div.right p a {
  color: #5E1DE1;
}
#modal_passes_upgrade .modal-body > div.right .btn.see_my_sessions {
  opacity: 1;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  padding: 15px 35px !important;
  float: none;
}
#modal_passes_upgrade .modal-body > div.right .btn.see_my_sessions:hover {
  color: #fff;
  opacity: 0.8;
}

#modal_add_to_calendar .modal-dialog {
  max-width: 800px;
}
#modal_add_to_calendar .modal-content {
  background: transparent;
  border-radius: 0 0 6px 6px;
}
#modal_add_to_calendar .modal-content .modal-header {
  border: none;
  background: none;
  padding: 0;
  height: 30px;
}
#modal_add_to_calendar .modal-content .modal-header .close {
  color: #fff;
  background: #6335c3;
  transition: all 0.2s;
  padding: 0;
  font-size: 24px;
  right: 0;
  top: 0;
  margin: 0 !important;
  width: 30px;
  height: 30px;
}
#modal_add_to_calendar .modal-content .modal-header .close:hover {
  opacity: 0.8;
}
#modal_add_to_calendar .modal-content .modal-header .close span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#modal_add_to_calendar .modal-content .modal-body {
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
#modal_add_to_calendar .modal-content .modal-body > div {
  width: 50%;
}
@media (max-width: 767px) {
  #modal_add_to_calendar .modal-content .modal-body > div {
    width: 100%;
  }
}
#modal_add_to_calendar .modal-content .modal-body > div.left {
  background-color: #6335c3;
  background-image: url(../img/bg/purple_linear_gradient.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  #modal_add_to_calendar .modal-content .modal-body > div.left {
    display: none;
  }
}
#modal_add_to_calendar .modal-content .modal-body > div.left picture img {
  max-width: 240px;
  width: 100%;
}
#modal_add_to_calendar .modal-content .modal-body > div.right {
  padding: 100px 42px;
  text-align: center;
}
@media (max-width: 639px) {
  #modal_add_to_calendar .modal-content .modal-body > div.right {
    padding: 80px 30px;
  }
}
#modal_add_to_calendar .modal-content .modal-body > div.right p {
  font-size: 24px;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #modal_add_to_calendar .modal-content .modal-body > div.right p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 120%;
  }
}
#modal_add_to_calendar .modal-content .modal-body > div.right .btn.see_my_sessions {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter";
  letter-spacing: 2px;
  padding: 15px 35px !important;
  float: none;
  text-shadow: initial;
  letter-spacing: 1px;
}
#modal_add_to_calendar .modal-content .modal-body > div.right .btn.see_my_sessions:hover {
  color: #fff;
  opacity: 0.8;
}

#modal_add_to_calendar_video .modal-dialog {
  max-width: 800px;
}
#modal_add_to_calendar_video .modal-content {
  background: transparent;
  border-radius: 0 0 6px 6px;
}
#modal_add_to_calendar_video .modal-content .modal-header {
  border: none;
  background: none;
  padding: 0;
  height: 30px;
}
#modal_add_to_calendar_video .modal-content .modal-header .close {
  color: #fff;
  background: #6335c3;
  transition: all 0.2s;
  padding: 0;
  font-size: 24px;
  right: 0;
  top: 0;
  margin: 0 !important;
  width: 30px;
  height: 30px;
}
#modal_add_to_calendar_video .modal-content .modal-header .close:hover {
  opacity: 0.8;
}
#modal_add_to_calendar_video .modal-content .modal-header .close span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#modal_add_to_calendar_video .modal-content .modal-body {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 0;
}
#modal_add_to_calendar_video .modal-content .modal-body .descr {
  padding: 25px;
}
@media (min-width: 768px) {
  #modal_add_to_calendar_video .modal-content .modal-body .descr {
    padding: 50px;
  }
}
#modal_add_to_calendar_video .modal-content .modal-body .descr p {
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #modal_add_to_calendar_video .modal-content .modal-body .descr p {
    margin-bottom: 30px;
    line-height: 120%;
  }
}
#modal_add_to_calendar_video .modal-content .modal-body .descr p b {
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
  color: #5e1de1;
  display: block;
  font-size: 24px;
}
#modal_add_to_calendar_video .modal-content .modal-body .descr p b + span {
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
}
#modal_add_to_calendar_video .modal-content .modal-body .descr .btn {
  opacity: 1;
  font-weight: 500;
  font-family: "Inter";
  float: none;
  text-shadow: initial;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 0 !important;
  margin: 0 auto 15px;
  width: 290px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 41px;
  justify-content: center;
}
#modal_add_to_calendar_video .modal-content .modal-body .descr .btn:hover {
  color: #fff;
  opacity: 0.8;
}
#modal_add_to_calendar_video .modal-content .modal-body .descr .btn.show_video {
  border: 1px solid #5E1DE1;
  color: #5E1DE1;
}
#modal_add_to_calendar_video .modal-content .modal-body .descr .btn.show_video .icon {
  font-size: 22px;
}
#modal_add_to_calendar_video .modal-content .modal-body .video_wrap_searchie {
  display: none;
}

#modal_verification {
  pointer-events: none;
}
#modal_verification .close {
  display: none;
}
#modal_verification .modal-body {
  padding: 70px 110px 40px;
}
@media (max-width: 767px) {
  #modal_verification .modal-body {
    padding: 50px 60px 40px;
  }
}
@media (max-width: 639px) {
  #modal_verification .modal-body {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#modal_verification .modal-body > img {
  margin-bottom: 20px;
}
#modal_verification .modal-body p {
  margin-top: 20px;
}
#modal_verification .modal-header {
  display: none;
}
#modal_verification ol {
  padding-left: 20px;
}
#modal_verification ol li {
  text-align: left;
}
#modal_verification button[type=submit] {
  padding: 5px 20px;
  margin-top: 15px;
}
#modal_verification .auth0-lock.auth0-lock .auth0-lock-center {
  padding-top: 0;
}
#modal_verification .auth0-lock.auth0-lock .auth0-lock-header {
  display: none;
}
#modal_verification .auth0-lock.auth0-lock .auth0-lock-form {
  padding: 10px 2px 20px;
}
#modal_verification .auth0-lock.auth0-lock .auth0-lock-form p {
  display: none;
}
#modal_verification .auth0-lock.auth0-lock .auth0-lock-terms {
  display: none;
}
#modal_verification .auth0-lock.auth0-lock .auth0-lock-submit {
  background: linear-gradient(90deg, #7921b1 0%, #e11391 100%);
  border-radius: 10px;
  margin-top: 15px;
  padding: 0;
}
#modal_verification .auth0-lock.auth0-lock .auth0-lock-submit:hover {
  opacity: 0.8;
}
#modal_verification .auth0-lock.auth0-lock .auth0-lock-submit:hover span {
  transform: none !important;
}

#modal_upsell_confirm .modal-dialog {
  max-width: 770px;
}
#modal_upsell_confirm form {
  margin: 40px auto 20px;
  position: relative;
}
@media (max-width: 639px) {
  #modal_upsell_confirm form {
    margin-bottom: 10px;
  }
}
#modal_upsell_confirm form:before {
  content: "COMPLETE PURCHASE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  pointer-events: none;
  white-space: nowrap;
}
#modal_upsell_confirm form .btn.btn-yellow,
#modal_upsell_confirm form .btn.btn_gradient_purple {
  min-height: 50px;
  font-size: 0 !important;
  margin: 0 !important;
  width: 100%;
}
@media (max-width: 479px) {
  #modal_upsell_confirm form .btn.btn-yellow,
  #modal_upsell_confirm form .btn.btn_gradient_purple {
    min-width: 0 !important;
  }
}

.modal_mmbrs {
  padding: 15px !important;
}
@media (min-width: 992px) {
  .modal_mmbrs .modal-lg {
    max-width: 720px;
  }
}
.modal_mmbrs .modal-dialog {
  margin: 0 auto;
}
.modal_mmbrs .modal-content {
  border-radius: 0;
  border: none;
}
.modal_mmbrs .modal-content .modal-header {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 160px 15px;
  text-align: left;
  background: #eee;
  color: #000;
}
.modal_mmbrs .modal-content .modal-header > *:not(.close) {
  max-width: 408px;
  width: 100%;
}
.modal_mmbrs .modal-content .modal-header .ssn-figure {
  margin: 10px 0 20px;
  padding-right: 60px;
}
@media (max-width: 991px) {
  .modal_mmbrs .modal-content .modal-header .ssn-figure {
    padding-right: 0;
  }
}
@media (max-width: 639px) {
  .modal_mmbrs .modal-content .modal-header .ssn-figure {
    margin: 10px 0;
  }
}
.modal_mmbrs .modal-content .modal-header hr {
  margin: 20px 0;
  border-top: 1px solid #bdbdbd;
}
@media (max-width: 639px) {
  .modal_mmbrs .modal-content .modal-header hr {
    margin: 15px 0;
  }
}
@media (max-width: 767px) {
  .modal_mmbrs .modal-content .modal-header {
    padding: 50px 30px 15px;
  }
}
.modal_mmbrs .modal-content .modal-header h4 {
  max-width: 408px;
  width: 100%;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 600;
}
@media (max-width: 991px) {
  .modal_mmbrs .modal-content .modal-header h4 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .modal_mmbrs .modal-content .modal-header h4 {
    font-size: 22px;
  }
}
@media (max-width: 639px) {
  .modal_mmbrs .modal-content .modal-header h4 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .modal_mmbrs .modal-content .modal-header h4 {
    font-size: 18px;
  }
}
.modal_mmbrs .modal-content .modal-header p {
  max-width: 408px;
  margin: 0;
  width: 100%;
  font-size: 16px;
}
@media (max-width: 767px) {
  .modal_mmbrs .modal-content .modal-header p {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .modal_mmbrs .modal-content .modal-header p {
    font-size: 12px;
  }
}
.modal_mmbrs .modal-content .modal-header .close {
  padding: 8px 10px;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
}
.modal_mmbrs .modal-content .modal-header .close i {
  line-height: 1;
  width: auto;
  height: auto;
  display: block;
  font-size: 20px;
  font-weight: 400;
}
.modal_mmbrs .modal-content .modal-body {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px;
}
.modal_mmbrs .modal-content .modal-body > * {
  max-width: 408px;
  width: 100%;
}
.modal_mmbrs .modal-content .modal-body p {
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .modal_mmbrs .modal-content .modal-body p {
    font-size: 14px;
  }
}
.modal_mmbrs .modal-content .modal-body .form-control {
  border: 1px solid #e3e3e3;
}
.modal_mmbrs .modal-content .modal-body a {
  color: #5E1DE1;
}
.modal_mmbrs .modal-content .modal-body form {
  display: block;
  width: 100%;
}
.modal_mmbrs .modal-content .modal-body form .field_mmbrs {
  display: block;
}
.modal_mmbrs .modal-content .modal-body form button[type=submit] {
  display: inline-block;
  margin: 0 auto 20px;
  min-width: 220px;
  height: 45px;
}
@media (max-width: 639px) {
  .modal_mmbrs .modal-content .modal-body form button[type=submit] {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 40px;
  }
}
.modal_mmbrs .modal-content .modal-footer {
  justify-content: center;
  text-align: center;
  min-height: 70px;
}
.modal_mmbrs .modal-content .modal-footer p {
  font-size: 13px;
  margin: 0;
}
.modal_mmbrs .modal-content .modal-footer p a {
  color: #5E1DE1;
}

#modal_sms {
  pointer-events: none;
}
#modal_sms .modal-header .close {
  display: none;
}
#modal_sms .modal-body {
  padding: 0;
  flex: 0;
}
#modal_sms .modal-body form {
  padding: 40px 130px 40px;
}
@media (max-width: 767px) {
  #modal_sms .modal-body form {
    padding: 40px 40px;
  }
}
@media (max-width: 639px) {
  #modal_sms .modal-body form {
    padding: 30px 20px;
  }
}
#modal_sms .iti.iti--allow-dropdown {
  width: 100%;
}
#modal_sms .iti__country-list {
  max-width: 465px;
  color: #000000;
}
#modal_sms button[type=submit] {
  margin-top: 40px;
}
#modal_sms .phone_nr_warp {
  position: relative;
}
#modal_sms .iti--container {
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  position: relative;
  height: 200px;
}
#modal_sms .iti--container .iti__country-list {
  width: 100%;
  max-width: 100%;
}

#modal_sms_ty .modal-content {
  max-width: 615px;
  margin-left: auto;
  margin-right: auto;
}
#modal_sms_ty .modal-header {
  border: none;
  height: 0;
  padding: 0;
}
#modal_sms_ty .modal-body {
  background: url("../img/pages/sales/banner.jpg") 50% 50% no-repeat;
  background-size: auto 250%;
  padding: 40px 40px 20px;
}
@media (max-width: 767px) {
  #modal_sms_ty .modal-body {
    padding: 40px 30px 20px;
  }
}
@media (max-width: 639px) {
  #modal_sms_ty .modal-body {
    padding: 30px 20px 10px;
  }
}
#modal_sms_ty .modal-body .txt_wrap {
  padding-bottom: 0 !important;
}
#modal_sms_ty .modal-body form {
  max-width: 390px;
  margin: 33px auto;
  color: #fff;
}
#modal_sms_ty .modal-body form .field_ttl {
  display: none;
}
#modal_sms_ty .modal-body form .txt-white a {
  color: #5E1DE1;
}
#modal_sms_ty .modal-body form .txt-white a:hover {
  color: #6e33e5;
}

header {
  position: relative;
}
header.only_logo {
  text-align: center;
}
header .logo_wrap {
  z-index: 1;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
header .logo_wrap picture > img,
header .logo_wrap img.logo {
  padding: 0;
  height: auto;
}
header.small .top_row {
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}
@media (max-width: 991px) {
  header.small .logo_wrap {
    margin: 0 15px;
  }
}
@media (max-width: 991px) {
  header.mmbrs .logo_wrap {
    margin-left: 0;
    height: 100%;
  }
}
header.base_menu_wrap {
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background: #f5f5f5;
}
header.base_menu_wrap + .main-banner header {
  display: none;
}
header.base_menu_wrap .logo_wrap img {
  max-width: 140px;
}
@media (max-width: 1300px) {
  header.base_menu_wrap .logo_wrap img {
    max-width: 100px;
  }
}
header.base_menu_wrap .menu-header-menu-container {
  margin: 0 auto;
}
header.base_menu_wrap .navbar {
  background: #fff;
  padding: 0 25px 0 10px;
  z-index: 20;
}
@media (max-width: 991px) {
  header.base_menu_wrap .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
}
header.base_menu_wrap .navbar .row {
  width: calc(100% + 30px);
  align-items: center;
}
header.base_menu_wrap .navbar .btn-login {
  border-radius: 6px;
  border-radius: 6px;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 35px;
  background: #cd0082;
  font-weight: 700;
}
@media (max-width: 1300px) {
  header.base_menu_wrap .navbar .btn-login {
    padding: 5px 20px;
  }
}
@media (max-width: 991px) {
  header.base_menu_wrap .navbar .btn-login {
    margin: 0 auto 20px;
    display: block;
    max-width: 320px;
    width: 100%;
  }
}
header.base_menu_wrap .navbar .nav {
  background: none !important;
  padding: 10px 5px !important;
}
@media (max-width: 991px) {
  header.base_menu_wrap .navbar .nav {
    text-align: center;
    margin: 0 0 15px;
  }
}
header.base_menu_wrap .navbar .nav li.login {
  display: none;
}
@media (max-width: 991px) {
  header.base_menu_wrap .navbar .nav li.login {
    display: block;
  }
}
header.base_menu_wrap .navbar .nav li.login:hover .icon-right-thin {
  margin: 0 -7px 0 7px;
}
header.base_menu_wrap .navbar .nav li.login .icon-right-thin {
  transition: all 0.3s linear;
  font-weight: 100;
  font-size: 80%;
  margin: 0;
}
@media (max-width: 991px) {
  header.base_menu_wrap .navbar .btn-sign-up {
    display: none;
  }
}
header.base_menu_wrap .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  header.base_menu_wrap .navbar-brand {
    margin: 0 0 0 15px;
  }
}
@media (max-width: 991px) {
  header.base_menu_wrap.container-fluid {
    padding: 0;
  }
}
header.base_menu_wrap ul li a {
  font-size: 14px;
  line-height: 1.35em;
  font-weight: 600;
  color: #777;
  padding: 30px 10px;
}
@media (max-width: 1300px) {
  header.base_menu_wrap ul li a {
    font-size: 13px !important;
    padding: 20px 10px !important;
  }
}
@media (max-width: 991px) {
  header.base_menu_wrap ul li a {
    padding: 8px !important;
  }
}
header.base_menu_wrap .current-page-ancestor a,
header.base_menu_wrap .current-menu-item a {
  font-weight: 900;
  color: #5E1DE1;
}
header .btn_menu {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  background: #f5f5f5;
  padding: 21px 27px;
  border-radius: 0;
  font-size: 24px;
  color: #888;
}
header .logo_wrap {
  margin: 0 10px;
}
header img.logo {
  padding: 18px 0;
  width: 120px;
}
@media (max-width: 991px) {
  header img.logo {
    padding: 14px 0;
    height: 50px;
    width: auto;
  }
}
@media (max-width: 991px) {
  header .md_hide {
    display: none !important;
  }
}
@media (max-width: 767px) {
  header .sm_hide {
    display: none !important;
  }
}
header .md_show {
  border-bottom: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
  display: none;
}
@media (max-width: 991px) {
  header .md_show {
    display: block;
  }
}
header .md_show .logo_wrap {
  margin: 0 15px;
}
header .sm_show {
  border-bottom: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
  display: none;
}
@media (max-width: 767px) {
  header .sm_show {
    display: block;
  }
}
header .sm_show .logo_wrap {
  margin: 0 15px;
}
header .top_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  border-bottom: none;
  background: #fff;
  padding: 15px 30px;
}
@media (max-width: 1699px) {
  header .top_row {
    padding: 10px 20px;
  }
}
@media (max-width: 991px) {
  header .top_row {
    padding: 0 20px;
    flex-direction: column;
  }
}
header .top_row .left,
header .top_row .right {
  display: flex;
  align-items: center;
  align-content: center;
}
header .top_row .left {
  width: 50%;
}
header .top_row .right {
  margin-left: auto;
}
@media (max-width: 991px) {
  header .top_row .right {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 10px;
  }
}
header .top_row .right .activate.btn-main-color {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  border-radius: 6px;
  padding: 2px 20px;
  display: flex;
  align-items: center;
  letter-spacing: unset;
  margin-right: 15px;
  cursor: initial;
}
@media (max-width: 479px) {
  header .top_row .right .activate.btn-main-color {
    display: none;
  }
}
header .top_row .right .activate.btn-main-color:hover {
  background: #5E1DE1;
}
header .top_row .right .activate.btn-main-color svg {
  width: 12px;
}
header .top_row .right .divider {
  display: block;
  content: "";
  margin: 0 7px;
  width: 1px;
  height: 40px;
  border-left: 1px solid #74747e;
}
header .top_row .right .hd_main {
  border: none;
  position: relative;
  top: -1px;
}
header .top_row .right .hd_main:hover {
  background: initial !important;
}
header .top_row .right .notifications_trigger,
header .top_row .right .search_modal_trigger,
header .top_row .right .hd_settings,
header .top_row .right .hd_help,
header .top_row .right .hd_marketplace,
header .top_row .right .hd_center,
header .top_row .right .hd_software {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all ease 0.3s;
  margin: 0 7px;
}
header .top_row .right .notifications_trigger:hover,
header .top_row .right .search_modal_trigger:hover,
header .top_row .right .hd_settings:hover,
header .top_row .right .hd_help:hover,
header .top_row .right .hd_marketplace:hover,
header .top_row .right .hd_center:hover,
header .top_row .right .hd_software:hover {
  background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 639px) {
  header .top_row .right .notifications_trigger,
  header .top_row .right .search_modal_trigger,
  header .top_row .right .hd_settings,
  header .top_row .right .hd_help,
  header .top_row .right .hd_marketplace,
  header .top_row .right .hd_center,
  header .top_row .right .hd_software {
    margin-left: 10px;
  }
}
@media (max-width: 360px) {
  header .top_row .right .notifications_trigger,
  header .top_row .right .search_modal_trigger,
  header .top_row .right .hd_settings,
  header .top_row .right .hd_help,
  header .top_row .right .hd_marketplace,
  header .top_row .right .hd_center,
  header .top_row .right .hd_software {
    margin-left: 5px;
    width: 26px;
    height: 26px;
  }
}
header .top_row .right .hd_center svg {
  position: relative;
  top: 2px;
}
header .top_row .right .search_modal_trigger {
  font-size: 26px;
  line-height: 1em;
  font-weight: 100;
  color: #666;
  color: #5E1DE1;
  position: relative;
  border-radius: 100%;
}
@media (max-width: 991px) {
  header .top_row .right .search_modal_trigger {
    font-size: 24px;
  }
}
header .top_row .right .search_modal_trigger:hover {
  text-decoration: none;
  color: #5E1DE1;
}
header .top_row .right .notifications_trigger {
  position: relative;
  margin-right: 10px;
}
header .top_row .right .notifications_trigger:after {
  content: "";
  display: block;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translate(0, -50%);
  height: 40px;
  border-left: 1px solid #eef1f9;
}
header .top_row .right .notifications_trigger .notifications_count {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  color: #fff;
  background: #5e1de1;
  text-align: center;
  position: absolute;
  padding: 0 4px;
  right: 2px;
  top: 18px;
  border-radius: 100%;
  width: 10px;
  height: 10px;
}
header .top_row .right .my_acc_hd_wr {
  margin: 0 10px 0 7px;
}
header .top_row .right .my_acc_hd_wr picture {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
}
header .top_row .right .my_acc_hd_wr picture img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 992px) {
  header .top_row .right .my_acc_hd_wr .drpdwn {
    left: -100% !important;
  }
  header .top_row .right .my_acc_hd_wr:hover:after {
    left: -100% !important;
  }
}
@media (max-width: 639px) {
  header .top_row .right .my_acc_hd_wr {
    margin-left: 10px;
  }
}
header .top_row .right .materials_hd_wr {
  margin-left: 15px;
  padding-right: 20px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 639px) {
  header .top_row .right .materials_hd_wr {
    margin-left: 10px;
  }
}
header .top_row .right .materials_hd_wr:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #5e1de1 transparent transparent transparent;
}
header .top_row .right .drpdwn_wrp {
  transition: all ease 0.3s;
  position: relative;
  cursor: pointer;
}
header .top_row .right .drpdwn_wrp .drpdwn {
  position: absolute;
  left: 50%;
  top: 57px;
  transform: translate(-50%, 0);
  height: 0;
  opacity: 0;
  transition: all ease 0.2s;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 2px 10px 0 rgba(166, 175, 191, 0.3);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  width: 170px;
}
header .top_row .right .drpdwn_wrp .drpdwn li a {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #74747e;
  font-family: Inter, serif;
  position: relative;
  padding: 15px 0 15px 50px;
  display: flex;
  align-items: center;
  transition: all ease 0.3s;
}
header .top_row .right .drpdwn_wrp .drpdwn li a svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
header .top_row .right .drpdwn_wrp .drpdwn li a svg path {
  transition: all ease 0.3s;
}
header .top_row .right .drpdwn_wrp .drpdwn li a:hover {
  background: rgba(158, 158, 158, 0.2);
  text-decoration: none;
}
header .top_row .right .drpdwn_wrp .drpdwn li:nth-last-child(n+2) a {
  border-bottom: 1px solid #eef1f9;
}
header .top_row .right .drpdwn_wrp.expanded:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 35px;
  height: 100px;
  width: 200px;
}
header .top_row .right .drpdwn_wrp.expanded .drpdwn {
  transform: translate(-50%, -12px);
  height: auto;
  opacity: 1;
  z-index: 210;
}
header .top_row .right .drpdwn_wrp.materials_hd_wr .drpdwn {
  right: 0;
  left: unset;
  transform: translate(0, 0);
}
header .top_row .right .drpdwn_wrp.materials_hd_wr.expanded .drpdwn {
  transform: translate(0, -12px);
}
header .top_row .logo_wrap img {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 767px) {
  header .top_row .logo_wrap img {
    max-width: 160px;
  }
}
@media (min-width: 992px) {
  header .wrap_md_nav.collapse {
    display: block;
  }
}
@media (max-width: 991px) {
  header .wrap_md_nav {
    border-bottom: 1px solid #ddd;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 9999;
  }
}
@media (min-width: 768px) {
  header .wrap_sm_nav.collapse {
    display: block;
  }
}
@media (max-width: 767px) {
  header .wrap_sm_nav {
    border-bottom: 1px solid #ddd;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 9999;
  }
}
header .btn-pink {
  width: 153px;
}
@media (max-width: 991px) {
  header #menu-header-menu li.menu-item-has-children ul {
    left: 50%;
    transform: translate(-50%, 0);
    top: 30px;
    position: absolute;
    width: 235px;
  }
}
@media (max-width: 991px) and (max-width: 400px) {
  header #menu-header-menu li.menu-item-has-children ul {
    left: unset;
    transform: unset;
    right: 0;
  }
}

#sm_nav_trigger,
#md_nav_trigger {
  font-size: 36px;
  line-height: 54px;
  font-weight: 100;
  color: #767676;
  transition: all 0.3s linear;
  -webkit-appearance: none;
  text-align: center;
  display: block;
  float: right;
  width: 54px;
  cursor: pointer;
}
#sm_nav_trigger:hover,
#md_nav_trigger:hover {
  text-decoration: none;
  color: #6e33e5;
  background: #fff;
}
#sm_nav_trigger .icon-menu,
#md_nav_trigger .icon-menu {
  font-size: 100%;
  padding: 0;
  margin: 0;
}
#sm_nav_trigger .icon-menu:before,
#md_nav_trigger .icon-menu:before {
  content: "\e80f";
}
#sm_nav_trigger.collapsed .icon-menu:before,
#md_nav_trigger.collapsed .icon-menu:before {
  content: "\e825";
}

@media (max-width: 767px) {
  #sm_nav_trigger {
    font-size: 30px;
    line-height: 48px;
  }
}

@media (max-width: 991px) {
  #md_nav_trigger {
    font-size: 30px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .my_acc_popover {
    z-index: 10000;
  }
}
.my_acc_popover.bs-popover-bottom {
  margin: 14px 0 0 0;
  width: 220px;
  right: 15px;
}
.my_acc_popover.bs-popover-bottom > .arrow:after {
  border-bottom-color: #5E1DE1;
}
.my_acc_popover .popover-body {
  padding: 0;
}
.my_acc_popover a.upgrade {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  background: #5E1DE1;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 15px;
  display: block;
  text-align: center;
}
@media (max-width: 991px) {
  .my_acc_popover a.upgrade {
    font-size: 13px;
    padding: 8px 10px;
  }
}
.my_acc_popover a.upgrade:hover {
  background: #6e33e5;
}
.my_acc_popover a.upgrade i {
  margin-left: 5px;
  margin-right: -10px;
}
.my_acc_popover ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.my_acc_popover ul li {
  border-bottom: 1px solid #eee;
  font: 400 11px "Poppins";
  position: relative;
  color: #a1a1a1;
}
.my_acc_popover ul li.my_acc {
  position: relative;
}
.my_acc_popover ul li.my_acc img {
  position: absolute;
  top: 15px;
  right: -5px;
}
@media (max-width: 991px) {
  .my_acc_popover ul li.my_acc img {
    right: 0;
  }
}
.my_acc_popover ul li img {
  margin: -15px 8px 0px -14px;
  border-radius: 50%;
  padding: 7px;
  float: left;
  width: 50px;
}
@media (max-width: 991px) {
  .my_acc_popover ul li img {
    margin: -6px 8px 0 0;
    width: 30px;
    padding: 0;
  }
}
.my_acc_popover ul li a {
  font: 600 14px "Poppins";
  padding: 16px 55px 16px 13px;
  position: relative;
  display: block;
  color: #787878;
  text-align: right;
}
@media (max-width: 991px) {
  .my_acc_popover ul li a {
    padding: 12px 45px 12px 12px;
  }
}
.my_acc_popover ul li a [class*=" icon-"] {
  position: absolute;
  font-size: 17px;
  right: 17px;
  top: 15px;
}
@media (max-width: 991px) {
  .my_acc_popover ul li a [class*=" icon-"] {
    right: 12px;
  }
}
.my_acc_popover ul li a.with_sep {
  position: relative;
}
.my_acc_popover ul li a.with_sep:before {
  border-right: 1px solid #ddd;
  position: absolute;
  display: block;
  height: 100%;
  content: "";
  left: 49px;
  top: 0;
}

.prices_popover {
  min-width: 370px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.prices_popover .popover-body {
  color: #000;
  padding: 32px 26px;
}
.prices_popover .popover-body h3 {
  font-size: 18px;
}
.prices_popover .popover-body .description {
  font-size: 14px;
}
.prices_popover .popover-body .description span {
  color: #5E1DE1;
  font-weight: bold;
}
.prices_popover .popover-body i[class^=icon-] {
  line-height: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5E1DE1;
  border-radius: 50%;
  color: #fff;
  font-size: 23px;
  margin: 0 0 10px;
}

#searchform {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
}
#searchform div {
  height: 100%;
  width: 100%;
}
#searchform .screen-reader-text {
  display: none;
}
#searchform input {
  font-size: 48px;
  line-height: 1.65em;
  font-weight: 400;
  color: #000;
  background: transparent;
  text-align: center;
  position: absolute;
  padding: 0 30px;
  height: initial;
  margin: auto;
  width: 100%;
  top: 40%;
  border: 0;
}
@media (max-width: 639px) {
  #searchform input {
    font-size: 32px;
  }
}
#searchform input:focus {
  box-shadow: none;
  outline: none;
}
#searchform #searchsubmit {
  margin: 85px 0 0 -160px;
  letter-spacing: 6px;
  position: absolute;
  padding: 15px 0;
  font-size: 18px;
  width: 320px;
  left: 50%;
  top: 40%;
}
@media (max-width: 639px) {
  #searchform #searchsubmit {
    margin: 50px 0 0 -145px;
    font-size: 16px;
    padding: 12px 0;
    width: 290px;
  }
}
#searchform .close {
  font-size: 36px;
  line-height: 60px;
  font-weight: 100;
  color: #5E1DE1;
  transition: all 0.3s linear;
  text-shadow: none;
  cursor: pointer;
  position: fixed;
  outline: none;
  opacity: 1;
  right: 0;
  top: 0;
}
#searchform .close:hover {
  background: #5E1DE1;
  color: #fff;
}
#searchform .close .icon-cancel {
  text-align: center;
  font-size: 100%;
  height: 60px;
  width: 60px;
  padding: 0;
  margin: 0;
}
#searchform.open {
  transform: translate(0, 0) scale(1, 1);
  z-index: 9999;
  opacity: 1;
}

#menu-cert-main-menu {
  text-align: center;
  margin: 0 auto;
  display: table;
  float: none;
}
@media (max-width: 767px) {
  #menu-cert-main-menu {
    padding: 15px 0;
    display: block;
  }
}
#menu-cert-main-menu li {
  display: inline-block;
  float: left;
}
@media (max-width: 767px) {
  #menu-cert-main-menu li {
    display: block;
    float: none;
  }
}
#menu-cert-main-menu li .sub-menu {
  overflow: visible;
  height: 0;
}
#menu-cert-main-menu li .sub-menu li:first-child:before, #menu-cert-main-menu li .sub-menu li:first-child:after {
  display: none;
}
#menu-cert-main-menu li .sub-menu li.menu-item-has-children:hover {
  overflow: visible;
  position: unset;
  height: auto;
}
#menu-cert-main-menu li .sub-menu li.menu-item-has-children:hover:before {
  content: "";
  display: block;
  position: absolute;
  left: 230px;
  top: 0;
  bottom: 0;
  width: 30px;
  background: red;
  z-index: -1;
}
#menu-cert-main-menu li .sub-menu .sub-menu {
  left: 235px;
  top: 0;
}
#menu-cert-main-menu li:first-child {
  position: relative;
}
#menu-cert-main-menu li:first-child:before {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: inline-block;
  font-family: "fontello", serif;
  position: absolute;
  content: "←";
  font-weight: 100;
  font-size: 11px;
  color: #787878;
  height: 16px;
  margin: auto;
  left: 10px;
  bottom: 0;
  top: 7px;
}
@media (max-width: 991px) {
  #menu-cert-main-menu li:first-child:before {
    left: 0;
  }
}
@media (max-width: 767px) {
  #menu-cert-main-menu li:first-child:before {
    display: table;
    width: 20px;
    right: 92px;
  }
}
#menu-cert-main-menu li:first-child:after {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-right: 1px solid #787878;
  position: absolute;
  display: inline;
  height: 16px;
  margin: auto;
  content: "";
  bottom: 0;
  right: 0;
  top: 0;
}
#menu-cert-main-menu li a {
  font: 600 14px "Poppins";
  padding: 16px 20px;
  color: #787878;
  display: block;
}
@media (max-width: 1699px) {
  #menu-cert-main-menu li a {
    padding: 16px;
  }
}
@media (max-width: 991px) {
  #menu-cert-main-menu li a {
    padding: 16px 7px;
  }
}
@media (max-width: 767px) {
  #menu-cert-main-menu li a {
    font-size: 14px;
    padding: 10px;
  }
}
#menu-cert-main-menu li:hover:first-child:before {
  color: #5E1DE1;
  left: 6px;
}
@media (max-width: 991px) {
  #menu-cert-main-menu li:hover:first-child:before {
    left: -6px;
  }
}
#menu-cert-main-menu li:hover:first-child:after {
  border-color: #5E1DE1;
}
#menu-cert-main-menu li:hover a, #menu-cert-main-menu li.current-menu-ancestor a, #menu-cert-main-menu li.current-menu-item a {
  background: transparent;
  color: #5E1DE1;
}
#menu-cert-main-menu li.current-menu-ancestor a, #menu-cert-main-menu li.current-menu-item a {
  font-weight: 700;
}
#menu-cert-main-menu li.menu-item-has-children {
  position: relative;
}
#menu-cert-main-menu li.menu-item-has-children a:after {
  font: normal normal normal 14px/1 fontello;
  display: inline-block;
  padding: 0 0 0 5px;
  content: "\e80a";
  right: 0;
  top: 0;
}
#menu-cert-main-menu li.menu-item-has-children ul {
  -webkit-transition: all 0.5s linear;
  -khtml-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  border: 1px solid transparent;
  position: absolute;
  text-align: left;
  background: #fff;
  list-style: none;
  height: 0;
  width: 235px;
  opacity: 0;
  padding: 0;
  z-index: 1;
  top: 51px;
  left: 0;
}
@media (max-width: 991px) {
  #menu-cert-main-menu li.menu-item-has-children ul {
    background: #f5f5f5;
    position: relative;
    border: none;
    width: 100%;
    top: 0;
  }
}
#menu-cert-main-menu li.menu-item-has-children ul li {
  display: block;
  float: none;
}
#menu-cert-main-menu li.menu-item-has-children ul li a {
  letter-spacing: 0.5px;
  padding: 11.5px 15px;
  text-align: left;
  display: block;
}
@media (max-width: 991px) {
  #menu-cert-main-menu li.menu-item-has-children ul li a {
    text-align: center;
    padding: 8px 15px;
  }
}
#menu-cert-main-menu li.menu-item-has-children ul li a:after {
  display: none;
}
#menu-cert-main-menu li.menu-item-has-children:hover li a, #menu-cert-main-menu li.menu-item-has-children.current-menu-ancestor li a {
  color: #787878;
}
#menu-cert-main-menu li.menu-item-has-children:hover li:hover a, #menu-cert-main-menu li.menu-item-has-children:hover li.current-menu-item a, #menu-cert-main-menu li.menu-item-has-children.current-menu-ancestor li:hover a, #menu-cert-main-menu li.menu-item-has-children.current-menu-ancestor li.current-menu-item a {
  background: transparent;
  color: #5E1DE1;
}
#menu-cert-main-menu li.menu-item-has-children:hover > a:after {
  content: "\e80b";
}
#menu-cert-main-menu li.menu-item-has-children:hover > .sub-menu {
  border: 1px solid #e3e3e3;
  height: auto;
  opacity: 1;
}
@media (max-width: 991px) {
  #menu-cert-main-menu li.menu-item-has-children:hover > .sub-menu {
    margin: 7px 0;
    border: none;
  }
}

.logo_section {
  position: relative;
}
.logo_section.big_logo img {
  max-width: 100px;
}
.logo_section button {
  background: none;
  position: absolute;
  border-radius: 0;
  font-size: 18px;
  height: 100%;
  padding: 6px;
  color: #888;
  right: 0;
  top: 0;
}
.logo_section button .icon-up-open,
.logo_section button .fa-angle-up {
  display: block;
}
.logo_section button .icon-down-open,
.logo_section button .fa-angle-down {
  display: none;
}
.logo_section button.collapsed .icon-up-open,
.logo_section button.collapsed .fa-angle-up {
  display: none;
}
.logo_section button.collapsed .icon-down-open,
.logo_section button.collapsed .fa-angle-down {
  display: block;
}
.logo_section:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.logo_section ul.links {
  margin: 0 25px 0 0;
  list-style: none;
  padding: 0;
}
.logo_section ul.links li {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-left: 7px solid #66ab26;
  border-right: 1px solid #fff;
  background: #f5f5f5;
  text-align: center;
}
.logo_section ul.links li:hover {
  background: #ddd;
}
.logo_section ul.links li a {
  font: 400 italic 13px/2.8em "Poppins";
  letter-spacing: -0.5px;
  padding-left: 10px;
  text-align: left;
  color: #787878;
  display: block;
}
.logo_section ul.links li a .fa {
  font-style: normal;
  margin: 0 0 0 5px;
}
.logo_section img {
  margin: 22px 64px 21px 35px;
  width: 150px;
}

.menu-members-main-menu-container {
  position: relative;
  z-index: 200;
}

#menu-members-main-menu:not(.mmenu_start),
#menu-header-menu {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 15px 0;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1230px;
  padding-left: 15px;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start),
  #menu-header-menu {
    padding-left: 0;
  }
}
#menu-members-main-menu:not(.mmenu_start).md_show,
#menu-header-menu.md_show {
  display: none !important;
}
@media (max-width: 1300px) {
  #menu-members-main-menu:not(.mmenu_start).md_show,
  #menu-header-menu.md_show {
    padding: 15px 0;
  }
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start).md_show,
  #menu-header-menu.md_show {
    display: block !important;
    padding: 5px 0;
  }
}
#menu-members-main-menu:not(.mmenu_start) .community_wrap,
#menu-header-menu .community_wrap {
  margin-left: 10px;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) .community_wrap,
  #menu-header-menu .community_wrap {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
#menu-members-main-menu:not(.mmenu_start) .community_wrap a,
#menu-header-menu .community_wrap a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  padding: 6px 25px;
  transition: all 0.2s;
  max-width: 180px;
  background: #d10c92;
}
#menu-members-main-menu:not(.mmenu_start) .community_wrap a:hover,
#menu-header-menu .community_wrap a:hover {
  background: #d10c92;
  opacity: 0.8;
  color: #fff;
}
#menu-members-main-menu:not(.mmenu_start) .community_wrap a:focus,
#menu-header-menu .community_wrap a:focus {
  color: #fff;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) .community_wrap a,
  #menu-header-menu .community_wrap a {
    margin-left: auto;
    margin-right: auto;
  }
}
#menu-members-main-menu:not(.mmenu_start) .showcase,
#menu-header-menu .showcase {
  margin-left: 10px;
}
#menu-members-main-menu:not(.mmenu_start) .showcase *,
#menu-header-menu .showcase * {
  text-decoration: initial !important;
  text-shadow: initial !important;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) .showcase,
  #menu-header-menu .showcase {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
#menu-members-main-menu:not(.mmenu_start) .showcase a,
#menu-header-menu .showcase a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  padding: 6px 25px;
  transition: all 0.2s;
  max-width: 180px;
  background: #ED47E9;
}
#menu-members-main-menu:not(.mmenu_start) .showcase a:hover,
#menu-header-menu .showcase a:hover {
  background: #ff52fc;
  opacity: 0.8;
  color: #fff;
}
#menu-members-main-menu:not(.mmenu_start) .showcase a:focus,
#menu-header-menu .showcase a:focus {
  color: #fff;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) .showcase a,
  #menu-header-menu .showcase a {
    margin-left: auto;
    margin-right: auto;
  }
}
#menu-members-main-menu:not(.mmenu_start) .showcase a:before,
#menu-header-menu .showcase a:before {
  display: none;
}
#menu-members-main-menu:not(.mmenu_start) ul,
#menu-header-menu ul {
  padding: 0;
  margin: 0 0 0 10px;
}
#menu-members-main-menu:not(.mmenu_start) ul a,
#menu-header-menu ul a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  padding: 8px 38px;
  transition: all 0.2s;
}
#menu-members-main-menu:not(.mmenu_start) ul a:hover,
#menu-header-menu ul a:hover {
  opacity: 0.8;
  color: #fff;
}
#menu-members-main-menu:not(.mmenu_start) ul a:focus,
#menu-header-menu ul a:focus {
  color: #fff;
}
#menu-members-main-menu:not(.mmenu_start) li,
#menu-header-menu li {
  display: block;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) li:nth-last-child(1) ul.sub-menu, #menu-members-main-menu:not(.mmenu_start) li:nth-last-child(2) ul.sub-menu, #menu-members-main-menu:not(.mmenu_start) li:nth-last-child(3) ul.sub-menu,
  #menu-header-menu li:nth-last-child(1) ul.sub-menu,
  #menu-header-menu li:nth-last-child(2) ul.sub-menu,
  #menu-header-menu li:nth-last-child(3) ul.sub-menu {
    left: unset;
    right: 0;
  }
}
#menu-members-main-menu:not(.mmenu_start) li.with_btn a,
#menu-header-menu li.with_btn a {
  background: #5E1DE1;
  font-size: 13px;
  border-radius: 40px;
  position: relative;
  padding: 8px 22px;
  font-weight: 500;
  margin: -10px 0 0 15px;
  color: #fff;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) li.with_btn a,
  #menu-header-menu li.with_btn a {
    font-size: 12px;
    padding: 6px 15px;
  }
}
@media (max-width: 767px) {
  #menu-members-main-menu:not(.mmenu_start) li.with_btn a,
  #menu-header-menu li.with_btn a {
    margin: 0 auto;
    max-width: 190px;
  }
}
#menu-members-main-menu:not(.mmenu_start) li.with_btn a:hover,
#menu-header-menu li.with_btn a:hover {
  background: #6e33e5;
  color: #fff;
}
#menu-members-main-menu:not(.mmenu_start) li.new,
#menu-header-menu li.new {
  position: relative;
}
#menu-members-main-menu:not(.mmenu_start) li.new:before,
#menu-header-menu li.new:before {
  position: absolute;
  top: 12px;
  right: -4px;
  content: "NEW";
  color: red;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 500;
  padding: 4px;
  pointer-events: none;
}
#menu-members-main-menu:not(.mmenu_start) li.li_passes,
#menu-header-menu li.li_passes {
  position: relative;
}
#menu-members-main-menu:not(.mmenu_start) li.li_passes:before,
#menu-header-menu li.li_passes:before {
  position: absolute;
  top: 12px;
  right: -4px;
  content: "50% OFF";
  color: #5E1DE1;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 500;
  padding: 4px;
  pointer-events: none;
}
#menu-members-main-menu:not(.mmenu_start) li a,
#menu-header-menu li a {
  font-size: 15px;
  font-weight: 600;
  color: #0f0f3d;
  text-decoration: none;
  transition: 0.15s;
  padding: 25px 15px;
  display: block;
}
@media (max-width: 1300px) {
  #menu-members-main-menu:not(.mmenu_start) li a,
  #menu-header-menu li a {
    font-size: 13px;
    padding: 25px 7px;
  }
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) li a,
  #menu-header-menu li a {
    padding: 8px 15px;
  }
}
#menu-members-main-menu:not(.mmenu_start) li:hover > a, #menu-members-main-menu:not(.mmenu_start) li.current-menu-ancestor > a, #menu-members-main-menu:not(.mmenu_start) li.current-menu-item > a, #menu-members-main-menu:not(.mmenu_start) li.current_page_item > a,
#menu-header-menu li:hover > a,
#menu-header-menu li.current-menu-ancestor > a,
#menu-header-menu li.current-menu-item > a,
#menu-header-menu li.current_page_item > a {
  position: relative;
}
#menu-members-main-menu:not(.mmenu_start) li:hover > a:before, #menu-members-main-menu:not(.mmenu_start) li.current-menu-ancestor > a:before, #menu-members-main-menu:not(.mmenu_start) li.current-menu-item > a:before, #menu-members-main-menu:not(.mmenu_start) li.current_page_item > a:before,
#menu-header-menu li:hover > a:before,
#menu-header-menu li.current-menu-ancestor > a:before,
#menu-header-menu li.current-menu-item > a:before,
#menu-header-menu li.current_page_item > a:before {
  position: absolute;
  content: "";
  bottom: 20%;
  width: calc(100% - 28px);
  left: 14px;
  border-bottom: 2px solid #5E1DE1;
  opacity: 1;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) li:hover > a:before, #menu-members-main-menu:not(.mmenu_start) li.current-menu-ancestor > a:before, #menu-members-main-menu:not(.mmenu_start) li.current-menu-item > a:before, #menu-members-main-menu:not(.mmenu_start) li.current_page_item > a:before,
  #menu-header-menu li:hover > a:before,
  #menu-header-menu li.current-menu-ancestor > a:before,
  #menu-header-menu li.current-menu-item > a:before,
  #menu-header-menu li.current_page_item > a:before {
    display: none;
  }
}
#menu-members-main-menu:not(.mmenu_start) li .sub-menu .menu-item a:before,
#menu-header-menu li .sub-menu .menu-item a:before {
  display: none;
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children,
#menu-header-menu li.menu-item-has-children {
  position: relative;
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children > a:after,
#menu-header-menu li.menu-item-has-children > a:after {
  content: "\e80a";
  font: normal normal normal 14px/1 fontello;
  display: inline-block;
  padding: 0 0 0 5px;
  right: 0;
  top: 0;
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children:hover li > a, #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children.current-menu-ancestor li > a,
#menu-header-menu li.menu-item-has-children:hover li > a,
#menu-header-menu li.menu-item-has-children.current-menu-ancestor li > a {
  color: #787878;
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children:hover li:hover > a, #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children:hover li.current-menu-item > a, #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children.current-menu-ancestor li:hover > a, #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children.current-menu-ancestor li.current-menu-item > a,
#menu-header-menu li.menu-item-has-children:hover li:hover > a,
#menu-header-menu li.menu-item-has-children:hover li.current-menu-item > a,
#menu-header-menu li.menu-item-has-children.current-menu-ancestor li:hover > a,
#menu-header-menu li.menu-item-has-children.current-menu-ancestor li.current-menu-item > a {
  color: #5E1DE1;
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children:hover > a:after,
#menu-header-menu li.menu-item-has-children:hover > a:after {
  content: "\e80b";
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children:hover > ul.sub-menu,
#menu-header-menu li.menu-item-has-children:hover > ul.sub-menu {
  border: 1px solid #e3e3e3;
  height: auto;
  opacity: 1;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children:hover > ul.sub-menu,
  #menu-header-menu li.menu-item-has-children:hover > ul.sub-menu {
    margin: 0 0 7px 0;
    border: none;
  }
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu,
#menu-header-menu li.menu-item-has-children ul.sub-menu {
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: absolute;
  text-align: left;
  background: #fff;
  list-style: none;
  height: 0;
  overflow: hidden;
  width: 235px;
  opacity: 0;
  padding: 0;
  z-index: 1;
  top: 58px;
  left: 0;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu,
  #menu-header-menu li.menu-item-has-children ul.sub-menu {
    position: relative;
    border: none;
    width: 100%;
    top: 0;
  }
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu:hover,
#menu-header-menu li.menu-item-has-children ul.sub-menu:hover {
  overflow: visible;
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li,
#menu-header-menu li.menu-item-has-children ul.sub-menu li {
  transition: all ease 0.3s;
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li:hover,
#menu-header-menu li.menu-item-has-children ul.sub-menu li:hover {
  background: rgba(158, 158, 158, 0.2);
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li a,
#menu-header-menu li.menu-item-has-children ul.sub-menu li a {
  letter-spacing: 0.5px;
  padding: 11.5px 15px;
  text-align: left;
  display: block;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li a,
  #menu-header-menu li.menu-item-has-children ul.sub-menu li a {
    text-align: center;
    padding: 8px 15px;
  }
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li.menu-item-has-children > a,
#menu-header-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children > a {
  position: relative;
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li.menu-item-has-children > a:after,
#menu-header-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children > a:after {
  content: "\e809";
  font-family: "fontello", Serif;
  position: absolute;
  right: 15px;
  top: 16px;
  transition: all ease 0.3s;
}
@media (max-width: 991px) {
  #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li.menu-item-has-children > a:after,
  #menu-header-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children > a:after {
    content: "\e80a";
    position: relative;
    top: unset;
    right: unset;
    margin-left: 5px;
  }
}
@media (min-width: 992px) {
  #menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li.menu-item-has-children > ul.sub-menu,
  #menu-header-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children > ul.sub-menu {
    top: 0;
    left: 223px;
  }
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li.menu-item-has-children:hover > a:after,
#menu-header-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
}
#menu-members-main-menu:not(.mmenu_start) li.menu-item-has-children ul.sub-menu li.menu-item-has-children:hover:after,
#menu-header-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children:hover:after {
  content: "";
  display: block;
  position: absolute;
  left: 230px;
  top: 0;
  width: 30px;
  height: 100%;
}

.footer {
  padding-top: 71px;
  padding-bottom: 70px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
.footer .top {
  display: flex;
  justify-content: space-between;
  max-height: 1230px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .footer .top {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }
}
.footer .top ul:nth-child(1) {
  width: 28.5%;
}
.footer .top ul:nth-child(2) {
  width: 17.5%;
}
@media (max-width: 767px) {
  .footer .top ul:nth-child(2) {
    padding-top: 30px;
  }
}
.footer .top ul:nth-child(3) {
  width: 26.67%;
}
.footer .top ul:nth-child(4) {
  width: 16.7%;
}
.footer .top ul:nth-child(5) {
  width: 13%;
}
.footer .top > ul {
  padding-right: 15px;
  padding-left: 15px;
  margin-left: 0;
}
@media (max-width: 767px) {
  .footer .top > ul {
    width: 50% !important;
    margin-bottom: 40px;
  }
}
.footer .top > ul .logo {
  margin-top: -5px;
  margin-bottom: 10px;
}
.footer .top > ul li {
  list-style: none;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .footer .top > ul li {
    margin-bottom: 0;
  }
}
.footer .top > ul li a {
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  color: #0f0f3d;
  font-size: 13px;
  text-transform: none;
}
.footer .top > ul li a:hover {
  text-decoration: underline;
}
.footer .logo {
  max-width: 150px;
}
.footer h5 {
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  color: #0f0f3d;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0px;
  text-transform: none;
  margin-bottom: 15px;
}
.footer .market_wrap {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .footer .market_wrap.desktop {
    display: none;
  }
}
.footer .market_wrap.mob {
  display: none;
}
@media (max-width: 767px) {
  .footer .market_wrap.mob {
    display: flex;
    justify-content: center;
  }
}
.footer .market_wrap a:first-child {
  margin-right: 15px;
}
@media (max-width: 991px) {
  .footer .market_wrap a:first-child {
    margin-bottom: 15px;
    display: block;
  }
}
.footer .market_wrap a:hover {
  text-decoration: none;
}
.footer .market_wrap a > img {
  max-width: 120px;
}
.footer .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .footer .bottom {
    align-items: center;
    align-content: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer .bottom p {
  text-decoration: none;
  color: #0f0f3d;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  text-transform: none;
  margin-bottom: 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer .bottom p {
    margin-bottom: 0;
  }
}
.footer .bottom ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
}
.footer .bottom ul li {
  display: block;
}
.footer .bottom ul li a {
  font-size: 26px;
  margin: 0 3px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 26px;
}
.footer .bottom ul li a:hover {
  text-decoration: none;
}
.footer .bottom ul li a:hover i {
  color: #5E1DE1;
}
.footer .bottom ul li a:hover i.circled {
  border-color: #5E1DE1;
}
.footer .bottom ul li a i {
  color: #0f0f3d;
  transition: all 0.4s;
}

.footer_copy {
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  margin-top: 50px;
  margin-bottom: 25px;
  color: #06063C;
}
.footer_copy a {
  color: #06063C;
  text-decoration: underline;
}
.footer_copy a:hover {
  color: #06063C;
  text-decoration: none;
}

.contact-sticky {
  border-top: 1px solid #f7a31d;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  justify-content: center;
  align-items: center;
  padding: 10px 230px;
  text-align: center;
  background: #fff;
  position: fixed;
  display: flex;
  height: 84px;
  z-index: 9;
  bottom: 0;
  right: 0;
  left: 0;
}
@media (max-width: 991px) {
  .contact-sticky {
    padding: 15px 20px;
    height: auto;
  }
}
@media (max-width: 639px) {
  .contact-sticky {
    display: none;
  }
}
.contact-sticky #contact-toggle {
  border-radius: 6px 6px 0 0;
  outline: none !important;
  background: #f7a31d;
  margin-left: -27px;
  position: absolute;
  line-height: 12px;
  margin-top: -14px;
  transition: 0.2s;
  cursor: pointer;
  height: 14px;
  border: none;
  width: 54px;
  color: #fff;
  left: 50%;
  top: 0;
}
.contact-sticky #contact-toggle:hover {
  background: #ddd;
}
.contact-sticky p {
  line-height: 1.6;
  font-size: 18px;
  color: #000;
  margin: 0;
}
@media (max-width: 1300px) {
  .contact-sticky p {
    font-size: 16px;
  }
}
.contact-sticky p a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #f7a31d;
}
@media (max-width: 1300px) {
  .contact-sticky p a {
    font-size: 16px;
  }
}
.contact-sticky p a i {
  display: inline-block;
  margin: 0 10px 0 5px;
  border-radius: 50%;
  background: orange;
  line-height: 30px;
  font-size: 15px;
  height: 28px;
  width: 28px;
  color: #fff;
}
@media (max-width: 991px) {
  .contact-sticky p a i {
    line-height: 26px;
    font-size: 14px;
    height: 26px;
    width: 26px;
  }
}
.contact-collapsed .contact-sticky {
  transform: translate3d(0, 100%, 0);
}
.contact-collapsed .contact-sticky #contact-toggle i {
  transform: scaleY(-1);
}

#cs_video_quotes,
#rec_feat_sess {
  background: #fff;
  padding: 0 0 125px;
  overflow: hidden;
}
@media (max-width: 639px) {
  #cs_video_quotes,
  #rec_feat_sess {
    padding: 0 0 60px;
  }
}
@media (max-width: 479px) {
  #cs_video_quotes,
  #rec_feat_sess {
    padding: 0 0 50px;
  }
}
#cs_video_quotes .videos .container,
#rec_feat_sess .videos .container {
  padding: 0;
}
@media (max-width: 2559px) {
  #cs_video_quotes .videos .container,
  #rec_feat_sess .videos .container {
    padding: 0 50px;
  }
}
@media (max-width: 1699px) {
  #cs_video_quotes .videos .container,
  #rec_feat_sess .videos .container {
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  #cs_video_quotes .videos .container,
  #rec_feat_sess .videos .container {
    padding: 0;
  }
}
#cs_video_quotes .action,
#rec_feat_sess .action {
  margin: 0 0 100px;
  padding: 44px 76px;
  background: #eeeeee;
  text-align: center;
  border-radius: 0 0 6px 6px;
}
@media (max-width: 1919px) {
  #cs_video_quotes .action,
  #rec_feat_sess .action {
    margin: 0 0 70px;
  }
}
@media (max-width: 991px) {
  #cs_video_quotes .action,
  #rec_feat_sess .action {
    padding: 15px 45px;
    margin: 0 0 50px;
  }
}
@media (max-width: 639px) {
  #cs_video_quotes .action,
  #rec_feat_sess .action {
    padding: 15px;
    margin: 0 0 20px;
  }
}
#cs_video_quotes .action .btn,
#rec_feat_sess .action .btn {
  text-transform: uppercase;
  letter-spacing: 2.7px;
  font-size: 16px;
  padding: 14px 28px;
  width: auto;
  border-radius: 6px;
}
@media (max-width: 1699px) {
  #cs_video_quotes .action .btn,
  #rec_feat_sess .action .btn {
    letter-spacing: 1px;
    font-size: 18px;
    padding: 10px 40px;
  }
}
@media (max-width: 991px) {
  #cs_video_quotes .action .btn,
  #rec_feat_sess .action .btn {
    font-size: 16px;
    padding: 8px 20px;
  }
}
@media (max-width: 479px) {
  #cs_video_quotes .action .btn,
  #rec_feat_sess .action .btn {
    width: 100%;
    max-width: 100%;
  }
}
#cs_video_quotes .star_rating,
#rec_feat_sess .star_rating {
  margin: 0 auto 15px;
  display: table;
}
#cs_video_quotes h2,
#rec_feat_sess h2 {
  font-size: 40px;
  line-height: 1.35;
  font-weight: 700;
  margin: 0 40px 40px;
  text-align: center;
  padding: 0 40px;
}
@media (max-width: 1919px) {
  #cs_video_quotes h2,
  #rec_feat_sess h2 {
    font-size: 36px;
  }
}
@media (max-width: 1300px) {
  #cs_video_quotes h2,
  #rec_feat_sess h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  #cs_video_quotes h2,
  #rec_feat_sess h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  #cs_video_quotes h2,
  #rec_feat_sess h2 {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  #cs_video_quotes h2,
  #rec_feat_sess h2 {
    margin: 0 0 20px;
    padding: 0 20px;
    font-size: 26px;
  }
}
@media (max-width: 479px) {
  #cs_video_quotes h2,
  #rec_feat_sess h2 {
    font-size: 20px;
    line-height: 1.25;
  }
}
#cs_video_quotes .videos,
#rec_feat_sess .videos {
  margin: 0;
}
@media (max-width: 767px) {
  #cs_video_quotes .videos,
  #rec_feat_sess .videos {
    margin: 0;
  }
}
#cs_video_quotes .videos-item,
#rec_feat_sess .videos-item {
  padding: 20px 0 30px;
  justify-content: stretch;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 991px) {
  #cs_video_quotes .videos-item,
  #rec_feat_sess .videos-item {
    flex-direction: column;
  }
}
@media (max-width: 639px) {
  #cs_video_quotes .videos-item,
  #rec_feat_sess .videos-item {
    padding: 10px 0 20px;
  }
}
#cs_video_quotes .videos-item figure,
#rec_feat_sess .videos-item figure {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  background-image: url("../img/coming-soon/quote.png");
  background-repeat: no-repeat;
  background-position: center;
  flex-direction: column;
  margin: 0 15px;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex: 1;
}
@media (max-width: 991px) {
  #cs_video_quotes .videos-item figure,
  #rec_feat_sess .videos-item figure {
    background-size: 160px auto;
    background-position: center 40px;
  }
}
#cs_video_quotes .videos-item figcaption,
#rec_feat_sess .videos-item figcaption {
  padding: 35px 50px 25px;
  flex-direction: column;
  display: flex;
  flex: 1;
}
@media (max-width: 1919px) {
  #cs_video_quotes .videos-item figcaption,
  #rec_feat_sess .videos-item figcaption {
    padding: 16px 24px 25px;
  }
}
@media (max-width: 479px) {
  #cs_video_quotes .videos-item figcaption,
  #rec_feat_sess .videos-item figcaption {
    padding: 15px;
  }
}
#cs_video_quotes .videos-item figcaption h3,
#rec_feat_sess .videos-item figcaption h3 {
  font-size: 24px;
  line-height: 1.38;
  font-weight: bold;
  margin: 0 0 12px;
}
@media (max-width: 1699px) {
  #cs_video_quotes .videos-item figcaption h3,
  #rec_feat_sess .videos-item figcaption h3 {
    font-size: 20px;
    margin: 0 0 5px;
  }
}
@media (max-width: 991px) {
  #cs_video_quotes .videos-item figcaption h3,
  #rec_feat_sess .videos-item figcaption h3 {
    font-size: 18px;
    margin: 0 0 5px;
  }
}
@media (max-width: 767px) {
  #cs_video_quotes .videos-item figcaption h3,
  #rec_feat_sess .videos-item figcaption h3 {
    font-size: 22px;
    max-width: 100%;
  }
}
@media (max-width: 639px) {
  #cs_video_quotes .videos-item figcaption h3,
  #rec_feat_sess .videos-item figcaption h3 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  #cs_video_quotes .videos-item figcaption h3,
  #rec_feat_sess .videos-item figcaption h3 {
    font-size: 16px;
    max-width: 250px;
  }
}
#cs_video_quotes .videos-item figcaption p,
#rec_feat_sess .videos-item figcaption p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 58px;
}
@media (max-width: 1919px) {
  #cs_video_quotes .videos-item figcaption p,
  #rec_feat_sess .videos-item figcaption p {
    font-size: 18px;
  }
}
#cs_video_quotes .videos-item figcaption p.quote-text,
#rec_feat_sess .videos-item figcaption p.quote-text {
  font-size: 18px;
  margin-bottom: 107px;
  line-height: 1.8;
}
@media (max-width: 639px) {
  #cs_video_quotes .videos-item figcaption p.quote-text,
  #rec_feat_sess .videos-item figcaption p.quote-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
#cs_video_quotes .videos-item figcaption small,
#rec_feat_sess .videos-item figcaption small {
  margin-top: auto;
  color: #7e7e7e;
}
#cs_video_quotes .videos-item .video_wrap + figcaption,
#rec_feat_sess .videos-item .video_wrap + figcaption {
  padding: 16px 24px 25px;
}
@media (max-width: 479px) {
  #cs_video_quotes .videos-item .video_wrap + figcaption,
  #rec_feat_sess .videos-item .video_wrap + figcaption {
    padding: 15px;
  }
}
#cs_video_quotes #video-quotes,
#cs_video_quotes #featured-sess,
#rec_feat_sess #video-quotes,
#rec_feat_sess #featured-sess {
  overflow: visible;
  padding: 7px 0;
  margin: 0;
}
#cs_video_quotes #video-quotes .slick-list,
#cs_video_quotes #featured-sess .slick-list,
#rec_feat_sess #video-quotes .slick-list,
#rec_feat_sess #featured-sess .slick-list {
  margin: 0 -15px;
  width: auto;
}
@media (max-width: 991px) {
  #cs_video_quotes #video-quotes .slick-list,
  #cs_video_quotes #featured-sess .slick-list,
  #rec_feat_sess #video-quotes .slick-list,
  #rec_feat_sess #featured-sess .slick-list {
    margin: 0;
  }
}
#cs_video_quotes #video-quotes .video .icons,
#cs_video_quotes #featured-sess .video .icons,
#rec_feat_sess #video-quotes .video .icons,
#rec_feat_sess #featured-sess .video .icons {
  height: 60px;
  bottom: 15px;
  width: 85px;
}
@media (max-width: 991px) {
  #cs_video_quotes #video-quotes .video .icons,
  #cs_video_quotes #featured-sess .video .icons,
  #rec_feat_sess #video-quotes .video .icons,
  #rec_feat_sess #featured-sess .video .icons {
    border-radius: 6px;
    height: 50px;
    width: 70px;
    bottom: 0;
  }
}
@media (max-width: 479px) {
  #cs_video_quotes #video-quotes .video .icons,
  #cs_video_quotes #featured-sess .video .icons,
  #rec_feat_sess #video-quotes .video .icons,
  #rec_feat_sess #featured-sess .video .icons {
    height: 40px;
    width: 60px;
  }
}
#cs_video_quotes #video-quotes .video .icons .icon,
#cs_video_quotes #featured-sess .video .icons .icon,
#rec_feat_sess #video-quotes .video .icons .icon,
#rec_feat_sess #featured-sess .video .icons .icon {
  font-size: 40px;
  padding: 0 14px;
}
@media (max-width: 991px) {
  #cs_video_quotes #video-quotes .video .icons .icon,
  #cs_video_quotes #featured-sess .video .icons .icon,
  #rec_feat_sess #video-quotes .video .icons .icon,
  #rec_feat_sess #featured-sess .video .icons .icon {
    font-size: 32px;
    padding: 0 11px;
  }
}
@media (max-width: 479px) {
  #cs_video_quotes #video-quotes .video .icons .icon,
  #cs_video_quotes #featured-sess .video .icons .icon,
  #rec_feat_sess #video-quotes .video .icons .icon,
  #rec_feat_sess #featured-sess .video .icons .icon {
    font-size: 27px;
    padding: 0 9px;
  }
}
#cs_video_quotes .slick-arrow,
#rec_feat_sess .slick-arrow {
  font-size: 26px;
  font-weight: 400;
  color: #fff !important;
  background: #5E1DE1;
  transition: all 0.3s linear;
  padding: 0;
  position: absolute;
  cursor: pointer;
  height: 38px;
  width: 38px;
  line-height: 38px;
  z-index: 9;
  border-radius: 50%;
  bottom: 50%;
}
@media (max-width: 639px) {
  #cs_video_quotes .slick-arrow,
  #rec_feat_sess .slick-arrow {
    font-size: 20px;
    height: 32px;
    width: 32px;
    line-height: 32px;
  }
}
#cs_video_quotes .slick-arrow:hover,
#rec_feat_sess .slick-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  color: #5E1DE1;
}
#cs_video_quotes .slick-arrow.icon-left-open,
#rec_feat_sess .slick-arrow.icon-left-open {
  left: 0;
  margin-left: -20px;
}
@media (max-width: 991px) {
  #cs_video_quotes .slick-arrow.icon-left-open,
  #rec_feat_sess .slick-arrow.icon-left-open {
    margin-left: 0;
  }
}
@media (max-width: 639px) {
  #cs_video_quotes .slick-arrow.icon-left-open,
  #rec_feat_sess .slick-arrow.icon-left-open {
    margin-left: -40px;
  }
}
#cs_video_quotes .slick-arrow.icon-right-open,
#rec_feat_sess .slick-arrow.icon-right-open {
  right: 0;
  margin-right: -20px;
}
@media (max-width: 991px) {
  #cs_video_quotes .slick-arrow.icon-right-open,
  #rec_feat_sess .slick-arrow.icon-right-open {
    margin-right: 0;
  }
}
@media (max-width: 639px) {
  #cs_video_quotes .slick-arrow.icon-right-open,
  #rec_feat_sess .slick-arrow.icon-right-open {
    margin-right: -40px;
  }
}

.card {
  border-radius: 0;
  margin: 15px 0 0;
  border: none !important;
  padding: 0;
  box-shadow: none;
}
.card.trsp {
  background: transparent;
  box-shadow: none;
  margin: 0 0 50px;
}
@media (max-width: 991px) {
  .card.trsp {
    margin: 0 0 30px;
  }
}
@media (max-width: 639px) {
  .card.trsp {
    margin: 0 -15px 1px;
    box-shadow: none;
  }
}
.card.trsp .card-header {
  background: transparent;
  box-shadow: none;
}
.card.trsp .card-header:after {
  border-bottom: 1px solid #ddd;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  bottom: 7px;
  z-index: 0;
}
@media (max-width: 639px) {
  .card.trsp .card-header:after {
    display: none;
  }
}
.card.trsp .card-header h5 {
  font-size: 22px;
  line-height: 1.45em;
  font-weight: 600;
  color: #000;
  padding: 0;
}
@media (max-width: 991px) {
  .card.trsp .card-header h5 {
    font-size: 20px;
  }
}
.card.trsp .card-header h5 .ttl {
  padding: 0 20px 0 0;
  position: relative;
  background: #fff;
  z-index: 1;
}
@media (max-width: 991px) {
  .card.trsp .card-header h5 .ttl {
    padding: 0 10px 0 0;
  }
}
@media (max-width: 639px) {
  .card.trsp .card-header h5 .ttl {
    background: transparent;
  }
}
.card.trsp .card-header a {
  text-align: right;
  background: #fff;
  padding: 2px 8px;
  display: block;
  border: none;
  height: 100%;
  width: 80px;
  z-index: 1;
  right: 0;
  top: 0;
}
@media (max-width: 991px) {
  .card.trsp .card-header a {
    font-size: 15px;
  }
}
.card.trsp .card-header a:hover {
  background: #fff;
  color: #5E1DE1 !important;
}
.card.trsp .card-header a .txt {
  display: inline-block;
}
@media (max-width: 639px) {
  .card.trsp .card-header a .txt {
    display: none;
  }
}
.card.trsp .card-header a .icon {
  transition: all 0.2s linear;
}
.card.trsp .card-body {
  margin: 0 0 -40px;
  padding: 44px 0 0;
  border: none;
}
@media (max-width: 991px) {
  .card.trsp .card-body {
    margin: 0 0 -20px;
    padding: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .card.trsp .card-body {
    padding: 15px 0 0;
  }
}
@media (max-width: 639px) {
  .card.trsp .card-body {
    padding: 0 0 40px;
  }
}
.card .card-header {
  position: relative;
  border-radius: 0;
  border: none;
  padding: 0;
  background: #fff;
  color: #000;
  margin-bottom: 5px;
}
.card .card-header h5 {
  font-size: 18px;
  font-weight: 700;
  padding: 15px 220px 8px 0;
  margin: 0;
}
@media (max-width: 767px) {
  .card .card-header h5 {
    padding: 15px 110px 8px 0;
  }
}
@media (max-width: 479px) {
  .card .card-header h5 {
    padding: 15px 70px 8px 0;
  }
}
.card .card-header a.btn_collapse {
  font-size: 22px;
  font-weight: 600;
  color: #5E1DE1;
  transition: all 0.2s linear;
  text-decoration: none;
  background: transparent;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  display: block;
  height: 26px;
  width: 26px;
  right: 0;
  top: calc(50% - 13px);
  user-select: none;
  border: 1px solid transparent;
}
.card .card-header a.btn_collapse .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #f2f2f2;
  color: #828282;
  border-radius: 60px;
}
@media (max-width: 479px) {
  .card .card-header a.btn_collapse {
    top: calc(50% - 13px);
  }
}
.card .card-header a.btn_collapse.collapsed .open_wrap {
  display: block;
}
.card .card-header a.btn_collapse.collapsed .close_wrap {
  display: none;
}
.card .card-header a.btn_collapse.collapsed .icon {
  color: #5E1DE1;
}
.card .card-header a.btn_collapse .open_wrap {
  display: none;
}
.card .card-header a.btn_collapse .close_wrap {
  display: block;
}
.card .card-header a.btn_collapse .txt {
  display: none;
}
.card .card-body {
  padding: 0;
}
@media (max-width: 991px) {
  .card .card-body img {
    height: 50px;
  }
}
.card .card-body h3 {
  font-size: 32px;
  line-height: 1.33em;
  color: #5E1DE1;
  margin: 27px 0 20px;
}
@media (max-width: 1919px) {
  .card .card-body h3 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .card .card-body h3 {
    font-size: 22px;
    margin: 20px 0;
  }
}
.card .card-body ul {
  margin: -20px 0 36px;
  list-style: circle;
}
@media (max-width: 639px) {
  .card .card-body ul {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .card .card-body ul {
    margin: -20px 0 22px;
  }
}
@media (max-width: 479px) {
  .card .card-body ul {
    margin: -18px 0 18px;
  }
}
.card .card-body ul li p {
  margin: 0;
}
.card .card-body ol {
  font-size: 18px;
  line-height: 36px;
  color: #000;
}
@media (max-width: 767px) {
  .card .card-body ol {
    font-size: 17px;
    line-height: 32px;
  }
}
@media (max-width: 479px) {
  .card .card-body ol {
    font-size: 16px;
    line-height: 28px;
  }
}
.card .card-body p {
  font-size: 18px;
  line-height: 34px;
  color: #000;
  margin: 0 0 36px;
}
@media (max-width: 991px) {
  .card .card-body p {
    margin: 0 0 22px;
  }
}
@media (max-width: 479px) {
  .card .card-body p {
    font-size: 16px;
    line-height: 32px;
    margin: 0 0 18px;
  }
}
.card .card-body p b,
.card .card-body p strong {
  color: #5E1DE1;
}
.card .card-body .btn.btn-blue {
  letter-spacing: 3.8px;
  margin: 57px auto 0;
  padding: 16px 35px;
  display: table;
}
@media (max-width: 479px) {
  .card .card-body .btn.btn-blue {
    margin: 30px auto 0;
    letter-spacing: 1px;
    padding: 12px;
    width: 100%;
  }
}

.card-body .sssn {
  padding-bottom: 20px;
}
.card-body .sssn .wp-post-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.ssn-figure {
  position: relative;
  overflow: hidden;
  display: block;
}
.ssn-figure img {
  float: left;
  margin: 5px 25px 20px 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .ssn-figure img {
    margin-right: 15px;
  }
}
.ssn-figure figcaption h5 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  display: block;
}
@media (max-width: 767px) {
  .ssn-figure figcaption h5 {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .ssn-figure figcaption h5 {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .ssn-figure figcaption h5 {
    font-size: 12px;
  }
}
.ssn-figure figcaption a {
  font-size: 14px;
  color: #5E1DE1;
}

#stat_nrs {
  background: #e5e5e5;
  text-align: center;
  position: relative;
  padding: 50px 0;
  width: 100%;
}
@media (max-width: 991px) {
  #stat_nrs {
    padding: 20px 0 50px;
  }
}
@media (max-width: 479px) {
  #stat_nrs {
    padding: 20px 15px 50px;
  }
}
#stat_nrs .container {
  padding: 0;
}
#stat_nrs .ttl {
  font: 600 17px "Poppins";
  color: #000;
  margin: 0;
}
@media (max-width: 991px) {
  #stat_nrs .ttl {
    margin: 30px 0 0;
  }
}
#stat_nrs b {
  font: 700 32px "Poppins";
  color: #5E1DE1;
}
#stat_nrs ul.list-inline {
  text-align: center;
  margin: 0;
}
#stat_nrs ul.list-inline li {
  width: 16.66666667%;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  #stat_nrs ul.list-inline li {
    width: 33.33333333%;
  }
}
#stat_nrs:after {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 3px;
  /* Firefox 1-3.6 */
  -moz-border-radius: 3px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 3px;
  background: #e5e5e5;
  position: absolute;
  display: table;
  bottom: -15px;
  margin: auto;
  height: 30px;
  content: "";
  width: 30px;
  z-index: 1;
  right: 0;
  left: 0;
}

.reg_form {
  padding: 103px 0 12px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .reg_form {
    padding: 80px 0;
  }
}
@media (max-width: 479px) {
  .reg_form {
    padding: 40px 0;
  }
}
.reg_form h2 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.reg_form h2 span {
  color: #5E1DE1;
}
.reg_form h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.reg_form h5 span {
  color: #5E1DE1;
}
.reg_form p {
  font-size: 22px;
  line-height: 1.65;
  text-align: center;
  margin: 0 75px;
}
@media (max-width: 991px) {
  .reg_form p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .reg_form p {
    font-size: 18px;
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (max-width: 639px) {
  .reg_form p {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .reg_form p {
    font-size: 14px;
  }
}
.reg_form .ifs_reg {
  padding: 30px;
  margin: 30px auto;
  width: 100%;
  max-width: 580px;
}
@media (max-width: 767px) {
  .reg_form .ifs_reg {
    padding: 15px;
  }
}
.reg_form .ifs_reg .loader {
  position: absolute !important;
  top: 45%;
  bottom: initial;
}
.reg_form .ifs_reg .bootstrap-select {
  width: 100% !important;
}
.reg_form .ifs_reg h4 {
  font: 400 20px/1.55em "Poppins";
  margin: 0 0 45px;
}
.reg_form .ifs_reg label {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: #000;
  margin: 0 0 25px;
  display: block;
}
@media (max-width: 767px) {
  .reg_form .ifs_reg label {
    font-size: 14px;
    margin: 0 0 20px;
  }
}
@media (max-width: 639px) {
  .reg_form .ifs_reg label {
    font-size: 12px;
    margin: 0 0 15px;
  }
}
.reg_form .ifs_reg label .required {
  color: #5E1DE1;
}
.reg_form .ifs_reg label.gdpr {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.reg_form .ifs_reg label.gdpr span {
  display: block;
  padding-left: 25px;
}
.reg_form .ifs_reg label.gdpr input {
  display: block;
  margin: 0;
}
.reg_form .ifs_reg label input,
.reg_form .ifs_reg .dropdown-toggle {
  color: #828282;
  background: #f8f8f8;
  border: 1px solid #eee;
  transition: all 0.2s;
}
.reg_form .ifs_reg label input:hover,
.reg_form .ifs_reg .dropdown-toggle:hover {
  background: #fff;
  border: 1px solid #5E1DE1;
}
.reg_form .ifs_reg .form-control {
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 0;
  /* Firefox 1-3.6 */
  -moz-border-radius: 0;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 0;
  margin: 13px 0 0;
  padding: 0 18px;
  height: 60px;
  color: #828282;
  background: #f8f8f8;
  border: 1px solid #eee;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .reg_form .ifs_reg .form-control {
    margin: 8px 0 0;
  }
}
@media (max-width: 639px) {
  .reg_form .ifs_reg .form-control {
    font-size: 12px;
    margin: 5px 0 0;
    padding: 0 15px;
    height: 44px;
  }
}
.reg_form .ifs_reg textarea.form-control {
  padding: 20px;
  height: 240px;
}
.reg_form .ifs_reg .half_wrap {
  display: inline-block;
  float: left;
  width: 48%;
}
.reg_form .ifs_reg .half_wrap.left {
  margin-right: 4%;
}
.reg_form .ifs_reg .btn_main {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 17px 0 25px;
  letter-spacing: 1px;
  padding: 25px 0;
  width: 100%;
  border-radius: 6px;
}
.reg_form .ifs_reg .btn_main p {
  font: 600 14px/1.2em "Poppins";
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 8px;
}

#boxes .row.is-flex > [class*=col-] {
  border: 1px solid #e4e4e4;
  padding: 50px 30px;
  margin: 0 15px;
}
#boxes .box img {
  margin: 5px 0 15px;
}
#boxes .box strong {
  font: 400 26px/1.25em "Poppins";
  padding: 0 0 15px;
  display: block;
  color: #000;
}
#boxes .box strong .green {
  color: #5E1DE1;
  font-weight: 700;
  display: block;
}
#boxes .box p {
  font: 400 20px/1.6em "Poppins";
  color: #666;
  margin: 0;
}
#boxes .box p b {
  color: #5E1DE1;
}
#boxes.assoc {
  padding: 65px 0 70px;
  background: #fff;
}
#boxes.assoc .row.is-flex > [class*=col-] {
  padding: 15px 0;
  margin: 0 15px;
  border: none;
}
#boxes.assoc .row.is-flex > [class*=col-].not_visible {
  opacity: 0;
}
#boxes.assoc .ttl_wrap {
  position: relative;
  margin: 0 0 20px;
  display: table;
}
#boxes.assoc .ttl_wrap:before {
  border-top: 1px solid #ddd;
  position: absolute;
  display: block;
  width: 255px;
  content: "";
  left: 0;
  top: 0;
}
#boxes.assoc .ttl_wrap:after {
  border-top: 1px solid #ddd;
  position: absolute;
  display: block;
  width: 255px;
  content: "";
  bottom: 0;
  left: 0;
}
#boxes.assoc h4.ttl {
  font: 400 26px "Poppins";
  padding: 0px 15px 25px 0;
  vertical-align: bottom;
  display: table-cell;
  margin: 10px 0 0;
  height: 118px;
}
#boxes.assoc img {
  margin: 5px 0 20px;
}
#boxes.assoc p {
  margin: 0 0 33px;
}
#boxes.assoc a.read_more {
  font: 700 15px "Poppins";
  letter-spacing: 2.5px;
  margin: -3px 0 -1px;
  color: #5E1DE1;
  display: block;
}
#boxes.assoc a.read_more .icon {
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-weight: 100;
  margin: 0;
}
#boxes.assoc a.read_more:hover {
  text-decoration: none;
}
#boxes.assoc a.read_more:hover .icon {
  margin: 0 0 0 10px;
}
#boxes.assoc div.col-md-4:last-of-type {
  display: none;
}

#testimonials {
  min-height: 536px;
  padding: 100px 115px;
  background-color: #ffffff;
}
#testimonials .testimonials {
  margin: 0;
}
#testimonials .container-fluid {
  padding: 0;
}
#testimonials .testimonials-item {
  max-width: 353px;
}
#testimonials .testimonials-item .c-user-img {
  margin-top: 32px;
  margin-bottom: 20px;
  width: 64px;
  height: 64px;
}
#testimonials .testimonials-item .c-text {
  font-size: 15px;
  line-height: 1.8em;
  font-weight: 400;
  margin-bottom: 5px;
  color: #444444;
}
#testimonials .testimonials-item .c-signature {
  margin: 0;
  color: #5E1DE1;
  font-size: 17px;
  line-height: 1.25em;
  font-weight: 700;
}
#testimonials .testimonials-item .c-signature span {
  color: #444444;
  font-style: italic;
  font-size: 15px;
  line-height: 1.25em;
  font-weight: 400;
}
#testimonials .slick-arrow {
  z-index: 1;
  display: block;
  position: absolute;
  top: 61%;
  left: -64.5px;
  width: 18px;
  height: 32px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-image: url("../img/pages/tickets/arrow-left.png");
  background-position: center;
  background-repeat: no-repeat;
}
#testimonials .slick-arrow.next {
  left: auto;
  right: -64.5px;
  background-image: url("../img/pages/tickets/arrow-right.png");
}
#testimonials .slick-arrow:hover {
  cursor: pointer;
}
#testimonials .slick-slide .testimonials-item {
  max-width: 353px;
}
#testimonials .slick-slide.slick-center .testimonials-item {
  max-width: 550px;
}
#testimonials .slick-slide.slick-center .testimonials-item .c-user-img {
  margin-top: 0;
  margin-bottom: 17px;
  width: 98px;
  height: 98px;
}
#testimonials .slick-slide.slick-center .testimonials-item .c-text {
  margin-bottom: 25px;
  color: #000000;
  font-size: 20px;
  line-height: 34px;
  font-weight: 700;
}
#testimonials .slick-slide.slick-center .testimonials-item .c-signature {
  color: #5E1DE1;
  font-size: 17px;
  line-height: 1.25em;
  font-weight: 700;
}
#testimonials .slick-slide.slick-center + .slick-slide .testimonials-item {
  margin-left: auto;
}
#testimonials.icf {
  padding-top: 60px;
}
#testimonials.icf h2 {
  display: none;
}
#testimonials.with_gray_bg {
  background: #f5f5f5;
  padding: 90px 90px 60px;
}
#testimonials.with_gray_bg h2 {
  font: 400 32px/1.45em "Poppins";
  text-align: center;
  margin: 0 0 120px;
  color: #444;
}

#txt_nav {
  border-bottom: 1px solid #ddd;
  text-align: center;
  background: #fff;
}
#txt_nav.col_4 ul li {
  width: 25%;
}
#txt_nav.col_5 ul li {
  width: 20%;
}
#txt_nav ul {
  width: 100%;
  margin: 0;
}
#txt_nav ul li {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: inline-block;
  margin: 0 -1px;
  width: 33%;
}
#txt_nav ul li a {
  font: 700 15px/1em "Poppins";
  position: relative;
  padding: 35px 0;
  color: #777;
  margin: 0;
}
#txt_nav ul li a:after {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: #5E1DE1;
  position: absolute;
  margin: 0 auto;
  display: table;
  content: "";
  height: 7px;
  opacity: 0;
  bottom: 0;
  width: 0%;
  right: 0;
  left: 0;
}
#txt_nav ul li a:hover {
  background: transparent;
  color: #5E1DE1;
}
#txt_nav ul li a:hover:after {
  width: 100%;
}
#txt_nav ul li:hover a, #txt_nav ul li.current_page_item a {
  color: #5E1DE1;
  font-weight: 700;
}
#txt_nav ul li:hover a:after, #txt_nav ul li.current_page_item a:after {
  background: #5E1DE1;
  position: absolute;
  content: "";
  width: 100%;
  height: 7px;
  opacity: 1;
  bottom: 0;
  left: 0;
}

#partners {
  background: url("../img/pages/sp/partners_logo_bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 25px 0 50px;
}
#partners p.ttl {
  font: 600 12px/1.6em "Poppins";
  letter-spacing: 6.5px;
  text-align: center;
  margin: 0 0 35px;
  color: #fff;
}
#partners ul {
  text-align: justify;
}
#partners ul li {
  display: inline-block;
  width: initial;
  padding: 0;
}
#partners ul:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
}
#partners .lshowcase-wrap-responsive img {
  max-width: 120px;
  width: initial;
}
#partners .lshowcase-box-6.ls-partners {
  padding: 20px 0;
}
#partners .lshowcase-logos .bx-wrapper img {
  width: 120px;
  height: auto;
}
@media (max-width: 479px) {
  #partners .lshowcase-logos .bx-wrapper img {
    width: 220px;
  }
}

.panel.panel-green {
  -webkit-box-shadow: 1px 1px 5px rgba(59, 59, 59, 0.15);
  -moz-box-shadow: 1px 1px 5px rgba(59, 59, 59, 0.15);
  box-shadow: 1px 1px 5px rgba(59, 59, 59, 0.15);
  background: #f5f5f5;
  margin: 0 0 30px;
  text-align: left;
  border: none;
}
.panel.panel-green .panel-heading {
  font: 600 22px/1.65em "Poppins";
  background: #5E1DE1;
  padding: 10px 35px;
  border: none;
  color: #fff;
}
.panel.panel-green .panel-body {
  padding: 25px 0 35px;
  border: none;
}

.week {
  font: 400 15px "Poppins";
  color: #777;
  padding: 0 0 1px;
}
.week .container .row {
  margin: 0 35px;
}
@media (max-width: 767px) {
  .week .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
.week .cllps_week {
  -webkit-box-shadow: 1px 1px 5px rgba(59, 59, 59, 0.15);
  -moz-box-shadow: 1px 1px 5px rgba(59, 59, 59, 0.15);
  box-shadow: 1px 1px 5px rgba(59, 59, 59, 0.15);
  margin-bottom: 5px;
}
.week .current_week {
  text-align: center;
  padding: 30px 15px;
}
.week .current_week h1 {
  font: 700 32px "Poppins";
  color: #5E1DE1;
  margin: 0;
}
.week .current_week .btn.btn_gradient_purple {
  margin: 23px auto 15px;
  display: inline-block;
  letter-spacing: 2px;
  padding: 10px;
  width: 380px;
}
.week .current_week .btn.btn_gradient_purple .hide_btn,
.week .current_week .btn.btn_gradient_purple .icon-up-open {
  display: inline-block;
}
.week .current_week .btn.btn_gradient_purple .show_btn,
.week .current_week .btn.btn_gradient_purple .icon-down-open {
  display: none;
}
.week .current_week .btn.btn_gradient_purple.collapsed .hide_btn,
.week .current_week .btn.btn_gradient_purple.collapsed .icon-up-open {
  display: none;
}
.week .current_week .btn.btn_gradient_purple.collapsed .show_btn,
.week .current_week .btn.btn_gradient_purple.collapsed .icon-down-open {
  display: inline-block;
}
.week .green_week_line {
  background: #5E1DE1;
  padding: 0 140px 0 0;
  position: relative;
  color: #fff;
}
@media (max-width: 991px) {
  .week .green_week_line {
    padding: 0 190px 0 15px;
  }
}
@media (max-width: 767px) {
  .week .green_week_line.first_line {
    margin-top: 0;
  }
}
.week .green_week_line.complete .cmplt {
  display: inline-block;
}
@media (max-width: 639px) {
  .week .green_week_line.complete {
    padding: 0 50px 0 15px;
  }
  .week .green_week_line.complete .dates_range {
    position: relative;
    left: initial;
    right: initial;
    bottom: initial;
    top: initial;
    text-align: left;
    line-height: initial;
    padding-bottom: 10px;
  }
  .week .green_week_line.complete .week_nr {
    padding-bottom: 5px;
  }
}
.week .green_week_line.current .prgrs {
  display: inline-block;
}
@media (max-width: 639px) {
  .week .green_week_line.current .prgrs {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .week .green_week_line.current {
    padding: 0 50px 0 15px;
  }
  .week .green_week_line.current .week_nr {
    padding-bottom: 5px;
  }
  .week .green_week_line.current .dates_range {
    position: relative;
    left: initial;
    right: initial;
    bottom: initial;
    top: initial;
    text-align: left;
    line-height: initial;
    padding-bottom: 10px;
  }
}
.week .green_week_line .cmplt,
.week .green_week_line .prgrs {
  display: none;
}
.week .green_week_line .week_nr {
  font: 700 22px/1.45em "Poppins";
  padding: 12px 35px;
  margin: 0;
}
@media (max-width: 991px) {
  .week .green_week_line .week_nr {
    padding: 12px 0;
    font-size: 18px;
  }
}
.week .green_week_line .dates_range {
  font: 400 italic 13px "Poppins";
  letter-spacing: -0.3px;
  position: absolute;
  line-height: 58px;
  text-align: right;
  right: 160px;
  margin: 0;
  top: 0;
}
@media (max-width: 991px) {
  .week .green_week_line .dates_range {
    line-height: 50px;
    right: 65px;
  }
}
@media (max-width: 639px) {
  .week .green_week_line .dates_range {
    font-size: 12px;
  }
}
.week .green_week_line .btn {
  background: #6e33e5;
  font: 700 17px "Poppins";
  position: absolute;
  line-height: 40px;
  border-radius: 0;
  height: 100%;
  width: 140px;
  right: 0;
  top: 0;
}
@media (max-width: 991px) {
  .week .green_week_line .btn {
    width: 50px;
  }
}
.week .green_week_line .btn span {
  line-height: -moz-block-height;
  position: absolute;
  line-height: 56px;
  display: -moz-box;
  margin: auto;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .week .green_week_line .btn span {
    line-height: 50px;
  }
}
.week .green_week_line .btn span [class^=icon-] {
  margin: 0 -15px 0 0;
  font-weight: 100;
}
@media (max-width: 991px) {
  .week .green_week_line .btn span [class^=icon-] {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .week .green_week_line .btn span b {
    display: none;
  }
}
.week .green_week_line .btn .txt-open {
  display: none;
}
.week .green_week_line .btn.collapsed .txt-close {
  display: none;
}
.week .green_week_line .btn.collapsed .txt-open {
  display: table;
}
.week .green_week_line .btn.collapsed .icon-down-open {
  display: initial;
}
.week .green_week_line .btn:hover, .week .green_week_line .btn:focus {
  background: #5E1DE1;
  color: #fff;
}
.week .session {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: #fff;
  position: relative;
  padding: 30px;
}
@media (max-width: 991px) {
  .week .session {
    padding: 30px 15px;
  }
}
.week .session * {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.week .session input[type=checkbox] {
  display: none;
}
@media (max-width: 639px) {
  .week .session a {
    line-height: 1.45em;
  }
}
@media (max-width: 767px) {
  .week .session .media-body,
  .week .session .media-left,
  .week .session .media-right {
    display: block;
    width: 100%;
    padding: 0;
  }
}
.week .session .media {
  position: relative;
  width: 100%;
  z-index: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .week .session .media {
    display: block;
  }
}
.week .session .media-left {
  padding-right: 30px;
}
@media (max-width: 991px) {
  .week .session .media-left {
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .week .session .media-left {
    margin: 0 0 15px;
  }
}
@media (max-width: 767px) {
  .week .session .media-right {
    margin: 20px 0 0;
  }
}
.week .session .media-body {
  padding-right: 30px;
}
@media (max-width: 767px) {
  .week .session .media-body {
    padding-right: 0;
  }
}
.week .session .btn.btn_gradient_purple {
  font: 700 14px "Poppins";
  letter-spacing: 2px;
  margin: 0 0 10px;
  padding: 10px;
  width: 220px;
  color: #fff;
}
@media (max-width: 991px) {
  .week .session .btn.btn_gradient_purple {
    letter-spacing: 0px;
    margin: 0 0 10px;
    font-size: 12px;
    padding: 8px;
    width: 160px;
  }
}
.week .session .btn.btn_gradient_purple.selected {
  -webkit-box-shadow: 0px 0px 50px 10px rgba(102, 171, 38, 0.15) inset;
  -moz-box-shadow: 0px 0px 50px 10px rgba(102, 171, 38, 0.15) inset;
  box-shadow: 0px 0px 50px 10px rgba(102, 171, 38, 0.15) inset;
  background: #e4eade;
}
.week .session .btn.btn_gradient_purple.selected:hover {
  background: #5E1DE1;
}
.week .session .btn.btn_gradient_purple.disabled {
  pointer-events: none;
  background: #ff0000;
}
@media (max-width: 767px) {
  .week .session .btn.btn_gradient_purple, .week .session .btn.btn_gradient_purple.disabled {
    width: 100%;
  }
}
.week .session span.btn.btn_gradient_purple.selected {
  pointer-events: none;
}
@media (max-width: 991px) {
  .week .session img {
    height: 65px;
    width: 65px;
  }
}
.week .session .read_more {
  font: 700 14px "Poppins";
  letter-spacing: 2px;
  position: relative;
  color: #5E1DE1;
}
.week .session .read_more span.val:after {
  content: "HIDE";
}
.week .session .read_more .icon-down-open {
  display: none;
}
.week .session .read_more .icon-up-open {
  display: inline-block;
}
.week .session .read_more.collapsed .icon-down-open {
  display: inline-block;
}
.week .session .read_more.collapsed .icon-up-open {
  display: none;
}
.week .session .read_more.collapsed span.val:after {
  content: "READ MORE";
}
.week .session .read_more.collapsed:hover .icon-down-open {
  top: 6px;
}
.week .session .read_more [class^=icon-] {
  position: absolute;
  right: -18px;
  margin: 0;
  top: 3px;
}
.week .session .read_more:hover {
  text-decoration: none;
}
.week .session .read_more:hover [class^=icon-] {
  font-weight: 700;
}
.week .session .read_more:hover .icon-up-open {
  top: 0;
}
.week .session .read_more:focus {
  text-decoration: none;
}
.week .session .full_article {
  font: 700 14px "Poppins";
  color: #5E1DE1;
  padding: 10px 0 0;
  display: block;
}
.week .session .full_article .icon-right-thin {
  font-weight: 100;
  margin-left: 3px;
}
.week .session .full_article:hover {
  text-decoration: none;
}
.week .session .full_article:hover .icon-right-thin {
  margin-left: 10px;
}
.week .session .full_article:focus {
  text-decoration: none;
}
.week .session .ended_icon {
  background: url("../img/selected_bg_icon.png") no-repeat top center;
  font: 700 14px "Poppins";
  background-size: 50px;
  text-align: center;
  color: #5E1DE1;
  padding-top: 68px;
  margin-top: 25px;
  display: block;
  width: 220px;
}
@media (max-width: 639px) {
  .week .session .ended_icon {
    width: initial;
  }
}
.week .session .prsntrs_list {
  font: 700 17px/1em "Poppins";
  color: #5E1DE1;
}
.week .session .prsntrs_list a {
  color: #5E1DE1;
}
.week .session .prsntrs_list .coma:last-child {
  display: none;
}
.week .session .portraits {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  padding: 0 15px;
  width: 125px;
}
@media (max-width: 991px) {
  .week .session .portraits {
    width: 95px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .week .session .portraits {
    margin: 0 0 20px;
  }
}
@media (max-width: 639px) {
  .week .session .portraits {
    width: 65px;
  }
}
.week .session .portraits i.fa {
  display: table !important;
  position: absolute;
  color: #5E1DE1;
  font-weight: 100;
  cursor: pointer;
  font-size: 22px;
  margin: auto;
  bottom: 0;
  top: 0;
}
.week .session .portraits i.fa.fa-angle-left {
  left: 0px;
}
.week .session .portraits i.fa.fa-angle-right {
  right: 0px;
}
@media (max-width: 991px) {
  .week .session .portraits i.fa {
    display: none !important;
  }
}
.week .session .portraits img {
  height: 95px !important;
  width: 95px !important;
  min-width: 95px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 639px) {
  .week .session .portraits img {
    height: 65px !important;
    width: 65px !important;
    min-width: 65px;
  }
}
.week .session .ssn_ttl {
  font: 600 20px/1.5em "Poppins";
  margin: 8px 0 10px;
  display: block;
  color: #000;
}
@media (max-width: 991px) {
  .week .session .ssn_ttl {
    font-size: 18px;
    line-height: 1.3;
  }
}
.week .session .sssn_duration,
.week .session .ssn_date {
  font: 600 15px "Poppins";
  color: #000;
}
.week .session .sssn_duration b,
.week .session .ssn_date b {
  color: #5E1DE1;
}
.week .session .inner_wrap {
  font: 400 15px "Poppins";
  padding: 23px 0;
  color: #777;
}
@media (max-width: 639px) {
  .week .session .inner_wrap {
    padding-top: 10px;
  }
}
.week .session .inner_wrap p {
  line-height: 24px;
  margin: 0 0 25px;
}
.week .session .inner_wrap p b {
  letter-spacing: 0.3px;
  color: #5E1DE1;
}
.week .session .inner_wrap ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 24px;
}
.week .session .be-sure {
  font: 400 13px "Poppins";
  margin-bottom: -36px;
  font-style: italic;
  text-align: center;
  color: #000;
  opacity: 0;
}
.week .session .be-sure .green {
  font: 700 13px "Poppins";
  font-style: italic;
  color: #5E1DE1;
}
.week .session .recs_for {
  font: 400 13px "Poppins";
  margin: 24px 0 -46px;
  font-style: italic;
  text-align: left;
  color: #a1a1a1;
}
.week .session .recs_for b {
  font: 700 13px "Poppins";
  font-style: italic;
  color: #5E1DE1;
}
.week .session .selected_icon {
  display: none;
}
.week .session.with_sep {
  border-bottom: 1px solid #ddd;
}
.week .session:last-child {
  border-bottom: 0;
}
.week .session.selected {
  background-color: #f3f6f0;
  -webkit-box-shadow: 0px 0px 50px 20px rgba(102, 171, 38, 0.15) inset;
  -moz-box-shadow: 0px 0px 50px 20px rgba(102, 171, 38, 0.15) inset;
  box-shadow: 0px 0px 50px 20px rgba(102, 171, 38, 0.15) inset;
  position: relative;
}
.week .session.selected:after {
  background-color: #5E1DE1;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 50%;
  /* Firefox 1-3.6 */
  -moz-border-radius: 50%;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 50%;
  font-family: "fontello", serif;
  position: absolute;
  font-style: normal;
  text-align: center;
  line-height: 56px;
  content: "✓";
  font-size: 36px;
  display: table;
  margin: 0 auto;
  bottom: 75px;
  height: 56px;
  color: #fff;
  width: 56px;
  right: 0;
  left: 0;
}
@media (max-width: 767px) {
  .week .session.selected:after {
    background: none;
    display: none;
  }
}
.week .session.selected.tag:after,
.week .session.selected.tag .be-sure {
  display: none;
}
@media (max-width: 767px) {
  .week .session.selected .selected_icon {
    position: absolute;
    display: table;
    z-index: 2;
    right: 0;
    top: 0;
  }
}
@media (max-width: 767px) {
  .week .session.selected .selected_icon:before {
    background-color: #5E1DE1;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 50%;
    /* Firefox 1-3.6 */
    -moz-border-radius: 50%;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 50%;
    font-family: "fontello", serif;
    position: absolute;
    font-style: normal;
    text-align: center;
    line-height: 56px;
    content: "✓";
    font-size: 36px;
    display: table;
    margin: 0 auto;
    top: 30px;
    height: 56px;
    color: #fff;
    width: 56px;
    right: 15px;
    left: initial;
    z-index: 2;
  }
}
.week .session.selected .recs_for {
  margin: 80px 0 -80px;
}
.week .session.selected .be-sure {
  margin: 20px 0 0;
  opacity: 1;
}
@media (max-width: 991px) {
  .week .session.selected .be-sure {
    margin: 60px 0 0;
  }
}
@media (max-width: 767px) {
  .week .session.selected .be-sure {
    margin: 20px 0 0;
  }
}
@media (max-width: 767px) {
  .week .session.selected img {
    height: 55px;
    width: 55px;
  }
}
.week .session.locked {
  background: #f3f6f0;
  position: relative;
}
.week .session.locked:before {
  background: url(../img/icons/lock_bg.png) no-repeat center center;
  background-size: 105px;
  position: absolute;
  display: block;
  height: 142px;
  margin: auto;
  width: 100%;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
@media (max-width: 479px) {
  .week .session.recording {
    padding: 0 0 45px;
  }
}
@media (max-width: 991px) {
  .week .session.recording .media {
    display: block;
  }
}
@media (max-width: 479px) {
  .week .session.recording .media-body {
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  .week .session.recording .media-left {
    margin: 0 auto 20px;
    display: table;
    width: 450px;
    padding: 0;
  }
}
@media (max-width: 639px) {
  .week .session.recording .media-left {
    width: 100%;
  }
}
.week .session.recording .thumb_wrap {
  position: relative;
}
@media (max-width: 991px) {
  .week .session.recording .thumb_wrap {
    position: relative;
  }
}
.week .session.recording .thumb_wrap img {
  height: 200px;
  width: 350px;
}
@media (max-width: 991px) {
  .week .session.recording .thumb_wrap img {
    height: auto;
    width: 100%;
  }
}
.week .session.recording .thumb_wrap .btn.btn-main-color,
.week .session.recording .thumb_wrap .btn.btn-empty {
  position: absolute;
  font-size: 20px;
  border: none;
  padding: 6px;
  width: 60px;
  right: 15px;
  z-index: 1;
  top: 15px;
}
@media (max-width: 991px) {
  .week .session.recording .thumb_wrap .btn.btn-main-color,
  .week .session.recording .thumb_wrap .btn.btn-empty {
    font-size: 22px;
    padding: 8px;
    width: 70px;
  }
}
@media (max-width: 479px) {
  .week .session.recording .thumb_wrap .btn.btn-main-color,
  .week .session.recording .thumb_wrap .btn.btn-empty {
    font-size: 18px;
    padding: 6px;
    width: 60px;
    right: 10px;
    top: 10px;
  }
}
.week .session.recording .thumb_wrap .btn.btn-main-color .fa-play {
  margin-right: -5px;
}
.week .session.recording .thumb_wrap .btn.btn-empty {
  background: #fff;
  right: 85px;
}
@media (max-width: 991px) {
  .week .session.recording .thumb_wrap .btn.btn-empty {
    right: 95px;
  }
}
@media (max-width: 479px) {
  .week .session.recording .thumb_wrap .btn.btn-empty {
    right: 80px;
  }
}
.week .session.recording .thumb_wrap .btn.btn-empty:hover {
  background: #5E1DE1;
}
.week .session.recording .thumb_wrap .locked i.fa-unlock-alt {
  display: none;
}
.week .session.recording .thumb_wrap .locked:hover i.fa-play,
.week .session.recording .thumb_wrap .locked:hover i.fa-download {
  display: none;
}
.week .session.recording .thumb_wrap .locked:hover i.fa-unlock-alt {
  display: inline;
}
.week .session.recording .sssn_link {
  letter-spacing: 1.2px;
  margin: 10px 0 15px;
  padding: 6px 0;
  display: block;
  width: 210px;
}
.week .session-alt {
  padding: 30px 15px 0;
}
.week .session-alt:last-child .media {
  border: 1px solid transparent;
}
.week .session-alt .media {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 30px;
}
.week .session-alt .media-body a {
  color: #5E1DE1;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}
.week .session-alt .media-body a:hover .spkr_name, .week .session-alt .media-body a:focus .spkr_name {
  color: #6e33e5;
}
.week .session-alt .ssn_ttl {
  max-width: 390px;
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
}
.week .session-alt .ssn_date {
  letter-spacing: -0.7px;
}
.week .session-alt .ssn_date .dateholder {
  margin-bottom: 25px;
}
.week .session-alt .ssn_date .add_session span {
  font-size: 19px;
}
.week .session-alt .ssn_date .add_session span:hover, .week .session-alt .ssn_date .add_session span:focus {
  color: #6e33e5;
}
.week .session-alt .ssn_date .dateholder,
.week .session-alt .ssn_date .add_session {
  white-space: nowrap;
  float: right;
}
.week .foot {
  background: #f7faf4;
  padding: 30px 0 0;
}
.week .foot ul {
  text-align: center;
}
.week .foot ul li {
  width: 16.66666667%;
  margin: 0 -2px;
}
.week .foot ul li.fb {
  width: 98%;
}
.week .foot ul li.fb a {
  background: #4e6999;
  background: -moz-linear-gradient(top, #4e6999 0%, #3b5999 100%);
  background: -webkit-linear-gradient(top, #4e6999 0%, #3b5999 100%);
  background: linear-gradient(to bottom, #4e6999 0%, #3b5999 100%);
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.week .foot ul li.fb a:hover {
  background: #3b5999;
  background: -moz-linear-gradient(top, #3b5999 0%, #4e6999 100%);
  background: -webkit-linear-gradient(top, #3b5999 0%, #4e6999 100%);
  background: linear-gradient(to bottom, #3b5999 0%, #4e6999 100%);
}
.week .foot ul li a {
  letter-spacing: 0px;
  margin: 0 0 22px;
  padding: 10px 0;
  width: 100%;
}
.week .foot ul li a i.fa {
  font-size: 18px;
  margin-right: 5px;
}
.week .foot ul li a.disabled {
  background: #d3dbca;
  cursor: not-allowed;
  box-shadow: none;
}
.week .foot ul li a.upgrade {
  background: #eeb245;
  background: -moz-linear-gradient(top, #eeb245 0%, #dea640 100%);
  background: -webkit-linear-gradient(top, #eeb245 0%, #dea640 100%);
  background: linear-gradient(to bottom, #eeb245 0%, #dea640 100%);
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.week .foot ul li a.upgrade:hover {
  background: #dea640;
  background: -moz-linear-gradient(top, #dea640 0%, #eeb245 100%);
  background: -webkit-linear-gradient(top, #dea640 0%, #eeb245 100%);
  background: linear-gradient(to bottom, #dea640 0%, #eeb245 100%);
}
.week .gray_day_line {
  font: 600 17px/1.55em "Poppins";
  padding: 15px 35px;
  background: #ddd;
  color: #000;
  margin: 0;
}
@media (max-width: 991px) {
  .week .gray_day_line {
    font-size: 15px;
    padding: 8px 15px;
  }
}
.week.fullsummit {
  background: #eee;
}
.week.fullsummit:first-child .green_week_line {
  margin-top: -55px;
}
.week.fullsummit .green_week_line {
  background: #6e33e5;
}
.week.fullsummit .green_week_line .btn {
  background: #0f904a;
}
.week.fullsummit .green_week_line .btn:hover {
  background: #6e33e5;
}
.week.clndr .green_week_line {
  background: #f5f5f5;
  color: #000;
}
.week.clndr .green_week_line .week_nr {
  padding: 12px 15px;
  font-weight: 600;
}
.week.clndr .green_week_line .dates_range {
  color: #888;
}
.week.clndr .gray_day_line {
  font: 400 15px/1.55em "Poppins";
  padding: 5px 15px;
}
.week.clndr .session {
  padding: 0;
}
.week.clndr .session.locked:before {
  background-size: 80px;
}
.week.clndr .session .ssn_ttl {
  font: 600 17px/1.6em "Poppins";
  margin: 5px 0 10px;
  width: 380px;
}
.week.clndr .session .ssn_date {
  font: 600 14px "Poppins";
  color: #5E1DE1;
}
.week.clndr .session a.add_to_calendar {
  line-height: 44px;
  color: #5E1DE1;
  font-size: 21px;
}
.week.clndr .session a.add_to_calendar:hover {
  color: #6e33e5;
}
.week.clndr .session .media {
  padding: 35px 15px 20px;
}
.week.clndr .session .media-body {
  max-width: 380px;
}
.week.clndr .session .media-right {
  text-align: right;
  width: 100%;
}
.week.clndr .current_week h1 {
  font-size: 22px;
}
.week.clndr .current_week .btn.btn_gradient_purple {
  margin: 7px auto 15px;
  letter-spacing: 0;
  padding: 6px;
  width: 280px;
}
.week.res_lib {
  background: transparent;
  padding: 0 0 5px;
}
.week.res_lib .green_week_line .week_nr {
  font-size: 22px;
  padding: 14px 0;
}
.week.res_lib .cllps_week {
  padding: 80px 52px 58px 47px;
  margin-bottom: 0;
}
.week.res_lib .cllps_week .cllps_descr {
  margin: -50px 0 20px;
}
.week.res_lib .cllps_week .cllps_descr p {
  font: 400 18px "Poppins";
}
.week.res_lib .cllps_week .box {
  padding-right: 250px;
  position: relative;
}
.week.res_lib .cllps_week p.ttl {
  font: 600 22px "Poppins";
  margin: 0 0 26px;
  color: #000;
}
.week.res_lib .cllps_week p.small {
  font: 400 italic 16px "Poppins";
  margin: -20px 0 26px;
  color: #777;
}
.week.res_lib .cllps_week .btn.btn-blue {
  position: absolute;
  width: 215px;
  right: 0;
  top: 0;
}
.week.sales .green_week_line .week_nr {
  font-size: 22px;
  padding: 14px 0;
}
.week.sales .cllps_week {
  margin-bottom: 0;
  padding: 50px;
}
.week.sales .media-left {
  padding-right: 13px;
}
.week.sales .media-heading {
  font: 700 32px "Poppins";
  line-height: 1.25em;
  margin: 25px 0;
  color: #000;
}
.week.sales .btn.btn-main-color {
  font: 700 17px "Poppins";
  padding: 12px 52px;
  letter-spacing: 0;
}
.week.sales div.descr {
  margin: 30px 0 0;
}
.week.sales div.descr ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.week.sales div.descr ul li {
  font: 400 20px "Droid-Serif";
  line-height: 1.6em;
  margin-bottom: 0;
}
.week.sales div.descr ul li b {
  letter-spacing: 0.3px;
  color: #5E1DE1;
  font-weight: 700;
}
.week.sales div.descr ul li:before {
  display: inline;
  margin: 0 3px;
  content: "•";
}
.week.about {
  padding: 0 65px 4px;
  background: #fff;
}
.week.about .green_week_line {
  background: #ddd;
  color: #000;
}
.week.about .green_week_line .week_nr {
  font: 600 22px/1.45em "Poppins";
  padding: 12px 30px;
  margin: 0;
}
.week.about .cllps_week {
  padding: 37px 20px 20px 30px;
  box-shadow: none;
}
.week.about .cllps_week h2 {
  font: 600 26px/1.4em "Poppins";
  margin: 0 0 10px;
  color: #000;
}
.week.about .cllps_week h3 {
  font: 600 22px/1.4em "Poppins";
  margin: 0 0 10px;
  color: #000;
}
.week.about .cllps_week p {
  font: 400 17px/1.9em "Poppins";
  margin: 0 0 30px;
  color: #666;
}
.week.about .cllps_week a {
  color: #5E1DE1;
  font-weight: 700;
}
.week.about .cllps_week a.btn.btn_gradient_purple {
  font: 700 22px/1.2em "Poppins";
  letter-spacing: 2px;
  padding: 20px 55px;
  margin: 30px 0;
  color: #fff;
}
.week.about .cllps_week ul,
.week.about .cllps_week ol {
  margin: 10px 0 0;
  list-style: none;
  padding: 0;
}
.week.about .cllps_week ul li,
.week.about .cllps_week ol li {
  padding-left: 10px;
  position: relative;
  line-height: 25px;
  font-size: 15px;
  color: #777;
  margin: 0;
}
.week.about .cllps_week ul li strong,
.week.about .cllps_week ol li strong {
  letter-spacing: 0.25px;
}
.week.about .cllps_week ul li:before,
.week.about .cllps_week ol li:before {
  position: absolute;
  content: "•";
  left: 0;
  top: 0;
}
.week.about .cllps_week ul li ol,
.week.about .cllps_week ol li ol {
  list-style: none;
}
.week.about .cllps_week ul li ol li:before,
.week.about .cllps_week ol li ol li:before {
  content: "-";
  position: absolute;
  left: -10px;
  color: #777;
  top: 0;
}

.slick-dots {
  bottom: -20px;
  z-index: 1;
  margin: 0;
}
.slick-dots li {
  height: 22px;
  width: 22px;
  margin: 0;
}
@media (max-width: 639px) {
  .slick-dots li {
    margin-bottom: 10px !important;
  }
}
.slick-dots li button {
  height: 22px;
  width: 22px;
  cursor: pointer;
}
.slick-dots li button:before {
  transition: all 0.3s linear;
  font-size: 10px;
  line-height: 22px;
  height: 22px;
  width: 22px;
  color: #ddd;
  opacity: 1;
}
.slick-dots li:hover button:before, .slick-dots li.slick-active button:before {
  color: #5E1DE1;
}

/* Slider */
.slick-slider {
  display: block;
  position: relative;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
}
.slick-slider.slick-dotted {
  margin-bottom: 15px;
}
.slick-slider.slick-dotted ul.slick-dots {
  list-style: none;
  line-height: 1;
  position: absolute;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  bottom: -20px;
}
.slick-slider.slick-dotted ul.slick-dots li {
  display: inline-flex;
  margin: 0 4px;
  height: 5px;
  width: 20px;
}
.slick-slider.slick-dotted ul.slick-dots li button {
  height: 5px;
  width: 20px;
  font-size: 0;
  background: #b9c8d9;
  border-radius: 6px;
  padding: 0;
  border: none;
  transition: all ease 0.3s;
  outline: none;
}
.slick-slider.slick-dotted ul.slick-dots li.slick-active button, .slick-slider.slick-dotted ul.slick-dots li:hover button {
  background: #5E1DE1;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick_wr:not(.slick-initialized) {
  overflow: hidden;
  display: flex;
  position: relative;
}
.slick_wr:not(.slick-initialized) > *:nth-child(n+2) {
  display: none !important;
}
.slick_wr:not(.slick-initialized):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 130;
  background: rgba(255, 255, 255, 0.15);
}
.slick_wr:not(.slick-initialized):after {
  position: absolute;
  z-index: 135;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  opacity: 0.7;
  animation: slick_loading 1.5s linear infinite;
}
.slick_wr.space_between_slides .slick-list {
  margin: 0 -15px;
}
.slick_wr.space_between_slides .slick-list .slick-slide {
  margin: 0 15px;
}
@media (min-width: 400px) {
  .slick_wr.equal_height .slick-slider,
  .slick_wr.equal_height .slick-track,
  .slick_wr.equal_height .slick-list {
    display: flex;
  }
  .slick_wr.equal_height .slick-slider .slick-slide,
  .slick_wr.equal_height .slick-slider .slick-slide > div,
  .slick_wr.equal_height .slick-track .slick-slide,
  .slick_wr.equal_height .slick-track .slick-slide > div,
  .slick_wr.equal_height .slick-list .slick-slide,
  .slick_wr.equal_height .slick-list .slick-slide > div {
    height: 100%;
  }
}
.slick_wr.bottom_arrows {
  margin-bottom: 90px;
}
.slick_wr.bottom_arrows.slick-dotted button.slick-arrow {
  bottom: -110px;
}
.slick_wr.bottom_arrows button.slick-arrow {
  top: unset;
  background: #e9e9e9;
  bottom: -90px;
  transform: unset;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  transition: all ease 0.3s;
}
@media (max-width: 767px) {
  .slick_wr.bottom_arrows button.slick-arrow {
    width: 30px;
    height: 30px;
    bottom: -50px;
  }
}
.slick_wr.bottom_arrows button.slick-arrow.slick-prev {
  left: calc(50% - 60px);
}
@media (max-width: 767px) {
  .slick_wr.bottom_arrows button.slick-arrow.slick-prev {
    left: calc(50% - 40px);
  }
}
.slick_wr.bottom_arrows button.slick-arrow.slick-next {
  right: calc(50% - 60px);
}
@media (max-width: 767px) {
  .slick_wr.bottom_arrows button.slick-arrow.slick-next {
    right: calc(50% - 40px);
  }
}
.slick_wr.bottom_arrows button.slick-arrow:before {
  font-size: 20px;
  font-family: fontello, serif;
  color: #5E1DE1;
}
.slick_wr.bottom_arrows button.slick-arrow:hover {
  opacity: 0.8;
}
.slick_wr.top_arrows button.slick-arrow {
  top: -50px;
}
.slick_wr.top_arrows button.slick-arrow.slick-prev {
  left: unset;
  right: 70px;
}
.slick_wr.top_arrows button.slick-arrow.slick-next {
  right: 0;
}
.slick_wr.center_mode .slick-slide:not(.slick-center) > div {
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
}
@media (min-width: 768px) {
  .slick_wr.center_mode .slick-slide:not(.slick-center) > div {
    transform: scale(0.85);
  }
}
.slick_wr.center_mode .slick-slide:not(.slick-center) > div, .slick_wr.center_mode .slick-slide:not(.slick-center):not(.slick-active) + .slick-slide > div {
  transform-origin: left center;
}
.slick_wr.center_mode .slick-slide.slick-center + .slick-slide + .slick-slide > div,
.slick_wr.center_mode .slick-slide.slick-center ~ * > div {
  transform-origin: right center;
}
.slick_wr.center_mode .slider_item > img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .slick_wr.centered_arrows button.slick-prev {
    left: calc(50% - 340px);
  }
  .slick_wr.centered_arrows button.slick-next {
    right: calc(50% - 340px);
  }
}

@keyframes slick_loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*=========================================================

  NAV TABS

  00. #NAV TABS GLOBAL

  01. #NAV TABS GREEN

=========================================================*/
/*=========================================================
  00. #NAV TABS GLOBAL
=========================================================*/
.nav-tabs {
  margin: -58px 0 0;
  text-align: center;
  border: none;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  display: flex;
}
@media (max-width: 767px) {
  .nav-tabs {
    margin: -48px 0 0;
  }
}
.nav-tabs li.nav-item {
  flex: 1 0 0;
  display: inline-block;
  padding: 0;
  margin: 0 14px;
  width: 33.333%;
  margin: 0;
}
.nav-tabs li.nav-item a.nav-link {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: #ffffff;
  font: 600 15px/30px "Poppins";
  border: none;
  border-right: 1px solid #f5f5f5;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 13px 15px;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
@media (max-width: 1300px) {
  .nav-tabs li.nav-item a.nav-link {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .nav-tabs li.nav-item a.nav-link {
    font-size: 13px;
    height: 50px;
    padding: 7px 15px;
    line-height: 1.2;
  }
}
@media (max-width: 639px) {
  .nav-tabs li.nav-item a.nav-link {
    font-size: 12px;
    height: 48px;
    padding: 7px 10px;
  }
}
.nav-tabs li.nav-item a.nav-link:hover {
  color: #000;
  margin: 0;
}
.nav-tabs li.nav-item a.nav-link.active {
  border-bottom-color: #5E1DE1;
  color: #5E1DE1;
}
.nav-tabs li.nav-item.active a:focus,
.nav-tabs li.nav-item.active a, .nav-tabs li.nav-item.current-menu-item a:focus,
.nav-tabs li.nav-item.current-menu-item a {
  background-color: #eeeeee;
  cursor: default;
  color: #000000;
  border: none;
}
.nav-tabs li.nav-item.active a:focus:hover,
.nav-tabs li.nav-item.active a:hover, .nav-tabs li.nav-item.current-menu-item a:focus:hover,
.nav-tabs li.nav-item.current-menu-item a:hover {
  background-color: #eeeeee;
  border: none;
}
.nav-tabs li.nav-item:last-child a.nav-link {
  border-right: none;
}
.nav-tabs.tabs_1 li, .nav-tabs.tabs_2 li {
  float: none;
}
.nav-tabs.tabs_4 li {
  width: 25%;
}
.nav-tabs.tabs_5 li {
  padding: 0 5px;
  width: 20%;
}
.nav-tabs.tabs_5 li a {
  padding: 17px 10px;
  font-size: 15px;
}
.nav-tabs.tabs_6 li {
  padding: 0 2px;
  width: 16.6666%;
}
.nav-tabs.tabs_6 li a {
  padding: 17px 0;
  font-size: 15px;
}
@media (max-width: 991px) {
  .nav-tabs.tabs_6 li a {
    font-size: 13px;
  }
}
.nav-tabs.tabs_7 li {
  padding: 0 2px;
  width: 14.28%;
}
.nav-tabs.tabs_7 li a {
  padding: 17px 10px;
  font-size: 15px;
}
@media (max-width: 1699px) {
  .nav-tabs.tabs_7 li a {
    padding: 17px 0px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .nav-tabs.tabs_7 li a {
    line-height: 1.2em;
    padding: 12px 0px;
    min-height: 56px;
    font-size: 14px;
  }
}

/*=========================================================
  01. #NAV TABS GREEN
=========================================================*/
.nav.nav-green li a {
  background-color: #5E1DE1;
  color: #ffffff;
}
.nav.nav-green li a:hover {
  background-color: #6e33e5;
}
.nav.nav-green li.active a, .nav.nav-green li.current-menu-item a {
  color: #666666;
  background-color: #ffffff;
}
.nav.nav-green li.active a:hover, .nav.nav-green li.current-menu-item a:hover {
  background-color: #ffffff;
}

.countdown {
  font-size: 55px;
  font-weight: 300;
  font-family: "Poppins";
  margin: 0 auto;
  display: table;
  border: none;
  color: #5E1DE1;
}
.countdown-sticky {
  transition: 0.2s;
  font-size: 12px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  opacity: 0;
  background-color: #f5f5f5;
  padding: 10px 15px;
  z-index: 1000;
  display: flex;
}
.countdown-sticky > div {
  flex: 1 0 0;
  margin-right: 8px;
}
.countdown-sticky ~ #hbl-live-chat-wrapper {
  opacity: 1;
  transition: 0.2s;
}
.countdown-sticky .countdown {
  margin-right: -20px !important;
  margin-left: -20px !important;
  min-width: 174px !important;
}
@media (max-width: 479px) {
  .countdown-sticky .countdown {
    margin-left: -15px !important;
  }
}
.countdown-sticky .countdown-period {
  color: #000 !important;
}
@media (max-width: 479px) {
  .countdown-sticky .countdown-section {
    width: 36px !important;
  }
}
.countdown-sticky .btn.btn_gradient_purple {
  margin: auto 0 auto auto;
  letter-spacing: 0;
  font-size: 14px !important;
  padding-left: 10px;
  padding-right: 10px;
  flex: 1 0 0;
}
@media (max-width: 340px) {
  .countdown-sticky .btn.btn_gradient_purple {
    font-size: 13px !important;
  }
}
.countdown-sticky.show {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 991px) {
  .countdown-sticky.show ~ #hbl-live-chat-wrapper {
    opacity: 0 !important;
    pointer-events: none;
  }
}
#main_navbar .countdown {
  color: #5E1DE1;
  margin-top: -10px;
}
#main_navbar .countdown .countdown-period {
  font-weight: 400;
}
@media (max-width: 991px) {
  .countdown {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .countdown {
    font-size: 48px;
  }
}
@media (max-width: 639px) {
  .countdown {
    font-size: 36px;
    margin: 0 auto 0px;
  }
}
.countdown .countdown-row {
  text-align: center;
  padding: 13px 8px 9px;
  display: table;
  width: inherit;
}
.countdown .countdown-section {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 132px;
}
@media (max-width: 991px) {
  .countdown .countdown-section {
    width: 120px;
  }
}
@media (max-width: 639px) {
  .countdown .countdown-section {
    width: 80px;
  }
}
@media (max-width: 479px) {
  .countdown .countdown-section {
    width: 60px;
  }
}
.countdown .countdown-section:after {
  position: absolute;
  content: ":";
  right: -10px;
  top: -5px;
}
@media (max-width: 639px) {
  .countdown .countdown-section:after {
    top: -4px;
  }
}
@media (max-width: 479px) {
  .countdown .countdown-section:after {
    right: -4px;
  }
}
.countdown .countdown-section:last-child:after {
  display: none;
}
.countdown .countdown-section .countdown-period {
  font: 600 14px "Poppins";
  margin-bottom: 0;
  color: #555;
  margin-top: -2px;
  display: block;
}
@media (max-width: 639px) {
  .countdown .countdown-section .countdown-period {
    font-size: 12px;
  }
}
.countdown.lg {
  font: 70 70px "Poppins";
  margin: 45px auto 25px;
  display: table;
  border: none;
  color: #5E1DE1;
}
@media (max-width: 991px) {
  .countdown.lg {
    font-size: 62px;
    margin: 15px auto;
  }
}
@media (max-width: 767px) {
  .countdown.lg {
    font-size: 48px;
  }
}
@media (max-width: 639px) {
  .countdown.lg {
    font-size: 36px;
    margin: 0 auto 0px;
  }
}
.countdown.lg .countdown-row {
  text-align: center;
  padding: 13px 8px;
  display: table;
  width: inherit;
}
.countdown.lg .countdown-section {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 160px;
}
@media (max-width: 991px) {
  .countdown.lg .countdown-section {
    width: 110px;
  }
}
@media (max-width: 639px) {
  .countdown.lg .countdown-section {
    width: 90px;
  }
}
@media (max-width: 479px) {
  .countdown.lg .countdown-section {
    width: 68px;
  }
}
.countdown.lg .countdown-section:after {
  position: absolute;
  content: ":";
  right: -11px;
  top: -7px;
}
@media (max-width: 639px) {
  .countdown.lg .countdown-section:after {
    top: -4px;
  }
}
@media (max-width: 479px) {
  .countdown.lg .countdown-section:after {
    right: -4px;
  }
}
.countdown.lg .countdown-section:last-child:after {
  display: none;
}
.countdown.lg .countdown-section .countdown-period {
  font: 600 14px "Poppins";
  margin-bottom: 5px;
  color: #555;
  margin-top: -4px;
  display: block;
}
@media (max-width: 639px) {
  .countdown.lg .countdown-section .countdown-period {
    font-size: 13px;
  }
}
.countdown.sm {
  font: 26 26px "Poppins";
  margin: 0 auto;
  color: #bb109a;
}
@media (max-width: 479px) {
  .countdown.sm {
    font: 20 20px "Poppins";
    min-width: 184px;
  }
}
#banner header .countdown.sm {
  position: absolute;
  right: 50vw;
  top: 50%;
  transform: translate(50%, -50%);
  opacity: 1;
  transition: 0.2s;
}
#banner header .countdown.sm .countdown-row {
  min-width: 260px;
}
@media (max-width: 479px) {
  #banner header .countdown.sm .countdown-row {
    min-width: 180px;
  }
}
#banner header .navbar-collapse.show + .countdown.sm {
  opacity: 0;
  pointer-events: none;
}

#banner header .navbar-collapse.collapsing + .countdown.sm {
  opacity: 0;
  pointer-events: none;
}

.countdown.sm .countdown-row {
  text-align: center;
  padding: 0 8px;
  display: table;
  width: inherit;
}
.countdown.sm .countdown-section {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 55px;
}
@media (max-width: 639px) {
  .countdown.sm .countdown-section {
    width: 50px;
  }
}
@media (max-width: 479px) {
  .countdown.sm .countdown-section {
    width: 42px;
  }
}
.countdown.sm .countdown-section:after {
  position: absolute;
  content: ":";
  right: -4px;
  top: -2px;
}
@media (max-width: 639px) {
  .countdown.sm .countdown-section:after {
    top: -3px;
  }
}
@media (max-width: 479px) {
  .countdown.sm .countdown-section:after {
    right: -4px;
  }
}
.countdown.sm .countdown-period {
  font: 400 10px "Poppins";
  margin-bottom: 5px;
  color: #0f0f3d;
  margin-top: -2px;
  display: block;
}

.content h2 {
  font-size: 40px;
  line-height: 1.35;
  margin: 0 0 30px;
  font-family: "Inter";
  font-weight: 400;
}
@media (max-width: 1919px) {
  .content h2 {
    font-size: 36px;
  }
}
@media (max-width: 1300px) {
  .content h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .content h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .content h2 {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .content h2 {
    font-size: 26px;
  }
}
@media (max-width: 479px) {
  .content h2 {
    font-size: 20px;
    line-height: 1.25;
  }
}
.content h2 b {
  font-weight: bold;
}
.content h2.slim {
  font-size: 56px;
  line-height: 1.25;
  font-weight: 400;
  margin: 5px -10px 60px;
  text-align: center;
}
@media (max-width: 1919px) {
  .content h2.slim {
    margin: 0 0 60px;
    font-size: 48px;
  }
}
@media (max-width: 1300px) {
  .content h2.slim {
    font-size: 46px;
  }
}
@media (max-width: 1699px) {
  .content h2.slim {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .content h2.slim {
    font-size: 36px;
    margin: 0 0 45px;
  }
}
@media (max-width: 767px) {
  .content h2.slim {
    font-size: 34px;
  }
}
@media (max-width: 639px) {
  .content h2.slim {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .content h2.slim {
    font-size: 23px;
    margin: 10px 0 20px;
  }
}
.content h2.slim b {
  color: #5E1DE1;
}
.content h2.lg {
  font-size: 60px;
  line-height: 1.25;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 1919px) {
  .content h2.lg {
    font-size: 54px;
  }
}
@media (max-width: 1300px) {
  .content h2.lg {
    font-size: 46px;
  }
}
@media (max-width: 1699px) {
  .content h2.lg {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .content h2.lg {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .content h2.lg {
    font-size: 34px;
  }
}
@media (max-width: 639px) {
  .content h2.lg {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .content h2.lg {
    font-size: 23px;
  }
}
.content h2.thin {
  font-size: 60px;
  line-height: 1.25;
  font-weight: 300;
  margin: 5px 0;
  text-align: center;
}
@media (max-width: 1919px) {
  .content h2.thin {
    font-size: 52px;
  }
}
@media (max-width: 1300px) {
  .content h2.thin {
    font-size: 46px;
  }
}
@media (max-width: 1699px) {
  .content h2.thin {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .content h2.thin {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .content h2.thin {
    font-size: 34px;
  }
}
@media (max-width: 639px) {
  .content h2.thin {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .content h2.thin {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  .content h2 br {
    display: none;
  }
}
.content h3 {
  font-size: 26px;
  line-height: 1.54;
  font-weight: 400;
  margin: 0 0 42px;
  color: #000;
}
@media (max-width: 1919px) {
  .content h3 {
    font-size: 22px;
    line-height: 1.54;
  }
}
@media (max-width: 1300px) {
  .content h3 {
    font-size: 20px;
    line-height: 1.54;
  }
}
@media (max-width: 1699px) {
  .content h3 {
    margin: 0 0 32px;
  }
}
@media (max-width: 639px) {
  .content h3 {
    font-size: 18px;
    line-height: 1.54;
  }
}
@media (max-width: 479px) {
  .content h3 {
    font-size: 16px;
    line-height: 1.54;
    margin: 0 0 20px;
  }
}
.content h3.lg {
  font-size: 30px;
  line-height: 1.54;
}
@media (max-width: 1300px) {
  .content h3.lg {
    font-size: 28px;
    line-height: 1.54;
  }
}
@media (max-width: 991px) {
  .content h3.lg {
    font-size: 24px;
    line-height: 1.54;
  }
}
@media (max-width: 639px) {
  .content h3.lg {
    font-size: 20px;
    line-height: 1.54;
  }
}
@media (max-width: 479px) {
  .content h3.lg {
    font-size: 18px;
    line-height: 1.54;
  }
}
.content h4 {
  font-size: 22px;
  line-height: 1.54;
  font-weight: 400;
  margin: 0 0 39px;
  color: #000;
}
@media (max-width: 1919px) {
  .content h4 {
    font-size: 20px;
  }
}
@media (max-width: 1300px) {
  .content h4 {
    font-size: 18px;
  }
}
@media (max-width: 1699px) {
  .content h4 {
    margin: 0 0 32px;
  }
}
@media (max-width: 639px) {
  .content h4 {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .content h4 {
    font-size: 14px;
    line-height: 1.78;
  }
}
.content p {
  font-size: 18px;
  line-height: 1.78;
  margin: 0 0 30px;
  font-weight: 400;
  color: #000;
  font-family: "Inter";
}
@media (max-width: 1919px) {
  .content p {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .content p {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .content p {
    margin: 0 0 20px;
  }
}
.content p b {
  color: #5E1DE1;
}
.content p.small {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 15px;
}
@media (max-width: 639px) {
  .content p.small {
    font-size: 14px;
    margin: 0 0 10px;
  }
}
.content p.x-small {
  font-size: 14px;
  line-height: 1.57;
  font-weight: 400;
  color: #555;
  margin: 0 0 15px;
}
@media (max-width: 639px) {
  .content p.x-small {
    font-size: 12px;
    margin: 0 0 10px;
  }
}
.content ul.check-ul {
  max-width: 347px;
  margin: 0 auto 0;
  list-style: none;
  padding: 0;
}
@media (max-width: 479px) {
  .content ul.check-ul {
    margin: 0 0 0 25px;
  }
}
.content ul.check-ul li {
  position: relative;
}
.content ul.check-ul li:before {
  font-size: 18px;
  line-height: 34px;
  font-weight: 100;
  color: #fff;
  background: #5E1DE1;
  font-family: "fontello", serif;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  content: "✓";
  display: block;
  height: 30px;
  width: 30px;
  left: -45px;
}
@media (max-width: 479px) {
  .content ul.check-ul li:before {
    width: 16px;
    height: 16px;
    left: -25px;
    top: 5px;
    font-size: 10px;
    line-height: 17px;
  }
}
.content ul.check-ul li b {
  font-size: 22px;
  line-height: 1.4;
  color: #5E1DE1;
}
@media (max-width: 1699px) {
  .content ul.check-ul li b {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .content ul.check-ul li b {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .content ul.check-ul li b {
    font-size: 16px;
  }
}
.content ul.check-ul li p {
  font-size: 22px;
  line-height: 1.65;
  color: #000;
  margin: 3px 0 39px;
}
@media (max-width: 1699px) {
  .content ul.check-ul li p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .content ul.check-ul li p {
    font-size: 18px;
    line-height: 1.45;
  }
}
@media (max-width: 767px) {
  .content ul.check-ul li p {
    margin: 3px 0 24px;
  }
}
@media (max-width: 479px) {
  .content ul.check-ul li p {
    font-size: 14px;
    margin: 0 0 15px;
  }
}
.content ul.check-ul li p small {
  font-size: 13px;
  color: #747474;
  display: block;
  margin: 7px 0 0;
}
.content ul.check-ul.ordered li {
  counter-increment: order;
}
.content ul.check-ul.ordered li b {
  color: #000;
}
.content ul.check-ul.ordered li p {
  font-size: 18px;
}
@media (max-width: 991px) {
  .content ul.check-ul.ordered li p {
    font-size: 16px;
    line-height: 1.45;
  }
}
@media (max-width: 639px) {
  .content ul.check-ul.ordered li p {
    font-size: 14px;
    margin: 0 0 15px;
  }
}
.content ul.check-ul.ordered li p a {
  color: #5E1DE1;
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
}
.content ul.check-ul.ordered li:before {
  content: counter(order);
  font-family: "Poppins";
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  background: #5E1DE1;
}

.txt-cursive {
  font-family: "Playfair Display";
  color: #5E1DE1;
  font-weight: 700;
  font-style: italic;
}

.txt-ylw {
  color: #5E1DE1 !important;
}

.txt-green {
  color: #5E1DE1 !important;
}

.txt-green-2 {
  color: #00909d !important;
}

.txt-green-3 {
  color: #04d603 !important;
}

.txt-green-4 {
  color: #04d603 !important;
}

.txt-white {
  color: #fff !important;
}

.txt-purple {
  color: #5E1DE1 !important;
}

.txt-muted {
  color: #555 !important;
}

.txt-dark {
  color: #000 !important;
}

.txt-warning {
  color: red !important;
}

.txt-semibold {
  font-weight: 600 !important;
}

.txt-light {
  font-weight: 300 !important;
}

.txt-bold {
  font-weight: 700 !important;
}

.txt-regular {
  font-weight: 400 !important;
}

.content_grid {
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .content_grid {
    margin-top: 10px;
  }
}
.content_grid .col-md-6 {
  display: flex;
}
.content_grid figure {
  border-radius: 6px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  margin: 0 0 30px;
}
@media (max-width: 639px) {
  .content_grid figure {
    margin: 0 0 15px;
  }
}
.content_grid figure img {
  object-position: top left;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .content_grid figure img {
    width: 100%;
    height: auto;
  }
}
.content_grid figure h3 {
  font-weight: 600;
  text-align: right;
  font-size: 36px;
  line-height: 1.12;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 17px 30px;
  max-width: 100%;
}
@media (max-width: 1699px) {
  .content_grid figure h3 {
    font-size: 30px;
  }
}
@media (max-width: 1300px) {
  .content_grid figure h3 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .content_grid figure h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .content_grid figure h3 {
    font-size: 22px;
    padding: 10px 15px;
  }
}
@media (max-width: 639px) {
  .content_grid figure h3 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .content_grid figure h3 {
    font-size: 18px;
  }
}
.content_grid figure h5 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .content_grid figure h5 {
    font-size: 20px;
  }
}
.content_grid figure.tag-container {
  padding: 86px 50px 80px;
}
@media (max-width: 991px) {
  .content_grid figure.tag-container {
    padding: 30px 30px 60px;
  }
}
@media (max-width: 479px) {
  .content_grid figure.tag-container {
    padding: 10px 15px 50px;
  }
}
.content_grid figure.tag-container .tag {
  font-size: 16px;
  line-height: 31px;
  font-weight: 600;
  white-space: nowrap;
  flex: auto;
  padding: 0 15px;
  color: #fff;
  background: #5E1DE1;
  border-radius: 6px;
  margin: 0 15px 15px 0;
}
@media (max-width: 1300px) {
  .content_grid figure.tag-container .tag {
    font-size: 15px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .content_grid figure.tag-container .tag {
    font-size: 14px;
    line-height: 30px;
  }
}
@media (max-width: 639px) {
  .content_grid figure.tag-container .tag {
    font-size: 13px;
    line-height: 28px;
    margin: 0 auto 12px;
  }
}
@media (max-width: 479px) {
  .content_grid figure.tag-container .tag {
    font-size: 12px;
    line-height: 26px;
  }
}
.content_grid figure.tag-container .tag + p.green {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #5E1DE1;
  margin: 5px 0 0;
}
@media (max-width: 639px) {
  .content_grid figure.tag-container .tag + p.green {
    font-size: 14px;
  }
}
.content_grid figure.tag-container h4 {
  margin-left: auto;
  max-width: 340px;
}
@media (max-width: 767px) {
  .content_grid figure.tag-container h4 {
    max-width: 100%;
  }
}
.content_grid figure.tag-container h4 a {
  font-weight: bold;
  color: #5E1DE1;
}
.content_grid figure.tag-container h4 a i {
  margin-left: -6px;
}

.ifs_reg {
  background-size: cover;
  position: relative;
  color: #444;
}
@media (max-width: 639px) {
  .ifs_reg {
    padding: 0;
  }
}
.ifs_reg:before {
  display: none !important;
}
.ifs_reg .loader {
  display: none;
}
.ifs_reg.loading, .sq25_success .head .slider_videos_reviews .ifs_reg.video.video_buffer {
  border: initial;
}
.ifs_reg.loading:before, .sq25_success .head .slider_videos_reviews .ifs_reg.video.video_buffer:before {
  z-index: 9999;
  opacity: 1;
}
.ifs_reg.loading:after, .sq25_success .head .slider_videos_reviews .ifs_reg.video.video_buffer:after {
  z-index: 9998;
}
.ifs_reg.loading .loader, .sq25_success .head .slider_videos_reviews .ifs_reg.video.video_buffer .loader {
  position: fixed;
  display: block;
}
.ifs_reg .bootstrap-select.show .btn.dropdown-toggle:after {
  transform: rotate(180deg);
}
.ifs_reg .bootstrap-select .btn.dropdown-toggle {
  color: #545454 !important;
  font-weight: 500;
}
@media (max-width: 767px) {
  .ifs_reg .bootstrap-select .btn.dropdown-toggle {
    font-size: 12px;
  }
}
.ifs_reg .bootstrap-select .btn.dropdown-toggle:after {
  color: #5E1DE1;
}
.ifs_reg label {
  line-height: 1.65em;
  margin: 0 0 27px;
  font-weight: 400;
  font-size: 15px;
  display: block;
}
@media (max-width: 639px) {
  .ifs_reg label {
    line-height: 1.45em;
    margin: 0 0 20px;
  }
}
.ifs_reg label .required {
  color: #5E1DE1;
}
.ifs_reg label .txt {
  padding: 10px 0 0;
  display: block;
}
@media (max-width: 639px) {
  .ifs_reg label .txt br {
    display: none;
  }
}
.ifs_reg .form-control {
  position: relative;
  margin: 12px 0 0;
  padding: 0 18px;
  height: 60px;
  z-index: 1;
}
@media (max-width: 639px) {
  .ifs_reg .form-control {
    margin: 3px 0 0;
    padding: 0 12px;
    height: 44px;
  }
}
.ifs_reg textarea.form-control {
  padding: 20px;
  height: 240px;
}
@media (max-width: 639px) {
  .ifs_reg textarea.form-control {
    padding: 12px;
  }
}
.ifs_reg .half_wrap {
  display: inline-block;
  float: left;
  width: 48%;
}
@media (max-width: 639px) {
  .ifs_reg .half_wrap {
    width: 100%;
  }
}
.ifs_reg .half_wrap.left {
  margin-right: 4%;
}
@media (max-width: 639px) {
  .ifs_reg .half_wrap.left {
    margin: 0;
  }
}
.ifs_reg .btn.btn-yellow,
.ifs_reg .btn.btn-green,
.ifs_reg .btn.btn_gradient_purple {
  border-radius: 6px;
  letter-spacing: 0px;
  line-height: 1.65;
  margin: 10px 0 0px;
  font-weight: 700;
  font-size: 26px;
  padding: 24px 0;
  width: 100%;
}
@media (max-width: 639px) {
  .ifs_reg .btn.btn-yellow,
  .ifs_reg .btn.btn-green,
  .ifs_reg .btn.btn_gradient_purple {
    font-size: 16px;
    padding: 12px 0;
  }
}
@media (max-width: 479px) {
  .ifs_reg .btn.btn-yellow,
  .ifs_reg .btn.btn-green,
  .ifs_reg .btn.btn_gradient_purple {
    font-size: 14px;
  }
}
.ifs_reg .btn.btn-yellow:before,
.ifs_reg .btn.btn-green:before,
.ifs_reg .btn.btn_gradient_purple:before {
  border-radius: 0;
}
.ifs_reg .btn.btn-yellow span.small,
.ifs_reg .btn.btn-green span.small,
.ifs_reg .btn.btn_gradient_purple span.small {
  line-height: 1em;
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 8px;
  display: block;
  width: 100%;
}
@media (max-width: 1300px) {
  .ifs_reg .btn.btn-yellow span.small,
  .ifs_reg .btn.btn-green span.small,
  .ifs_reg .btn.btn_gradient_purple span.small {
    font-size: 12px;
  }
}
@media (max-width: 639px) {
  .ifs_reg .btn.btn-yellow span.small,
  .ifs_reg .btn.btn-green span.small,
  .ifs_reg .btn.btn_gradient_purple span.small {
    font-size: 10px;
    margin: 0 0 5px;
  }
}
.ifs_reg .btn.btn-yellow.btn-green,
.ifs_reg .btn.btn-green.btn-green,
.ifs_reg .btn.btn_gradient_purple.btn-green {
  background: #5E1DE1;
}
.ifs_reg .txt_wrap {
  padding: 20px 0;
}
.ifs_reg .txt_wrap p {
  margin: 0 0 15px;
  max-width: 100%;
}
.ifs_reg .txt_wrap p.top_txt {
  font: 400 14px/1.25em "Poppins";
  text-align: center;
  color: #777;
}
.ifs_reg .txt_wrap p.top_txt a {
  color: #5E1DE1;
  font-weight: 700;
}
.ifs_reg .txt_wrap label {
  line-height: 1.25em;
  margin: 0;
}
.ifs_reg .phone_nr_warp {
  margin-bottom: 0;
}
.ifs_reg .phone_nr_warp .field_ttl {
  width: 100%;
  margin-bottom: 10px;
  display: block;
}
.ifs_reg .phone_nr_warp .field_ttl br {
  display: none;
}
.ifs_reg .phone_nr_warp .iti {
  width: 100%;
}
.ifs_reg .phone_nr_warp .iti #phone_nr {
  padding-top: 2px;
  padding-left: 50px !important;
}

.modal_gdpr_trigger {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.modal_gdpr_trigger p {
  font: 400 16px/26px "Poppins";
  font-weight: 400;
  text-align: center;
  color: #06063c;
  margin: 20px auto 0;
  max-width: 500px;
}
@media (max-width: 767px) {
  .modal_gdpr_trigger p {
    max-width: 440px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .modal_gdpr_trigger p {
    font-size: 12px;
    line-height: 20px;
  }
}
.modal_gdpr_trigger p a {
  color: #5E1DE1;
  font-weight: 700;
}

.field_mmbrs {
  margin: 0 0 30px;
}
.field_mmbrs .field_ttl {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  display: block;
  margin: 0 0 5px;
}
@media (max-width: 767px) {
  .field_mmbrs .field_ttl {
    font-size: 14px;
  }
}
.field_mmbrs input.form-control {
  height: 58px;
  border: 1px solid #e3e3e3;
  padding: 10px;
  border-radius: 0;
  border-left: none;
  border-right: none;
}
@media (max-width: 767px) {
  .field_mmbrs input.form-control {
    height: 48px;
  }
}

.video {
  position: relative;
}
.video:hover .icons {
  background: #6e33e5;
  transform: scale(1.15);
}
.video.hover .icons {
  opacity: 1;
}
.video.video-pause .icons .icon-pause {
  display: none;
}
.video.video-play .presenters,
.video.video-play .btn,
.video.video-play .rating_wrap {
  z-index: 0 !important;
}
.video.video-play .trigger_video {
  z-index: 0;
}
.video.video-play img {
  opacity: 0;
  z-index: 0;
}
.video.video-play .icons,
.video.video-play svg {
  opacity: 0;
  bottom: 0;
  top: 0;
}
.video.video-play .icons .icon-play,
.video.video-play svg .icon-play {
  display: none;
}
.video img {
  display: block;
  max-width: 100%;
  height: auto;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.video .icons {
  box-shadow: 1px 2px 20px 0px rgba(0, 0, 0, 0.35);
  background-color: #5E1DE1;
  transition: all 0.3s linear;
  border-radius: 20px;
  transform: scale(1);
  position: absolute;
  text-align: center;
  margin: auto;
  height: 74px;
  width: 107px;
  color: #fff;
  z-index: 5;
  padding: 0;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
@media (max-width: 639px) {
  .video .icons {
    border-radius: 10px;
    height: 52px;
    width: 75px;
  }
}
.video .icons .icon {
  font-size: 52px;
  padding: 0 17px;
  margin: 0;
}
@media (max-width: 639px) {
  .video .icons .icon {
    font-size: 36px;
    padding: 0 13px;
  }
}
@media (max-width: 639px) and (max-width: 639px) {
  .video .icons .icon {
    padding: 0 13px;
  }
}

.trigger_video,
.video_preview {
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.3s linear;
  pointer-events: all;
  position: absolute;
  cursor: pointer;
  height: 100%;
  width: 100%;
  z-index: 2;
  left: 0;
  top: 0;
}
.trigger_video svg,
.video_preview svg {
  width: 90px;
  height: 80px;
  transition: 0.2s;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
@media (max-width: 1300px) {
  .trigger_video svg,
  .video_preview svg {
    width: 80px;
    height: 70px;
  }
}
@media (max-width: 1300px) {
  .trigger_video svg,
  .video_preview svg {
    width: 70px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .trigger_video svg,
  .video_preview svg {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 639px) {
  .trigger_video svg,
  .video_preview svg {
    width: 50px;
    height: 50px;
  }
}
.trigger_video:hover svg,
.video_preview:hover svg {
  transform: translate3d(-50%, -50%, 0) scale(1.1);
}

.video.preview {
  border-radius: 10px;
  overflow: hidden;
}
.video.preview img {
  position: relative;
}

.video_wrap:not(.vimeo-initialized) .video.video_buffer .trigger_video {
  pointer-events: none;
  display: none;
  cursor: not-allowed;
}
.video_wrap:not(.vimeo-initialized) .video.video_buffer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 130;
  background: rgba(255, 255, 255, 0.15);
}
.video_wrap:not(.vimeo-initialized) .video.video_buffer:after {
  position: absolute;
  z-index: 135;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  opacity: 0.7;
  animation: loading_rotation 1.5s linear infinite;
}

#contact {
  padding: 95px 15px 84px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1699px) {
  #contact {
    padding: 80px 15px;
  }
}
@media (max-width: 767px) {
  #contact {
    padding: 55px 15px;
  }
}
#contact.funnel {
  background: #fff;
}
#contact.funnel h3 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
}
#contact.funnel p {
  font-weight: 500;
}
#contact.funnel p a {
  color: #D10C92;
}
#contact.pink p a {
  color: #7032c8;
}
#contact h3 {
  font-size: 26px;
  line-height: 39px;
  font-weight: 700;
  color: #000;
  font-family: "Poppins";
  margin: 26px 0 11px;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  #contact h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  #contact h3 {
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  #contact p {
    max-width: 320px;
    margin: 0 auto 15px;
  }
}
#contact p a {
  font-weight: 600;
  color: #6335c3;
}
@media (max-width: 991px) {
  #contact {
    padding-bottom: 50px;
  }
  #contact h3 {
    font-size: 34px;
    line-height: 130%;
  }
  #contact p {
    font-size: 15px;
    line-height: 180%;
  }
}
@media (max-width: 639px) {
  #contact {
    padding-bottom: 40px;
  }
  #contact h3 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
  }
  #contact p {
    font-size: 14px;
    line-height: 180%;
  }
  #contact p br {
    display: none;
  }
}
#contact img {
  width: 75px;
}
@media (max-width: 639px) {
  #contact img {
    width: 60px;
  }
}
@media (max-width: 479px) {
  #contact img {
    width: 55px;
  }
}
#contact .btn {
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 30px;
  margin: 16px 0 0;
  background: #6335C3;
}
#contact .btn.btn-purple {
  height: 41px;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
}
@media (max-width: 639px) {
  #contact .btn {
    font-size: 15px;
    padding: 10px 80px;
    margin: 10px 0 0;
    width: 100%;
    max-width: 255px;
  }
}
@media (max-width: 479px) {
  #contact .btn {
    font-size: 13px;
    padding: 8px 40px;
  }
}

.main-banner {
  padding: 5px 0 237px;
  color: #ffffff;
  overflow: hidden;
  text-shadow: 3px 0 3px rgba(0, 0, 0, 0.2);
}
.main-banner header {
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 991px) {
  .main-banner header {
    padding-left: 15px;
    z-index: 10;
  }
}
.main-banner header .logo_wrap {
  display: flex;
  align-items: center;
  align-content: center;
}
.main-banner header .logo_wrap p {
  border-left: 1px solid #fff;
  padding-left: 30px;
  margin-left: 30px;
  padding-right: 30px;
  margin-bottom: 0;
  font-size: 15px;
}
@media (max-width: 1500px) {
  .main-banner header .logo_wrap p {
    max-width: 335px;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .main-banner header .logo_wrap p {
    display: none;
  }
}
.main-banner header .logo_wrap .logo {
  width: 100%;
  max-width: 210px;
}
.main-banner header .promo_txt {
  font-size: 22px;
  max-width: 750px;
}
@media (max-width: 767px) {
  .main-banner header .promo_txt {
    font-size: 28px;
  }
}
.main-banner header .navbar-toggle {
  color: #fff;
  font-size: 30px;
  -webkit-appearance: none;
  background: transparent;
  padding: 1px 7px 2px;
  border: none;
  outline: none;
}
@media (max-width: 991px) {
  .main-banner header .header-nav {
    padding-top: 0;
    padding-right: 0;
  }
  .main-banner header .header-nav .navbar-collapse {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    text-align: center;
    padding: 0 15px 15px 15px;
    z-index: -1;
    width: 100vw;
    right: 0;
    top: -5px;
  }
  .main-banner header .header-nav .navbar-collapse a {
    margin: 0 auto 20px;
    max-width: 280px;
    display: block;
  }
  .main-banner header .header-nav .navbar-collapse a:first-child {
    margin-top: 70px;
  }
}
@media (max-width: 639px) {
  .main-banner header .header-nav .navbar-collapse a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .main-banner header .header-nav.header-nav-light {
    text-shadow: none;
    color: #000;
  }
  .main-banner header .header-nav.header-nav-light .navbar-toggle[aria-expanded=true] {
    color: #5E1DE1;
  }
  .main-banner header .header-nav.header-nav-light .navbar-collapse {
    background: #fff;
  }
  .main-banner header .header-nav.header-nav-light .navbar-collapse a {
    color: #000;
  }
  .main-banner header .header-nav.header-nav-light .navbar-collapse a:first-child {
    margin-top: 50px;
  }
  .main-banner header .header-nav.header-nav-light .navbar-collapse a.btn-border {
    border-color: #000;
  }
  .main-banner header .header-nav.header-nav-light .countdown {
    text-shadow: none;
  }
}
.main-banner header .header-nav.header-nav-light .gray-cont {
  background: #f5f5f5;
  margin: 30px -15px -15px;
  padding: 30px 15px 15px;
}
.main-banner .home_link {
  transition: all 0.1s;
}
@media (max-width: 991px) {
  .main-banner .home_link {
    z-index: 100;
  }
}
.main-banner .header_timer {
  font-family: "Inter";
  width: 260px;
}
@media (max-width: 991px) {
  .main-banner .header_timer {
    margin: 0 auto 30px;
  }
}
.main-banner .header_timer .countdown-row {
  display: flex;
  justify-content: center;
}
.main-banner .header_timer .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
  justify-content: center;
}
.main-banner .header_timer .countdown-section:before {
  position: absolute;
  top: 0;
  right: -6px;
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  content: ":";
}
@media (max-width: 991px) {
  .main-banner .header_timer .countdown-section:before {
    font-size: 50px;
  }
}
.main-banner .header_timer .countdown-section.nodot:before {
  display: none !important;
}
.main-banner .header_timer .countdown-section .countdown-amount {
  width: 100%;
  color: #fff;
  font-size: 38px;
  font-weight: 300;
  text-align: center;
  margin-bottom: -10px;
}
.main-banner .header_timer .countdown-section .countdown-period {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.main-banner .btn_gradient_purple {
  text-transform: uppercase;
}
.main-banner .navbar-expand-xl {
  width: 100%;
  padding: 0;
}
@media (max-width: 1699px) {
  .main-banner .navbar-expand-xl .navbar-collapse {
    background: rgba(0, 0, 0, 0.8);
    padding: 70px 15px 15px;
    text-align: center;
    position: absolute;
    z-index: -1;
    right: -30px;
    left: -30px;
    top: 0;
  }
  .main-banner .navbar-expand-xl .navbar-collapse a {
    display: block;
    padding: 6px;
  }
  .main-banner .navbar-expand-xl .navbar-collapse a.btn {
    display: inline-block;
    margin: 15px;
  }
}
.main-banner .header-nav,
.main-banner .navbar-collapse {
  position: relative;
}
.main-banner .header-nav a,
.main-banner .navbar-collapse a {
  font-size: 15px;
  font-weight: 600;
  margin: 0 15px;
  color: #fff;
  transition: all 0.1s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-banner .header-nav a,
  .main-banner .navbar-collapse a {
    font-size: 12px;
    margin: 0 7px;
  }
}
.main-banner .header-nav a:not(.btn):after,
.main-banner .navbar-collapse a:not(.btn):after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: all ease 0.3s;
  transform: translate(-100%, 0);
}
.main-banner .header-nav a:not(.btn):hover,
.main-banner .navbar-collapse a:not(.btn):hover {
  text-decoration: none;
}
.main-banner .header-nav a:not(.btn):hover:after,
.main-banner .navbar-collapse a:not(.btn):hover:after {
  background: #fff;
  transform: translate(0, 0);
}
.main-banner .header-nav a.btn_pink, .main-banner .header-nav a.btn_purple,
.main-banner .navbar-collapse a.btn_pink,
.main-banner .navbar-collapse a.btn_purple {
  padding: 6px 22px;
}
.main-banner .header-nav .btn_gradient_purple,
.main-banner .navbar-collapse .btn_gradient_purple {
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  font-size: 14px;
  border-radius: 50px;
  padding: 9px 38px;
  margin-right: 5px;
}
@media (max-width: 639px) {
  .main-banner .header-nav .btn_gradient_purple,
  .main-banner .navbar-collapse .btn_gradient_purple {
    letter-spacing: 1px;
  }
}
.main-banner .header-nav .btn_gradient_purple:hover,
.main-banner .navbar-collapse .btn_gradient_purple:hover {
  color: #fff;
}
.main-banner .header-nav .btn-border,
.main-banner .navbar-collapse .btn-border {
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  padding: 8px 30px;
}
.main-banner h1 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  font-family: "Inter";
  text-align: left;
}
@media (max-width: 991px) {
  .main-banner h1 {
    font-size: 34px;
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .main-banner h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .main-banner h1 {
    margin: 30px auto 10px;
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 639px) {
  .main-banner h1 {
    margin: 30px auto 10px;
    font-size: 26px;
    line-height: 32px;
  }
}
.main-banner h1 b {
  color: #e31292;
}
.main-banner .container {
  text-align: center;
}
.main-banner .container p {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 39px;
}
@media (max-width: 1919px) {
  .main-banner .container p {
    font-size: 20px;
  }
}
@media (max-width: 1300px) {
  .main-banner .container p {
    font-size: 18px;
  }
}
@media (max-width: 1699px) {
  .main-banner .container p {
    margin: 0 0 32px;
  }
}
@media (max-width: 639px) {
  .main-banner .container p {
    font-size: 16px;
  }
}
.main-banner .container .btn-cont {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .main-banner .container .btn-cont {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.main-banner .container .btn-cont .btn-play {
  margin-left: 28px;
}
.main-banner .container .btn-cont .btn-play:hover {
  text-decoration: none;
}
.main-banner .container .btn-cont .btn,
.main-banner .container .btn-cont .btn-play {
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .main-banner .container .btn-cont .btn,
  .main-banner .container .btn-cont .btn-play {
    margin: 10px 20px !important;
  }
}
.main-banner .container .btn {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 767px) {
  .main-banner .container .btn {
    letter-spacing: 1px;
    font-size: 13px;
  }
}
@media (max-width: 639px) {
  .main-banner .container .btn {
    padding: 9px 22px;
  }
}
.main-banner .btn-play {
  display: inline-block;
  position: relative;
  background: transparent;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0 !important;
  color: #fff;
}
.main-banner .btn-play i {
  position: relative;
  font-size: 20px;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 40px;
  color: #D10C92;
  margin-right: 10px;
}
.main-banner .btn-play:hover {
  color: #fff;
  opacity: 0.8;
}
.main-banner .btn-play:hover span {
  color: #5E1DE1;
}
.main-banner .date {
  justify-content: center;
  align-items: center;
  display: flex;
  max-width: 100%;
  width: 350px;
  height: 54px;
  background: #002824;
  border-radius: 50px;
  font-size: 25px;
  color: #fff;
  margin: 30px auto 50px;
  box-shadow: 0 0 10px 0 #f7a31d;
}
@media (max-width: 1699px) {
  .main-banner .date {
    height: 50px;
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .main-banner .date {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .main-banner .date {
    font-size: 17px;
    width: 235px;
    height: 42px;
  }
}
@media (max-width: 639px) {
  .main-banner .date {
    margin: 25px auto;
  }
}

.mmbrs-banner {
  padding: 30px 0 90px;
  background: #f5f5f5;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  text-shadow: 3px 0 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .mmbrs-banner {
    padding: 0;
  }
}
.mmbrs-banner.no-tabs {
  padding: 30px 0;
}
@media (max-width: 767px) {
  .mmbrs-banner.no-tabs {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .mmbrs-banner .container {
    max-width: 100%;
    padding: 0;
  }
}
.mmbrs-banner .wrap {
  padding: 0 15px;
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mmbrs-banner .wrap {
    padding: 60px 15px 50px;
    min-height: 270px;
    border-radius: 0;
  }
}
.mmbrs-banner .wrap .btn-wrap {
  margin: 15px auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  .mmbrs-banner .wrap .btn-wrap {
    max-width: 300px;
  }
}
.mmbrs-banner .wrap .btn-wrap .btn {
  display: inline-block;
  margin: 0 6px 20px;
  font-size: 16px;
  padding: 12px 24px;
  min-width: 250px;
}
@media (max-width: 639px) {
  .mmbrs-banner .wrap .btn-wrap .btn {
    padding: 7px 15px;
    font-size: 14px;
    min-width: 270px;
    margin-bottom: 15px;
  }
}
.mmbrs-banner .wrap .btn-wrap select {
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.mmbrs-banner .wrap h1 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
}
@media (max-width: 1699px) {
  .mmbrs-banner .wrap h1 {
    font-size: 36px;
  }
}
@media (max-width: 1300px) {
  .mmbrs-banner .wrap h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .mmbrs-banner .wrap h1 {
    font-size: 30px;
  }
}
@media (max-width: 639px) {
  .mmbrs-banner .wrap h1 {
    font-size: 28px;
  }
}
.mmbrs-banner .wrap p {
  font-size: 18px;
  line-height: 1.78;
  max-width: 555px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .mmbrs-banner .wrap p {
    font-size: 14px;
    line-height: 22px;
    font-style: italic;
  }
}
.mmbrs-banner .wrap .email {
  background: rgba(0, 0, 0, 0.2);
  font-size: 18px;
  line-height: 20px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  border-radius: 30px;
  padding: 20px 45px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .mmbrs-banner .wrap .email {
    margin-top: 30px;
    padding: 10px 45px;
    font-size: 14px;
    line-height: 20px;
  }
}

#join_banner {
  max-width: 1100px;
  margin: 70px auto 50px;
  box-shadow: 0px 0px 15px 5px rgba(74, 74, 74, 0.2);
  border-radius: 6px;
}
@media (max-width: 991px) {
  #join_banner {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  #join_banner {
    margin-top: 20px;
  }
}
@media (max-width: 639px) {
  #join_banner {
    margin-top: 10px;
  }
}
#join_banner ul {
  width: 100%;
  background: url(../img/bg/purple.jpg) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
  display: flex;
  justify-content: space-between;
  border-radius: 6px 6px 0 0;
  margin-left: 0;
  padding-left: 0;
}
@media (max-width: 639px) {
  #join_banner ul {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0 0;
  }
}
@media (max-width: 767px) {
  #join_banner ul li:nth-child(1) {
    display: none;
  }
}
#join_banner ul li {
  list-style: none;
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 15px 0px;
}
@media (max-width: 767px) {
  #join_banner ul li {
    width: 33.33%;
    padding: 15px 7px;
  }
}
@media (max-width: 639px) {
  #join_banner ul li {
    width: 50%;
    margin-bottom: 10px;
  }
}
#join_banner ul li img {
  margin-top: -75px;
  margin-left: 50px;
}
@media (max-width: 991px) {
  #join_banner ul li img {
    max-width: 225px;
    margin-top: -30px;
    margin-left: 35px;
    margin-bottom: 0;
  }
}
#join_banner ul li h3 {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 767px) {
  #join_banner ul li h3 {
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  #join_banner ul li h3 {
    font-size: 22px;
  }
}
#join_banner ul li p {
  font-size: 14px;
  margin-bottom: 0;
}
#join_banner .foot {
  padding: 30px 15px;
  text-align: center;
}

.accordion .card {
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .accordion .card {
    box-shadow: 0px 0px 10px 0px rgba(74, 74, 74, 0.051);
  }
}
.accordion .card-header {
  background: #fff;
  padding: 20px 0;
}
@media (max-width: 1300px) {
  .accordion .card-header {
    padding: 15px 0;
  }
}
.accordion .card-header h5 {
  padding: 10px 130px 10px 35px;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  color: #7c009e;
  margin: 0;
}
@media (max-width: 991px) {
  .accordion .card-header h5 {
    padding: 10px 70px 10px 30px;
    font-size: 18px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .accordion .card-header h5 {
    padding: 10px 70px 10px 20px;
  }
}
@media (max-width: 639px) {
  .accordion .card-header h5 {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (max-width: 479px) {
  .accordion .card-header h5 {
    padding: 5px 70px 5px 15px;
  }
}
.accordion .card-header h5 > span {
  font-weight: 600;
  color: #000;
}
.accordion .card-header h5 > span i {
  font-style: normal;
  font-weight: 700;
  color: #7c009e;
}
.accordion .card-header a {
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  justify-content: center;
  background: #fff;
  text-decoration: none;
  align-items: center;
  text-align: center;
  position: absolute;
  display: flex;
  width: 105px;
  height: 100%;
  border: none;
  color: #fff;
  right: 0;
  top: 0;
}
@media (max-width: 991px) {
  .accordion .card-header a {
    font-size: 14px;
    font-weight: 700;
    width: 60px;
  }
}
.accordion .card-header a .icon {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  background: #5E1DE1;
  border-radius: 50%;
  line-height: 39px;
  height: 38px;
  width: 38px;
}
@media (max-width: 991px) {
  .accordion .card-header a .icon {
    line-height: 35px;
    height: 34px;
    width: 34px;
  }
}
.accordion .card-header a:hover .icon {
  background: #7c009e;
}
.accordion .card-header a.collapsed .open_wrap {
  display: block;
}
.accordion .card-header a.collapsed .close_wrap {
  display: none;
}
.accordion .card-header a .open_wrap {
  display: none;
}
.accordion .card-header a .close_wrap {
  display: block;
}
.accordion .card-header a .txt {
  display: none;
}
.accordion .card-body {
  background: #ffffff;
  padding: 46px 161px 16px 44px;
}
@media (max-width: 1919px) {
  .accordion .card-body {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .accordion .card-body {
    padding: 25px 20px;
  }
}
@media (max-width: 479px) {
  .accordion .card-body {
    padding: 20px 15px;
  }
}
@media (max-width: 991px) {
  .accordion .card-body img {
    height: 70px;
  }
}
.accordion .card-body h3 {
  font-size: 32px;
  line-height: 1.33em;
  color: #5E1DE1;
  margin: 27px 0 20px;
}
@media (max-width: 1919px) {
  .accordion .card-body h3 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .accordion .card-body h3 {
    font-size: 22px;
    margin: 20px 0;
  }
}
.accordion .card-body ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
}
@media (max-width: 639px) {
  .accordion .card-body ul {
    padding-left: 15px;
  }
}
.accordion .card-body ul li {
  font-size: 18px;
  line-height: 1.78;
  text-align: left;
  margin: 0 0 32px;
  color: #000;
  position: relative;
}
@media (max-width: 1919px) {
  .accordion .card-body ul li {
    font-size: 17px;
    line-height: 1.7;
  }
}
@media (max-width: 767px) {
  .accordion .card-body ul li {
    font-size: 16px;
    margin: 0 0 25px;
  }
}
@media (max-width: 639px) {
  .accordion .card-body ul li {
    font-size: 14px;
  }
}
.accordion .card-body ul li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #7c009e;
  position: absolute;
  border-radius: 50%;
  left: -15px;
  top: 14px;
}
@media (max-width: 1919px) {
  .accordion .card-body ul li:before {
    top: 10px;
  }
}
@media (max-width: 639px) {
  .accordion .card-body ul li:before {
    top: 9px;
  }
}
.accordion .card-body ul li p {
  margin: 0;
}
.accordion .card-body p {
  font-size: 18px;
  line-height: 1.78em;
  color: #000;
  padding: 0 28px;
  margin: 0 0 25px;
}
@media (max-width: 991px) {
  .accordion .card-body p {
    font-size: 16px;
    line-height: 1.45em;
    margin: 0 0 22px;
    padding: 0 5px;
  }
}
@media (max-width: 479px) {
  .accordion .card-body p {
    font-size: 15px;
    margin: 0 0 15px;
  }
}
.accordion .card-body p b,
.accordion .card-body p strong {
  color: #5E1DE1;
}
.page-template-sales2021_seb .accordion .card-body p b, .page-template-sales2021 .accordion .card-body p b,
.page-template-sales2021_seb .accordion .card-body p strong,
.page-template-sales2021 .accordion .card-body p strong {
  color: #5E1DE1;
}
.accordion .card-body p:empty {
  display: none;
}
@media (max-width: 639px) {
  .accordion .card-body .media {
    flex-direction: column;
  }
}
.accordion .card-body .media-badge {
  padding: 5px 24px 0 0;
}
@media (max-width: 1300px) {
  .accordion .card-body .media-badge {
    padding: 5px 20px 0 0;
  }
}
@media (max-width: 767px) {
  .accordion .card-body .media-badge {
    padding: 5px 10px 0 0;
  }
}
@media (max-width: 639px) {
  .accordion .card-body .media-badge {
    max-width: 122px;
    width: 100%;
  }
}
.accordion .card-body .media-badge img {
  max-width: 117px;
}
@media (max-width: 1300px) {
  .accordion .card-body .media-badge img {
    max-width: 107px;
    padding: 0 0 18px;
  }
}
@media (max-width: 639px) {
  .accordion .card-body .media-badge img {
    max-width: 100px;
    width: 100%;
    height: auto;
    margin: 0;
  }
}
@media (max-width: 479px) {
  .accordion .card-body .media-badge img {
    max-width: 80px;
    margin: 0 0 0 -45px;
  }
}
.accordion.lvl_2 .card {
  border: 1px solid #ddd;
  border-radius: 0;
  margin-bottom: -1px;
  box-shadow: none;
  margin: 0;
  border-bottom: none;
}
.accordion.lvl_2 .card-header {
  border-bottom: 1px solid #ddd;
  background: none;
  margin-bottom: -1px;
  padding: 10px 0;
}
.accordion.lvl_2 .card-header h5 {
  padding: 21px 130px 21px 30px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .accordion.lvl_2 .card-header h5 {
    padding: 10px 70px 10px 30px;
    font-size: 16px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .accordion.lvl_2 .card-header h5 {
    padding: 10px 70px 10px 20px;
  }
}
@media (max-width: 639px) {
  .accordion.lvl_2 .card-header h5 {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (max-width: 479px) {
  .accordion.lvl_2 .card-header h5 {
    padding: 5px 70px 5px 15px;
  }
}
.accordion.lvl_2 .card-header h5 span {
  font-weight: 600;
}
@media (max-width: 479px) {
  .accordion.lvl_2 .card-header h5 span {
    font-size: 14px;
    line-height: 1.2;
  }
}
.accordion.lvl_2 .card-header a {
  width: 82px;
  border: none;
}
@media (max-width: 991px) {
  .accordion.lvl_2 .card-header a {
    font-size: 14px;
    font-weight: 700;
    width: 60px;
  }
}
.accordion.lvl_2 .card-header a .icon {
  line-height: 29px;
  font-size: 12px;
  height: 26px;
  width: 26px;
}
.accordion.lvl_2 .card-header a .icon:before {
  position: relative;
  top: 0px;
}
.accordion.lvl_2 .card-body {
  padding: 46px 60px 16px 28px;
}
@media (max-width: 1919px) {
  .accordion.lvl_2 .card-body {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .accordion.lvl_2 .card-body {
    padding: 25px 20px;
  }
}
@media (max-width: 479px) {
  .accordion.lvl_2 .card-body {
    padding: 20px 15px;
  }
}
.accordion.lvl_2 .card-body .media-badge {
  padding: 5px 2px 0 0;
  text-align: left;
}
.accordion.lvl_2 .card-body .media-badge img {
  max-width: 110px;
}
@media (max-width: 1300px) {
  .accordion.lvl_2 .card-body .media-badge img {
    max-width: 107px;
    padding: 0 0 18px;
  }
}
@media (max-width: 639px) {
  .accordion.lvl_2 .card-body .media-badge img {
    max-width: 100px;
    width: 100%;
    height: auto;
    margin: 0;
  }
}
@media (max-width: 479px) {
  .accordion.lvl_2 .card-body .media-badge img {
    max-width: 70px;
    margin: 0 0 0 12px;
  }
}
.accordion.lvl_2 .card-body ul {
  margin: 0 0 34px 43px;
  max-width: 100%;
}
@media (max-width: 639px) {
  .accordion.lvl_2 .card-body ul {
    max-width: 90%;
    margin: 0 0 15px 0;
  }
}
.accordion.lvl_2 .card-body ul li {
  font-size: 18px;
  margin: 0 auto 0px;
}
@media (max-width: 1919px) {
  .accordion.lvl_2 .card-body ul li {
    font-size: 17px;
    line-height: 1.7;
  }
}
@media (max-width: 767px) {
  .accordion.lvl_2 .card-body ul li {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .accordion.lvl_2 .card-body ul li {
    font-size: 14px;
  }
}
.accordion.lvl_2 .card-body p {
  font-size: 18px;
}
@media (max-width: 639px) {
  .accordion.lvl_2 .card-body p {
    font-size: 16px;
  }
}
.accordion.lvl_2 .card-body p b {
  color: #000;
}
.accordion.lvl_2.raw .card {
  border-left: none;
  border-right: none;
}
.accordion.lvl_2.raw .card-header h5 {
  padding-left: 0;
  color: #5E1DE1;
}
.accordion.lvl_2.raw .card-header a .icon {
  background: #eeeeee;
  color: #999999;
}
.accordion.lvl_2.raw .card-header a:hover {
  background: transparent;
}
.accordion.lvl_2.raw .card-header a:hover .icon {
  background: #5E1DE1;
  color: #fff;
}
.accordion.lvl_2.raw .card-body {
  padding: 28px 122px 16px 3px;
}
@media (max-width: 1919px) {
  .accordion.lvl_2.raw .card-body {
    padding: 28px 100px 15px 0;
  }
}
@media (max-width: 991px) {
  .accordion.lvl_2.raw .card-body {
    padding: 25px 50px 15px 0;
  }
}
@media (max-width: 479px) {
  .accordion.lvl_2.raw .card-body {
    padding: 20px 0;
  }
}

#guarantee {
  padding: 0 0 40px;
  background: #fff;
}
@media (max-width: 1919px) {
  #guarantee {
    padding: 0 0 80px;
  }
}
@media (max-width: 639px) {
  #guarantee {
    padding: 0 0 0;
  }
}
#guarantee .panel {
  margin-bottom: 136px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  border-color: #dddddd;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 7px;
  /* Firefox 1-3.6 */
  -moz-border-radius: 7px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 7px;
}
@media (max-width: 767px) {
  #guarantee .panel {
    margin-bottom: 120px;
  }
}
#guarantee .panel-heading {
  padding: 44px 95px;
  text-align: center;
  color: #ffffff;
  border-radius: 6px 6px 0 0;
  font-size: 32px;
  line-height: 1.25em;
  font-weight: 600;
}
@media (max-width: 991px) {
  #guarantee .panel-heading {
    padding: 25px 85px;
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  #guarantee .panel-heading {
    padding: 25px 15px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #guarantee .panel-heading {
    text-align: center;
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  #guarantee .panel-heading {
    font-size: 18px;
  }
}
#guarantee .panel-body {
  padding: 53px 96px 100px 95px;
  position: relative;
  background: #f5f5f5;
  border-radius: 0 0 6px 6px;
}
@media (max-width: 991px) {
  #guarantee .panel-body {
    padding: 40px 85px 100px;
  }
}
@media (max-width: 767px) {
  #guarantee .panel-body {
    padding: 30px 30px 70px;
  }
}
#guarantee .panel-body .c-cletter {
  margin: 0;
  color: #000;
  font-family: "Inter";
  font-size: 14px;
  line-height: 1.8em;
  font-weight: 400;
}
@media (max-width: 991px) {
  #guarantee .panel-body .c-cletter {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 479px) {
  #guarantee .panel-body .c-cletter {
    font-size: 14px;
  }
}
#guarantee .panel-body .c-cletter:before {
  content: "";
  margin: -8px 4px -15px -25px;
  display: block;
  float: left;
  background-image: url("../img/pages/sls24/capital.svg");
  -webkit-background-size: 65px 65px;
  background-size: 65px 65px;
  width: 65px;
  height: 65px;
}
@media (max-width: 991px) {
  #guarantee .panel-body .c-cletter:before {
    margin: -4px 5px 0px -21px;
    background-size: contain;
    height: 45px;
    width: 51px;
  }
}
@media (max-width: 767px) {
  #guarantee .panel-body .c-cletter:before {
    display: block;
  }
}
#guarantee .panel-body .c-cletter span {
  display: none;
}
#guarantee .panel-body:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-size: 100% auto;
  width: 160px;
  height: 134px;
  background-image: url("../img/pages/sls24/stamp.png");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translate(-55%, 48%);
  -ms-transform: translate(-55%, 48%);
  -o-transform: translate(-55%, 48%);
  transform: translate(-55%, 48%);
}
@media (max-width: 767px) {
  #guarantee .panel-body:before {
    width: 120px;
    height: 120px;
  }
}
#guarantee .subheader {
  margin: 0 0 30px;
  color: #444444;
  letter-spacing: 6.6px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 767px) {
  #guarantee .subheader {
    letter-spacing: 2px;
  }
}

@media (max-width: 1024px) {
  #guarantee {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  #guarantee {
    margin: 0 0px 50px;
  }
}
#guarantee .panel {
  max-width: 910px;
  width: 100%;
  margin: 0 auto 75px;
}
#guarantee .panel .panel-body {
  padding: 60px 95px 121px;
}
@media (max-width: 479px) {
  #guarantee .panel .panel-body {
    padding: 35px 15px 85px 15px;
  }
}
#guarantee .panel .c-cletter {
  line-height: 24px;
}
#guarantee .panel .c-cletter:before {
  margin: -10px 9px -15px -18px;
}
@media (max-width: 479px) {
  #guarantee .panel .c-cletter:before {
    margin: 0 9px -15px -18px;
  }
}
@media (max-width: 1440px) {
  #guarantee .panel {
    max-width: 866px;
  }
}
@media (max-width: 1024px) {
  #guarantee .panel {
    max-width: 770px;
  }
}
@media (max-width: 479px) {
  #guarantee .panel {
    margin-bottom: 100px;
  }
}
#guarantee .panel-heading {
  padding: 45px 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(63.63deg, #E6069A 0.53%, #8B15B9 99.1%);
  border-radius: 6px 6px 0 0;
}
@media (max-width: 1024px) {
  #guarantee .panel-heading {
    font-size: 27px;
    padding: 39px;
  }
}
@media (max-width: 479px) {
  #guarantee .panel-heading {
    font-size: 17px;
    line-height: 26px;
    padding: 5px;
    min-height: 90px;
  }
}

/*
 *  STYLE 1
 */
.scroll_style_1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px #5E1DE1;
  border-radius: 6px;
  background-color: #f5f5f5;
}

.scroll_style_1::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.scroll_style_1::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 3px #5E1DE1;
  background-color: #5E1DE1;
}

.embeddedServiceHelpButton .helpButton {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50px !important;
  bottom: 10px !important;
}
.embeddedServiceHelpButton .helpButton button.uiButton {
  background: #5E1DE1;
  width: 50px !important;
  height: 50px !important;
  max-width: initial !important;
  min-width: initial !important;
  border-radius: 50px !important;
  box-shadow: none !important;
  transition: all 0.2s;
}
.embeddedServiceHelpButton .helpButton button.uiButton:hover, .embeddedServiceHelpButton .helpButton button.uiButton:focus, .embeddedServiceHelpButton .helpButton button.uiButton:active {
  background: #6e33e5;
  box-shadow: 0 0 15px #444444 !important;
}
.embeddedServiceHelpButton .helpButton button.uiButton:hover:before, .embeddedServiceHelpButton .helpButton button.uiButton:focus:before, .embeddedServiceHelpButton .helpButton button.uiButton:active:before {
  display: none !important;
}
.embeddedServiceHelpButton .helpButton button.uiButton .helpButtonLabel {
  display: none;
}
.embeddedServiceHelpButton .helpButton button.uiButton .embeddedServiceIcon:before {
  font-size: 20px;
  margin: 0 0 0 3px;
}

.embeddedServiceSidebar {
  font-family: "Inter";
}
.embeddedServiceSidebar .sidebarHeader {
  display: none;
}

#program_faq {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  #program_faq {
    margin-bottom: 120px;
    margin-top: 100px;
  }
}
#program_faq .btn_collapse {
  background: none;
  width: initial;
}
#program_faq > .ttl {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 991px) {
  #program_faq > .ttl {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  #program_faq > .ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  #program_faq > .ttl {
    font-size: 20px;
  }
}
#program_faq .card {
  max-width: 910px;
  margin: 0 auto;
  border-bottom: 1px solid #e0e0f8 !important;
  border-radius: unset;
  box-shadow: unset;
}
#program_faq .card .card-header {
  box-shadow: unset;
}
#program_faq .card .card-header h5 {
  padding: 10px 130px 10px 0;
  font-family: "Inter", serif;
}
#program_faq .card .card-header h5 span b {
  font-weight: 600;
  color: #5E1DE1;
}
@media (max-width: 991px) {
  #program_faq .card .card-header h5 {
    padding-right: 90px;
  }
}
@media (max-width: 767px) {
  #program_faq .card .card-header h5 {
    padding-right: 60px;
  }
}
@media (max-width: 479px) {
  #program_faq .card .card-header h5 {
    padding-right: 50px;
  }
}
#program_faq .card .card-header a.btn_collapse {
  right: 32px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  #program_faq .card .card-header a.btn_collapse {
    right: 15px;
  }
}
@media (max-width: 479px) {
  #program_faq .card .card-header a.btn_collapse {
    right: 0;
  }
}
#program_faq .card .card-header a.btn_collapse:hover .icon {
  background: #5E1DE1;
  color: #fff;
}
#program_faq .card .card-header a.btn_collapse .icon {
  color: #828282;
  font-size: 16px;
}
#program_faq .card .card-body {
  padding: 15px 103px 15px 23px;
}
@media (max-width: 767px) {
  #program_faq .card .card-body {
    padding-right: 60px;
  }
}
@media (max-width: 479px) {
  #program_faq .card .card-body {
    padding-right: 30px;
    padding-top: 0;
  }
}
#program_faq .card .card-body ul {
  padding: 0 0 32px 28px;
  list-style: initial;
}
#program_faq .card .card-body ul li {
  padding-left: 0;
  margin: 0;
}
#program_faq .card .card-body ol li:not(:last-child) {
  margin-bottom: 15px;
}
#program_faq .card .card-body ol li::marker {
  font-weight: 600;
}
#program_faq .card .card-body li,
#program_faq .card .card-body p {
  line-height: 1.8;
  font-family: "Inter";
}
@media (max-width: 767px) {
  #program_faq .card .card-body li,
  #program_faq .card .card-body p {
    font-size: 18px !important;
  }
}
#program_faq .card .card-body p {
  padding: 0;
  margin-bottom: 5px;
}
#program_faq .card .card-body p strong,
#program_faq .card .card-body p b {
  color: #000;
}
#program_faq .card .card-body .media-body a {
  color: #5E1DE1;
  text-decoration: underline;
}
#program_faq .card .card-body .media-body a:hover {
  text-decoration: none;
}
#program_faq .card .card-body ul li:before {
  display: none;
}

.slick-dots {
  bottom: -20px;
  z-index: 1;
  margin: 0;
}
.slick-dots li {
  height: 22px;
  width: 22px;
  margin: 0;
}
@media (max-width: 639px) {
  .slick-dots li {
    margin-bottom: 10px !important;
  }
}
.slick-dots li button {
  height: 22px;
  width: 22px;
  cursor: pointer;
}
.slick-dots li button:before {
  transition: all 0.3s linear;
  font-size: 10px;
  line-height: 22px;
  height: 22px;
  width: 22px;
  color: #ddd;
  opacity: 1;
}
.slick-dots li:hover button:before, .slick-dots li.slick-active button:before {
  color: #5E1DE1;
}

/* Slider */
.slick-slider {
  display: block;
  position: relative;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
}
.slick-slider.slick-dotted {
  margin-bottom: 15px;
}
.slick-slider.slick-dotted ul.slick-dots {
  list-style: none;
  line-height: 1;
  position: absolute;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  bottom: -20px;
}
.slick-slider.slick-dotted ul.slick-dots li {
  display: inline-flex;
  margin: 0 4px;
  height: 5px;
  width: 20px;
}
.slick-slider.slick-dotted ul.slick-dots li button {
  height: 5px;
  width: 20px;
  font-size: 0;
  background: #b9c8d9;
  border-radius: 6px;
  padding: 0;
  border: none;
  transition: all ease 0.3s;
  outline: none;
}
.slick-slider.slick-dotted ul.slick-dots li.slick-active button, .slick-slider.slick-dotted ul.slick-dots li:hover button {
  background: #5E1DE1;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick_wr:not(.slick-initialized) {
  overflow: hidden;
  display: flex;
  position: relative;
}
.slick_wr:not(.slick-initialized) > *:nth-child(n+2) {
  display: none !important;
}
.slick_wr:not(.slick-initialized):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 130;
  background: rgba(255, 255, 255, 0.15);
}
.slick_wr:not(.slick-initialized):after {
  position: absolute;
  z-index: 135;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  opacity: 0.7;
  animation: slick_loading 1.5s linear infinite;
}
.slick_wr.space_between_slides .slick-list {
  margin: 0 -15px;
}
.slick_wr.space_between_slides .slick-list .slick-slide {
  margin: 0 15px;
}
@media (min-width: 400px) {
  .slick_wr.equal_height .slick-slider,
  .slick_wr.equal_height .slick-track,
  .slick_wr.equal_height .slick-list {
    display: flex;
  }
  .slick_wr.equal_height .slick-slider .slick-slide,
  .slick_wr.equal_height .slick-slider .slick-slide > div,
  .slick_wr.equal_height .slick-track .slick-slide,
  .slick_wr.equal_height .slick-track .slick-slide > div,
  .slick_wr.equal_height .slick-list .slick-slide,
  .slick_wr.equal_height .slick-list .slick-slide > div {
    height: 100%;
  }
}
.slick_wr.bottom_arrows {
  margin-bottom: 90px;
}
.slick_wr.bottom_arrows.slick-dotted button.slick-arrow {
  bottom: -110px;
}
.slick_wr.bottom_arrows button.slick-arrow {
  top: unset;
  background: #e9e9e9;
  bottom: -90px;
  transform: unset;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  transition: all ease 0.3s;
}
@media (max-width: 767px) {
  .slick_wr.bottom_arrows button.slick-arrow {
    width: 30px;
    height: 30px;
    bottom: -50px;
  }
}
.slick_wr.bottom_arrows button.slick-arrow.slick-prev {
  left: calc(50% - 60px);
}
@media (max-width: 767px) {
  .slick_wr.bottom_arrows button.slick-arrow.slick-prev {
    left: calc(50% - 40px);
  }
}
.slick_wr.bottom_arrows button.slick-arrow.slick-next {
  right: calc(50% - 60px);
}
@media (max-width: 767px) {
  .slick_wr.bottom_arrows button.slick-arrow.slick-next {
    right: calc(50% - 40px);
  }
}
.slick_wr.bottom_arrows button.slick-arrow:before {
  font-size: 20px;
  font-family: fontello, serif;
  color: #5E1DE1;
}
.slick_wr.bottom_arrows button.slick-arrow:hover {
  opacity: 0.8;
}
.slick_wr.top_arrows button.slick-arrow {
  top: -50px;
}
.slick_wr.top_arrows button.slick-arrow.slick-prev {
  left: unset;
  right: 70px;
}
.slick_wr.top_arrows button.slick-arrow.slick-next {
  right: 0;
}
.slick_wr.center_mode .slick-slide:not(.slick-center) > div {
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
}
@media (min-width: 768px) {
  .slick_wr.center_mode .slick-slide:not(.slick-center) > div {
    transform: scale(0.85);
  }
}
.slick_wr.center_mode .slick-slide:not(.slick-center) > div, .slick_wr.center_mode .slick-slide:not(.slick-center):not(.slick-active) + .slick-slide > div {
  transform-origin: left center;
}
.slick_wr.center_mode .slick-slide.slick-center + .slick-slide + .slick-slide > div,
.slick_wr.center_mode .slick-slide.slick-center ~ * > div {
  transform-origin: right center;
}
.slick_wr.center_mode .slider_item > img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .slick_wr.centered_arrows button.slick-prev {
    left: calc(50% - 340px);
  }
  .slick_wr.centered_arrows button.slick-next {
    right: calc(50% - 340px);
  }
}

@keyframes slick_loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .hs_form_wrap {
  max-width: 1920px;
  margin: 0 auto 0px;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: center;
}
@media (max-width: 991px) {
  body .hs_form_wrap {
    flex-wrap: wrap;
    max-width: 720px;
  }
}
body .hs_form_wrap.loading, body .sq25_success .head .slider_videos_reviews .hs_form_wrap.video.video_buffer, .sq25_success .head .slider_videos_reviews body .hs_form_wrap.video.video_buffer {
  position: relative;
  content: "";
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 11;
  background: #f5f5f5;
  opacity: 1;
}
body .hs_form_wrap.loading:before, body .sq25_success .head .slider_videos_reviews .hs_form_wrap.video.video_buffer:before, .sq25_success .head .slider_videos_reviews body .hs_form_wrap.video.video_buffer:before {
  position: absolute;
  background: rgba(117, 46, 239, 0.1215686275);
  top: -10px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  z-index: 10;
  content: "";
}
body .hs_form_wrap.loading:after, body .sq25_success .head .slider_videos_reviews .hs_form_wrap.video.video_buffer:after, .sq25_success .head .slider_videos_reviews body .hs_form_wrap.video.video_buffer:after {
  position: absolute;
  z-index: 12;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  opacity: 0.7;
  animation: lds-dual-ring 1.5s linear infinite;
}
body .hs_form_wrap.color_yellow .hs_submit .hs-button {
  background: #FFA12E !important;
}
body .hs_form_wrap.color_yellow .hs_submit .hs-button:hover {
  background: #ffa639 !important;
}
body .hs_form_wrap.color_yellow .hs_form_iframe label .hs-form-required,
body .hs_form_wrap.color_yellow .required {
  color: #FFA12E !important;
}
body .hs_form_wrap.btn_with_icon .hs_submit .actions {
  position: relative;
}
body .hs_form_wrap.btn_with_icon .hs_submit .actions:before {
  display: none;
  position: absolute;
  z-index: 100;
  top: 18px;
  left: calc(50% - 135px);
  background: url("https://www.coaching.com/wp-content/themes/coaching-com/assets/img/programs/noc/sq/btn_main.svg") center no-repeat;
  content: "";
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
  display: block;
  pointer-events: none;
}
body .hs_form_wrap.descr_top {
  flex-wrap: wrap;
  justify-content: center;
}
body .hs_form_wrap.descr_top .descr {
  width: 100%;
  text-align: center;
  padding: 20px 15px;
  background: #fff;
}
body .hs_form_wrap.descr_top .descr h2 {
  text-transform: uppercase;
  margin-bottom: 20px !important;
  max-width: 100% !important;
}
body .hs_form_wrap.descr_top .descr h2 span {
  color: #FF2FB3;
}
body .hs_form_wrap.descr_top .descr h2,
body .hs_form_wrap.descr_top .descr h5,
body .hs_form_wrap.descr_top .descr p {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 740px;
}
@media (max-width: 479px) {
  body .hs_form_wrap.descr_top .descr h2 br,
  body .hs_form_wrap.descr_top .descr h5 br,
  body .hs_form_wrap.descr_top .descr p br {
    display: none;
  }
}
body .hs_form_wrap.descr_top .descr .sub {
  color: #0F0F3D;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
body .hs_form_wrap.descr_top .descr .sub span {
  color: #5E1DE1;
  font-weight: 700;
}
body .hs_form_wrap.descr_top .form_wrap {
  width: 100%;
  background: #fff;
  padding-top: 40px;
}
body .hs_form_wrap.descr_top .form_wrap .hs_form_iframe {
  padding: 0px 15px 40px;
  max-width: 700px;
  width: 100%;
}
body .hs_form_wrap .submit_wrap {
  opacity: 1;
  padding: 60px 60px;
  background: #fff0f5;
  border-radius: 6px;
  margin: 60px auto;
}
@media (max-width: 767px) {
  body .hs_form_wrap .submit_wrap {
    padding: 30px 15px;
    margin: 30px auto;
  }
}
body .hs_form_wrap .submit_wrap .pink {
  color: #ff0ea6;
}
body .hs_form_wrap div.nb_message,
body .hs_form_wrap div.nb-feedback,
body .hs_form_wrap .div[id^=nb-field-] div.nb-feedback {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}
body .hs_form_wrap .descr {
  border-radius: 8px 0 0 8px;
  background: #e8e8e8;
  width: 50%;
  padding: 260px 170px 260px 130px;
}
@media (max-width: 1300px) {
  body .hs_form_wrap .descr {
    padding: 200px 60px;
    width: 40%;
  }
}
@media (max-width: 991px) {
  body .hs_form_wrap .descr {
    width: 100%;
    padding: 50px 30px;
    border-radius: 8px 8px 0 0;
  }
}
body .hs_form_wrap .descr img,
body .hs_form_wrap .descr svg,
body .hs_form_wrap .descr picture {
  max-width: 50px;
}
body .hs_form_wrap .form_wrap {
  border-radius: 0 8px 8px 0;
  background: #f8f8f8;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 1300px) {
  body .hs_form_wrap .form_wrap {
    width: 60%;
  }
}
@media (max-width: 991px) {
  body .hs_form_wrap .form_wrap {
    width: 100%;
    border-radius: 0 0 8px 8px;
    min-height: 200px;
  }
}

.hbspt-form {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
}

.hs_form_iframe {
  padding: 130px 90px;
}
@media (max-width: 1300px) {
  .hs_form_iframe {
    padding: 80px 40px;
  }
}
.hs_form_iframe .submitted-message {
  text-align: center;
}
.hs_form_iframe fieldset {
  margin-bottom: 25px !important;
}
.hs_form_iframe label {
  display: block;
  margin-bottom: 0px;
  font-size: 15px;
  font-family: "Inter";
  color: #0f0f3d;
  font-weight: 500;
}
.hs_form_iframe label .hs-form-required {
  color: #5e1de1;
  font-weight: 700;
  font-size: 18px;
}
.hs_form_iframe input:not([type=checkbox]),
.hs_form_iframe select {
  border: none;
  outline: none;
  width: 100%;
  background: none;
  border-bottom: 1px solid #79798f;
  padding: 0;
  height: 48px;
  padding-bottom: 0;
  position: relative;
  color: #828282;
  font-weight: 400;
  padding-left: 0 !important;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  box-shadow: none;
}
.hs_form_iframe input:not([type=checkbox]):focus,
.hs_form_iframe select:focus {
  box-shadow: none;
}
.hs_form_iframe input:not([type=checkbox]) option,
.hs_form_iframe select option {
  padding-left: 0 !important;
}
.hs_form_iframe .bootstrap-select.show .dropdown-menu.open {
  border: 1px solid #ddd;
  width: 100%;
}
.hs_form_iframe .bootstrap-select {
  width: 100% !important;
  border-radius: 4px;
  margin-top: 4px;
  border: none;
  background: #f8f8f8;
  color: #828282;
  border-bottom: 1px solid #79798f;
}
.hs_form_iframe .bootstrap-select > button.dropdown-toggle {
  border: none !important;
  margin: 0 !important;
  padding: 0;
  height: 52px;
  line-height: 52px;
  padding-left: 0;
}
.hs_form_iframe .bootstrap-select > button.dropdown-toggle .filter-option {
  color: #828282;
  font-weight: 400;
  letter-spacing: 0;
  font-family: 'Poppins"';
}
.hs_form_iframe .bootstrap-select .dropdown-menu > li {
  border-color: #828282;
  color: #828282;
}
.hs_form_iframe .bootstrap-select .dropdown-menu > li a {
  color: #828282;
  padding: 12px 15px;
  font-size: 13px;
}
.hs_form_iframe .bootstrap-select .dropdown-menu > li.selected a {
  color: #828282;
}
.hs_form_iframe .bootstrap-select .dropdown-menu > li.selected a span {
  color: #fff;
  margin-bottom: 0;
}
.hs_form_iframe select {
  position: relative;
}
.hs_form_iframe select:after {
  position: absolute !important;
  content: "\e80a" !important;
  font-family: "fontello", serif;
  font-size: 20px !important;
  border: none;
  right: 10px;
  top: 26%;
  font-weight: bold;
  color: #5E1DE1 !important;
  width: 30px !important;
  height: 30px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: initial !important;
}
.hs_form_iframe .inputs-list {
  padding-top: 20px;
  margin-left: 0;
  padding-left: 0;
}
.hs_form_iframe .inputs-list li {
  list-style: none;
  margin-bottom: 15px;
}
.hs_form_iframe .inputs-list li label {
  display: flex;
  align-items: center;
  align-content: center;
}
.hs_form_iframe .inputs-list li span {
  padding-left: 10px;
}
.hs_form_iframe textarea {
  height: initial;
  height: 48px;
  max-height: 300px;
  width: 100%;
  padding: 15px 15px 0 0 !important;
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid #79798f;
  font-weight: 400 !important;
}
.hs_form_iframe textarea:focus, .hs_form_iframe textarea:active {
  outline: none;
  box-shadow: none;
}
.hs_form_iframe .hs-richtext {
  color: #0f0f3d;
  text-align: center;
  font-family: Inter;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 164%;
  max-width: 450px;
  margin: 0 auto 0;
}
.hs_form_iframe .hs-richtext a {
  color: #5e1de1;
}
.hs_form_iframe .hs_recaptcha {
  display: flex;
  justify-content: center;
}
.hs_form_iframe .hs-error-msgs {
  padding-top: 5px;
}
.hs_form_iframe .hs-error-msgs .hs-main-font-element {
  text-align: center !important;
  justify-content: center !important;
  font-size: 12px;
  color: red;
}
.hs_form_iframe .hs_submit .actions {
  position: relative;
}
.hs_form_iframe .hs_submit .actions:before {
  display: none;
}
.hs_form_iframe .hs_submit .hs-button {
  background: linear-gradient(90deg, #4a1be7 0%, #8e3fff 100%) !important;
  display: block;
  margin: 40px auto 20px;
  position: relative;
  padding: 0 15px 0 15px !important;
  width: 100%;
  height: 80px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 0px;
  color: #fff !important;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}

.error404 {
  background: url("../img/bg/purple.jpg") no-repeat 50% 50%;
  background-size: cover;
}

#not_found {
  background-size: 1230px auto;
  background-repeat: no-repeat;
  background-position: 49% 51%;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}
#not_found header {
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  margin: 0 30px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1699px) {
  #not_found header {
    padding: 15px;
    margin: 0;
  }
}
@media (max-width: 767px) {
  #not_found header {
    padding: 12px 0;
    margin: 0 15px;
  }
}
#not_found header .logo {
  width: 220px;
  height: auto;
}
#not_found header .btn {
  margin-left: auto;
  font-weight: 700;
}
@media (max-width: 1699px) {
  #not_found header .btn {
    padding: 12px 60px;
  }
}
@media (max-width: 767px) {
  #not_found header .btn {
    padding: 10px 40px;
    width: auto;
  }
}
@media (max-width: 479px) {
  #not_found header .btn {
    display: none;
  }
}
#not_found main {
  margin-bottom: auto;
  margin-top: auto;
  padding: 100px 0;
}
@media (max-width: 1919px) {
  #not_found main {
    padding: 50px 40px;
  }
}
@media (max-width: 639px) {
  #not_found main {
    text-align: center;
    padding: 40px 0;
  }
}
@media (max-width: 479px) {
  #not_found main {
    padding: 40px 0 0;
  }
}
#not_found main .container {
  text-align: center;
}
#not_found main h1 {
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%), #c4c4c4;
  -webkit-text-fill-color: transparent;
  -webkit-backface-visibility: hidden;
  background-position: right center;
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  text-fill-color: transparent;
  backface-visibility: hidden;
  background-size: cover;
  font-size: 278px;
  line-height: 1;
  background-clip: text;
  display: inline-block;
  font-weight: bold;
}
@media (max-width: 1919px) {
  #not_found main h1 {
    font-size: 200px;
    line-height: 1;
  }
}
@media (max-width: 639px) {
  #not_found main h1 {
    font-size: 140px;
    line-height: 1;
  }
}
#not_found main h2 {
  font-size: 48px;
  line-height: 1.25;
  font-weight: 600;
  color: #000;
  color: #fff;
  margin-bottom: 5px;
}
@media (max-width: 639px) {
  #not_found main h2 {
    font-size: 34px;
    margin: 0 auto 30px;
    padding: 0 20px;
  }
}
@media (max-width: 479px) {
  #not_found main h2 {
    margin: 0 auto 0px;
    max-width: 100%;
    padding: 0;
  }
}
#not_found main .btn {
  letter-spacing: 4px;
  padding: 17px 75px;
  max-width: 210px;
  margin-top: 28px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 639px) {
  #not_found main .btn {
    max-width: 100%;
    padding: 15px;
  }
}
@media (max-width: 479px) {
  #not_found main .btn {
    margin-top: 20px;
    padding: 12px;
  }
}
#not_found footer {
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 98px;
  display: flex;
  height: 70px;
  width: 100%;
  padding: 0;
}
@media (max-width: 1919px) {
  #not_found footer {
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  #not_found footer {
    height: 60px;
  }
}
#not_found footer p {
  font-size: 13px;
  font-weight: 100;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.4px;
  position: relative;
  text-align: center;
  margin: -4px 0 0;
}
#not_found footer p:before {
  border-top: 1px solid rgba(221, 221, 221, 0.142);
  content: "";
  display: block;
  position: absolute;
  width: 160px;
  margin: auto;
  top: -22px;
  right: 0;
  left: 0;
}
#not_found footer p a {
  font-weight: 100;
  color: #fff;
}

.search-results #contact {
  background: #f5f5f5;
  margin-top: 100px;
}
@media (max-width: 639px) {
  .search-results #contact {
    margin-top: 50px;
  }
}

#banner.search {
  padding: 30px 0;
}
@media (max-width: 991px) {
  #banner.search {
    padding: 0 0 30px 0;
  }
}
#banner.search .wrap {
  min-height: 0;
  max-width: 1130px;
  background: url(../img/bg/purple.jpg) no-repeat 50% 50%;
  background-size: cover;
}
@media (max-width: 991px) {
  #banner.search .wrap {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  #banner.search .wrap {
    padding: 50px 15px 40px;
  }
}
#banner.search .wrap p {
  margin-bottom: 15px;
}

#search_res h2 {
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 700;
  color: #000;
  margin: 0;
}
@media (max-width: 767px) {
  #search_res h2 {
    font-size: 16px;
    line-height: 1.3;
  }
}
#search_res p {
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 400;
  font-style: italic;
  color: #787878;
  letter-spacing: -0.5px;
  word-break: break-word;
  margin: 5px 0 0;
}
@media (max-width: 578px) {
  #search_res p {
    font-size: 14px;
    line-height: 1.3;
    margin: 10px 0 0;
  }
}
#search_res .btn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 8px 0;
  margin: 0 0 15px;
  width: 142px;
}
@media (max-width: 767px) {
  #search_res .btn {
    width: 100%;
  }
}
@media (max-width: 639px) {
  #search_res .btn {
    width: 142px;
    float: left;
    margin: 15px 0 0;
  }
}
#search_res .btn .icon-right-thin {
  display: none;
}
#search_res .btn:hover {
  opacity: 1;
}
#search_res .gray_top_line {
  background: #f5f5f5;
  margin: 0 0 5px;
  text-align: center;
}
#search_res .gray_top_line p {
  font-size: 15px;
  line-height: 1.45em;
  font-weight: 400;
  color: #787878;
  letter-spacing: 0.3px;
  padding: 0 0 25px;
  margin: 0;
}
@media (max-width: 578px) {
  #search_res .gray_top_line p {
    font-size: 14px;
    line-height: 1.2;
  }
}
#search_res .gray_top_line p b {
  color: #000;
}
#search_res .container .row {
  padding: 20px 15px 15px;
  border-bottom: 1px solid #ddd;
}
#search_res .container .row .col-lg-10 {
  padding-left: 0;
}
@media (max-width: 578px) {
  #search_res .container .row .col-lg-10 {
    padding: 0;
  }
}
#search_res .container .row .col-lg-2 {
  padding-right: 0;
}
@media (max-width: 578px) {
  #search_res .container .row .col-lg-2 {
    padding: 0;
  }
}
#search_res .alert-dismissible {
  display: block;
  margin: 0 auto;
  padding: 15px 40px;
  text-align: center;
}
#search_res .alert-dismissible p {
  margin: 0px;
}

#admin_tabs,
#my_account {
  padding: 0;
  margin-bottom: 100px;
}
@media (max-width: 1699px) {
  #admin_tabs,
  #my_account {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  #admin_tabs,
  #my_account {
    margin-bottom: 60px;
  }
}
@media (max-width: 639px) {
  #admin_tabs,
  #my_account {
    margin-bottom: 30px;
  }
}
#admin_tabs .container,
#my_account .container {
  max-width: 1020px;
}
#admin_tabs .sidebar,
#my_account .sidebar {
  padding: 0;
  /*ul{
  	list-style: none;
  	padding: 0;
  	margin: 0;
  	li{
  		@include font(13px, 1.8em, 400, false, #787878);
  		b{
  			@include font(17px, false, false, false, #000);
  		    margin: 0 0 15px;
  			display: block;
  		}
  	}
  }*/
}
#admin_tabs .sidebar .profile,
#my_account .sidebar .profile {
  padding: 60px 0 0 0;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 767px) {
  #admin_tabs .sidebar .profile,
  #my_account .sidebar .profile {
    padding: 30px 0 0;
  }
}
@media (max-width: 479px) {
  #admin_tabs .sidebar .profile,
  #my_account .sidebar .profile {
    padding: 10px 0 0;
  }
}
#admin_tabs .sidebar .profile > div,
#my_account .sidebar .profile > div {
  min-width: 0;
}
#admin_tabs .sidebar .profile h3,
#my_account .sidebar .profile h3 {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  color: #000;
  padding-right: 30px;
}
@media (max-width: 1699px) {
  #admin_tabs .sidebar .profile h3,
  #my_account .sidebar .profile h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  #admin_tabs .sidebar .profile h3,
  #my_account .sidebar .profile h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #admin_tabs .sidebar .profile h3,
  #my_account .sidebar .profile h3 {
    font-size: 20px;
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 639px) {
  #admin_tabs .sidebar .profile h3,
  #my_account .sidebar .profile h3 {
    font-size: 18px;
    margin: 0 0 3px;
  }
}
@media (max-width: 479px) {
  #admin_tabs .sidebar .profile h3,
  #my_account .sidebar .profile h3 {
    font-size: 16px;
  }
}
#admin_tabs .sidebar .profile h5,
#my_account .sidebar .profile h5 {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #5E1DE1;
  padding-right: 30px;
}
@media (max-width: 767px) {
  #admin_tabs .sidebar .profile h5,
  #my_account .sidebar .profile h5 {
    margin: 0;
  }
}
#admin_tabs .sidebar .profile nav,
#my_account .sidebar .profile nav {
  width: 100%;
}
#admin_tabs .sidebar .profile .box,
#my_account .sidebar .profile .box {
  margin: 0 0 0 auto;
  width: 152px;
}
@media (max-width: 991px) {
  #admin_tabs .sidebar .profile .box,
  #my_account .sidebar .profile .box {
    width: 102px;
  }
}
@media (max-width: 479px) {
  #admin_tabs .sidebar .profile .box,
  #my_account .sidebar .profile .box {
    display: none;
  }
}
#admin_tabs .sidebar .change_avatar,
#my_account .sidebar .change_avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px 0 0;
}
@media (max-width: 991px) {
  #admin_tabs .sidebar .change_avatar,
  #my_account .sidebar .change_avatar {
    margin: 0 30px 20px 0;
  }
}
@media (max-width: 767px) {
  #admin_tabs .sidebar .change_avatar,
  #my_account .sidebar .change_avatar {
    margin: 0 15px 5px 0;
  }
}
@media (max-width: 639px) {
  #admin_tabs .sidebar .change_avatar,
  #my_account .sidebar .change_avatar {
    margin: 15px 15px 15px 0;
  }
}
#admin_tabs .sidebar .change_avatar .icon-pencil,
#my_account .sidebar .change_avatar .icon-pencil {
  transition: all 0.15s linear;
  border: 1px solid #5E1DE1;
  font-size: 18px;
  border-radius: 50%;
  position: absolute;
  line-height: 22px;
  background: #fff;
  color: #5E1DE1;
  cursor: pointer;
  bottom: -85px;
  height: 26px;
  margin: auto;
  width: 26px;
  right: 0;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  #admin_tabs .sidebar .change_avatar .icon-pencil,
  #my_account .sidebar .change_avatar .icon-pencil {
    bottom: -60px;
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  #admin_tabs .sidebar .change_avatar .icon-pencil,
  #my_account .sidebar .change_avatar .icon-pencil {
    bottom: -55px;
  }
}
#admin_tabs .sidebar .change_avatar:hover .icon-pencil,
#my_account .sidebar .change_avatar:hover .icon-pencil {
  transform: scale(2.5);
  bottom: 0;
  margin: auto;
}
#admin_tabs .sidebar .avatar,
#my_account .sidebar .avatar {
  border: 1px solid #e3e3e3;
  object-position: center;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  cursor: pointer;
  display: block;
  height: 96px;
  width: 96px;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  #admin_tabs .sidebar .avatar,
  #my_account .sidebar .avatar {
    height: 70px;
    width: 70px;
  }
}
@media (max-width: 639px) {
  #admin_tabs .sidebar .avatar,
  #my_account .sidebar .avatar {
    width: 60px;
    height: 60px;
  }
}
#admin_tabs .sidebar .nav,
#my_account .sidebar .nav {
  margin-top: 40px;
}
@media (max-width: 639px) {
  #admin_tabs .sidebar .nav,
  #my_account .sidebar .nav {
    margin-top: 20px;
  }
}
#admin_tabs .sidebar .nav-tabs,
#my_account .sidebar .nav-tabs {
  border-bottom: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
}
#admin_tabs .sidebar .nav-tabs .nav-item,
#my_account .sidebar .nav-tabs .nav-item {
  font-size: 14px;
  line-height: 62px;
  font-weight: 600;
  color: #828282;
  background: transparent;
  border-bottom: none;
  border-color: #e0e0e0;
  text-align: center;
  margin: 0 0 -1px;
  border-radius: 0;
  border-top: none;
  padding: 0 20px;
  height: 66px;
  flex: 1 0 0;
}
@media (max-width: 479px) {
  #admin_tabs .sidebar .nav-tabs .nav-item,
  #my_account .sidebar .nav-tabs .nav-item {
    font-size: 13px;
    line-height: 46px;
    padding: 0 8px;
    height: 48px;
  }
}
#admin_tabs .sidebar .nav-tabs .nav-item.active,
#my_account .sidebar .nav-tabs .nav-item.active {
  border-bottom: 4px solid #5E1DE1;
  margin: 0 0 -1px;
  color: #5E1DE1;
}
#admin_tabs .sidebar .btn,
#my_account .sidebar .btn {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px;
  width: 100%;
}
#admin_tabs .sidebar .subscriptions b,
#my_account .sidebar .subscriptions b {
  margin: 60px 0 15px;
  display: block;
}
#admin_tabs .sidebar .subscriptions ul li label,
#my_account .sidebar .subscriptions ul li label {
  margin: 0;
}
#admin_tabs .content,
#my_account .content {
  border-radius: 0 0 6px 6px;
  border: 1px solid #ddd;
  border-top: none;
}
#admin_tabs .content #account-content,
#my_account .content #account-content {
  margin-top: -15px;
  padding: 0 90px 8px;
}
@media (max-width: 991px) {
  #admin_tabs .content #account-content,
  #my_account .content #account-content {
    padding: 0 15px 10px;
  }
}
#admin_tabs .content #account-content .input_wr,
#my_account .content #account-content .input_wr {
  font-size: 20px;
  line-height: 1em;
  font-weight: 400;
  color: #000;
  margin: 0;
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .input_wr,
  #my_account .content #account-content .input_wr {
    font-size: 18px;
  }
}
#admin_tabs .content #account-content .input_wr b,
#my_account .content #account-content .input_wr b {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 29px;
  display: block;
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .input_wr b,
  #my_account .content #account-content .input_wr b {
    font-size: 18px;
    margin: 0 0 5px;
  }
}
#admin_tabs .content #account-content .input_wr i,
#my_account .content #account-content .input_wr i {
  margin: 0 0 38px;
  font-size: 18px;
  color: #5E1DE1;
  display: block;
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .input_wr i,
  #my_account .content #account-content .input_wr i {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  #admin_tabs .content #account-content .input_wr i,
  #my_account .content #account-content .input_wr i {
    font-size: 14px;
  }
}
#admin_tabs .content #account-content .btn,
#my_account .content #account-content .btn {
  text-transform: uppercase;
  margin: 30px auto 25px;
  border-radius: 50px;
  padding: 15px 60px;
  display: table;
}
@media (max-width: 479px) {
  #admin_tabs .content #account-content .btn,
  #my_account .content #account-content .btn {
    font-size: 14px;
    padding: 10px 40px;
  }
}
#admin_tabs .content #account-content .settings-field,
#my_account .content #account-content .settings-field {
  margin: 15px 0 0;
  align-items: center;
  display: flex;
  height: 100px;
  position: relative;
}
@media (max-width: 991px) {
  #admin_tabs .content #account-content .settings-field,
  #my_account .content #account-content .settings-field {
    padding: 24px 0;
    height: auto;
  }
}
@media (max-width: 639px) {
  #admin_tabs .content #account-content .settings-field,
  #my_account .content #account-content .settings-field {
    padding: 12px 0;
  }
}
#admin_tabs .content #account-content .settings-field:nth-last-child(n+2),
#my_account .content #account-content .settings-field:nth-last-child(n+2) {
  border-bottom: 1px solid #e0e0e0;
}
#admin_tabs .content #account-content .settings-field .alert,
#my_account .content #account-content .settings-field .alert {
  width: 100%;
  position: absolute;
  left: 83px;
  bottom: -11px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 12px;
}
#admin_tabs .content #account-content .settings-field .icon,
#my_account .content #account-content .settings-field .icon {
  margin: 0 40px 0 2px;
  color: #ddd;
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .settings-field .icon,
  #my_account .content #account-content .settings-field .icon {
    margin: 0 30px 0 2px;
  }
}
@media (max-width: 639px) {
  #admin_tabs .content #account-content .settings-field .icon,
  #my_account .content #account-content .settings-field .icon {
    margin: 0 17px 0 2px;
  }
}
@media (max-width: 639px) {
  #admin_tabs .content #account-content .settings-field .icon img,
  #my_account .content #account-content .settings-field .icon img {
    max-width: 28px;
  }
}
#admin_tabs .content #account-content .settings-field .input_wr,
#my_account .content #account-content .settings-field .input_wr {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #666;
  padding-right: 30px;
  margin: 0;
  flex: 0 0 calc(100% - 88px);
}
@media (max-width: 639px) {
  #admin_tabs .content #account-content .settings-field .input_wr,
  #my_account .content #account-content .settings-field .input_wr {
    font-size: 12px;
  }
}
#admin_tabs .content #account-content .settings-field .input_wr b,
#my_account .content #account-content .settings-field .input_wr b {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
  display: block;
  margin: 0;
}
@media (max-width: 1699px) {
  #admin_tabs .content #account-content .settings-field .input_wr b,
  #my_account .content #account-content .settings-field .input_wr b {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .settings-field .input_wr b,
  #my_account .content #account-content .settings-field .input_wr b {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  #admin_tabs .content #account-content .settings-field .input_wr b,
  #my_account .content #account-content .settings-field .input_wr b {
    font-size: 15px;
  }
}
#admin_tabs .content #account-content .settings-field .input_wr #display_name_wrap,
#my_account .content #account-content .settings-field .input_wr #display_name_wrap {
  position: relative;
}
#admin_tabs .content #account-content .settings-field .input_wr #display_name_wrap:before,
#my_account .content #account-content .settings-field .input_wr #display_name_wrap:before {
  transition: all 0.3s linear;
  font-family: "fontello", serif;
  position: absolute;
  line-height: 44px;
  font-size: 18px;
  display: block;
  content: "";
  z-index: 1;
  right: 0;
}
#admin_tabs .content #account-content .settings-field .input_wr #display_name_wrap.success:before,
#my_account .content #account-content .settings-field .input_wr #display_name_wrap.success:before {
  content: "✓";
  color: green;
}
#admin_tabs .content #account-content .settings-field .input_wr #display_name_wrap.success #display_name,
#my_account .content #account-content .settings-field .input_wr #display_name_wrap.success #display_name {
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.3);
  border: 1px solid green;
  color: green;
}
#admin_tabs .content #account-content .settings-field .input_wr #display_name_wrap.error:before,
#my_account .content #account-content .settings-field .input_wr #display_name_wrap.error:before {
  color: red;
}
#admin_tabs .content #account-content .settings-field .input_wr #display_name_wrap.error #display_name,
#my_account .content #account-content .settings-field .input_wr #display_name_wrap.error #display_name {
  box-shadow: none;
  border-bottom-color: red;
  color: red;
}
#admin_tabs .content #account-content .settings-field .input_wr #display_name,
#my_account .content #account-content .settings-field .input_wr #display_name {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
  border: 1px solid transparent;
  transition: all 0.3s linear;
  padding: 0;
  margin: 0;
  height: auto;
  display: block;
}
#admin_tabs .content #account-content .settings-field .input_wr #display_name:focus,
#my_account .content #account-content .settings-field .input_wr #display_name:focus {
  box-shadow: none;
  border-bottom: 1px solid #5E1DE1;
  outline: none;
}
@media (max-width: 1699px) {
  #admin_tabs .content #account-content .settings-field .input_wr #display_name,
  #my_account .content #account-content .settings-field .input_wr #display_name {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .settings-field .input_wr #display_name,
  #my_account .content #account-content .settings-field .input_wr #display_name {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  #admin_tabs .content #account-content .settings-field .input_wr #display_name,
  #my_account .content #account-content .settings-field .input_wr #display_name {
    font-size: 15px;
  }
}
#admin_tabs .content #account-content .settings-field .input_wr #zoom_email_wrap,
#my_account .content #account-content .settings-field .input_wr #zoom_email_wrap {
  position: relative;
}
#admin_tabs .content #account-content .settings-field .input_wr #zoom_email_wrap:before,
#my_account .content #account-content .settings-field .input_wr #zoom_email_wrap:before {
  transition: all 0.3s linear;
  font-family: "fontello", serif;
  position: absolute;
  line-height: 44px;
  font-size: 18px;
  display: block;
  content: "";
  z-index: 1;
  right: 0;
}
#admin_tabs .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email,
#my_account .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
  border: 1px solid transparent;
  transition: all 0.3s linear;
  padding: 0;
  margin: 0;
  height: auto;
  display: block;
  width: 100%;
}
#admin_tabs .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email:focus,
#my_account .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email:focus {
  box-shadow: none;
  border-bottom: 1px solid #5E1DE1;
  outline: none;
}
@media (max-width: 1699px) {
  #admin_tabs .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email,
  #my_account .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email,
  #my_account .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  #admin_tabs .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email,
  #my_account .content #account-content .settings-field .input_wr #zoom_email_wrap #zoom_email {
    font-size: 15px;
  }
}
#admin_tabs .content #account-content .settings-field .input_wr .not-validated,
#my_account .content #account-content .settings-field .input_wr .not-validated {
  border-bottom-color: #721c24 !important;
}
#admin_tabs .content #account-content .settings-field .input_wr .popover_wr,
#my_account .content #account-content .settings-field .input_wr .popover_wr {
  cursor: pointer;
}
#admin_tabs .content #account-content .settings-field .input_wr .popover_wr .popover_icon,
#my_account .content #account-content .settings-field .input_wr .popover_wr .popover_icon {
  border: 1px solid #6335c3;
  color: #6335c3;
  margin-left: 10px;
  width: 17px;
  height: 17px;
  font-size: 11px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}
#admin_tabs .content #account-content .settings-field .input_wr .popover_wr .popover,
#my_account .content #account-content .settings-field .input_wr .popover_wr .popover {
  position: absolute;
  left: calc(50% - 130px);
  width: 290px;
  height: 225px;
  top: -235px;
  transform: translate(0, -20px);
  opacity: 0;
  transition: all ease 0.3s;
  padding: 10px;
  background: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
}
#admin_tabs .content #account-content .settings-field .input_wr .popover_wr:hover .popover_icon,
#my_account .content #account-content .settings-field .input_wr .popover_wr:hover .popover_icon {
  border-color: #000;
  color: #000;
}
#admin_tabs .content #account-content .settings-field .input_wr .popover_wr:hover .popover,
#my_account .content #account-content .settings-field .input_wr .popover_wr:hover .popover {
  opacity: 1;
  transform: translate(0, 0);
  z-index: 10;
}
#admin_tabs .content #account-content .settings-field .cta,
#my_account .content #account-content .settings-field .cta {
  margin-left: auto;
  background: none;
  transition: 0.2s;
  font-size: 28px;
  cursor: pointer;
  color: #5E1DE1;
  border: none;
  padding: 0;
  opacity: 1;
}
#admin_tabs .content #account-content .settings-field .cta:hover,
#my_account .content #account-content .settings-field .cta:hover {
  opacity: 0.8;
}
@media (max-width: 479px) {
  #admin_tabs .content #account-content .settings-field .cta,
  #my_account .content #account-content .settings-field .cta {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 22px;
  }
}
#admin_tabs .content #account-content .tab-notf,
#my_account .content #account-content .tab-notf {
  padding: 80px 98px 101px;
}
@media (max-width: 991px) {
  #admin_tabs .content #account-content .tab-notf,
  #my_account .content #account-content .tab-notf {
    padding: 50px 0 40px;
  }
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .tab-notf,
  #my_account .content #account-content .tab-notf {
    padding: 30px 0;
  }
}
#admin_tabs .content #account-content .tab-notf > img,
#my_account .content #account-content .tab-notf > img {
  margin: 0 0 23px;
  width: 75px;
}
@media (max-width: 991px) {
  #admin_tabs .content #account-content .tab-notf > img,
  #my_account .content #account-content .tab-notf > img {
    width: 60px;
  }
}
@media (max-width: 639px) {
  #admin_tabs .content #account-content .tab-notf > img,
  #my_account .content #account-content .tab-notf > img {
    width: 50px;
  }
}
#admin_tabs .content #account-content .tab-notf h3,
#my_account .content #account-content .tab-notf h3 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 12px;
}
@media (max-width: 991px) {
  #admin_tabs .content #account-content .tab-notf h3,
  #my_account .content #account-content .tab-notf h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #admin_tabs .content #account-content .tab-notf h3,
  #my_account .content #account-content .tab-notf h3 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  #admin_tabs .content #account-content .tab-notf h3,
  #my_account .content #account-content .tab-notf h3 {
    font-size: 16px;
  }
}
#admin_tabs .content h1,
#my_account .content h1 {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
  color: #000;
  margin: 12px 0 18px;
}
@media (max-width: 1699px) {
  #admin_tabs .content h1,
  #my_account .content h1 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  #admin_tabs .content h1,
  #my_account .content h1 {
    font-size: 32px;
    margin: 0 0 15px;
  }
}
@media (max-width: 767px) {
  #admin_tabs .content h1,
  #my_account .content h1 {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  #admin_tabs .content h1,
  #my_account .content h1 {
    font-size: 24px;
  }
}
#admin_tabs .content p,
#my_account .content p {
  font-size: 18px;
  line-height: 1.65em;
  font-weight: 400;
  color: #666;
  margin: 0;
}
@media (max-width: 767px) {
  #admin_tabs .content p,
  #my_account .content p {
    font-size: 16px;
    line-height: 1.45em;
  }
}
#admin_tabs .content p.small,
#my_account .content p.small {
  font-size: 13px;
  line-height: 1.65em;
  font-weight: 400;
  font-style: italic;
  color: #a1a1a1;
  letter-spacing: -0.5px;
  margin: 15px 0;
}
#admin_tabs .content .gray_box,
#my_account .content .gray_box {
  background: #f7f7f7;
  padding: 33px 29px;
  margin: 18px 0 0;
}
@media (max-width: 767px) {
  #admin_tabs .content .gray_box,
  #my_account .content .gray_box {
    padding: 40px 15px;
    margin: 0 0 15px;
  }
}
@media (max-width: 479px) {
  #admin_tabs .content .gray_box,
  #my_account .content .gray_box {
    padding: 60px 15px;
    margin: 0 -15px;
  }
}
#admin_tabs .content .gray_box.dark,
#my_account .content .gray_box.dark {
  background: #eceeee;
}
#admin_tabs .content .gray_box h3,
#my_account .content .gray_box h3 {
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 700;
  font-style: italic;
  color: #000;
  margin: 0 0 8px;
}
@media (max-width: 767px) {
  #admin_tabs .content .gray_box h3,
  #my_account .content .gray_box h3 {
    font-size: 20px;
  }
}
#admin_tabs .content .gray_box h3 .red,
#my_account .content .gray_box h3 .red {
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: #ff0101;
}
@media (max-width: 767px) {
  #admin_tabs .content .gray_box h3 .red,
  #my_account .content .gray_box h3 .red {
    font-size: 15px;
  }
}
#admin_tabs .content .gray_box p,
#my_account .content .gray_box p {
  font-size: 17px;
  line-height: 2.15em;
  font-weight: 400;
  color: #787878;
  margin: 0;
}
@media (max-width: 767px) {
  #admin_tabs .content .gray_box p,
  #my_account .content .gray_box p {
    font-size: 16px;
    line-height: 1.45em;
  }
}
#admin_tabs .content .gray_box p b,
#my_account .content .gray_box p b {
  color: #000;
}
#admin_tabs .content .gray_box .btn,
#my_account .content .gray_box .btn {
  font-size: 15px;
  font-weight: 600;
  margin: 45px auto 18px;
  letter-spacing: 0;
  max-width: 400px;
  display: table;
  padding: 12px;
  width: 100%;
}
@media (max-width: 767px) {
  #admin_tabs .content .gray_box .btn,
  #my_account .content .gray_box .btn {
    margin: 25px auto 0;
  }
}
@media (max-width: 479px) {
  #admin_tabs .content .gray_box .btn,
  #my_account .content .gray_box .btn {
    padding: 12px 30px;
  }
}

.notf-field {
  align-items: center;
  padding: 13px 0;
  display: flex;
}
.notf-field.success .icon .icon-check {
  display: block;
}
.notf-field.success .icon svg {
  display: none;
}
.notf-field.success h5 {
  color: #5E1DE1;
}
.notf-field .icon {
  display: inline-flex;
  margin: 0 16px 0 0;
  font-size: 34px;
  color: #5E1DE1;
  min-width: 32px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 639px) {
  .notf-field .icon {
    margin: 0 10px 0 0;
  }
}
.notf-field .icon .icon-check {
  font-size: 20px;
  line-height: 1;
  display: none;
}
.notf-field h5 {
  padding-right: 30px;
  font-weight: 600;
  font-size: 17px;
  color: #000000;
  margin: 0;
}
@media (max-width: 767px) {
  .notf-field h5 {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .notf-field h5 {
    font-size: 15px;
    padding-right: 20px;
  }
}
@media (max-width: 479px) {
  .notf-field h5 {
    font-size: 14px;
    padding-right: 10px;
  }
}
.notf-field .switch {
  align-items: center;
  position: relative;
  padding-left: 5px;
  margin-left: auto;
  display: flex;
  min-width: 70px;
  height: 20px;
}
.notf-field .switch input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 2;
  bottom: 0;
  margin: 0;
  right: 0;
  left: 0;
  top: 0;
}
.notf-field .switch label {
  position: relative;
  padding-right: 60px;
  align-items: center;
  font-weight: 400;
  font-size: 17px;
  display: flex;
  color: #000;
  margin: 0;
}
@media (max-width: 639px) {
  .notf-field .switch label {
    font-size: 14px;
    padding-right: 38px;
  }
}
.notf-field .switch label span {
  display: none;
}
.notf-field .switch label .off {
  color: #999;
}
.notf-field .switch label:before {
  background: #f5f5f5;
  border-radius: 6px;
  position: absolute;
  transition: 0.2s;
  display: block;
  height: 14px;
  width: 34px;
  content: "";
  right: 0;
}
@media (max-width: 639px) {
  .notf-field .switch label:before {
    width: 24px;
    height: 10px;
  }
}
.notf-field .switch label:after {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.12), 0 0 2px rgba(0, 0, 0, 0.14);
  background: #95cab3;
  border-radius: 50%;
  position: absolute;
  transition: 0.2s;
  display: block;
  height: 20px;
  content: "";
  right: 16px;
  width: 20px;
}
@media (max-width: 639px) {
  .notf-field .switch label:after {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}
.notf-field .switch input[type=checkbox]:not(:checked) + label .off {
  display: inline-block;
}
.notf-field .switch input[type=checkbox]:checked + label .on {
  display: inline-block;
}
.notf-field .switch input[type=checkbox]:checked + label:before {
  background: #828282;
  opacity: 0.38;
}
.notf-field .switch input[type=checkbox]:checked + label:after {
  background: #5E1DE1;
  right: -1px;
}

#i4wcportalinvoices #i4w-cportal-invoices_info,
#i4wcportalinvoices #i4w-cportal-invoices_length,
#i4wcportalinvoices #i4w-cportal-invoices_filter,
#i4wcportalinvoices tfoot,
#i4wcportalinvoices p {
  display: none;
}
#i4wcportalinvoices .dataTables_empty {
  padding-top: 15px !important;
  text-align: center !important;
}
#i4wcportalinvoices #i4w-cportal-invoices {
  width: 100% !important;
}
#i4wcportalinvoices #i4w-cportal-invoices thead tr th {
  background: transparent;
  cursor: inherit;
}
#i4wcportalinvoices #i4w-cportal-invoices tbody tr td {
  border-bottom: 1px solid #ddd;
  padding: 0;
}
#i4wcportalinvoices #i4w-cportal-invoices_paginate {
  margin: 20px auto;
  display: table;
  float: none;
}
#i4wcportalinvoices #i4w-cportal-invoices_paginate .paginate_button {
  transition: all 0.3s linear;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid #ddd;
  margin: 0 0 0 -1px;
  font-size: 12px;
}
#i4wcportalinvoices #i4w-cportal-invoices_paginate .paginate_button:hover {
  border: 1px solid #5E1DE1;
  color: #5E1DE1 !important;
  position: relative;
  z-index: 10;
}
#i4wcportalinvoices #i4w-cportal-invoices_paginate .paginate_button.disabled:hover {
  color: #666 !important;
  border: 1px solid #ddd;
}
#i4wcportalinvoices .i4w-cportal-invoice-open {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  border: 1px solid #5E1DE1;
  transition: all 0.3s linear;
  border-radius: 100px;
  padding: 7px 25px;
  color: #5E1DE1;
}
@media (max-width: 767px) {
  #i4wcportalinvoices .i4w-cportal-invoice-open {
    padding: 4px 18px;
  }
}
#i4wcportalinvoices .i4w-cportal-invoice-open:hover {
  background: #5E1DE1;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  text-transform: none;
}
#i4wcportalinvoices .i4w-cportal-invoice-open:focus {
  outline: none;
}
#i4wcportalinvoices .i4w-cportal-invoice-pay {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
  border: 1px solid #5E1DE1;
  transition: all 0.3s linear;
  background: #5E1DE1;
  border-radius: 100px;
  padding: 7px 25px;
  margin: 11px 0 0;
}
#i4wcportalinvoices .i4w-cportal-invoice-pay:hover {
  background: #fff;
  color: #5E1DE1;
  cursor: pointer;
}
#i4wcportalinvoices .i4w-cportal-invoice-pay:focus {
  outline: none;
}

#nav-payments {
  margin: 0 -22px;
}
@media (max-width: 991px) {
  #nav-payments {
    overflow: auto;
    margin: 0;
  }
}
#nav-payments .mbr-popup-modal {
  pointer-events: all;
  background: #fff;
  overflow: scroll;
  opacity: 1;
  padding: 0;
}
#nav-payments .mbr-popup-modal .mbr-popup-close {
  text-decoration: none;
  font-size: 36px;
}
#nav-payments .mbr-popup-modal > div:first-child {
  height: 100% !important;
  width: 100% !important;
  transform: scale(1);
  padding: 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 1;
}
@media (max-width: 991px) {
  #nav-payments .mbr-popup-modal > div:first-child {
    padding: 40px 15px;
  }
}
#nav-payments .i4w-cportal-invoice-print-icon {
  display: block !important;
}
#nav-payments .i4w-cportal-invoice-print-icon .icon-download {
  font-size: 24px;
  color: #000;
  vertical-align: top;
  margin: 1px 15px 0;
}
#nav-payments div:not(.mbr-popup-modal-content) > p {
  display: none;
}
#nav-payments .active * {
  font-weight: bold;
  color: #5E1DE1;
}

#invoice_wrap table {
  min-width: 500px;
  font-size: 15px;
  color: #747474;
}
#invoice_wrap table p {
  font-size: 15px !important;
  line-height: 1 !important;
}
#invoice_wrap table p span {
  font-style: italic;
  font-size: 13px;
  margin: 5px 0 0;
  display: block;
}
#invoice_wrap table thead th {
  font-weight: 400;
  font-size: 15px;
  font-weight: 600;
  border: none;
}
@media (max-width: 991px) {
  #invoice_wrap table thead th {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #invoice_wrap table thead th {
    font-size: 12px;
  }
}
#invoice_wrap table tbody tr {
  height: 60px;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 991px) {
  #invoice_wrap table tbody tr {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #invoice_wrap table tbody tr {
    font-size: 12px;
    height: 50px;
  }
}
@media (max-width: 639px) {
  #invoice_wrap table tbody tr {
    height: 42px;
  }
}
#invoice_wrap table tbody tr:first-child > * {
  border: none;
}
#invoice_wrap table td,
#invoice_wrap table th {
  padding: 27px 15px 0;
  text-align: center;
}
#invoice_wrap table td:first-child,
#invoice_wrap table th:first-child {
  text-align: left;
  padding-left: 0;
}
#invoice_wrap table td:last-child,
#invoice_wrap table th:last-child {
  padding-right: 0;
  width: 60px;
}

#card_wrap {
  padding-top: 40px;
}
#card_wrap table {
  display: block;
  max-width: 610px;
  margin: 0 auto;
}
#card_wrap table tr td {
  line-height: 44px;
}
@media (max-width: 639px) {
  #card_wrap table tr td {
    line-height: initial;
  }
}
#card_wrap table tr td:nth-child(1) {
  font-size: 15px;
}
#card_wrap table tr td:nth-child(2) {
  width: 65%;
}
#card_wrap table tr td:nth-child(2) * {
  width: 100%;
  border: 1px solid #ddd;
  outline: none;
  margin-bottom: 2px;
  color: #000;
}
#card_wrap table tr:last-child td {
  width: 100%;
}
#card_wrap .select_wrap {
  position: relative;
}
#card_wrap .select_wrap:before {
  position: absolute;
  top: 8px;
  right: 12px;
  color: #9f9f9f;
  font-size: 21px;
  font-family: "fontello", serif;
  display: inline-block;
  content: "\e75c";
}
#card_wrap select,
#card_wrap input {
  padding: 0 12px !important;
  font-size: 14px;
  cursor: pointer;
}
#card_wrap select {
  height: 44px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#card_wrap #Submit {
  display: block;
  margin: 40px auto 20px;
  background: #5E1DE1;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 60px;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 19px;
  padding: 10px 50px !important;
  line-height: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
#card_wrap #Submit:hover {
  background: #6e33e5;
}

#modal_change_pass .modal-dialog {
  max-width: 560px;
}
#modal_change_pass .modal-body {
  padding: 30px 60px;
}
@media (max-width: 479px) {
  #modal_change_pass .modal-body {
    padding: 20px 15px;
  }
}

#modal_zoom_email .modal-header {
  background: transparent;
  padding: 0 15px;
  margin-bottom: 0;
}
#modal_zoom_email .modal-header button {
  color: #000;
}
#modal_zoom_email .modal-dialog {
  max-width: 560px;
}
#modal_zoom_email .modal-body {
  padding: 30px 60px;
}
@media (max-width: 479px) {
  #modal_zoom_email .modal-body {
    padding: 20px 15px;
  }
}
#modal_zoom_email .modal-body .head {
  margin-bottom: 20px;
}
#modal_zoom_email .modal-body .alert {
  position: relative;
  left: unset;
  bottom: unset;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 10px 0 0;
  margin: 0;
  font-size: 14px;
}
#modal_zoom_email .modal-body .recepient_email {
  font-weight: 700;
}
#modal_zoom_email .modal-body .check_pass.error .wrap_inputs input {
  border-bottom: 1px solid #721c24;
}
#modal_zoom_email .modal-body .check_pass.loading .wrap_inputs input, #modal_zoom_email .modal-body .sq25_success .head .slider_videos_reviews .check_pass.video.video_buffer .wrap_inputs input, .sq25_success .head .slider_videos_reviews #modal_zoom_email .modal-body .check_pass.video.video_buffer .wrap_inputs input {
  pointer-events: none;
}
#modal_zoom_email .modal-body .check_pass.loading .wrap_inputs:after, #modal_zoom_email .modal-body .sq25_success .head .slider_videos_reviews .check_pass.video.video_buffer .wrap_inputs:after, .sq25_success .head .slider_videos_reviews #modal_zoom_email .modal-body .check_pass.video.video_buffer .wrap_inputs:after {
  content: "";
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 60px);
  display: block;
  width: 64px;
  height: 64px;
  z-index: 12;
  border-radius: 50%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  animation: lds-dual-ring 1.5s linear infinite;
  opacity: 0.7;
}
#modal_zoom_email .modal-body .wrap_inputs {
  position: relative;
}
#modal_zoom_email .modal-body .wrap_inputs label {
  width: calc(15% - 15px);
  margin-bottom: 0;
}
#modal_zoom_email .modal-body .wrap_inputs label:nth-last-child(n+2) {
  margin-right: 15px;
}
#modal_zoom_email .modal-body .wrap_inputs label input {
  border: none;
  border-bottom: 1px solid #cecece;
  padding: 0;
  text-align: center;
  width: 100%;
}
#modal_zoom_email .modal-body .wrap_inputs label input:focus {
  box-shadow: inset 0 1px 1px rgba(99, 53, 195, 0.15), 0 0 8px rgba(99, 53, 195, 0.15);
}
#modal_zoom_email .modal-body .btn {
  display: block;
  max-width: 300px;
  margin: 20px auto 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}
#modal_zoom_email .modal-body .resend_code_wr {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #000;
  display: none;
}
#modal_zoom_email .modal-body .resend_code_wr span {
  font-weight: 700;
}

#changepasswordform {
  font: 400 16px "Poppins";
  margin-bottom: 32px;
  font-size: 14px;
}
#changepasswordform input {
  transition: all 0.3s linear;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 10px 0 0;
  padding: 24px 20px;
  width: 100%;
}
#changepasswordform input:focus {
  box-shadow: none;
  border: 1px solid #5E1DE1;
}
#changepasswordform #i4w-password-change-submit {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
  width: 250px;
  font: 700 14px "Poppins";
  background: #5E1DE1;
  letter-spacing: 1px;
  white-space: normal;
  margin: 25px auto 0;
  color: #fff;
  border-radius: 60px;
  cursor: pointer;
  padding: 0;
  border: none;
}
@media (max-width: 479px) {
  #changepasswordform #i4w-password-change-submit {
    font-size: 15px;
  }
}
#changepasswordform #i4w-password-change-submit:hover {
  background: #07be07;
}

#basic-user-avatar-form {
  text-align: center;
}

#home {
  background: #f5f5f5;
  padding: 0 0 30px;
}
@media (max-width: 479px) {
  #home {
    padding: 0;
  }
}
#home .loading, #home .sq25_success .head .slider_videos_reviews .video.video_buffer, .sq25_success .head .slider_videos_reviews #home .video.video_buffer {
  position: absolute;
  content: "";
  top: 0;
  left: 1%;
  width: 98%;
  height: 100%;
  z-index: 11;
  background: #f5f5f5;
  opacity: 1;
}
#home .loading:after, #home .sq25_success .head .slider_videos_reviews .video.video_buffer:after, .sq25_success .head .slider_videos_reviews #home .video.video_buffer:after {
  position: absolute;
  z-index: 12;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  opacity: 0.7;
  animation: lds-dual-ring 1.5s linear infinite;
}
#home .col_banners {
  display: flex;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  #home .col_banners {
    margin-top: 30px;
  }
}
@media (max-width: 639px) {
  #home .col_banners {
    margin-top: 10px;
  }
}
#home .col_banners .slick-arrow {
  background: #c500e4;
  border-radius: 60px;
  width: 36px;
  height: 36px;
  opacity: 0.7;
  z-index: 1;
  transition: all 0.2s;
}
#home .col_banners .slick-arrow:hover {
  background: #d514f3;
  opacity: 0.9;
}
#home .col_banners .slick-arrow:before {
  position: relative;
  z-index: 3;
  display: block;
  color: #fff;
  font-family: "fontello", serif;
}
#home .col_banners .slick-arrow.slick-prev {
  left: initial;
  top: 48px;
  right: 83px;
}
@media (max-width: 767px) {
  #home .col_banners .slick-arrow.slick-prev {
    right: 73px;
  }
}
#home .col_banners .slick-arrow.slick-prev:before {
  content: "\e75d";
}
@media (max-width: 767px) {
  #home .col_banners .slick-arrow.slick-prev {
    top: 36px;
  }
}
@media (max-width: 639px) {
  #home .col_banners .slick-arrow.slick-prev {
    right: 61px;
  }
}
#home .col_banners .slick-arrow.slick-next {
  left: initial;
  top: 48px;
  right: 37px;
}
@media (max-width: 767px) {
  #home .col_banners .slick-arrow.slick-next {
    right: 27px;
  }
}
#home .col_banners .slick-arrow.slick-next:before {
  content: "\e75e";
}
@media (max-width: 767px) {
  #home .col_banners .slick-arrow.slick-next {
    top: 36px;
  }
}
@media (max-width: 639px) {
  #home .col_banners .slick-arrow.slick-next {
    right: 16px;
  }
}
#home .banner {
  position: relative;
  padding: 0;
  border-radius: 6px;
  color: #fff;
}
@media (max-width: 991px) {
  #home .banner {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  #home .banner {
    margin: 10px 0 0;
  }
}
@media (max-width: 479px) {
  #home .banner {
    background-size: cover;
    border-radius: 6px;
    text-align: center;
    background-position: 86% 50% !important;
  }
}
#home .banner .date {
  position: absolute;
  top: 20px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 50px;
  height: 55px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #home .banner .date {
    top: 15px;
    left: 15px;
    width: 40px;
    height: 45px;
  }
}
#home .banner .date.green span:nth-child(1) {
  background: #5E1DE1;
}
#home .banner .date.green span:nth-child(2) {
  color: #5E1DE1;
}
#home .banner .date.yellow span:nth-child(1) {
  background: #5E1DE1;
}
#home .banner .date.yellow span:nth-child(2) {
  color: #5E1DE1;
}
#home .banner .date.purple span:nth-child(1), #home .banner .submit_wrap.active_step_3 .date.line_1 span:nth-child(1), .submit_wrap.active_step_3 #home .banner .date.line_1 span:nth-child(1),
#home .banner .submit_wrap.active_step_3 .date.line_2 span:nth-child(1),
.submit_wrap.active_step_3 #home .banner .date.line_2 span:nth-child(1), #home .banner .submit_wrap.active_step_2 .date.line_1 span:nth-child(1), .submit_wrap.active_step_2 #home .banner .date.line_1 span:nth-child(1) {
  color: #fff;
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%);
}
#home .banner .date.purple span:nth-child(2), #home .banner .submit_wrap.active_step_3 .date.line_1 span:nth-child(2), .submit_wrap.active_step_3 #home .banner .date.line_1 span:nth-child(2),
#home .banner .submit_wrap.active_step_3 .date.line_2 span:nth-child(2),
.submit_wrap.active_step_3 #home .banner .date.line_2 span:nth-child(2), #home .banner .submit_wrap.active_step_2 .date.line_1 span:nth-child(2), .submit_wrap.active_step_2 #home .banner .date.line_1 span:nth-child(2) {
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}
#home .banner .date span {
  width: 100%;
  margin: 0;
}
#home .banner .date span:nth-child(1) {
  color: #fff;
  font-size: 12px;
  padding: 1px 0;
}
@media (max-width: 767px) {
  #home .banner .date span:nth-child(1) {
    font-size: 11px;
  }
}
#home .banner .date span:nth-child(2) {
  font-size: 26px;
  font-weight: 600;
  padding: 0;
  line-height: 34px;
}
@media (max-width: 767px) {
  #home .banner .date span:nth-child(2) {
    font-size: 18px;
    line-height: 29px;
  }
}
#home .banner .date_txt {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 13px;
  font-family: "Inter", serif;
  font-style: italic;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #home .banner .date_txt {
    bottom: 10px;
    right: 15px;
    font-size: 11px;
  }
}
#home .banner .btn-wrap {
  margin-top: 10px;
}
#home .banner .btn-wrap.green .sess {
  background: #5E1DE1;
}
#home .banner .btn-wrap.yellow .sess {
  background: #5E1DE1;
}
#home .banner .btn-wrap.yellow .btn-span-left span:before {
  background: #5E1DE1;
}
#home .banner .btn-wrap .btn {
  margin-right: 15px;
}
@media (max-width: 767px) {
  #home .banner .btn-wrap .btn {
    margin-right: 0;
  }
}
#home .banner .btn-wrap .btn.sess {
  padding: 10px 24px;
  font-weight: 400;
  border-radius: 60px;
}
#home .banner .btn-wrap .btn.btn_gradient_purple {
  background: #c500e4;
  border-radius: 60px;
  opacity: 1 !important;
}
#home .banner .btn-wrap .btn.btn_gradient_purple:hover {
  background: #d10cf0;
}
@media (max-width: 767px) {
  #home .banner .btn-wrap .btn.btn_gradient_purple {
    padding: 6px 30px;
    font-size: 13px;
  }
}
#home .banner .banner_des {
  position: absolute;
  z-index: 111;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  width: 100%;
  max-width: 475px;
  padding: 0 10px;
}
@media (max-width: 479px) {
  #home .banner .banner_des {
    top: 10px;
  }
}
#home .banner h2 {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 1200px) {
  #home .banner h2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #home .banner h2 {
    margin-bottom: 0;
  }
  #home .banner h2 br {
    display: none;
  }
}
@media (max-width: 639px) {
  #home .banner h2 {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  #home .banner h2 {
    font-size: 12px;
  }
}
#home .banner h2 span {
  background: #fff;
  color: #7b3e8a;
  padding: 0 8px;
  margin: 0 2px 0 4px;
  border-radius: 10px 0 10px 0;
}
#home .banner h3 {
  font-size: 18px;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 20px #000000;
  font-family: "Inter", serif;
}
#home .banner p {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  font-family: "Inter", serif;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  #home .banner p {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  #home .banner p {
    font-size: 12px;
  }
}
@media (max-width: 479px) {
  #home .banner p {
    font-size: 8px;
  }
}
#home .banner .btm_date {
  position: absolute;
  bottom: 8px;
  right: 22px;
  font-size: 13px;
  font-style: italic;
  text-shadow: 0 4px 20px #000000;
}
#home .my_acc {
  padding: 56px 15px 38px;
  border-radius: 6px;
  text-align: center;
  background: #fff;
  min-height: 315px;
}
@media (max-width: 1200px) {
  #home .my_acc {
    min-height: 280px;
    padding: 29px 15px 25px;
  }
}
@media (max-width: 991px) {
  #home .my_acc {
    min-height: initial;
  }
}
@media (max-width: 991px) {
  #home .my_acc {
    padding: 40px 15px;
    margin: 30px 0 0;
  }
}
@media (max-width: 639px) {
  #home .my_acc {
    margin: 15px 0 0;
  }
}
@media (max-width: 479px) {
  #home .my_acc {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
#home .my_acc.get_acc {
  padding: 24px 15px 24px;
}
#home .my_acc.get_acc .star-wrap {
  margin-bottom: 8px;
}
#home .my_acc.get_acc .star-wrap img {
  margin-bottom: 0;
}
#home .my_acc.get_acc img {
  max-width: 177px;
  margin-bottom: 23px;
}
#home .my_acc.get_acc h3 {
  font-size: 16px;
  font-weight: 600;
}
#home .my_acc.get_acc .btn {
  margin-top: 5px;
  padding: 5px 45px;
}
#home .my_acc.get_acc p {
  margin-top: 9px;
  color: #5E1DE1;
  font-size: 13px;
  margin-bottom: 0;
}
@media (max-width: 479px) {
  #home .my_acc .details {
    flex: initial;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-bottom: 5px;
    padding-right: 10px;
  }
}
@media (max-width: 479px) {
  #home .my_acc .details .name {
    margin: 0 5px 0 0;
    padding: 0;
  }
}
#home .my_acc img.user_photo {
  border: 1px solid #ddd;
  border-radius: 100%;
  height: 95px;
  width: 95px;
}
@media (max-width: 479px) {
  #home .my_acc img.user_photo {
    width: 44px;
    height: 44px;
    float: left;
    margin-right: 10px;
  }
}
#home .my_acc p.name {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #000;
  margin: 14px 0 3px;
}
@media (max-width: 479px) {
  #home .my_acc p.name {
    font-size: 12px;
    text-align: left;
    margin: 0;
    padding: 7px 0 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    max-width: calc(100% - 70px);
    text-overflow: ellipsis;
    display: inline-block;
  }
}
#home .my_acc p.lvl {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #5E1DE1;
  margin: 0;
}
@media (max-width: 479px) {
  #home .my_acc p.lvl {
    font-size: 12px;
    color: #747d88;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 70px);
  }
}
#home .my_acc p.lvl a {
  color: #5E1DE1;
}
#home .my_acc .btn {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  padding: 7px 40px;
  letter-spacing: 0;
  margin: 30px auto 0;
}
@media (max-width: 991px) {
  #home .my_acc .btn {
    margin: 15px auto 0;
  }
}
@media (max-width: 479px) {
  #home .my_acc .btn {
    flex: 40% 0 0;
    min-width: 116px;
    font-size: 11px;
    font-weight: bold;
    padding: 8.5px 10px;
    margin: 0;
  }
}
#home .card-deck {
  margin: 26px -15px 0;
  text-align: center;
}
@media (max-width: 991px) {
  #home .card-deck {
    margin: 15px -15px 0;
  }
}
@media (max-width: 639px) {
  #home .card-deck {
    margin: 15px -7.5px 0;
  }
}
@media (max-width: 479px) {
  #home .card-deck {
    margin: 15px -7.5px 0;
    display: block;
    overflow: hidden;
  }
}
#home .card-deck .card {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s linear;
  padding: 45px 0 35px;
  border-radius: 6px;
  background: #fff;
}
@media (max-width: 991px) {
  #home .card-deck .card {
    flex: 1 0 40%;
    margin: 15px;
  }
}
@media (max-width: 639px) {
  #home .card-deck .card {
    padding: 20px 15px 22px;
    margin: 0 7.5px 15px;
  }
}
@media (max-width: 479px) {
  #home .card-deck .card {
    padding: 15px 13px;
    display: inline-flex;
    float: left;
    width: calc(50% - 15px);
  }
}
#home .card-deck .card .inner {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
@media (max-width: 767px) {
  #home .card-deck .card .inner {
    justify-content: center;
  }
}
#home .card-deck .card img {
  transition: all 0.3s linear;
  transform: scale(1);
}
@media (max-width: 639px) {
  #home .card-deck .card img {
    width: 48px;
  }
}
#home .card-deck .card:hover {
  border: 1px solid #5E1DE1;
  text-decoration: none;
  background: #f7f7f7;
}
#home .card-deck .card:hover img {
  transform: scale(1.2);
}
#home .card-deck .card h3 {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0;
}
@media (max-width: 639px) {
  #home .card-deck .card h3 {
    margin: 10px 0 0;
  }
}
@media (max-width: 479px) {
  #home .card-deck .card h3 {
    display: block;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
#home .card-deck .card h3 b {
  color: red;
}
#home .card-deck .card h3 .count {
  font-size: 18px;
  line-height: 31px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  background: red;
  height: 35px;
  right: 70px;
  width: 35px;
  top: 30px;
}
@media (max-width: 1699px) {
  #home .card-deck .card h3 .count {
    right: 50px;
  }
}
@media (max-width: 991px) {
  #home .card-deck .card h3 .count {
    right: 110px;
  }
}
@media (max-width: 767px) {
  #home .card-deck .card h3 .count {
    right: 65px;
  }
}
@media (max-width: 639px) {
  #home .card-deck .card h3 .count {
    font-size: 13px;
    line-height: 25px;
    height: 29px;
    width: 29px;
    right: 41%;
    top: 12px;
  }
}
@media (max-width: 479px) {
  #home .card-deck .card h3 .count {
    right: 36%;
  }
}

.banner_extra {
  background: #f5f5f5;
  padding: 18px 0 50px;
}
.banner_extra.emcc {
  background: #fff;
  margin-bottom: 50px;
}
.banner_extra.emcc .wrap {
  background-size: cover;
  padding-left: 60px;
}
@media (max-width: 991px) {
  .banner_extra.emcc .wrap {
    padding-left: 30px;
  }
}
.banner_extra.emcc figure > img {
  max-width: 200px;
  margin-right: 60px;
}
@media (max-width: 767px) {
  .banner_extra.emcc figure > img {
    margin-right: 30px;
  }
}
.banner_extra.new .wrap {
  background-size: cover;
  padding-left: 30px;
}
.banner_extra .title {
  font-size: 26px;
  color: #000;
  margin: 36px 0 15px 15px;
  font-weight: 600;
}
@media (max-width: 1699px) {
  .banner_extra .title {
    font-size: 28px;
  }
}
@media (max-width: 1300px) {
  .banner_extra .title {
    font-size: 26px;
  }
}
.banner_extra .title b {
  font-weight: 700;
  color: #c500e4;
}
.banner_extra .wrap {
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 55px 17px 55px;
  border-radius: 6px;
  margin: 0;
}
@media (max-width: 991px) {
  .banner_extra .wrap {
    background-position: center;
    padding: 20px 20px 25px;
  }
}
@media (max-width: 767px) {
  .banner_extra .wrap {
    flex-direction: column;
    align-items: flex-start;
    background-position: 70% center;
    padding: 50px 15px 30px;
  }
}
@media (max-width: 639px) {
  .banner_extra .wrap {
    background-position: 80% center;
  }
}
.banner_extra .wrap > img {
  max-width: 270px;
  margin-right: -8px;
}
@media (max-width: 1699px) {
  .banner_extra .wrap > img {
    width: 210px;
  }
}
@media (max-width: 1300px) {
  .banner_extra .wrap > img {
    width: 180px;
  }
}
@media (max-width: 991px) {
  .banner_extra .wrap > img {
    width: 152px;
  }
}
@media (max-width: 767px) {
  .banner_extra .wrap > img {
    margin-bottom: 25px;
  }
}
.banner_extra .wrap figcaption {
  color: #fff;
  padding-left: 5px;
  margin: 0;
}
@media (max-width: 1699px) {
  .banner_extra .wrap figcaption {
    padding: 0;
  }
}
.banner_extra .wrap figcaption p {
  font-size: 22px;
  line-height: 35px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 21px;
  font-family: "Inter", serif;
}
@media (max-width: 767px) {
  .banner_extra .wrap figcaption p {
    font-size: 18px;
    line-height: 30px;
    list-style: none;
  }
}
@media (max-width: 639px) {
  .banner_extra .wrap figcaption p br {
    display: none;
  }
}
.banner_extra .wrap figcaption p.plus {
  font-size: 18px;
  font-style: italic;
}
.banner_extra .wrap figcaption p.plus b {
  font-weight: 600;
  color: #c500e4;
  font-style: initial;
}
.banner_extra .wrap figcaption .cta img {
  width: 295px;
  margin: 8px 0 0 10px;
}
@media (max-width: 1300px) {
  .banner_extra .wrap figcaption .cta img {
    width: 190px;
  }
}
@media (max-width: 767px) {
  .banner_extra .wrap figcaption .cta img {
    width: 170px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 639px) {
  .banner_extra .wrap figcaption .cta img {
    width: 120px;
  }
}
.banner_extra .wrap figcaption .cta .btn {
  font-size: 15px;
  padding: 0 20px;
  line-height: 38px;
  min-width: 170px;
  border-radius: 60px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .banner_extra .wrap figcaption .cta .btn {
    font-size: 14px;
    line-height: 36px;
  }
}
@media (max-width: 479px) {
  .banner_extra .wrap figcaption .cta .btn {
    font-size: 13px;
    line-height: 34px;
    min-width: 0;
  }
}

#home_community h2,
#home_free_software h2 {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 20px;
}
@media (max-width: 991px) {
  #home_community h2,
  #home_free_software h2 {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  #home_community h2,
  #home_free_software h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
#home_community h2 span,
#home_free_software h2 span {
  color: #C500E4;
}
#home_community .wrap h3,
#home_free_software .wrap h3 {
  color: #ffffff;
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  #home_community .wrap h3,
  #home_free_software .wrap h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  #home_community .wrap h3,
  #home_free_software .wrap h3 {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  #home_community .wrap h3,
  #home_free_software .wrap h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
#home_community .wrap h3 a,
#home_free_software .wrap h3 a {
  color: #5E1DE1;
}
@media (max-width: 639px) {
  #home_community .wrap h3 br,
  #home_free_software .wrap h3 br {
    display: none;
  }
}
#home_community .wrap p,
#home_free_software .wrap p {
  color: #fff;
  font-family: "Inter", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 991px) {
  #home_community .wrap p br,
  #home_free_software .wrap p br {
    display: none;
  }
}
@media (max-width: 991px) {
  #home_community .wrap p,
  #home_free_software .wrap p {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  #home_community .wrap p,
  #home_free_software .wrap p {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  #home_community .wrap p,
  #home_free_software .wrap p {
    font-size: 14px;
  }
}
#home_community .wrap p b,
#home_free_software .wrap p b {
  color: #fff;
}
@media (max-width: 639px) {
  #home_community .wrap .btn,
  #home_free_software .wrap .btn {
    font-size: 13px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
  }
}

#home_community {
  padding: 30px 0 50px;
  background: #F5F5F5;
}
@media (max-width: 767px) {
  #home_community {
    padding: 30px 0 60px;
  }
}
#home_community .wrap {
  background: url("../img/pages/home/tools_bg.jpg") no-repeat 50% 50%/cover;
  height: 100%;
  padding: 50px 30px;
  min-height: 305px;
}
@media (max-width: 991px) {
  #home_community .wrap {
    padding: 30px 30px;
  }
}
#home_community .wrap h3 {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  font-family: Inter, serif;
  margin: 40px 0 25px;
}
@media (max-width: 991px) {
  #home_community .wrap h3 {
    left: 15px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  #home_community .wrap h3 {
    margin-bottom: 0;
  }
}
#home_community .wrap .txt {
  font-size: 27px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}
#home_community .wrap .txt b {
  color: #ff17a5;
}
@media (max-width: 991px) {
  #home_community .wrap .txt {
    left: 0;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  #home_community .wrap .txt {
    margin-bottom: 10px;
  }
}
#home_community .wrap .links_wrap {
  position: absolute;
  top: 75px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media (max-width: 991px) {
  #home_community .wrap .links_wrap {
    position: relative;
    top: initial;
    right: initial;
  }
}
#home_community .wrap .links_wrap a {
  margin: 0 15px;
}
#home_community .wrap .links_wrap a img {
  transition: all 0.2s;
  width: 115px;
}
@media (max-width: 1300px) {
  #home_community .wrap .links_wrap a img {
    width: 90px;
  }
}
@media (max-width: 991px) {
  #home_community .wrap .links_wrap a img {
    width: 120px;
  }
}
#home_community .wrap .links_wrap a:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  #home_community .wrap .links_wrap a:hover img {
    transform: initial;
  }
}
#home_community .wrap .links_wrap p.sub {
  text-align: center;
  font-size: 10px;
  color: #fff;
}
@media (max-width: 991px) {
  #home_community .wrap .links_wrap p.sub {
    margin-bottom: 0;
    min-height: 30px;
  }
}
#home_community .wrap .custom {
  position: absolute;
  top: 30px;
}
#home_community .wrap .btn {
  position: absolute;
  top: 63%;
  left: 42px;
  width: auto;
}
@media (max-width: 991px) {
  #home_community .wrap .btn {
    left: 15px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #home_community .wrap .btn {
    left: 10px;
    font-size: 12px;
  }
}
@media (max-width: 639px) {
  #home_community .wrap .btn {
    font-size: 10px;
  }
}
@media (max-width: 479px) {
  #home_community .wrap .btn {
    font-size: 8px;
  }
}
@media (max-width: 374px) {
  #home_community .wrap .btn {
    font-size: 6px;
  }
}

#home_free_software {
  padding: 50px 0 80px;
}
@media (max-width: 991px) {
  #home_free_software {
    padding: 20px 0 60px;
  }
}
@media (max-width: 767px) {
  #home_free_software {
    padding: 20px 0 0;
  }
}
#home_free_software .wrap {
  min-height: 318px;
  padding: 30px 65px 30px 475px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  background-size: cover;
  color: #fff;
}
@media (max-width: 1200px) {
  #home_free_software .wrap {
    background-position: 15% 50%;
  }
}
@media (max-width: 991px) {
  #home_free_software .wrap {
    background-position: left center;
    padding: 45px 30px;
    min-height: unset;
  }
}
@media (max-width: 767px) {
  #home_free_software .wrap {
    padding: 30px 20px;
  }
}
#home_free_software h3 {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  font-family: Inter, serif;
  margin: 40px 0 25px;
}
@media (max-width: 991px) {
  #home_free_software h3 {
    left: 15px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  #home_free_software h3 {
    margin-bottom: 0;
  }
}
#home_free_software p {
  font-size: 27px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}
#home_free_software p b {
  color: #ff17a5;
}
@media (max-width: 991px) {
  #home_free_software p {
    left: 0;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  #home_free_software p {
    margin-bottom: 10px;
  }
}

#home_refer_network {
  padding: 50px 0 80px;
  position: relative;
}
@media (max-width: 991px) {
  #home_refer_network {
    padding: 20px 0 60px;
  }
}
@media (max-width: 767px) {
  #home_refer_network {
    padding: 20px 0 0;
  }
}
#home_refer_network .wrap {
  min-height: 318px;
  padding: 30px 65px 30px 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  background-size: cover;
  color: #fff;
  position: relative;
}
@media (max-width: 1200px) {
  #home_refer_network .wrap {
    background-position: 15% 50%;
  }
}
@media (max-width: 991px) {
  #home_refer_network .wrap {
    background-position: left center;
    padding: 45px 30px;
    min-height: unset;
  }
}
@media (max-width: 767px) {
  #home_refer_network .wrap {
    padding: 30px 20px;
  }
}
#home_refer_network h3 {
  font-size: 29px;
  line-height: 38px;
  font-weight: 600;
  color: #fff;
}
#home_refer_network p {
  max-width: 583px;
  font-size: 17px;
  line-height: 28px;
  font-family: "Inter", serif;
}
#home_refer_network p b {
  font-weight: 700;
}
#home_refer_network .btn_pink,
#home_refer_network .btn_purple {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 60px;
}
@media (max-width: 767px) {
  #home_refer_network .btn_pink,
  #home_refer_network .btn_purple {
    position: relative;
    bottom: 0;
    right: 0;
    font-size: 18px;
    padding: 8px 40px;
  }
}
#home_refer_network .logo_s img {
  width: 185px;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  #home_refer_network .logo_s img {
    width: 120px;
    margin-bottom: 60px;
  }
}

.mmbrs_home_bnr_btn.down_icon_new.mid {
  margin: 0 auto;
}
.mmbrs_home_bnr_btn.down_icon_new.mid:after, .mmbrs_home_bnr_btn.down_icon_new.mid:before {
  display: none !important;
}

#community img.d-inline-block {
  max-width: 100%;
}
#community .new {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
  background: #5E1DE1;
  border-radius: 30px;
  padding: 0 22px;
  display: inline-block;
  margin: 0 0 30px;
}
@media (max-width: 639px) {
  #community .new {
    font-size: 14px;
    line-height: 28px;
  }
}

.page-template-mmbrs_home_redesign .menu-members-main-menu-container {
  display: none !important;
}

.svg_animation_1 {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: dash 60s linear alternate infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 800;
  }
}
.home_hello {
  text-align: center;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 1300px) {
  .home_hello {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .home_hello {
    padding-top: 50px;
  }
}
.home_hello .circle_3 {
  right: -6%;
  bottom: -14%;
  display: block;
  width: 236px;
  height: 186px;
  position: absolute;
}
@media (max-width: 1699px) {
  .home_hello .circle_3 {
    display: none;
  }
}
@media (max-width: 1300px) {
  .home_hello .circle_3 {
    right: -3%;
  }
}
@media (max-width: 767px) {
  .home_hello .circle_3 {
    display: none;
  }
}
.home_hello .circle_3 .ic_1 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.home_hello .circle_3 .ic_2 {
  position: absolute;
  bottom: 0;
  right: 30%;
  z-index: 1;
}
.home_hello svg {
  position: absolute;
}
.home_hello svg.circle_1 {
  top: 52px;
  right: 17%;
  width: 145px;
  height: 131px;
}
@media (max-width: 1300px) {
  .home_hello svg.circle_1 {
    transform: scale(0.8);
    top: 30px;
    right: initial;
    left: initial;
    margin: -10px 0 0 216px;
  }
}
@media (max-width: 767px) {
  .home_hello svg.circle_1 {
    display: none;
  }
}
.home_hello svg.circle_2 {
  top: 85px;
  left: -3%;
  width: 186px;
  height: 226px;
}
@media (max-width: 1699px) {
  .home_hello svg.circle_2 {
    transform: scale(0.5);
    top: 60px;
    left: 10%;
  }
}
@media (max-width: 1300px) {
  .home_hello svg.circle_2 {
    right: initial;
    left: initial;
    margin: -57px 19px 0px -400px;
  }
}
@media (max-width: 767px) {
  .home_hello svg.circle_2 {
    display: none;
  }
}
.home_hello h2 {
  font-size: 30px;
  line-height: 130%;
  font-family: "Inter";
  color: #06063c;
  font-weight: 600;
  position: relative;
  z-index: 10;
}
@media (max-width: 1699px) {
  .home_hello h2 {
    font-size: 22px;
  }
}
@media (max-width: 1300px) {
  .home_hello h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .home_hello h2 {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .home_hello h2 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.home_hello h1 {
  font-size: 50px;
  line-height: 140%;
  font-weight: 600;
  color: #0f0f3d;
  position: relative;
  z-index: 10;
}
@media (max-width: 1699px) {
  .home_hello h1 {
    font-size: 40px;
    line-height: 130%;
  }
}
@media (max-width: 1300px) {
  .home_hello h1 {
    font-size: 32px;
  }
}
@media (max-width: 639px) {
  .home_hello h1 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .home_hello h1 {
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 10px;
  }
}
@media (max-width: 639px) {
  .home_hello h1 {
    font-size: 26px;
    line-height: 115%;
  }
}
.home_hello h1 span {
  color: #5e1de1;
}

.home_blocks_menu {
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 639px) {
  .home_blocks_menu {
    overflow: hidden;
  }
}
.home_blocks_menu .btn_video_wrap {
  width: 100%;
  background: #f4f6fa;
  padding: 20px 15px;
}
.home_blocks_menu .btn_video_wrap .btn_video_support {
  margin: 0 auto;
  color: #fff;
  background: #000077;
  padding: 10px 5px;
  max-width: 255px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  align-content: center;
  text-align: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
  border: initial !important;
  outline: initial !important;
  text-transform: initial !important;
  text-decoration: initial !important;
  transition: all 0.2s;
}
.home_blocks_menu .btn_video_wrap .btn_video_support:hover {
  background: rgb(15, 18, 196);
}
.home_blocks_menu .btn_video_wrap .btn_video_support svg {
  margin-right: 10px;
}
.home_blocks_menu .line_top {
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .home_blocks_menu .line_top {
    height: auto;
    width: 70%;
  }
}
@media (max-width: 767px) {
  .home_blocks_menu .line_top {
    display: none;
  }
}
.home_blocks_menu .line_bottom {
  width: 100%;
  max-width: 432px;
  margin-left: 180px;
}
@media (max-width: 767px) {
  .home_blocks_menu .line_bottom {
    display: none;
  }
}
.home_blocks_menu .slider_menu {
  position: relative;
  padding-top: 20px;
}
.home_blocks_menu .slider_menu .slick-dots {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: initial;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-left: 0;
  padding-left: 0;
}
.home_blocks_menu .slider_menu .slick-dots li {
  list-style: none;
}
.home_blocks_menu .slider_menu .slick-dots li.slick-active button {
  background: #5E1DE1;
}
.home_blocks_menu .slider_menu .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 60px;
  border: initial;
  font-size: 0;
}
.home_blocks_menu .wrap {
  display: flex;
  justify-content: space-between;
}
.home_blocks_menu .item {
  width: 32%;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .home_blocks_menu .item {
    max-width: initial;
    width: initial;
  }
}
.home_blocks_menu .item a {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #f8f8f8;
  text-decoration: initial;
  margin-bottom: 33px;
  transition: all 0.2s;
  border-radius: 6px;
}
@media (max-width: 1699px) {
  .home_blocks_menu .item a {
    height: 160px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .home_blocks_menu .item a {
    max-width: 300px;
    margin: 0 auto 20px;
  }
}
.home_blocks_menu .item a:hover {
  background: #6335c3;
}
.home_blocks_menu .item a:hover p {
  color: #fff;
}
.home_blocks_menu .item a:hover svg path {
  fill: #fff;
}
.home_blocks_menu .item a svg {
  max-width: 50px;
  max-height: 60px;
}
.home_blocks_menu .item a svg path {
  transition: all 0.2s;
}
.home_blocks_menu .item a p {
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 130%;
  font-weight: 600;
  font-family: "Inter";
  text-align: center;
  color: #0f0f3d;
}
@media (max-width: 1699px) {
  .home_blocks_menu .item a p {
    font-size: 16px;
    line-height: 120%;
  }
}
@media (max-width: 767px) {
  .home_blocks_menu .item a p {
    font-size: 14px;
  }
}
.home_blocks_menu .item h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 160%;
  color: #000;
  text-align: center;
  font-family: "Inter";
}
@media (max-width: 1699px) {
  .home_blocks_menu .item h2 {
    font-size: 22px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1300px) {
  .home_blocks_menu .item h2 {
    font-size: 18px;
  }
}
.home_blocks_menu .item h2 span {
  color: #5e1de1;
}
.home_blocks_menu .item > p {
  color: #000;
  font-family: "Inter";
  font-size: 18px;
  text-align: center;
  max-width: 275px;
  margin: 0 auto;
}
@media (max-width: 1699px) {
  .home_blocks_menu .item > p {
    font-size: 15px;
  }
}
@media (max-width: 1300px) {
  .home_blocks_menu .item > p {
    font-size: 14px;
  }
}

.home_sessions {
  background: url(../img/pages/home/sessions_bg.jpg) no-repeat 50% 50%/cover;
  max-width: 1200px;
  margin: 0 auto 50px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 80px;
  padding-bottom: 70px;
  position: relative;
  z-index: 10;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .home_sessions {
    border-radius: 0;
  }
}
.home_sessions h2 {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 30px;
  line-height: 130%;
  font-weight: 600;
  margin-bottom: 50px;
}
.home_sessions .home_sessions_slider_wr {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
.home_sessions .home_sessions_slider_wr .item {
  max-width: 380px;
  width: calc(100% - 30px);
  height: calc(100vw - 30px);
  margin: 0 auto;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
}
@media (min-width: 400px) {
  .home_sessions .home_sessions_slider_wr .item {
    height: 380px;
  }
}
.home_sessions .home_sessions_slider_wr .item .date {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 25;
  width: 55px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.home_sessions .home_sessions_slider_wr .item .date span:nth-child(1) {
  display: block;
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: #5E1DE1;
  font-size: 14px;
  font-weight: 600;
}
.home_sessions .home_sessions_slider_wr .item .date span:nth-child(2) {
  display: block;
  width: 100%;
  border-radius: 0 0 6px 6px;
  background: rgba(185, 136, 255, 0.3);
  font-size: 28px;
  font-weight: 600;
}
.home_sessions .home_sessions_slider_wr .item .ttl {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 24px;
  font-family: "Inter";
  font-weight: 600;
  line-height: 120%;
}
.home_sessions .home_sessions_slider_wr .item .label {
  max-width: 377px;
  width: 100%;
  background: #5E1DE1;
  border-radius: 0px 0px 22.944px 0px;
  padding: 15px 20px;
  margin-bottom: 30px;
}
.home_sessions .home_sessions_slider_wr .item .label span {
  display: block;
}
.home_sessions .home_sessions_slider_wr .item .label span:nth-child(1) {
  font-size: 20px;
  font-weight: 600;
  font-family: "Inter";
}
.home_sessions .home_sessions_slider_wr .item .label span:nth-child(2) {
  font-size: 11px;
  font-family: "Inter";
}
.home_sessions .home_sessions_slider_wr .slick-dots {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-left: 0;
  padding-left: 0;
}
@media (min-width: 768px) {
  .home_sessions .home_sessions_slider_wr .slick-dots {
    bottom: -30px;
  }
}
.home_sessions .home_sessions_slider_wr .slick-dots li {
  list-style: none;
}
.home_sessions .home_sessions_slider_wr .slick-dots li.slick-active button {
  background: #5E1DE1;
}
.home_sessions .home_sessions_slider_wr .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 60px;
  border: initial;
  font-size: 0;
}

button.slick-arrow {
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  line-height: 1;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: #fff;
  font-size: 0;
  z-index: 12;
  border: none;
  cursor: pointer;
  transition: all ease 0.3s;
  background-color: #6335c3;
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

@media (min-width: 992px) {
  .slick-next {
    right: -60px;
  }
  .slick-prev {
    left: -60px;
  }
}
.slick-arrow:before {
  display: block;
  font-size: 20px;
  font-family: fontello, serif;
  color: #fff;
}

.slick-next:before {
  content: "\e809";
}

.slick-prev:before {
  content: "\e80e";
}

button.slick-arrow:hover {
  opacity: 0.8;
  border: none;
}

@media (min-width: 768px) {
  button.slick-arrow {
    width: 40px;
    height: 40px;
  }
}
#notifications {
  padding: 85px 15px 0;
  max-width: 970px;
  margin: 0 auto;
}
#notifications .card {
  transition: all 0.3s linear;
  border: 1px solid #ddd;
  border-bottom: none;
  box-shadow: none;
  background: #fff;
  margin: 0;
}
@media (max-width: 479px) {
  #notifications .card {
    border: none;
    border-bottom: 1px solid #ddd;
  }
}
#notifications .card:last-child {
  border-bottom: 1px solid #ddd;
}
#notifications .card.new .card-header .label_new {
  opacity: 1;
}
#notifications .card.old {
  background: #fff;
}
#notifications .card.old .card-header {
  background: #fff;
}
#notifications .card.old .card-header:hover {
  background: #fff;
}
#notifications .card .card-header {
  box-shadow: none;
  transition: all 0.3s linear;
  background: #f5f5f5;
}
#notifications .card .card-header:hover {
  background: rgba(94, 29, 225, 0.1);
  cursor: pointer;
}
#notifications .card .card-header:hover a {
  color: #5E1DE1;
}
#notifications .card .card-header:hover:before {
  font-size: 20px;
  opacity: 1;
  left: 12px;
}
#notifications .card .card-header:hover .abbr {
  background: #6e33e5;
  transform: scale(1.04);
}
#notifications .card .card-header:before {
  transition: all 0.3s linear;
  font-family: "fontello", serif;
  position: absolute;
  font-style: normal;
  line-height: 72px;
  content: "\e766";
  color: #5E1DE1;
  font-size: 2px;
  display: table;
  margin: auto;
  opacity: 0;
  bottom: 0;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  #notifications .card .card-header:before {
    display: none;
  }
}
#notifications .card .card-header h5 {
  font-size: 15px;
  line-height: 1.45em;
  font-weight: 600;
  color: #000;
  padding: 18px 160px 15px 32px;
  transition: all 0.3s linear;
}
@media (max-width: 991px) {
  #notifications .card .card-header h5 {
    padding: 13px 55px 10px 15px;
  }
}
@media (max-width: 767px) {
  #notifications .card .card-header h5 {
    padding: 13px 10px 10px 15px;
  }
}
#notifications .card .card-header .label_new {
  display: block;
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s linear;
  background: #ff0000;
  letter-spacing: 1px;
  margin: 0 10px 0 0;
  padding: 0;
  opacity: 0;
}
@media (max-width: 767px) {
  #notifications .card .card-header .label_new {
    position: absolute;
    font-size: 7px;
    line-height: 11px;
    top: 10px;
    right: 0px;
    padding: 0 3px;
  }
}
#notifications .card .card-header a {
  font-size: 24px;
  font-weight: 100;
  color: #a1a1a1;
  background: transparent;
  border: none;
  right: 11px;
  top: 20px;
}
#notifications .card .card-header a .icon {
  color: #828282;
  font-size: 16px;
}
#notifications .card .card-header a:hover .icon {
  background: #6335c3;
  color: #fff;
}
#notifications .card .card-header .side {
  margin: 0;
}
#notifications .card .card-header .side.left {
  width: 250px;
}
@media (max-width: 991px) {
  #notifications .card .card-header .side.left {
    width: 230px;
  }
}
@media (max-width: 767px) {
  #notifications .card .card-header .side.left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #notifications .card .card-header .side.right {
    margin: 10px 0 0;
  }
}
#notifications .card .card-header .abbr {
  font-size: 13px;
  line-height: 36px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s linear;
  background: #5E1DE1;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 13px 0 0;
  text-align: center;
  height: 36px;
  width: 36px;
}
#notifications .card .card-header .abbr img {
  max-width: 100%;
  display: block;
}
#notifications .card .card-header .media img {
  margin: 0 13px 0 0;
}
#notifications .card .card-header .media-body {
  margin: 0;
}
#notifications .card .card-header .media-body p.name {
  font-size: 14px;
  line-height: 12px;
  font-weight: 600;
  color: #000;
  transition: all 0.3s linear;
  margin: 5px 0 0;
}
#notifications .card .card-header .media-body .date {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}
#notifications .card .collapse.show {
  background: #fff;
}
#notifications .card .card-body {
  padding: 0 180px 65px 282px;
}
@media (max-width: 1699px) {
  #notifications .card .card-body {
    padding: 10px 55px 45px 80px;
  }
}
@media (max-width: 991px) {
  #notifications .card .card-body {
    padding: 10px 55px 45px 65px;
  }
}
@media (max-width: 767px) {
  #notifications .card .card-body {
    padding: 10px 55px 45px 15px;
  }
}
@media (max-width: 479px) {
  #notifications .card .card-body {
    padding: 15px 0px 40px;
  }
}
#notifications .card .card-body h1 {
  font-size: 20px;
  line-height: 1.45em;
  font-weight: 700;
  color: #555;
  margin: 0 0 22px;
}
#notifications .card .card-body h2 {
  font-size: 18px;
  line-height: 1.45em;
  font-weight: 700;
  color: #555;
  margin: 0 0 20px;
}
#notifications .card .card-body h3 {
  font-size: 16px;
  line-height: 1.45em;
  font-weight: 700;
  color: #555;
  margin: 0 0 18px;
}
#notifications .card .card-body h4 {
  font-size: 14px;
  line-height: 1.45em;
  font-weight: 600;
  color: #555;
  margin: 0 0 16px;
}
#notifications .card .card-body h5 {
  font-size: 12px;
  line-height: 1.45em;
  font-weight: 400;
  color: #555;
  margin: 0 0 14px;
}
#notifications .card .card-body h6 {
  font-size: 10px;
  line-height: 1.45em;
  font-weight: 400;
  color: #555;
  margin: 0 0 12px;
}
#notifications .card .card-body p {
  font-size: 14px;
  line-height: 1.65em;
  font-weight: 400;
  color: #555;
  margin: 0 0 16px;
}
#notifications .card .card-body li {
  font-size: 14px;
  line-height: 1.65em;
  font-weight: 400;
  color: #555;
  margin: 0;
}
#notifications .card .card-body strong,
#notifications .card .card-body b,
#notifications .card .card-body a {
  font-weight: 700;
  color: #5E1DE1;
}
#notifications .card .card-body a {
  text-decoration: underline;
}
#notifications .card .card-body .btn {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 12px 34px;
  margin: 28px 0 0;
  color: #fff;
}
@media (max-width: 479px) {
  #notifications .card .card-body .btn {
    padding: 12px 15px;
    font-size: 11px;
    margin: 0;
    letter-spacing: 0;
  }
}
#notifications .pagination {
  margin: 60px auto;
  display: table;
}
@media (max-width: 479px) {
  #notifications .pagination {
    margin: 40px auto;
  }
}
#notifications .pagination .page-numbers {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.3s linear;
  text-decoration: none;
  background: #5E1DE1;
  display: inline-block;
  border-radius: 6px;
  text-align: center;
  margin: 0 0 0 1px;
  line-height: 44px;
  height: 44px;
  width: 44px;
}
#notifications .pagination .page-numbers:hover {
  background: transparent;
  border-color: #5E1DE1;
  color: #5E1DE1;
}
#notifications .pagination .page-numbers.current, #notifications .pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #5E1DE1;
}
@media (max-width: 639px) {
  #notifications {
    padding: 35px 15px 0;
  }
}

.bnr_presenters {
  position: relative;
}

#prsntrs {
  padding: 30px 0 100px;
}
@media (max-width: 1699px) {
  #prsntrs {
    padding: 30px 0 80px;
  }
}
@media (max-width: 991px) {
  #prsntrs {
    padding: 30px 0 80px;
  }
}
@media (max-width: 767px) {
  #prsntrs {
    padding: 30px 0 70px;
  }
}
@media (max-width: 639px) {
  #prsntrs {
    padding: 30px 0 50px;
  }
}
@media (max-width: 479px) {
  #prsntrs {
    padding: 20px 0 40px;
  }
}
@media (max-width: 400px) {
  #prsntrs .list-box {
    max-width: 100%;
    flex: 100%;
  }
  #prsntrs .list-box .single {
    height: 160px;
  }
  #prsntrs .list-box .single ul li a {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #prsntrs .tab-pane > .row,
  #prsntrs .container > .row {
    margin: 0 -6px;
  }
}
@media (max-width: 767px) {
  #prsntrs .tab-pane > .row > div,
  #prsntrs .container > .row > div {
    padding: 0 6px;
  }
}
#prsntrs .single {
  height: 190px;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  display: block;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  #prsntrs .single {
    margin: 0 0 12px;
    height: 160px;
  }
}
@media (max-width: 639px) {
  #prsntrs .single {
    height: 130px;
  }
}
@media (max-width: 479px) {
  #prsntrs .single {
    height: 110px;
  }
}
#prsntrs .single img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
#prsntrs .single .svg-menu {
  position: absolute;
  color: #fff;
  z-index: 1;
  left: 17px;
  top: 17px;
  width: 26px;
  height: auto;
}
@media (max-width: 767px) {
  #prsntrs .single .svg-menu {
    width: 17px;
    left: 8px;
    top: 8px;
  }
}
#prsntrs .single ul {
  background: #5E1DE1;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  transform: translateY(-100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 2;
}
#prsntrs .single ul.scrolled {
  flex-direction: row;
  justify-content: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  overflow: auto;
}
#prsntrs .single ul.scrolled li {
  min-height: 35px;
  flex: 0 0 100%;
}
#prsntrs .single ul li {
  flex: 1 0 0;
  position: relative;
  border-bottom: 1px solid #47209b;
  padding: 0;
}
#prsntrs .single ul li:last-child {
  border-bottom: none;
}
#prsntrs .single ul li a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 15px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: #5E1DE1;
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
}
@media (max-width: 639px) {
  #prsntrs .single ul li a {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  #prsntrs .single ul li a {
    font-size: 11px;
  }
}
#prsntrs .single ul li a:hover {
  background: #6e33e5;
}
#prsntrs .single h2 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 17px 17px;
  overflow: hidden;
  text-align: left;
  margin: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  #prsntrs .single h2 {
    font-size: 14px;
    padding: 30px 8px 8px;
  }
}
@media (max-width: 639px) {
  #prsntrs .single h2 {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  #prsntrs .single h2 {
    font-size: 11px;
  }
}
#prsntrs .single:hover ul {
  opacity: 1;
  z-index: 3;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

section.prsnt-speakers {
  padding-bottom: 100px;
  background: #f5f5f5;
}
section.prsnt-speakers .find-wrap {
  position: relative;
  top: -50px;
  width: 100%;
  background: #fff;
  padding: 20px 15px;
  border-radius: 6px;
  box-shadow: 3px 4px 30px 0 rgba(0, 0, 0, 0.2);
  max-width: 1070px;
  display: block;
  margin: 0 auto -20px;
}
section.prsnt-speakers .find-wrap .select-wrap {
  display: block;
  max-width: 350px;
  margin: 0 auto;
}
section.prsnt-speakers .find-wrap .select-wrap .bootstrap-select {
  margin-top: 0;
}
section.prsnt-speakers .find-wrap .select-wrap .dropdown-toggle {
  border-radius: 50px;
  font-size: 15px;
  color: #007545;
  background: #f5f5f5;
  padding: 14px 20px;
}
section.prsnt-speakers .find-wrap .bootstrap-select.show .dropdown-menu.open {
  margin-top: 5px;
  border: 1px solid #5E1DE1;
}

.page-template-mmbrs_rec_pre_summit .ifs_reg > label,
.page-template-mmbrs_rec_full_summit .ifs_reg > label {
  display: none;
}
.page-template-mmbrs_rec_pre_summit #contact,
.page-template-mmbrs_rec_full_summit #contact {
  margin-top: 230px;
}

#banner.pre_smmt {
  padding: 0px 0 30px;
  background: transparent;
  line-height: initial;
}
@media (max-width: 767px) {
  #banner.pre_smmt {
    padding: 0;
  }
}
@media (max-width: 767px) {
  #banner.pre_smmt .container {
    max-width: 100%;
  }
}
#banner.pre_smmt.summ {
  background-color: #0f0f3d;
  padding: 155px 0 175px;
}
@media (max-width: 991px) {
  #banner.pre_smmt.summ {
    padding: 90px 0 175px;
  }
}
@media (max-width: 639px) {
  #banner.pre_smmt.summ {
    padding: 70px 50px 185px;
  }
}
#banner.pre_smmt.summ h1 {
  font-size: 46px;
  font-weight: 700;
}
@media (max-width: 1699px) {
  #banner.pre_smmt.summ h1 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  #banner.pre_smmt.summ h1 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  #banner.pre_smmt.summ h1 {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  #banner.pre_smmt.summ h1 {
    font-size: 30px;
    margin: 0;
  }
}
#banner.pre_smmt .bnr_top {
  padding: 55px 0;
  border-radius: 6px;
}
@media (max-width: 767px) {
  #banner.pre_smmt .bnr_top {
    padding: 40px 0 30px;
    border-radius: 0;
  }
}
@media (max-width: 639px) {
  #banner.pre_smmt .bnr_top {
    padding: 40px 15px 20px;
  }
}
#banner.pre_smmt .bnr_top.bnr_ps_25 {
  position: relative;
  padding: 30px 50px 50px;
}
#banner.pre_smmt .bnr_top.bnr_ps_25 .cover_image img {
  border-radius: 8px;
}
#banner.pre_smmt .bnr_top.bnr_ps_25 h1 {
  font-weight: 600;
  line-height: 140%;
  color: #fff;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #banner.pre_smmt .bnr_top.bnr_ps_25 h1 {
    font-size: 22px;
  }
}
#banner.pre_smmt .bnr_top.bnr_ps_25 h1 span {
  display: block;
  color: #ff8fb8;
}
#banner.pre_smmt .bnr_top.bnr_ps_25 .bootstrap-select .dropdown-toggle {
  border: initial;
}
#banner.pre_smmt .bnr_top.bnr_ps_25 .bootstrap-select .dropdown-toggle:before {
  background: url(../img/pages/recording/timezone_pink.svg) no-repeat 50% 50%/cover;
}
#banner.pre_smmt .bnr_top.bnr_fs_25 {
  position: relative;
  padding: 50px 50px;
}
#banner.pre_smmt .bnr_top.bnr_fs_25 .cover_image img {
  border-radius: 8px;
}
#banner.pre_smmt .bnr_top.bnr_fs_25 h1 {
  font-weight: 600;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #banner.pre_smmt .bnr_top.bnr_fs_25 h1 {
    font-size: 22px;
  }
}
#banner.pre_smmt .bnr_top.bnr_fs_25 h1 span {
  display: block;
  color: #ff8fb8;
}
#banner.pre_smmt .bnr_top.bnr_fs_25 .bootstrap-select .dropdown-toggle {
  border: initial;
}
#banner.pre_smmt .bnr_top label {
  display: table;
  margin-bottom: 0;
}
#banner.pre_smmt .bnr_top h1 {
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 140%;
  color: #0f0f3d;
  text-align: left;
}
#banner.pre_smmt .bnr_top h1 span {
  color: #5e1de1;
}
#banner.pre_smmt .bnr_top .field_ttl {
  display: none;
}
#banner.pre_smmt .bnr_top .dropdown-toggle {
  padding: 10px 30px 10px 15px;
  border-radius: 6px;
}
@media (max-width: 639px) {
  #banner.pre_smmt .bnr_top .dropdown-toggle {
    padding: 6px 30px 6px 15px;
  }
}
@media (max-width: 479px) {
  #banner.pre_smmt .bnr_top .dropdown-toggle {
    width: 100%;
  }
}
#banner.pre_smmt .bnr_top .dropdown-toggle:after {
  top: 6px;
  font-size: 20px;
}
#banner.pre_smmt .bnr_top .bootstrap-select.btn-group .dropdown-menu.inner {
  height: 250px !important;
}
#banner.pre_smmt .bnr_top .bootstrap-select.show .dropdown-toggle {
  border-radius: 6px 6px 0 0;
}
#banner.pre_smmt .bnr_top .btn-group {
  margin: 0 auto;
  width: initial;
}
@media (max-width: 767px) {
  #banner.pre_smmt .bnr_top .btn-group {
    max-width: 350px;
  }
}
@media (max-width: 479px) {
  #banner.pre_smmt .bnr_top .btn-group {
    max-width: 290px;
  }
}
#banner.pre_smmt .bnr_top .btn-group button {
  width: 400px;
}
@media (max-width: 639px) {
  #banner.pre_smmt .bnr_top .btn-group button {
    width: 100%;
    max-width: 100%;
  }
}
#banner.pre_smmt .bnr_top .btn-group .filter-option {
  max-width: 85% !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#banner.pre_smmt .bnr_top .btn-group .dropdown-menu {
  width: 100% !important;
}
#banner.pre_smmt .bnr_top .bootstrap-select .dropdown-toggle {
  position: relative;
  padding: 10px 40px 10px 65px;
}
#banner.pre_smmt .bnr_top .bootstrap-select .dropdown-toggle:before {
  position: absolute;
  display: block;
  width: 67px;
  height: 100%;
  background: url(../img/pages/reg/timezone.svg) no-repeat 50% 50%/cover;
  content: "";
  top: 0px;
  left: -4px;
  color: #fff;
}
#banner.pre_smmt .bnr_top .bootstrap-select .dropdown-menu {
  top: 1px;
  border-radius: 0 0 6px 6px;
}
#banner.pre_smmt .bnr_top .bootstrap-select.show .btn.dropdown-toggle {
  border-color: #5E1DE1;
  width: 400px;
  transition: all 0.4s;
}
#banner.pre_smmt .bnr_top .bootstrap-select button.btn.dropdown-toggle:hover,
#banner.pre_smmt .bnr_top .bootstrap-select button.btn.dropdown-toggle:focus {
  border-color: #5E1DE1;
}
#banner.pre_smmt .bnr_top .bootstrap-select.show .dropdown-menu.open {
  border-color: #5E1DE1;
  width: 400px;
  transition: all 0.4s;
}
@media (max-width: 479px) {
  #banner.pre_smmt .bnr_top .bootstrap-select.show .dropdown-menu.open {
    max-width: calc(100% - 30px);
  }
}
#banner.pre_smmt .pick_wrap {
  background: #fff;
  box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.03);
}
#banner.pre_smmt .txt_wrap {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 0 30px;
}

.wrap_tags {
  padding: 0 0 30px 0px;
  display: flex;
  justify-content: center;
  margin: 15px -15px 50px;
}
@media (max-width: 991px) {
  .wrap_tags {
    margin: 15px -6px 20px;
  }
}
@media (max-width: 767px) {
  .wrap_tags {
    margin: 15px -6px 20px;
    padding: 15px 15px 0 15px;
  }
}
@media (max-width: 479px) {
  .wrap_tags {
    margin-left: 0;
    margin-right: 0;
  }
}
.wrap_tags > a {
  margin: 0 15px;
  max-width: 278px;
  width: 100%;
  height: 50px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s linear;
  padding: 5px 0px;
  border: 1px solid #eef1f9;
  background: #f5f6fa;
  color: #0f0f3d;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .wrap_tags > a {
    height: 44px;
    font-size: 12px;
    padding: 4px 0px;
    margin: 0 5px;
  }
}
.wrap_tags > a.exist {
  display: inline-block;
}
.wrap_tags > a.active {
  color: #fff;
  background: #5E1DE1;
  border: 1px solid #5E1DE1;
}
.wrap_tags > a:hover {
  color: #f2f2f2;
  background: #5E1DE1;
  opacity: 0.7;
}
.wrap_tags .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  text-align: center;
}
.wrap_tags .bootstrap-select.show .dropdown-menu.open {
  min-width: 279px;
}
.wrap_tags .bootstrap-select {
  margin: 0 15px !important;
  max-width: 278px !important;
  width: 100% !important;
  font-size: 14px;
}
@media (max-width: 767px) {
  .wrap_tags .bootstrap-select {
    margin: 0 5px !important;
  }
}
.wrap_tags .bootstrap-select > button {
  font-size: 15px;
  line-height: 18px;
  height: 50px;
  padding: 5px 15px;
  border: 1px solid #eef1f9;
  background: #f5f6fa;
  font-weight: 600 !important;
  color: #0f0f3d;
  border-radius: 6px !important;
  text-align: center;
  padding-right: 30px;
}
.wrap_tags .bootstrap-select > button > span.filter-option {
  text-overflow: ellipsis;
  white-space: nowrap !important;
  overflow: hidden;
  display: inline !important;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .wrap_tags .bootstrap-select > button {
    height: 44px;
  }
}
.wrap_tags .bootstrap-select .dropdown-menu {
  width: 100%;
  top: -2px;
}
@media (max-width: 767px) {
  .wrap_tags .bootstrap-select .btn.dropdown-toggle:after {
    top: 20%;
  }
}

body .step_1,
body .step_2,
body .step_3 {
  color: #0f0f3d;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 23.4px */
}
body .step_1 b,
body .step_2 b,
body .step_3 b {
  display: block;
  font-weight: 400;
  color: #5e1de1;
  text-transform: uppercase;
}

.step_1 {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .step_1 {
    padding-left: 15px;
  }
}

@media (max-width: 991px) {
  #sm_sessions {
    padding-left: 0;
    padding-right: 0;
  }
}
#sm_sessions .ses_wrap .slick-disabled {
  display: none !important;
}
#sm_sessions .step {
  font-size: 20px;
  color: #7032c8;
  text-align: center;
  font-weight: 500;
  margin-top: 52px;
  margin-bottom: 16px;
}
#sm_sessions .step b {
  font-size: 26px;
  font-weight: 700;
  color: #c500e4;
}
#sm_sessions .no_sessions_wrap {
  display: none;
  margin: 50px auto 0;
  max-width: 480px;
  text-align: center;
}
@media (max-width: 991px) {
  #sm_sessions .no_sessions_wrap {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  #sm_sessions .no_sessions_wrap {
    max-width: 380px;
  }
}
#sm_sessions .no_sessions_wrap h4 {
  font-size: 24px;
}
@media (max-width: 991px) {
  #sm_sessions .no_sessions_wrap h4 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #sm_sessions .no_sessions_wrap h4 {
    font-size: 20px;
  }
}
#sm_sessions .no_sessions_wrap .btn.btn_gradient_purple {
  font-size: 16px;
  padding: 10px 60px;
  width: initial;
}
@media (max-width: 767px) {
  #sm_sessions .no_sessions_wrap .btn.btn_gradient_purple {
    font-size: 14px;
    padding: 8px 40px;
  }
}
#sm_sessions .no-users {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
  color: rgb(22, 22, 22);
}
#sm_sessions .no-users h2 {
  font-size: 34px;
}
@media (max-width: 767px) {
  #sm_sessions .no-users h2 {
    font-size: 28px;
  }
}
#sm_sessions .no-users p {
  font-size: 20px;
}
@media (max-width: 767px) {
  #sm_sessions .no-users p {
    font-size: 18px;
  }
}

.ses_wrap {
  position: relative;
  user-select: text;
  margin-bottom: 50px;
  border: none;
}
.ses_wrap.ps-25 .sssn {
  background: #f5f6fa;
  border: initial;
}
.ses_wrap.ps-25 .sssn.premium {
  background: #fff0f5;
}
.ses_wrap.ps-25 .sssn.premium .video_body:before {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 40px;
  content: "";
  background: url(../img/pages/recording/prem_icon.png) no-repeat 50% 50%/cover;
}
.ses_wrap.ps-25 .sssn.premium .media-body .wrap_date .wrap_date_ttl:before {
  content: "Live MEMBER SESSION ";
  color: #fff;
  border-radius: 2px;
  padding: 1px 6px;
  text-transform: uppercase;
  display: table;
  background: #b70074;
}
.ses_wrap.ps-25 .sssn.premium .media-body .wrap_date .wrap_date_ttl span.live {
  display: none;
}
.ses_wrap.ps-25 .sssn.premium .btns_wrap .check_wrap label .btn,
.ses_wrap.ps-25 .sssn.premium .btns_wrap .btn {
  background: #b70074 !important;
  color: #fff !important;
}
.ses_wrap.ps-25 .sssn.premium .btns_wrap .check_wrap label .btn:hover,
.ses_wrap.ps-25 .sssn.premium .btns_wrap .btn:hover {
  background: #d30788 !important;
}
.ses_wrap.ps-25 .sssn.premium .btns_wrap .check_wrap label .btn .icon-check:before,
.ses_wrap.ps-25 .sssn.premium .btns_wrap .btn .icon-check:before {
  color: #fff;
}
.ses_wrap.ps-25 .sssn.premium .btns_wrap .get_access:after {
  background: #d30788;
}
.ses_wrap.ps-25 .sssn.premium .btns_wrap .get_access:before {
  border-color: #d30788 transparent transparent transparent;
}
.ses_wrap.ps-25 .media-body .wrap_date .wrap_date_ttl span.live {
  background: #fb5290;
}
.ses_wrap.ps-25 .media-body .date_time {
  font-size: 0;
  margin-top: -3px;
}
.ses_wrap.ps-25 .media-body .date_time .sssn_duration {
  font-size: 13px;
  font-weight: 600;
}
.ses_wrap.ps-25 .media-body .date_btn_row {
  margin-bottom: -4px;
}
.ses_wrap.ps-25 .media-body .names_wrap {
  font-size: 0;
}
.ses_wrap.ps-25 .media-body .names_wrap a {
  font-size: 16px;
  color: #0f0f3d;
  font-family: "Inter";
}
.ses_wrap .sssn.big {
  outline: initial;
  background: #f5f6fa;
}
@media (max-width: 767px) {
  .ses_wrap .sssn.big .media {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .ses_wrap .sssn.big .media-body {
    align-items: flex-start;
    align-content: flex-start;
  }
}
@media (max-width: 767px) {
  .ses_wrap .sssn.big .media-body {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .ses_wrap .sssn.big .media-body.wrap_right {
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: initial;
  }
}
@media (max-width: 991px) {
  .ses_wrap .sssn.big .media-body.wrap_right .wrap_date {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .ses_wrap .sssn.big .media-body.wrap_right .btns_wrap {
    width: 50%;
    margin-top: 0;
    justify-content: flex-end;
  }
}
@media (max-width: 639px) {
  .ses_wrap .sssn.big .media-body.wrap_right .btns_wrap {
    margin-top: 5px;
  }
}
.ses_wrap .sssn.big .video {
  height: 280px;
}
@media (max-width: 991px) {
  .ses_wrap .sssn.big .video {
    height: 245px;
  }
}
@media (max-width: 767px) {
  .ses_wrap .sssn.big .video {
    width: 120px;
    height: 200px;
  }
}
@media (max-width: 639px) {
  .ses_wrap .sssn.big .video {
    width: 120px;
    height: 140px;
  }
}
.ses_wrap .wrap_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ses_wrap .wrap_right > div:nth-child(3) {
  margin-bottom: 0;
}
.ses_wrap .wrap_right .date_btn_row {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 639px) {
  .ses_wrap .wrap_right .date_btn_row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.ses_wrap .wrap_right .date_btn_row.party .addeventatc,
.ses_wrap .wrap_right .date_btn_row.party .btn.btn_purple {
  background: #a60ae9 !important;
}
.ses_wrap .wrap_right .date_btn_row.party .addeventatc:hover,
.ses_wrap .wrap_right .date_btn_row.party .btn.btn_purple:hover {
  background: #b00ef5 !important;
}
.ses_wrap .wrap_right .date_btn_row.im .addeventatc,
.ses_wrap .wrap_right .date_btn_row.im .btn.btn_purple {
  background: #f04282 !important;
}
.ses_wrap .wrap_right .date_btn_row.im .addeventatc:hover,
.ses_wrap .wrap_right .date_btn_row.im .btn.btn_purple:hover {
  background: #fa4a8b !important;
}
.ses_wrap .wrap_right .date_btn_row.im .addeventatc picture,
.ses_wrap .wrap_right .date_btn_row.im .btn.btn_purple picture {
  top: 10px;
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../img/icons/v_im.svg) no-repeat 50% 50%/cover;
}
@media (max-width: 767px) {
  .ses_wrap .wrap_right .date_btn_row.im .addeventatc picture,
  .ses_wrap .wrap_right .date_btn_row.im .btn.btn_purple picture {
    width: 20px;
    height: 19px;
    top: 4px;
  }
}
.ses_wrap .wrap_right .date_btn_row.im .addeventatc picture img,
.ses_wrap .wrap_right .date_btn_row.im .btn.btn_purple picture img {
  display: none;
}
@media (max-width: 992px) {
  .ses_wrap .media {
    min-height: 240px;
    padding-left: 170px;
    flex-wrap: wrap;
    align-content: center;
  }
  .ses_wrap .media .video_body {
    position: absolute;
    left: 0;
  }
  .ses_wrap .media .wrap_left,
  .ses_wrap .media .wrap_right {
    min-width: 100%;
    width: 100%;
    min-height: initial;
    text-align: left;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .ses_wrap .media {
    padding-left: 125px;
    min-height: 200px;
  }
}
@media (max-width: 370px) {
  .ses_wrap .media {
    padding-left: 100px;
  }
}
.ses_wrap .sssn_time_top {
  display: table;
  margin: 30px auto 15px;
  color: #5e1de1;
  text-align: center;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #f5f6fa;
  border-radius: 120px;
  padding: 2px 10px;
  min-width: 215px;
  min-height: 21px;
}
.ses_wrap .sssn {
  position: relative;
  padding: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.ses_wrap .sssn:nth-last-child(n+2) {
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .ses_wrap .sssn {
    padding: 15px;
    margin-bottom: 0px !important;
    border: initial;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
  }
}
.ses_wrap .sssn.loading .addeventatc, .ses_wrap .sq25_success .head .slider_videos_reviews .sssn.video.video_buffer .addeventatc, .sq25_success .head .slider_videos_reviews .ses_wrap .sssn.video.video_buffer .addeventatc {
  display: none;
}
.ses_wrap .sssn.loading .btns_wrap, .ses_wrap .sq25_success .head .slider_videos_reviews .sssn.video.video_buffer .btns_wrap, .sq25_success .head .slider_videos_reviews .ses_wrap .sssn.video.video_buffer .btns_wrap {
  pointer-events: none;
}
.ses_wrap .sssn.loading .btns_wrap a, .ses_wrap .sq25_success .head .slider_videos_reviews .sssn.video.video_buffer .btns_wrap a, .sq25_success .head .slider_videos_reviews .ses_wrap .sssn.video.video_buffer .btns_wrap a {
  background: #ececec;
  color: #5E1DE1;
  border: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}
.ses_wrap .sssn.procoach {
  background: #ddeee0;
}
.ses_wrap .sssn.procoach .ssn_ttl:after {
  font-size: 14px;
  color: #5E1DE1;
  display: block;
  content: "Pro Coach+ Session";
}
.ses_wrap .sssn.procoach .media-body {
  padding-right: 65px;
}
@media (max-width: 991px) {
  .ses_wrap .sssn.procoach .media-body {
    padding-right: 15px;
  }
}
.ses_wrap .sssn.procoach .btns_wrap {
  position: relative;
}
.ses_wrap .sssn.procoach .btns_wrap:before {
  position: absolute;
  top: calc(50% - 31px);
  left: -62px;
  display: block;
  content: "";
  width: 62px;
  height: 62px;
}
@media (max-width: 991px) {
  .ses_wrap .sssn.procoach .btns_wrap:before {
    display: none;
  }
}
.ses_wrap .sssn.rescheduled .btns_wrap, .ses_wrap .sssn.canceled .btns_wrap {
  pointer-events: none;
  cursor: not-allowed;
  position: relative;
}
.ses_wrap .sssn.rescheduled .btns_wrap *, .ses_wrap .sssn.canceled .btns_wrap * {
  display: none;
}
.ses_wrap .sssn.rescheduled .btns_wrap:before, .ses_wrap .sssn.canceled .btns_wrap:before {
  width: 220px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 6px;
  top: -16px;
  right: 0;
  text-align: center;
  font-size: 15px;
  color: #fff;
  content: "";
  background: #fc5454;
  font-weight: 500;
}
@media (max-width: 991px) {
  .ses_wrap .sssn.rescheduled .btns_wrap:before, .ses_wrap .sssn.canceled .btns_wrap:before {
    position: relative;
    margin: 0 auto;
    top: 0;
  }
}
.ses_wrap .sssn.full .btns_wrap .check_wrap label {
  position: relative;
  pointer-events: none;
  background: #fc5454;
  height: 40px;
  line-height: 40px;
}
.ses_wrap .sssn.full .btns_wrap .check_wrap label .non {
  font-size: 0;
}
.ses_wrap .sssn.full .btns_wrap .check_wrap label:before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "Full" !important;
  font-size: 15px;
  color: #fff;
}
.ses_wrap .sssn.live {
  position: relative;
}
.ses_wrap .sssn.live:before {
  position: absolute;
  top: 13px;
  right: 60px;
  content: "";
  display: inline-block;
  margin: 0 auto;
  border-radius: 50%;
  background: red;
  width: 12px;
  height: 12px;
  animation: live 2s infinite;
}
@media (max-width: 767px) {
  .ses_wrap .sssn.live:before {
    display: none;
  }
}
.ses_wrap .sssn.live:after {
  content: "LIVE";
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 16px;
  font-weight: 900;
  color: red;
}
@media (max-width: 767px) {
  .ses_wrap .sssn.live:after {
    display: none;
  }
}
@keyframes live {
  0%, 100% {
    background: none;
  }
  50% {
    background: red;
  }
}
@media (min-width: 768px) {
  .ses_wrap .sssn.rescheduled:hover .date_time {
    position: relative;
  }
  .ses_wrap .sssn.rescheduled:hover .date_time:before {
    position: absolute;
    bottom: -5px;
    background: #f5f5f5;
    display: block;
    max-width: 70%;
    color: red;
    font-style: italic;
    margin: -5px 0 -1px;
    font-size: 13px;
    line-height: 17px;
    content: "A new date and time is being scheduled. If you have already registered, you will automatically be added to the new session.";
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ses_wrap .sssn.rescheduled:hover .date_time:before {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .ses_wrap .sssn.rescheduled .date_time span {
    display: none !important;
  }
  .ses_wrap .sssn.rescheduled .date_time:before {
    background: #f5f5f5;
    display: block;
    max-width: 70%;
    color: red;
    font-style: italic;
    margin: -5px 0 -1px;
    font-size: 13px;
    line-height: 17px;
    content: "A new date and time is being scheduled. If you have already registered, you will automatically be added to the new session.";
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .ses_wrap .sssn.rescheduled .date_time:before {
    max-width: 100%;
  }
}
.ses_wrap .sssn.rescheduled .btns_wrap:before {
  content: "Postponed" !important;
}
.ses_wrap .sssn.canceled .btns_wrap:before {
  content: "Canceled" !important;
}
.ses_wrap .sssn.ended .media-body .wrap_date .wrap_date_ttl.ttl_ended {
  display: initial !important;
  font-weight: 400;
  font-style: italic;
}
.ses_wrap .sssn.ended .btns_wrap .btn.btn-green {
  letter-spacing: 0.6px;
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ses_wrap .sssn.ended .btns_wrap:hover .btn.btn-green {
  opacity: 1;
}
.ses_wrap .sssn.ended .btns_wrap:hover .btn.btn-green:after, .ses_wrap .sssn.ended .btns_wrap:hover .btn.btn-green:before {
  transform: translate(0, 0);
  z-index: 11;
  opacity: 1;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ses_wrap .sssn:last-child:not(:first-of-type) .btns_wrap .addeventatc .addeventatc_dropdown {
  bottom: -2px !important;
  top: auto !important;
}
.ses_wrap .sssn:first-of-type .btns_wrap .addeventatc .addeventatc_dropdown {
  top: -40px !important;
}
.ses_wrap .sssn:hover {
  z-index: 17;
}
@media (max-width: 767px) {
  .ses_wrap .card {
    margin: 0;
  }
}
.ses_wrap .h4_get {
  margin-bottom: 15px;
  font-size: 23px;
}
.ses_wrap .sssn.with_countdown .btns_wrap {
  justify-content: center;
  align-self: center;
  flex-direction: column;
  transition: all ease 1s;
  padding-top: 49px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .ses_wrap .sssn.with_countdown .btns_wrap {
    align-items: center;
    align-content: center;
    padding-top: 0;
  }
}
.ses_wrap .sssn.with_countdown .btns_wrap .countdown_init {
  height: 49px;
  transition: all ease 1s;
  opacity: 0;
  transform: translate(0, 20px);
}
@media (max-width: 767px) {
  .ses_wrap .sssn.with_countdown .btns_wrap .countdown_init {
    height: auto;
  }
}
.ses_wrap .sssn.with_countdown .btns_wrap .sssn_countdown .countdown .countdown-section:after {
  right: -2px;
}
.ses_wrap .sssn.with_countdown .btns_wrap.initialized {
  padding-top: 0;
}
.ses_wrap .sssn.with_countdown .btns_wrap.initialized .countdown_init {
  opacity: 1;
  transform: translate(0, 0);
}
.ses_wrap .btns_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 220px;
  width: 220px;
  align-items: center;
}
@media (max-width: 991px) {
  .ses_wrap .btns_wrap {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    padding-left: 0;
    margin-top: 10px;
    justify-content: flex-start;
  }
}
.ses_wrap .btns_wrap .btn {
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 0;
  max-width: 220px;
  height: 60px;
  line-height: 60px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .ses_wrap .btns_wrap .btn {
    line-height: 40px;
    height: 40px;
  }
}
.ses_wrap .btns_wrap .btn.disabled {
  pointer-events: none;
}
.ses_wrap .btns_wrap .btn.btn_gradient_purple.get_access, .ses_wrap .btns_wrap .btn.btn_pink.get_access, .ses_wrap .btns_wrap .btn.btn_purple.get_access {
  margin: 0;
  width: 100%;
  letter-spacing: 0;
  text-transform: initial;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.6;
}
.ses_wrap .btns_wrap .btn.btn_gradient_purple.get_access:hover, .ses_wrap .btns_wrap .btn.btn_pink.get_access:hover, .ses_wrap .btns_wrap .btn.btn_purple.get_access:hover {
  opacity: 0.8;
}
.ses_wrap .btns_wrap .btn .reserve_seat_icon {
  margin-right: 10px;
}
.ses_wrap .btns_wrap .btn .reserve_seat_icon img {
  width: 38px;
}
@media (max-width: 767px) {
  .ses_wrap .btns_wrap .btn .reserve_seat_icon img {
    width: 30px;
  }
}
.ses_wrap .btns_wrap .btn.btn_live {
  position: relative;
}
@keyframes live {
  0%, 100% {
    background: none;
  }
  50% {
    background: red;
  }
}
.ses_wrap .btns_wrap .btn.download {
  background: #5E1DE1;
  margin-bottom: 5px;
}
.ses_wrap .btns_wrap .btn.download:hover {
  background: #6e33e5;
  color: #fff;
}
.ses_wrap .btns_wrap .btn_reg {
  max-width: 130px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
}
.ses_wrap .btns_wrap .locked {
  position: relative;
  height: 40px;
  line-height: 40px !important;
  padding: 0 5px 0 0;
}
.ses_wrap .btns_wrap .locked:before {
  position: absolute;
  content: "🔒";
  right: 17px;
  top: 0px;
  display: block;
  font-family: "fontello", serif;
  font-size: 18px;
}
.ses_wrap .btns_wrap .btn-play-video {
  padding: 0;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #340a7f;
  background: #f5f0ff;
  font-size: 14px;
  max-width: 220px;
  width: 100%;
  height: 60px;
  list-style: 60px;
  font-weight: 500;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .ses_wrap .btns_wrap .btn-play-video {
    line-height: 44px;
    height: 44px;
  }
}
.ses_wrap .btns_wrap .btn-play-video span.icon-play {
  width: 40px;
  height: 28px;
  background: #5E1DE1;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  margin-right: 12px;
}
@media (max-width: 767px) {
  .ses_wrap .btns_wrap .btn-play-video span.icon-play {
    width: 35px;
    height: 24px;
  }
}
.ses_wrap .btns_wrap .btn-play-video:hover {
  color: #5E1DE1;
  background: #ebe1ff;
}
.ses_wrap .btns_wrap .btn-green.disabled {
  background: #5E1DE1;
  text-transform: initial;
  padding: 8px 30px;
  font-size: 14px;
  line-height: initial;
  margin-top: 0;
  margin-bottom: 5px;
  opacity: 0.65 !important;
}
.ses_wrap .btns_wrap .btn.btn-green {
  color: #fff;
  background: #5E1DE1;
  border: 1px solid #5E1DE1;
  text-transform: initial;
  max-width: 220px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .ses_wrap .btns_wrap .btn.btn-green {
    line-height: 40px;
    height: 40px;
  }
}
.ses_wrap .btns_wrap .btn.btn-green:hover {
  color: #fff;
  background: #6e33e5;
}
.ses_wrap .btns_wrap .btn.btn_join_now {
  border-radius: 6px;
  border: 1px solid #e2dbf1;
  background: #f0edf6;
  color: #340a7f;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin: 0 7px 0 0;
  width: 65px;
}
.ses_wrap .btns_wrap .addeventatc {
  position: relative;
  color: #fff !important;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  width: 100%;
  max-width: 145px;
  z-index: 1;
  border: none;
}
.ses_wrap .btns_wrap .addeventatc .addeventatc_icon {
  display: none;
}
.ses_wrap .btns_wrap .addeventatc .icon-calendar {
  position: absolute;
  top: 9px;
  right: 12px;
}
.ses_wrap .btns_wrap .addeventatc .addeventatc_dropdown {
  right: -2px !important;
  left: initial !important;
  padding-bottom: 5px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 10px 15px;
}
@media (max-width: 767px) {
  .ses_wrap .btns_wrap .addeventatc .addeventatc_dropdown {
    top: -60px !important;
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 10px;
  }
}
.ses_wrap .btns_wrap .addeventatc .addeventatc_dropdown span {
  padding: 10px 10px 10px 40px !important;
  background-size: 14px 100% !important;
  font-size: 14px !important;
}
.ses_wrap .btns_wrap .addeventatc .addeventatc_dropdown .copyx {
  display: none;
}
.ses_wrap .btns_wrap .sssn_countdown {
  align-items: center;
  align-content: center;
  margin: 2px 0 0;
  font-size: 13px;
  color: #5E1DE1;
  text-align: center;
  display: block;
}
.ses_wrap .btns_wrap .sssn_countdown p {
  font-size: 14px;
  color: #57515d;
  margin: 0 0 -8px 0;
  font-family: Inter, Serif;
}
.ses_wrap .btns_wrap .sssn_countdown .countdown {
  font-size: 22px;
  text-align: center;
}
.ses_wrap .btns_wrap .sssn_countdown .countdown .countdown-row {
  padding: 0;
}
.ses_wrap .btns_wrap .sssn_countdown .countdown .countdown-section {
  width: 34px;
  position: relative;
}
.ses_wrap .btns_wrap .sssn_countdown .countdown .countdown-section:after {
  right: -4px;
  top: -1px;
  color: #5E1DE1;
}
.ses_wrap .btns_wrap .sssn_countdown .countdown .countdown-section .countdown-amount {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: #5E1DE1;
}
.ses_wrap .btns_wrap .sssn_countdown .countdown .countdown-section .countdown-period {
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  color: #5E1DE1;
  position: relative;
}
.ses_wrap .btns_wrap .check_wrap {
  display: flex;
}
.ses_wrap .btns_wrap .check_wrap label {
  position: relative;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ses_wrap .btns_wrap .check_wrap label {
    font-size: 14px;
  }
}
.ses_wrap .btns_wrap .check_wrap label .btn {
  width: 100%;
  background: #5E1DE1;
  border: 1px solid transparent;
  color: #fff;
  margin: 0;
  transition: all 0.5s;
}
.ses_wrap .btns_wrap .check_wrap label .btn:hover {
  background: #6e33e5;
}
.ses_wrap .btns_wrap .check_wrap .selected {
  display: none;
}
.ses_wrap .btns_wrap .check_wrap input[type=checkbox] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.ses_wrap .btns_wrap .check_wrap input[type=checkbox]:checked + .btn {
  border: 1px solid transparent;
  color: #01a860 !important;
  background: transparent;
}
.ses_wrap .btns_wrap .check_wrap input[type=checkbox]:checked + .btn .register {
  display: none;
}
.ses_wrap .btns_wrap .check_wrap input[type=checkbox]:checked + .btn .selected {
  display: inline;
}
.ses_wrap .btns_wrap .check_wrap input[type=checkbox]:checked + .btn .icon-check {
  color: #01a860;
  font-size: 17px;
}
.ses_wrap .btns_wrap .check_wrap input[type=checkbox]:checked + .btn span {
  position: relative;
  top: -2px;
  left: 5px;
}
.ses_wrap .btns_wrap .check_wrap input[type=checkbox]:checked + .btn:hover {
  border: 1px solid #01a860;
}
.ses_wrap .card-header {
  box-shadow: none;
  margin-bottom: 12px;
}
.ses_wrap .card-header h5 {
  width: 100%;
  padding: 15px 220px 15px 25px;
  border-bottom: 1px solid #ddd;
  border-radius: 0px;
}
@media (max-width: 767px) {
  .ses_wrap .card-header h5 {
    padding: 15px 150px 15px 15px;
  }
}
@media (max-width: 639px) {
  .ses_wrap .card-header h5 {
    padding: 15px 125px 15px 15px;
  }
}
.ses_wrap .card-header h5 .ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.ses_wrap .card-header h5 .typo {
  font-size: 20px;
  color: #5E1DE1;
  width: 270px;
  margin-bottom: 0;
}
@media (max-width: 639px) {
  .ses_wrap .card-header h5 .typo {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .ses_wrap .card-header h5 .typo {
    font-size: 14px;
  }
}
.ses_wrap .card-header h5 .date {
  width: 100%;
  color: #0f0f3d;
  margin-bottom: 0;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}
@media (max-width: 639px) {
  .ses_wrap .card-header h5 .date {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
  }
}
.ses_wrap .card-header a.btn_collapse {
  right: 15px;
}
.ses_wrap .card-header a.btn_collapse:hover {
  background: none;
  transform: scale(1.2);
}
.ses_wrap .card-header a.btn_collapse .icon {
  background: transparent;
}
.ses_wrap .card-header a.btn_collapse .close_wrap span,
.ses_wrap .card-header a.btn_collapse .open_wrap span {
  transition: all 0.2s;
}
.ses_wrap .card-header a.btn_collapse .close_wrap span:before,
.ses_wrap .card-header a.btn_collapse .open_wrap span:before {
  color: #5E1DE1;
}
.ses_wrap .weeks.loading, .ses_wrap .sq25_success .head .slider_videos_reviews .weeks.video.video_buffer, .sq25_success .head .slider_videos_reviews .ses_wrap .weeks.video.video_buffer {
  position: relative;
}
.ses_wrap .weeks.loading:before, .ses_wrap .sq25_success .head .slider_videos_reviews .weeks.video.video_buffer:before, .sq25_success .head .slider_videos_reviews .ses_wrap .weeks.video.video_buffer:before {
  position: absolute;
  content: "";
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .ses_wrap .weeks.loading:before, .ses_wrap .sq25_success .head .slider_videos_reviews .weeks.video.video_buffer:before, .sq25_success .head .slider_videos_reviews .ses_wrap .weeks.video.video_buffer:before {
    top: 70px;
  }
}
.ses_wrap .weeks.loading:after, .ses_wrap .sq25_success .head .slider_videos_reviews .weeks.video.video_buffer:after, .sq25_success .head .slider_videos_reviews .ses_wrap .weeks.video.video_buffer:after {
  position: absolute;
  z-index: 12;
  top: 30%;
  left: calc(50% - 32px);
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  opacity: 0.7;
  animation: lds-dual-ring 1.5s linear infinite;
}
.ses_wrap .weeks.empty:after {
  position: relative;
  top: 25px;
  width: 100%;
  display: block;
  text-align: center;
  content: "No sessions for that criteria on that date, please choose a different date or filter.";
  font-size: 22px;
  letter-spacing: 0.7px;
  font-weight: 600;
  color: #484848;
}
@media (max-width: 991px) {
  .ses_wrap .weeks.empty:after {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ses_wrap .weeks.empty:after {
    font-size: 16px;
  }
}
.ses_wrap .weeks .icon-pencil {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 255;
  background: #5E1DE1;
  color: #fff;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 60px;
  opacity: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.ses_wrap .weeks .icon-pencil:hover {
  text-decoration: initial;
  transform: scale(1.2);
}
.ses_wrap .weeks article:hover .icon-pencil {
  opacity: 1;
}
.ses_wrap .weeks .text-center.pb-3 {
  margin: 40px 0 25px;
}
.ses_wrap .media {
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
@media (max-width: 991px) {
  .ses_wrap .media {
    display: flex;
    justify-content: center;
    padding-top: 0px;
    align-items: stretch;
    align-content: stretch;
  }
}
.ses_wrap .media img {
  height: 100% !important;
  border-radius: 6px 0 0 6px;
}
.ses_wrap .media .rating_wrap {
  position: absolute;
  z-index: 22;
  top: 15px;
  right: 10px;
  width: 65px;
  flex-wrap: wrap;
  --star-size: 10px;
  --star-color: transparent;
  --star-background: #fff;
}
@media (max-width: 639px) {
  .ses_wrap .media .rating_wrap {
    --star-size: 8px;
    top: 5px;
    left: 5px;
  }
}
.ses_wrap .media .rating_wrap > div {
  order: 2;
  width: 100%;
}
.ses_wrap .media .rating_wrap > div:before {
  letter-spacing: 0;
}
.ses_wrap .media .rating_wrap > span {
  position: relative;
  left: 0px;
  margin-left: 0;
  margin-bottom: 5px;
  order: 1;
  font-size: 22px;
  font-weight: 500;
  display: block;
  color: #fff;
}
@media (max-width: 639px) {
  .ses_wrap .media .rating_wrap > span {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
.ses_wrap .video {
  width: 282px;
  height: 155px;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
}
@media (max-width: 1300px) {
  .ses_wrap .video {
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .ses_wrap .video {
    width: 155px;
    height: 240px;
    border-radius: 6px;
  }
}
@media (max-width: 767px) {
  .ses_wrap .video {
    margin-right: 15px;
    border-radius: 6px;
    width: 115px;
    height: 200px;
  }
}
@media (max-width: 479px) {
  .ses_wrap .video {
    margin-right: 10px;
  }
}
@media (max-width: 370px) {
  .ses_wrap .video {
    width: 90px;
    height: 160px;
    margin-right: 5px;
  }
}
.ses_wrap .video .upcoming_modal_trigger {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.ses_wrap .video .btn-play-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 25;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: center;
  transition: all 0.2s;
}
@media (max-width: 639px) {
  .ses_wrap .video .btn-play-video {
    padding: 5px;
  }
}
.ses_wrap .video .btn-play-video:hover {
  color: #fff;
  opacity: 0.9;
}
.ses_wrap .video .btn-play-video.play .icon-play:after {
  content: "Play";
  right: -42px;
}
.ses_wrap .video .btn-play-video.preview .icon-play:after {
  content: "Preview";
}
.ses_wrap .video .btn-play-video .icon-play {
  position: relative;
  padding-left: 2px;
  background: #c209f7;
  color: #fff;
  border-radius: 6px;
  width: 40px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 20px;
}
@media (max-width: 767px) {
  .ses_wrap .video .btn-play-video .icon-play {
    width: 26px;
    height: 18px;
    font-size: 12px;
  }
}
.ses_wrap .video .btn-play-video .icon-play:after {
  position: absolute;
  right: -67px;
  top: 5px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
}
@media (max-width: 767px) {
  .ses_wrap .video .btn-play-video .icon-play:after {
    font-size: 10px;
    right: -45px;
  }
}
.ses_wrap .video .btn-play-video .icon-pause {
  display: none;
}
.ses_wrap .video.video-play .icon-play {
  display: none;
}
.ses_wrap .video_body {
  position: relative;
}
.ses_wrap .video_body .btn_pink {
  display: none;
}
.ses_wrap .media-body {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 10px 15px 10px 0;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .ses_wrap .media-body {
    padding: 0 5px;
    margin-bottom: 0px;
    flex-wrap: wrap;
    height: 100%;
    height: 100%;
    min-height: 240px;
  }
}
@media (max-width: 767px) {
  .ses_wrap .media-body {
    min-height: 200px;
  }
}
.ses_wrap .media-body .wrap_descr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  max-width: 348px;
  height: 100%;
}
@media (max-width: 991px) {
  .ses_wrap .media-body .wrap_descr {
    max-width: 100%;
  }
}
.ses_wrap .media-body .wrap_date {
  max-width: 260px;
  min-width: 260px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  padding-right: 20px;
  padding-left: 0px;
}
@media (max-width: 1300px) {
  .ses_wrap .media-body .wrap_date {
    min-width: 217px;
    max-width: 217px;
    padding-left: 5px;
    padding-right: 10px;
  }
}
@media (max-width: 991px) {
  .ses_wrap .media-body .wrap_date {
    padding-left: 0;
    padding-right: 20px;
    max-width: 100%;
  }
}
.ses_wrap .media-body .wrap_date .wrap_date_ttl {
  color: #340a7f;
  font-family: Inter;
  font-size: 13px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 0px;
}
@media (max-width: 1300px) {
  .ses_wrap .media-body .wrap_date .wrap_date_ttl {
    font-size: 12px;
  }
}
.ses_wrap .media-body .wrap_date .wrap_date_ttl.ttl_ended {
  display: none;
}
.ses_wrap .media-body .wrap_date .wrap_date_ttl span.live {
  background: #5E1DE1;
  color: #fff;
  border-radius: 2px;
  padding: 1px 6px;
  text-transform: uppercase;
}
.ses_wrap .media-body .wrap_date .wrap_date_ttl .im_tooltip {
  color: #5f1ce1;
  font-size: 18px;
  margin-left: 3px;
  position: relative;
  top: 1px;
}
.ses_wrap .media-body .date_time {
  width: 100%;
  min-width: 220px;
  font-size: 12px;
  color: #340a7f;
  margin-bottom: 0;
}
@media (max-width: 1300px) {
  .ses_wrap .media-body .date_time {
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  .ses_wrap .media-body .date_time {
    margin-bottom: 10px;
  }
}
@media (max-width: 639px) {
  .ses_wrap .media-body .date_time {
    margin-bottom: -4px;
  }
}
.ses_wrap .media-body .date_time .nearest_tz {
  display: none;
}
.ses_wrap .media-body .date_time .coma:after {
  display: block;
  content: "";
  font-size: 0;
  height: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .ses_wrap .media-body .date_time .coma:after {
    display: none;
  }
}
.ses_wrap .media-body .ssn_ttl {
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
  margin-bottom: 0;
  color: #0f0f3d;
}
@media (max-width: 1300px) {
  .ses_wrap .media-body .ssn_ttl {
    font-size: 15px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .ses_wrap .media-body .ssn_ttl {
    margin-top: -2px;
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .ses_wrap .media-body .ssn_ttl {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
  }
}
.ses_wrap .media-body .names_wrap {
  width: 100%;
  font-size: 16px;
  margin-bottom: 5px;
}
@media (max-width: 1300px) {
  .ses_wrap .media-body .names_wrap {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .ses_wrap .media-body .names_wrap {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.ses_wrap .media-body .names_wrap a {
  color: #5E1DE1;
  margin-right: 5px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 1300px) {
  .ses_wrap .media-body .names_wrap a {
    font-size: 12px;
    line-height: 14px;
  }
}
.ses_wrap .media-body .names_wrap a:after {
  content: ",";
  display: inline-block;
}
.ses_wrap .media-body .names_wrap a:last-child:after {
  display: none;
}

.modal_sssn {
  background: #fff;
  padding-right: 0 !important;
}
.modal_sssn .embed-responsive {
  background: #0f0f3d;
}
.modal_sssn .embed-responsive-16by9::before {
  padding-top: 56%;
}
.modal_sssn .modal-dialog {
  overflow: visible;
  max-width: 1260px;
}
@media (max-width: 767px) {
  .modal_sssn .modal-dialog {
    margin-top: 0;
  }
}
.modal_sssn .modal-content {
  border: none;
  padding-top: 60px;
  padding-left: 30px;
  padding-right: 30px;
  overflow: visible;
  background: none;
}
@media (max-width: 767px) {
  .modal_sssn .modal-content {
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}
.modal_sssn .modal-header {
  position: relative;
  padding: 0;
  height: 0;
  border: none;
}
.modal_sssn .modal-header button {
  top: -34px;
  right: 15px;
  z-index: 15;
  padding: 0;
  background: #f5f6fa;
  border: 1px solid #eef1f9;
  color: #5e1de1;
  border-radius: 6px;
  width: 100px;
  height: 41px;
  font-weight: 400;
  transition: all 0.1s;
  font-size: 0;
}
.modal_sssn .modal-header button:before {
  position: relative;
  top: 1px;
  margin-right: 8px;
  content: "✕";
  font-family: "entypo";
  font-size: 22px;
  font-weight: 700;
  color: #5e1de1;
}
.modal_sssn .modal-header button:after {
  position: relative;
  top: -2px;
  content: " Close";
  font-size: 14px;
  font-weight: 600;
  color: #0f0f3d;
}
.modal_sssn .modal-header button:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .modal_sssn .modal-header button {
    right: 18px;
    border: 1px solid #ddd;
  }
}
.modal_sssn .modal-body {
  padding: 0;
  background: #fff;
  position: relative;
  padding-bottom: 90px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .modal_sssn .modal-body {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .modal-body {
    padding-bottom: 30px;
  }
}
.modal_sssn .modal-body #myTab .nav-link {
  padding: 0;
}
.modal_sssn .card {
  border: none;
}
.modal_sssn .suport_video_page_descr {
  padding: 40px 100px;
}
@media (max-width: 991px) {
  .modal_sssn .suport_video_page_descr {
    padding: 30px 30px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .suport_video_page_descr {
    padding: 30px 15px;
  }
}
.modal_sssn .suport_video_page_descr .title {
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding: 11px 0 14px;
  margin-bottom: 20px;
}
.modal_sssn .premium_label {
  margin-bottom: 86px !important;
}
@media (max-width: 767px) {
  .modal_sssn .premium_label {
    margin-bottom: 69px !important;
  }
}
.modal_sssn .premium_label:after {
  pointer-events: none;
  background: url("../img/icons/logo_square.svg") 40px center no-repeat;
  background-size: 50px;
  content: "Premium\aMembers Only";
  background-color: #5E1DE1;
  padding: 25px 0 25px 103px;
  align-items: center;
  font-style: italic;
  position: absolute;
  font-weight: bold;
  white-space: pre;
  font-size: 12px;
  display: flex;
  color: #fff;
  bottom: -86px !important;
  z-index: 1000;
  right: 0;
  left: 0;
}
@media (max-width: 991px) {
  .modal_sssn .premium_label:after {
    background-position: 20px center;
    padding: 25px 0 25px 80px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .premium_label:after {
    bottom: -69px !important;
    padding: 16px 0 17px 70px;
    background-size: 35px auto;
  }
}
@media (max-width: 360px) {
  .modal_sssn .premium_label:after {
    padding: 29px 0 29px 50px;
    background-size: 30px auto;
  }
}
.modal_sssn .upcoming_wrap {
  padding-bottom: 55%;
  position: relative;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 1300px) {
  .modal_sssn .upcoming_wrap {
    min-height: initial;
    background: #0f0f3d;
  }
}
.modal_sssn .upcoming_wrap .presenters {
  position: absolute;
  z-index: 22;
  left: 40px;
  color: #fff;
  bottom: 30px;
  color: #f0edf6;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  max-width: 60%;
}
@media (max-width: 991px) {
  .modal_sssn .upcoming_wrap .presenters {
    bottom: 15px;
    left: 15px;
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .upcoming_wrap .presenters {
    font-size: 10px;
    max-width: 50%;
  }
}
@media (max-width: 479px) {
  .modal_sssn .upcoming_wrap .presenters {
    display: none;
  }
}
.modal_sssn .upcoming_wrap .btn-green {
  margin-top: 0;
}
.modal_sssn .upcoming_wrap.rescheduled .addeventatc,
.modal_sssn .upcoming_wrap.rescheduled .btn,
.modal_sssn .upcoming_wrap.rescheduled .check_wrap {
  display: none;
}
.modal_sssn .upcoming_wrap.full .check_wrap {
  display: none;
}
.modal_sssn .upcoming_wrap > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1300px) {
  .modal_sssn .upcoming_wrap > img {
    object-fit: contain;
  }
}
.modal_sssn .upcoming_wrap .btn-green {
  position: absolute;
  bottom: 85px;
  right: 15px;
  font-size: 15px;
  max-width: 220px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  width: 100%;
  color: #fff !important;
  letter-spacing: 0;
  z-index: 2;
  border: none;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .modal_sssn .upcoming_wrap .btn-green {
    bottom: 15px;
    line-height: 40px;
    height: 40px;
  }
}
.modal_sssn .upcoming_wrap .btn.btn_join_now {
  border-radius: 6px;
  border: 1px solid #e2dbf1;
  background: #f0edf6;
  color: #5E1DE1 !important;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  margin: 0 7px 0 0;
  width: 65px;
  bottom: 15px;
  right: 240px;
}
.modal_sssn .upcoming_wrap .btn.btn_join_now:hover {
  color: #f0edf6 !important;
  background: #5E1DE1;
  border: 1px solid #5E1DE1;
}
@media (max-width: 639px) {
  .modal_sssn .upcoming_wrap .btn.btn_join_now {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    right: 175px;
  }
}
.modal_sssn .upcoming_wrap .addeventatc {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 15px;
  max-width: 220px;
  font-weight: 600;
  height: 60px;
  line-height: 60px;
  padding: 0;
  width: 100%;
  color: #fff !important;
  letter-spacing: 0;
  z-index: 2;
  border: none;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .modal_sssn .upcoming_wrap .addeventatc {
    line-height: 40px;
    height: 40px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .upcoming_wrap .addeventatc {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    width: 160px;
  }
}
.modal_sssn .upcoming_wrap .addeventatc .addeventatc_icon {
  display: none;
}
.modal_sssn .upcoming_wrap .addeventatc .icon-calendar {
  position: absolute;
  top: 9px;
  right: 12px;
}
.modal_sssn .upcoming_wrap .addeventatc .addeventatc_dropdown {
  right: -2px !important;
  left: initial !important;
  padding-bottom: 5px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 10px 15px;
}
@media (max-width: 767px) {
  .modal_sssn .upcoming_wrap .addeventatc .addeventatc_dropdown {
    top: -60px !important;
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 10px;
  }
}
.modal_sssn .upcoming_wrap .addeventatc .addeventatc_dropdown span {
  padding: 10px 10px 10px 40px !important;
  background-size: 14px 100% !important;
  font-size: 14px !important;
}
.modal_sssn .upcoming_wrap .addeventatc .addeventatc_dropdown .copyx {
  display: none;
}
.modal_sssn .upcoming_wrap .zoom_label {
  position: relative;
  width: 80%;
  max-width: 400px;
  margin: 0 auto 40px;
}
@media (max-width: 991px) {
  .modal_sssn .upcoming_wrap .zoom_label {
    margin: 0 auto 25px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .upcoming_wrap .zoom_label {
    width: 100%;
  }
}
.modal_sssn .upcoming_wrap .zoom_label span {
  position: absolute;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  white-space: nowrap;
  right: 100%;
  top: 50%;
  margin-top: -10px;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .modal_sssn .upcoming_wrap .zoom_label span {
    right: 50%;
    top: -15px;
    transform: translateX(50%);
  }
}
.modal_sssn .upcoming_wrap .zoom_label input {
  height: 55px;
  font-size: 16px;
  color: #555;
  border: none;
  background: #fff;
  width: 100%;
}
@media (max-width: 1300px) {
  .modal_sssn .upcoming_wrap .zoom_label input {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .upcoming_wrap .zoom_label input {
    font-size: 14px;
    height: 48px;
  }
}
.modal_sssn .upcoming_wrap .btn.btn_gradient_purple,
.modal_sssn .upcoming_wrap .btn.btn_pink,
.modal_sssn .upcoming_wrap .btn.btn_purple {
  font-family: "Poppins";
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 0;
  max-width: 220px;
  height: 60px;
  line-height: 60px;
  transition: all 0.2s;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .modal_sssn .upcoming_wrap .btn.btn_gradient_purple,
  .modal_sssn .upcoming_wrap .btn.btn_pink,
  .modal_sssn .upcoming_wrap .btn.btn_purple {
    bottom: 10px;
    line-height: 40px;
    height: 40px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .upcoming_wrap .btn.btn_gradient_purple,
  .modal_sssn .upcoming_wrap .btn.btn_pink,
  .modal_sssn .upcoming_wrap .btn.btn_purple {
    max-width: 180px;
    font-size: 12px;
  }
}
.modal_sssn .upcoming_wrap .btn.btn_gradient_purple i,
.modal_sssn .upcoming_wrap .btn.btn_pink i,
.modal_sssn .upcoming_wrap .btn.btn_purple i {
  margin-right: 10px;
}
.modal_sssn .upcoming_wrap .btn.btn_gradient_purple .reserve_seat_icon,
.modal_sssn .upcoming_wrap .btn.btn_pink .reserve_seat_icon,
.modal_sssn .upcoming_wrap .btn.btn_purple .reserve_seat_icon {
  margin-right: 10px;
}
.modal_sssn .upcoming_wrap .btn.btn_gradient_purple .reserve_seat_icon img,
.modal_sssn .upcoming_wrap .btn.btn_pink .reserve_seat_icon img,
.modal_sssn .upcoming_wrap .btn.btn_purple .reserve_seat_icon img {
  width: 38px;
}
@media (max-width: 767px) {
  .modal_sssn .upcoming_wrap .btn.btn_gradient_purple .reserve_seat_icon img,
  .modal_sssn .upcoming_wrap .btn.btn_pink .reserve_seat_icon img,
  .modal_sssn .upcoming_wrap .btn.btn_purple .reserve_seat_icon img {
    width: 30px;
  }
}
.modal_sssn .upcoming_wrap .btn.btn_gradient_purple.green,
.modal_sssn .upcoming_wrap .btn.btn_pink.green,
.modal_sssn .upcoming_wrap .btn.btn_purple.green {
  color: #fff;
}
.modal_sssn .upcoming_wrap .btn.btn_gradient_purple.green:hover,
.modal_sssn .upcoming_wrap .btn.btn_pink.green:hover,
.modal_sssn .upcoming_wrap .btn.btn_purple.green:hover {
  background: #6e33e5;
}
.modal_sssn .upcoming_wrap .img-fluid {
  max-width: 100%;
  height: 100%;
  display: block;
  width: 100%;
}
.modal_sssn .check_wrap {
  display: flex;
  position: absolute;
  z-index: 20;
  bottom: 15px;
  right: 15px;
}
@media (max-width: 767px) {
  .modal_sssn .check_wrap {
    right: 0;
  }
}
.modal_sssn .check_wrap label {
  position: relative;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .modal_sssn .check_wrap label {
    font-size: 14px;
  }
}
.modal_sssn .check_wrap label .btn {
  height: 60px;
  line-height: 60px;
  padding: 0;
  z-index: 0;
  width: 100%;
  background: #5E1DE1;
  border: 1px solid transparent;
  color: #fff;
  margin: 0;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .modal_sssn .check_wrap label .btn {
    height: 40px;
    line-height: 40px;
  }
}
.modal_sssn .check_wrap label .btn:hover {
  background: #6e33e5;
}
.modal_sssn .check_wrap label .btn .reserve_seat_icon img {
  width: 38px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .modal_sssn .check_wrap label .btn .reserve_seat_icon img {
    width: 30px;
  }
}
.modal_sssn .check_wrap .selected {
  display: none;
}
.modal_sssn .check_wrap input[type=checkbox] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.modal_sssn .check_wrap input[type=checkbox]:checked + .btn {
  border: 1px solid transparent;
  color: #01a860 !important;
  background: #fff;
  display: block;
}
.modal_sssn .check_wrap input[type=checkbox]:checked + .btn .register {
  display: none;
}
.modal_sssn .check_wrap input[type=checkbox]:checked + .btn .selected {
  display: inline;
  font-weight: 500;
}
.modal_sssn .check_wrap input[type=checkbox]:checked + .btn .icon-check {
  color: #01a860;
  font-size: 17px;
}
.modal_sssn .rec_wrap {
  margin: -1px 0 0 0;
  position: relative;
}
.modal_sssn .rec_wrap .btn.btn-green {
  font-family: "Poppins";
  position: absolute;
  z-index: 222;
  bottom: 85px;
  right: 15px;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  border-radius: 6px;
  max-width: 220px;
  height: 60px;
  line-height: 60px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .btn.btn-green {
    height: 40px;
    line-height: 40px;
    bottom: 65px;
  }
}
.modal_sssn .rec_wrap .btn.btn-green.disabled {
  opacity: 1;
  bottom: 15px;
}
.modal_sssn .rec_wrap .btn.btn_join_now {
  border-radius: 6px;
  border: 1px solid #e2dbf1;
  background: #f0edf6;
  color: #5E1DE1;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  margin: 0 7px 0 0;
  width: 65px;
  bottom: 15px;
  right: 240px;
}
.modal_sssn .rec_wrap .btn.btn_join_now:hover {
  color: #f0edf6;
  background: #5E1DE1;
  border: 1px solid #5E1DE1;
}
@media (max-width: 639px) {
  .modal_sssn .rec_wrap .btn.btn_join_now {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    right: 175px;
  }
}
.modal_sssn .rec_wrap .addeventatc {
  font-family: "Poppins";
  position: absolute;
  z-index: 222;
  bottom: 15px;
  right: 15px;
  font-size: 15px;
  max-width: 220px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  width: 100%;
  color: #fff !important;
  letter-spacing: 0;
  border: none;
  border-radius: 6px;
}
.modal_sssn .rec_wrap .addeventatc .addeventatc_icon {
  display: none;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .addeventatc {
    height: 40px;
    line-height: 40px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .rec_wrap .addeventatc {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    width: 160px;
  }
}
.modal_sssn .rec_wrap .sssn_countdown {
  background: #5E1DE1;
  align-items: center;
  padding: 10px 30px;
  display: flex;
  color: #fff;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .sssn_countdown {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px;
  }
}
@media (max-width: 479px) {
  .modal_sssn .rec_wrap .sssn_countdown {
    align-items: center;
  }
}
.modal_sssn .rec_wrap .sssn_countdown p {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  margin: 0 14px 0 0;
}
.modal_sssn .rec_wrap .sssn_countdown .countdown {
  margin: 0 auto 0 0;
  font-size: 36px;
  color: #fff;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .sssn_countdown .countdown {
    font-size: 30px;
    margin: 4px auto 0 -7px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .rec_wrap .sssn_countdown .countdown {
    font-size: 30px;
    margin: 0 auto 0 -7px;
  }
}
@media (max-width: 479px) {
  .modal_sssn .rec_wrap .sssn_countdown .countdown {
    margin: 0 auto 5px;
  }
}
.modal_sssn .rec_wrap .sssn_countdown .countdown .countdown-row {
  padding: 0;
}
.modal_sssn .rec_wrap .sssn_countdown .countdown .countdown-section {
  width: 86px;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .sssn_countdown .countdown .countdown-section {
    width: 50px;
  }
}
.modal_sssn .rec_wrap .sssn_countdown .countdown .countdown-section:after {
  right: -4px;
  top: -2px;
}
.modal_sssn .rec_wrap .sssn_countdown .countdown .countdown-section .countdown-period {
  margin-top: -5px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .sssn_countdown .countdown .countdown-section .countdown-period {
    font-size: 10px;
  }
}
.modal_sssn .rec_wrap .sssn_countdown .btn {
  opacity: 1;
  letter-spacing: 0;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  background: #fff;
  color: #5E1DE1;
  font-size: 14px;
  line-height: 34px;
  font-weight: 600;
  padding: 0 20px 0 50px;
  position: relative;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .sssn_countdown .btn {
    margin: -60px 0 17px auto;
    height: 38px;
    font-size: 14px;
    line-height: 32px;
    padding: 0 20px 0 46px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .sssn_countdown .btn {
    margin: -65px 0 20px auto;
    height: 34px;
    font-size: 13px;
    line-height: 28px;
    padding: 0 15px 0 38px;
  }
}
@media (max-width: 479px) {
  .modal_sssn .rec_wrap .sssn_countdown .btn {
    margin: 3px 0 0;
    height: 30px;
    font-size: 12px;
    line-height: 24px;
  }
}
.modal_sssn .rec_wrap .sssn_countdown .btn i {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 50%;
  width: 32px;
  font-size: 16px;
  background: #5E1DE1;
  color: #fff;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .sssn_countdown .btn i {
    width: 30px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .sssn_countdown .btn i {
    width: 26px;
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .modal_sssn .rec_wrap .sssn_countdown .btn i {
    width: 24px;
    font-size: 13px;
  }
}
.modal_sssn .rec_wrap .sssn_countdown .btn:hover {
  opacity: 0.9;
}
.modal_sssn .rec_wrap .btn.btn_gradient_purple.locked,
.modal_sssn .rec_wrap .btn.btn_pink.locked,
.modal_sssn .rec_wrap .btn.btn_purple.locked {
  position: relative;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s linear;
  padding: 22px 15px;
  width: 50%;
  border-radius: 0;
  margin: 0;
  border: none;
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .btn.btn_gradient_purple.locked,
  .modal_sssn .rec_wrap .btn.btn_pink.locked,
  .modal_sssn .rec_wrap .btn.btn_purple.locked {
    padding: 15px 15px;
    font-size: 14px;
  }
}
.modal_sssn .rec_wrap .btn.btn_gradient_purple.locked .icon-lock,
.modal_sssn .rec_wrap .btn.btn_pink.locked .icon-lock,
.modal_sssn .rec_wrap .btn.btn_purple.locked .icon-lock {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .btn.btn_gradient_purple.locked .icon-lock,
  .modal_sssn .rec_wrap .btn.btn_pink.locked .icon-lock,
  .modal_sssn .rec_wrap .btn.btn_purple.locked .icon-lock {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .btn.btn_gradient_purple.locked:before,
  .modal_sssn .rec_wrap .btn.btn_pink.locked:before,
  .modal_sssn .rec_wrap .btn.btn_purple.locked:before {
    font-size: 27px;
  }
}
.modal_sssn .rec_wrap .btn.btn_gradient_purple.locked:hover,
.modal_sssn .rec_wrap .btn.btn_pink.locked:hover,
.modal_sssn .rec_wrap .btn.btn_purple.locked:hover {
  background: rgba(94, 29, 225, 0.05);
}
.modal_sssn .rec_wrap .btn.btn_gradient_purple.locked:hover:before,
.modal_sssn .rec_wrap .btn.btn_pink.locked:hover:before,
.modal_sssn .rec_wrap .btn.btn_purple.locked:hover:before {
  position: absolute;
  top: 8px;
  left: 48%;
  display: block;
  font-size: 36px;
  font-family: "fontello", serif;
  content: "\e82d";
  color: #fff;
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .btn.btn_gradient_purple.locked:hover:before,
  .modal_sssn .rec_wrap .btn.btn_pink.locked:hover:before,
  .modal_sssn .rec_wrap .btn.btn_purple.locked:hover:before {
    font-size: 27px;
  }
}
.modal_sssn .rec_wrap .play_video,
.modal_sssn .rec_wrap .play_audio {
  font-size: 16px;
  color: #555;
  transition: all 0.3s linear;
  border: 1px solid #ddd;
  padding: 25px 15px;
  width: 50%;
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .play_video,
  .modal_sssn .rec_wrap .play_audio {
    padding: 15px 15px;
    font-size: 14px;
  }
}
.modal_sssn .rec_wrap .play_video:hover,
.modal_sssn .rec_wrap .play_audio:hover {
  background: rgba(94, 29, 225, 0.05);
  border-color: #5E1DE1;
  color: #5E1DE1;
}
.modal_sssn .rec_wrap .play_video:hover span.icon-video,
.modal_sssn .rec_wrap .play_video:hover span.icon-sound,
.modal_sssn .rec_wrap .play_audio:hover span.icon-video,
.modal_sssn .rec_wrap .play_audio:hover span.icon-sound {
  transform: scale(1.3);
}
.modal_sssn .rec_wrap .play_video span.icon-video,
.modal_sssn .rec_wrap .play_video span.icon-sound,
.modal_sssn .rec_wrap .play_audio span.icon-video,
.modal_sssn .rec_wrap .play_audio span.icon-sound {
  transition: transform 0.3s linear;
  position: relative;
  margin-right: 5px;
  font-size: 22px;
  top: 2px;
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .play_video span.icon-video,
  .modal_sssn .rec_wrap .play_video span.icon-sound,
  .modal_sssn .rec_wrap .play_audio span.icon-video,
  .modal_sssn .rec_wrap .play_audio span.icon-sound {
    font-size: 16px;
    top: 0;
  }
}
.modal_sssn .rec_wrap .play_video.active,
.modal_sssn .rec_wrap .play_audio.active {
  border-bottom: 2px solid #5E1DE1;
  padding: 25px 15px 24px;
  color: #5E1DE1;
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .play_video.active,
  .modal_sssn .rec_wrap .play_audio.active {
    padding: 15px 15px 14px;
  }
}
.modal_sssn .rec_wrap .play_video {
  border-radius: 0 0 0 0px;
}
.modal_sssn .rec_wrap .play_audio {
  border-left: 1px solid transparent;
  border-radius: 0 0 0px 0;
}
.modal_sssn .rec_wrap .get_access_btm {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 15px;
  z-index: 22;
  letter-spacing: 0.4px;
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .get_access_btm {
    font-size: 12px;
    padding: 4px 10px;
    max-width: 180px;
    right: 15px;
    bottom: 15px;
    margin-right: 0;
  }
}
.modal_sssn .rec_wrap .get_access_btm .icon-login {
  margin: 0 10px 0 0;
}
.modal_sssn .rec_wrap .video {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.modal_sssn .rec_wrap .video picture.cover_image {
  z-index: 15;
  transition: all ease 1s;
}
.modal_sssn .rec_wrap .video .presenters {
  position: absolute;
  z-index: 22;
  left: 40px;
  color: #fff;
  bottom: 30px;
  color: #f0edf6;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  max-width: 60%;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .video .presenters {
    bottom: 15px;
    left: 15px;
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .rec_wrap .video .presenters {
    font-size: 10px;
    max-width: 50%;
  }
}
@media (max-width: 639px) {
  .modal_sssn .rec_wrap .video .presenters {
    display: none;
  }
}
.modal_sssn .rec_wrap .video .rating_wrap {
  position: absolute;
  z-index: 22;
  top: 45px;
  right: 45px;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .video .rating_wrap {
    top: 25px;
    right: 0px;
  }
}
.modal_sssn .rec_wrap .video .rating_wrap div {
  order: 2;
  font-size: 14px;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .video .rating_wrap div {
    font-size: 10px;
  }
}
.modal_sssn .rec_wrap .video .rating_wrap span {
  order: 1;
  display: block;
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .video .rating_wrap span {
    font-size: 24px;
  }
}
.modal_sssn .rec_wrap .video.video-play picture.lazy.cover_image {
  display: none;
}
.modal_sssn .rec_wrap .video .btn.get_access {
  transition: all 1s linear;
  position: absolute;
  padding: 10px 40px;
  font-size: 16px;
  width: initial;
  z-index: -1;
  right: 15px;
  opacity: 0;
  top: 15px;
  margin: 0;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .video .btn.get_access {
    font-size: 14px;
    padding: 8px 30px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .video .btn.get_access {
    font-size: 13px;
    padding: 7px 25px;
  }
}
@media (max-width: 479px) {
  .modal_sssn .rec_wrap .video .btn.get_access {
    font-size: 12px;
    padding: 6px 20px;
    letter-spacing: 0;
  }
}
.modal_sssn .rec_wrap .video .btn.get_access.active {
  z-index: 20;
  opacity: 1;
}
.modal_sssn .rec_wrap .video .btn.btn-play-video {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 6px;
  width: 80px;
  height: 50px;
  font-size: 34px;
  background: #5E1DE1;
  margin: auto;
  z-index: 25;
  bottom: 100px;
  left: 40px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .modal_sssn .rec_wrap .video .btn.btn-play-video {
    left: 15px;
    bottom: 50px;
    width: 34px;
    height: 20px;
    font-size: 14px;
  }
}
.modal_sssn .rec_wrap .video .btn.btn-play-video:hover {
  transform: scale(1.1);
}
.modal_sssn .rec_wrap .video .btn.btn-play-video span {
  margin-left: 5px;
}
.modal_sssn .rec_wrap .video .btn.btn-play-video svg {
  transition: 0.2s;
  opacity: 1;
  width: 90px;
  height: 80px;
}
@media (max-width: 1300px) {
  .modal_sssn .rec_wrap .video .btn.btn-play-video svg {
    width: 80px;
    height: 70px;
  }
}
@media (max-width: 1300px) {
  .modal_sssn .rec_wrap .video .btn.btn-play-video svg {
    width: 70px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .rec_wrap .video .btn.btn-play-video svg {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .rec_wrap .video .btn.btn-play-video svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 479px) {
  .modal_sssn .rec_wrap .video .btn.btn-play-video svg {
    width: 40px;
    height: 30px;
  }
}
.modal_sssn .rec_wrap .video .btn.btn-play-video:focus {
  color: #ffffff;
}
.modal_sssn .rec_wrap .video .btn.btn-play-video:hover svg {
  transform: scale(1.1);
}
.modal_sssn .rec_wrap .video .btn.btn-play-video .icon-pause {
  display: none;
}
.modal_sssn .rec_wrap .video.video-pause .btn.get_access {
  display: none;
}
.modal_sssn .rec_wrap .video.video-pause .btn.btn-play-video .icon-pause {
  display: none;
}
.modal_sssn .rec_wrap .video.video-pause .btn.btn-play-video .pause,
.modal_sssn .rec_wrap .video.video-pause .btn.btn-play-video .fa-pause {
  display: none;
}
.modal_sssn .rec_wrap .video.video-play img {
  position: absolute;
  opacity: 0;
  z-index: 0;
}
.modal_sssn .rec_wrap .video.video-play .btn.btn-play-video {
  color: #fff;
  opacity: 0;
  bottom: 0;
  top: 0;
}
.modal_sssn .rec_wrap .video.video-play .btn.btn-play-video .icon-play {
  display: none;
}
.modal_sssn .rec_wrap .video.video-play .btn.btn-play-video .icon-pause {
  display: initial;
}
.modal_sssn .rec_wrap .video.video-play .btn.btn-play-video svg,
.modal_sssn .rec_wrap .video.video-play .btn.btn-play-video .play,
.modal_sssn .rec_wrap .video.video-play .btn.btn-play-video .svg-play {
  opacity: 0;
}
.modal_sssn .rec_wrap .video.video-play .btn.btn-play-video .fa:before {
  padding: 0 0 0 5px;
}
.modal_sssn .rec_wrap .video.hover .btn.btn-play-video {
  opacity: 1;
}
.modal_sssn .rec_wrap .sssn_presenters {
  font-size: 17px;
  line-height: 1.15;
  font-weight: 400;
  color: #fff;
  background: #5E1DE1;
  padding: 25px 35px;
}
.modal_sssn .rec_wrap .sssn_presenters a {
  font-weight: 700;
  color: #fff;
}
.modal_sssn .rec_wrap.no_picture_hover .video:hover picture.cover_image {
  z-index: 15;
  opacity: 1;
}
.modal_sssn .play_video,
.modal_sssn .play_audio {
  font-size: 16px;
  color: #555;
  transition: all 0.3s linear;
  border: 1px solid #ddd;
  padding: 25px 15px;
  width: 50%;
}
@media (max-width: 767px) {
  .modal_sssn .play_video,
  .modal_sssn .play_audio {
    padding: 15px 15px;
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .modal_sssn .play_video,
  .modal_sssn .play_audio {
    font-size: 12px;
  }
}
.modal_sssn .play_video:hover,
.modal_sssn .play_audio:hover {
  background: rgba(94, 29, 225, 0.05);
  border-color: #5E1DE1;
  color: #5E1DE1 !important;
}
.modal_sssn .play_video:hover span.icon-video,
.modal_sssn .play_video:hover span.icon-sound,
.modal_sssn .play_audio:hover span.icon-video,
.modal_sssn .play_audio:hover span.icon-sound {
  transform: scale(1.3);
}
.modal_sssn .play_video span.icon-video,
.modal_sssn .play_video span.icon-sound,
.modal_sssn .play_audio span.icon-video,
.modal_sssn .play_audio span.icon-sound {
  transition: transform 0.3s linear;
  position: relative;
  margin-right: 5px;
  font-size: 22px;
  top: 2px;
}
@media (max-width: 767px) {
  .modal_sssn .play_video span.icon-video,
  .modal_sssn .play_video span.icon-sound,
  .modal_sssn .play_audio span.icon-video,
  .modal_sssn .play_audio span.icon-sound {
    font-size: 16px;
    top: 0;
  }
}
.modal_sssn .play_video.active,
.modal_sssn .play_audio.active {
  border-bottom: 2px solid #5E1DE1;
  padding: 25px 15px 24px;
  color: #5E1DE1;
}
@media (max-width: 767px) {
  .modal_sssn .play_video.active,
  .modal_sssn .play_audio.active {
    padding: 15px 15px 14px;
  }
}
.modal_sssn .play_video {
  border-radius: 0 0 0 4px;
}
.modal_sssn .play_audio {
  border-left: 1px solid transparent;
  border-radius: 0 0 6px 0;
}
.modal_sssn .nav-tabs {
  margin-top: 0;
}
.modal_sssn .nav-tabs li.nav-item {
  overflow: hidden;
  border-right: 1px solid #ddd;
}
.modal_sssn .nav-tabs li.nav-item a.nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  background: #f5f5f5;
  line-height: 1.3;
  font-size: 16px;
  font-weight: 700;
  color: #0f0f3d;
  min-height: 90px;
  border: none;
}
.modal_sssn .nav-tabs li.nav-item a.nav-link:hover {
  transform: scale(1.1);
  background: rgba(112, 50, 200, 0.0980392157);
}
@media (max-width: 991px) {
  .modal_sssn .nav-tabs li.nav-item a.nav-link {
    min-height: 75px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .nav-tabs li.nav-item a.nav-link {
    min-height: 60px;
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .nav-tabs li.nav-item a.nav-link {
    min-height: 60px;
    font-size: 12px;
  }
}
.modal_sssn .nav-tabs li.nav-item a.nav-link.active {
  background: #fff;
  border: none;
}
.modal_sssn .nav-tabs li.nav-item a.nav-link.active:hover {
  transform: initial;
}
.modal_sssn .nav-tabs li.nav-item a.nav-link b {
  width: 100%;
  color: #5E1DE1;
  font-weight: 700;
}
.modal_sssn .nav-tabs li.nav-item a.nav-link i {
  font-weight: 400;
  font-size: 13px;
  color: #555555;
}
.modal_sssn .prsntr_bio {
  padding: 25px 65px 15px;
}
@media (max-width: 991px) {
  .modal_sssn .prsntr_bio {
    padding: 17px 30px 15px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .prsntr_bio {
    padding: 17px 15px 15px;
  }
}
.modal_sssn .prsntr_bio .media {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .modal_sssn .prsntr_bio .media {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .prsntr_bio .media {
    margin-bottom: 15px;
  }
}
.modal_sssn .prsntr_bio .media .img_wrap {
  border-style: none;
  height: 110px;
  width: 110px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 20px 0 0;
}
.modal_sssn .prsntr_bio .media .img_wrap img {
  object-position: 50% 50%;
}
@media (max-width: 991px) {
  .modal_sssn .prsntr_bio .media .img_wrap {
    width: 100px;
    height: 100px;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .prsntr_bio .media .img_wrap {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .prsntr_bio .media .img_wrap {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
}
.modal_sssn .prsntr_bio .media-body {
  position: relative;
  padding-right: 150px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .modal_sssn .prsntr_bio .media-body {
    padding-top: 0;
    padding-right: 135px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .prsntr_bio .media-body {
    padding-top: 0;
    padding-right: 0;
  }
}
.modal_sssn .prsntr_bio .media-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f0f3d;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .modal_sssn .prsntr_bio .media-body h3 {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .prsntr_bio .media-body h3 {
    font-size: 16px;
  }
}
.modal_sssn .prsntr_bio .media-body ul {
  margin: 0;
  padding: 0;
}
.modal_sssn .prsntr_bio .media-body ul li {
  list-style: none;
  font-size: 15px;
  font-style: italic;
  color: #555555;
}
@media (max-width: 767px) {
  .modal_sssn .prsntr_bio .media-body ul li {
    font-size: 13px;
  }
}
.modal_sssn .prsntr_bio .media-body .btn-green {
  margin-top: 0;
  position: absolute;
  width: 130px;
  padding: 5px 15px;
  top: 10px;
  right: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: initial;
  color: #5E1DE1;
  border: 1px solid #5E1DE1;
  background: #fff;
}
.modal_sssn .prsntr_bio .media-body .btn-green:hover {
  color: #fff;
  background: #6e33e5;
}
@media (max-width: 639px) {
  .modal_sssn .prsntr_bio .media-body .btn-green {
    position: relative;
    top: 0;
    margin-top: 5px;
  }
}
.modal_sssn .prsntr_bio h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f0f3d;
}
@media (max-width: 991px) {
  .modal_sssn .prsntr_bio h3 {
    font-size: 20px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .modal_sssn .prsntr_bio h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
}
.modal_sssn .prsntr_bio p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #0f0f3d;
}
@media (max-width: 767px) {
  .modal_sssn .prsntr_bio p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
}
.modal_sssn .sssn_meta {
  padding: 25px 65px 15px;
}
@media (max-width: 991px) {
  .modal_sssn .sssn_meta {
    padding: 17px 30px 15px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .sssn_meta {
    padding: 20px 15px 18px;
  }
}
.modal_sssn .sssn_meta h1 {
  font-weight: 600;
  line-height: 180%;
  color: #0f0f3d;
  margin-bottom: 5px;
}
@media (max-width: 639px) {
  .modal_sssn .sssn_meta h1 {
    margin-bottom: 0;
  }
}
.modal_sssn .sssn_meta .date_time {
  font-style: italic;
  color: #340a7f;
}
@media (max-width: 767px) {
  .modal_sssn .sssn_meta .date_time {
    margin-top: 2px;
    line-height: 18px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .sssn_meta .date_time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
  }
}
.modal_sssn .sssn_meta .date_time .sssn_duration {
  order: 1;
  margin-left: 5px;
  margin-right: 5px;
}
.modal_sssn .sssn_meta .date_time .show-tick {
  order: 2;
}
.modal_sssn .sssn_meta .date_time picture img {
  position: relative;
  top: -3px;
}
.modal_sssn .sssn_meta .bootstrap-select {
  position: relative;
  top: -2px;
  width: auto !important;
  float: none;
  display: inline-block;
  margin: 0 7px 0 7px;
}
@media (max-width: 767px) {
  .modal_sssn .sssn_meta .bootstrap-select {
    margin: 5px 0 5px;
    top: 0;
  }
}
.modal_sssn .sssn_meta .bootstrap-select button.btn.dropdown-toggle {
  font-size: 12px;
  line-height: auto;
  font-weight: 600;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 14px;
  /* Firefox 1-3.6 */
  -moz-border-radius: 14px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 14px;
  text-transform: capitalize;
  background: #5E1DE1;
  color: #fff !important;
  margin: 0 0 0 15px;
  padding: 6px 19px 6px 12px;
  border: none;
  width: auto;
  transition: all 0.2s;
  border-radius: 6px;
}
.modal_sssn .sssn_meta .bootstrap-select button.btn.dropdown-toggle:after {
  display: none;
}
.modal_sssn .sssn_meta .bootstrap-select button.btn.dropdown-toggle:hover {
  background: #6e33e5;
}
.modal_sssn .sssn_meta .bootstrap-select button.btn.dropdown-toggle .bs-caret {
  position: relative;
}
.modal_sssn .sssn_meta .bootstrap-select button.btn.dropdown-toggle .bs-caret:before {
  position: absolute;
  top: 0;
  right: -9px;
  content: "\e80a";
  font-family: "fontello", serif;
  color: #fff;
}
.modal_sssn .copy_canceled,
.modal_sssn .copy_message {
  padding: 0 65px;
}
@media (max-width: 991px) {
  .modal_sssn .copy_canceled,
  .modal_sssn .copy_message {
    padding: 0 30px 0;
  }
}
@media (max-width: 639px) {
  .modal_sssn .copy_canceled,
  .modal_sssn .copy_message {
    padding: 0 15px 0;
  }
}
.modal_sssn .copy_canceled p,
.modal_sssn .copy_message p {
  font-size: 18px;
  line-height: 28px;
  color: rgb(210, 0, 0);
  text-align: center;
  font-style: italic;
  margin: 25px 0;
}
.modal_sssn .copy_message p {
  color: #0f0f3d;
}
.modal_sssn .prsntrs_wrap {
  padding: 0 65px;
}
@media (max-width: 991px) {
  .modal_sssn .prsntrs_wrap {
    padding: 0 30px 0;
  }
}
@media (max-width: 639px) {
  .modal_sssn .prsntrs_wrap {
    padding: 0 15px 0;
  }
}
.modal_sssn .prsntrs_wrap .media {
  position: relative;
  margin-bottom: 18px;
}
.modal_sssn .prsntrs_wrap .media:first-child {
  border-top: 1px solid #dddddd;
  padding-top: 21px;
}
.modal_sssn .prsntrs_wrap .media .img_wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-right: 28px;
}
@media (max-width: 767px) {
  .modal_sssn .prsntrs_wrap .media .img_wrap {
    margin-right: 15px;
  }
}
.modal_sssn .prsntrs_wrap .media .img_wrap img {
  vertical-align: middle;
  border-style: none;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
.modal_sssn .prsntrs_wrap .media .media-body {
  position: relative;
  padding-right: 150px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .modal_sssn .prsntrs_wrap .media .media-body {
    padding-top: 0;
    padding-right: 135px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .prsntrs_wrap .media .media-body {
    padding-top: 0;
    padding-right: 0;
  }
}
.modal_sssn .prsntrs_wrap .media .media-body h3 {
  font-weight: 700;
  color: #0f0f3d;
  margin-bottom: 2px;
}
@media (max-width: 639px) {
  .modal_sssn .prsntrs_wrap .media .media-body h3 {
    margin-bottom: 0;
  }
}
.modal_sssn .prsntrs_wrap .media .media-body ul {
  margin: 0;
  padding: 0;
}
.modal_sssn .prsntrs_wrap .media .media-body ul li {
  list-style: none;
  font-style: italic;
  color: #555555;
}
.modal_sssn .prsntrs_wrap .media .media-body .btn-green {
  margin-top: 0;
  position: absolute;
  width: 130px;
  padding: 5px 15px;
  top: 10px;
  right: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: initial;
  color: #5E1DE1;
  border: 1px solid #5E1DE1;
  background: #fff;
  border-radius: 6px;
}
.modal_sssn .prsntrs_wrap .media .media-body .btn-green:hover {
  color: #fff;
  background: #5E1DE1;
}
@media (max-width: 639px) {
  .modal_sssn .prsntrs_wrap .media .media-body .btn-green {
    position: relative;
    top: 0;
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 2px 15px;
  }
}
.modal_sssn .resources .media {
  margin-bottom: 30px;
  align-items: center;
  position: relative;
}
@media (max-width: 639px) {
  .modal_sssn .resources .media {
    padding-bottom: 40px;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.modal_sssn .resources .media .thumb_wrap {
  margin-right: 29px;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media (max-width: 991px) {
  .modal_sssn .resources .media .thumb_wrap {
    margin-right: 15px;
  }
  .modal_sssn .resources .media .thumb_wrap img {
    height: 100%;
  }
}
@media (max-width: 639px) {
  .modal_sssn .resources .media .thumb_wrap {
    width: 70px;
    height: 70px;
  }
}
.modal_sssn .resources .media .media-body {
  padding-right: 15px;
}
.modal_sssn .resources .media .media-body p {
  margin: 0;
}
.modal_sssn .resources .media .media-body .ttl {
  font-size: 18px;
  font-weight: 600;
  color: #0f0f3d;
  margin-bottom: -3px;
}
@media (max-width: 767px) {
  .modal_sssn .resources .media .media-body .ttl {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.modal_sssn .resources .media .media-body .descr {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #747474;
  margin-bottom: 0;
}
.modal_sssn .resources .media .media-body .type {
  font-size: 13px;
  font-weight: 400;
  color: #5E1DE1;
}
.modal_sssn .resources .media .btn-green {
  position: relative;
  font-size: 13px;
  text-transform: none;
  padding: 8px 6px 8px 0;
  width: 190px;
  font-weight: 500;
  background: #5E1DE1;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
@media (max-width: 639px) {
  .modal_sssn .resources .media .btn-green {
    position: absolute;
    bottom: 0;
    left: 115px;
    font-size: 12px;
    padding: 5px 20px;
  }
}
@media (max-width: 479px) {
  .modal_sssn .resources .media .btn-green {
    left: calc(50% - 80px);
  }
}
.modal_sssn .resources .media .btn-green:hover {
  background: #6e33e5;
}
.modal_sssn .resources .media .btn-green::first-letter {
  text-transform: uppercase;
}
.modal_sssn .resources .media .btn-green [class^=icon-] {
  position: absolute;
  right: 12px;
  top: 8px;
}
@media (max-width: 767px) {
  .modal_sssn .resources .media .btn-green [class^=icon-] {
    top: 6px;
  }
}
.modal_sssn .card {
  padding: 0 65px;
}
@media (max-width: 991px) {
  .modal_sssn .card {
    padding: 0 30px 0;
  }
}
@media (max-width: 639px) {
  .modal_sssn .card {
    padding: 0 15px 0;
  }
}
.modal_sssn .card .card-header {
  box-shadow: none;
  border-bottom: 1px solid #ddd;
  padding: 11px 0 14px;
}
.modal_sssn .card .card-header h5 {
  padding: 0;
  font-size: 20px;
  line-height: initial;
  font-weight: 600;
}
@media (max-width: 991px) {
  .modal_sssn .card .card-header h5 {
    font-size: 18px;
    line-height: initial;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .modal_sssn .card .card-header h5 {
    font-size: 16px;
    line-height: initial;
    font-weight: 600;
  }
}
.modal_sssn .card .card-header a.collapse {
  top: 10px;
  right: 0;
  background: #eeeeee;
  color: #939393;
  border: none;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: all 0.2s;
  width: 26px;
  height: 26px;
}
.modal_sssn .card .card-header a.collapse:hover {
  background: #5E1DE1;
  color: #fff;
}
.modal_sssn .card .card-header a.collapse span {
  font-weight: 300;
  position: relative;
}
.modal_sssn .card .card-header a.collapse span.open_wrap {
  position: relative;
  top: 1px;
}
.modal_sssn .card .card-body {
  padding: 30px 90px 0;
}
@media (max-width: 991px) {
  .modal_sssn .card .card-body {
    padding: 30px 30px;
  }
}
@media (max-width: 767px) {
  .modal_sssn .card .card-body {
    padding: 25px 20px 10px;
  }
}
@media (max-width: 639px) {
  .modal_sssn .card .card-body {
    padding: 20px 0 10px;
  }
}
.modal_sssn .card .card-body h3 {
  font-size: 22px;
  line-height: 32px;
  color: #0f0f3d;
}
@media (max-width: 767px) {
  .modal_sssn .card .card-body h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.modal_sssn .card .card-body p {
  font-size: 16px;
  line-height: 28px;
  color: #5a5f68;
}
@media (max-width: 767px) {
  .modal_sssn .card .card-body p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}
.modal_sssn .card .card-body ul,
.modal_sssn .card .card-body ol {
  margin: 0;
  padding: 0 0 0 15px;
}
.modal_sssn .card .card-body ul li,
.modal_sssn .card .card-body ol li {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
  color: #5a5f68;
}
@media (max-width: 767px) {
  .modal_sssn .card .card-body ul li,
  .modal_sssn .card .card-body ol li {
    font-size: 14px;
    line-height: 24px;
  }
}

.submit_wrap {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  opacity: 0;
  transition: all 0.2s;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
@media (max-width: 639px) {
  .submit_wrap {
    padding: 35px 0 25px;
  }
}
.submit_wrap .step_2,
.submit_wrap .step_3 {
  display: none;
}
.submit_wrap.active_step_2 .step_1 {
  display: none;
}
.submit_wrap.active_step_2 .step_2 {
  display: initial;
}
.submit_wrap.active_step_3 .step_1 {
  display: none;
}
.submit_wrap.active_step_3 .step_3 {
  display: initial;
}
.submit_wrap .status {
  width: calc(100% - 30px);
  height: 1px;
  position: relative;
  top: -7px;
  margin: 0 auto;
  max-width: 900px;
}
.submit_wrap .status span {
  display: block;
  position: absolute;
  top: -12px;
  width: 20px;
  height: 20px;
  border-radius: 60px;
  background: #c7d3eb;
  z-index: 2;
  border: 4px solid #5E1DE1;
}
.submit_wrap .status span:nth-child(1):before, .submit_wrap .status span:nth-child(3):before, .submit_wrap .status span:nth-child(5):before {
  position: absolute;
  width: 200px;
  text-align: center;
  left: 50%;
  transform: translate(-50%, 0);
  top: initial;
  bottom: -29px;
  font-family: "Inter" !important;
  font-size: 13px;
  font-family: italic;
}
@media (max-width: 767px) {
  .submit_wrap .status span:nth-child(1):before, .submit_wrap .status span:nth-child(3):before, .submit_wrap .status span:nth-child(5):before {
    font-size: 10px;
  }
}
.submit_wrap .status span:nth-child(1):before:before, .submit_wrap .status span:nth-child(3):before:before, .submit_wrap .status span:nth-child(5):before:before {
  color: #5a5f68;
}
.submit_wrap .status span:nth-child(1) {
  left: -4px;
}
.submit_wrap .status span:nth-child(1):before {
  color: #5a5f68 !important;
  content: "Select Time-Zone";
  font-weight: 400;
  font-family: "Inter" !important;
}
.submit_wrap .status span:nth-child(3) {
  left: calc(50% - 5px);
}
.submit_wrap .status span:nth-child(3):before {
  color: #5a5f68 !important;
  content: "Reserve Session Seats";
  font-weight: 400;
  font-family: "Inter" !important;
}
.submit_wrap .status span:nth-child(5) {
  right: -7px;
  font-weight: 600;
}
.submit_wrap .status span:nth-child(5):before {
  content: "Register for Selected Sessions";
  color: #5e1de1;
  font-family: "Inter";
  font-weight: 600 !important;
}
.submit_wrap .status span.active {
  border: 3px solid #5E1DE1;
  background: #15112c;
  top: -12px;
  width: 20px;
  height: 20px;
}
.submit_wrap .status span.done, .submit_wrap.active_step_2 .status span.circle_1, .submit_wrap.active_step_3 .status span.circle_1,
.submit_wrap.active_step_3 .status span.circle_2 {
  border: 3px solid #5E1DE1;
  background: #5E1DE1;
  top: -12px;
  width: 20px;
  height: 20px;
}
.submit_wrap .status span.done:before, .submit_wrap.active_step_2 .status span.circle_1:before, .submit_wrap.active_step_3 .status span.circle_1:before,
.submit_wrap.active_step_3 .status span.circle_2:before {
  color: #5E1DE1;
}
.submit_wrap .status span.done:after, .submit_wrap.active_step_2 .status span.circle_1:after, .submit_wrap.active_step_3 .status span.circle_1:after,
.submit_wrap.active_step_3 .status span.circle_2:after {
  position: relative;
  top: -5px;
  font-size: 14px;
  color: #fff;
  content: "\e810";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
}
.submit_wrap .status span.goto {
  cursor: pointer;
  transition: all 0.2s;
}
.submit_wrap .status span.goto:hover {
  transform: scale(1.2);
}
.submit_wrap .status .line {
  border-bottom: 8px solid #c7d3eb;
  position: absolute;
  z-index: 1;
  width: 50%;
  top: -5px;
  left: 0;
}
.submit_wrap .status .line.right {
  left: initial;
  right: 0;
}
.submit_wrap .status .line.purple, .submit_wrap.active_step_2 .status .line.line_1, .submit_wrap.active_step_3 .status .line.line_1,
.submit_wrap.active_step_3 .status .line.line_2 {
  border-color: #5E1DE1;
}
.submit_wrap.disabled {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.submit_wrap.disabled:before {
  font-size: 24px;
  line-height: 600;
  content: "Please select a session to submit for registration";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: #fff;
  background: rgba(99, 53, 195, 0.9);
  opacity: 0;
  transition: all ease 1s;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .submit_wrap.disabled:before {
    font-size: 16px;
  }
}
.submit_wrap.disabled:hover:before {
  opacity: 1;
  z-index: 20;
}
.submit_wrap.disabled:hover > * {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}
.submit_wrap.disabled .btn {
  pointer-events: none;
  opacity: 0.5;
}
.submit_wrap.sticky {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  margin: 100px auto 50px;
  position: sticky;
  bottom: 0;
  background: #fff;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .submit_wrap.sticky {
    justify-content: space-between;
  }
}
@media (max-width: 639px) {
  .submit_wrap.sticky {
    margin: 30px auto;
    padding: 0;
  }
}
.submit_wrap .head {
  width: 100%;
  background: #f5f6fa;
  padding: 18px 26px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  border-radius: 6px 6px 0 0;
}
@media (max-width: 767px) {
  .submit_wrap .head {
    flex-wrap: wrap;
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .submit_wrap .head.no_user_name h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .submit_wrap .head.no_user_name .label_wrap {
    margin: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .submit_wrap .head.no_user_name .wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    justify-content: space-between;
  }
}
.submit_wrap .head h3 {
  margin: initial;
  text-align: left;
}
@media (max-width: 767px) {
  .submit_wrap .head h3 {
    width: 50%;
  }
}
.submit_wrap .head .wrap {
  display: flex;
  align-items: center;
  align-content: center;
}
@media (max-width: 767px) {
  .submit_wrap .head .wrap {
    width: 50%;
    justify-content: flex-end;
  }
}
.submit_wrap .head .wrap .count {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #5E1DE1;
  font-size: 32px;
  border-radius: 6px;
  margin-bottom: 0;
}
.submit_wrap .head .wrap .copy_selected {
  margin-bottom: 0;
  color: #0f0f3d;
  font-style: italic;
  font-weight: 500;
  line-height: 140%;
  margin-left: 17px;
  margin-right: 50px;
}
@media (max-width: 767px) {
  .submit_wrap .head .wrap .copy_selected {
    margin-right: 0;
    margin-left: 8px;
  }
}
.submit_wrap .head .wrap .btn {
  max-width: initial;
}
.submit_wrap .head .label_wrap {
  margin-right: 10px;
  display: flex;
  align-items: center;
  align-content: center;
}
.submit_wrap .head .label_wrap label {
  margin: 0;
  padding: 0 10px 0 0;
}
@media (max-width: 767px) {
  .submit_wrap .head .label_wrap label {
    max-width: 47%;
    display: inline-block;
  }
}
.submit_wrap .head .label_wrap label .field_ttl {
  display: none;
}
.submit_wrap .head .label_wrap label input {
  margin: 0 3px;
  font-size: 14px;
}
.submit_wrap .head .mob {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.submit_wrap .bottom {
  width: 100%;
  height: 88px;
  position: relative;
  background: #e6e9f3;
  border-radius: 0 0 6px 6px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 1300px) {
  .submit_wrap .bottom {
    padding-left: 60px;
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  .submit_wrap .bottom {
    display: none;
  }
}
.submit_wrap .btn_wrap {
  max-width: 1110px;
  margin: 0 auto 0;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 20px 15px;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .submit_wrap .btn_wrap {
    padding: 17px 15px;
  }
}
@media (max-width: 767px) {
  .submit_wrap .btn_wrap {
    padding: 10px 15px;
  }
}
@media (max-width: 639px) {
  .submit_wrap .btn_wrap {
    margin: 0 auto 0;
  }
}
.submit_wrap .btn_wrap.disabled {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.submit_wrap .btn_wrap.disabled:before {
  font-size: 24px;
  line-height: 600;
  content: "Please select a session to submit for registration";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: #fff;
  background: rgba(99, 53, 195, 0.9);
  opacity: 0;
  transition: all ease 1s;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .submit_wrap .btn_wrap.disabled:before {
    font-size: 16px;
  }
}
.submit_wrap .btn_wrap.disabled:hover:before {
  opacity: 1;
  z-index: 20;
}
.submit_wrap .btn_wrap.disabled:hover > * {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}
.submit_wrap .btn_wrap.disabled .btn {
  pointer-events: none;
  opacity: 0.5;
}
.submit_wrap h3 {
  display: inline-block;
  margin: 0 auto;
}
.submit_wrap .btn {
  min-width: 200px;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 6px;
  background: #5E1DE1;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 14px 55px;
}
@media (max-width: 767px) {
  .submit_wrap .btn {
    padding: 10px 35px;
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .submit_wrap .btn {
    padding: 8px 25px;
    font-size: 16px;
  }
}
.submit_wrap .btn:hover {
  opacity: 0.9 !important;
}
.submit_wrap .btn:active {
  background: #5E1DE1 !important;
  color: #fff;
}
.submit_wrap .notice {
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #747474;
}

.page-template-mmbrs_sessions:not(.logged-in) .sssn[data-tags=backstage] {
  display: none !important;
}

.embed-responsive .btn.get_access_btm, .embed-responsive .btn.get_access,
.modal .btn.get_access_btm,
.modal .btn.get_access,
.ses_wrap .btn.get_access_btm,
.ses_wrap .btn.get_access {
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding-right: 1px;
  max-width: 220px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0;
  margin-top: 0;
  margin-left: 5px;
  margin-right: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .embed-responsive .btn.get_access_btm, .embed-responsive .btn.get_access,
  .modal .btn.get_access_btm,
  .modal .btn.get_access,
  .ses_wrap .btn.get_access_btm,
  .ses_wrap .btn.get_access {
    line-height: 40px;
    height: 40px;
  }
}
.embed-responsive .btn.get_access_btm span, .embed-responsive .btn.get_access span,
.modal .btn.get_access_btm span,
.modal .btn.get_access span,
.ses_wrap .btn.get_access_btm span,
.ses_wrap .btn.get_access span {
  font-weight: 500;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 6px;
  color: #5E1DE1;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.embed-responsive .btn.get_access_btm span:before, .embed-responsive .btn.get_access span:before,
.modal .btn.get_access_btm span:before,
.modal .btn.get_access span:before,
.ses_wrap .btn.get_access_btm span:before,
.ses_wrap .btn.get_access span:before {
  position: relative;
  left: -1px;
}
.embed-responsive .btn.get_access_btm:hover, .embed-responsive .btn.get_access:hover,
.modal .btn.get_access_btm:hover,
.modal .btn.get_access:hover,
.ses_wrap .btn.get_access_btm:hover,
.ses_wrap .btn.get_access:hover {
  overflow: visible !important;
}
.embed-responsive .btn.get_access_btm:hover:after, .embed-responsive .btn.get_access_btm:hover:before, .embed-responsive .btn.get_access:hover:after, .embed-responsive .btn.get_access:hover:before,
.modal .btn.get_access_btm:hover:after,
.modal .btn.get_access_btm:hover:before,
.modal .btn.get_access:hover:after,
.modal .btn.get_access:hover:before,
.ses_wrap .btn.get_access_btm:hover:after,
.ses_wrap .btn.get_access_btm:hover:before,
.ses_wrap .btn.get_access:hover:after,
.ses_wrap .btn.get_access:hover:before {
  transform: translate(0, 0);
  z-index: 11;
  opacity: 1;
}

.modal .btn.get_access {
  position: absolute;
  bottom: 60px;
  right: 15px;
}

#modal_reg_ty .modal-dialog {
  text-align: center;
  width: calc(100vw - 30px);
  max-width: 400px;
}
#modal_reg_ty .modal-dialog .modal-header {
  background: #fff;
  padding: 0;
  border: unset;
  display: none !important;
}
#modal_reg_ty .modal-dialog .modal-header button {
  color: #5E1DE1;
}
#modal_reg_ty .modal-dialog .modal-body {
  padding-top: 40px;
  padding-bottom: 40px;
}
#modal_reg_ty .modal-dialog .modal-body .txt {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #74747e;
}
#modal_reg_ty .modal-dialog .modal-body .txt a {
  color: #5E1DE1;
}
@media (max-width: 430px) {
  #modal_reg_ty .modal-dialog .modal-body .txt br {
    display: none;
  }
}

#about_sessions .about_slider_wr:not(.slick-initialized) .about_item {
  width: 100%;
  max-width: 282px;
}
#about_sessions .about_slider_wr.slick-dotted ul.slick-dots {
  bottom: unset;
  position: relative;
  margin-top: 30px;
}
@media (min-width: 1450px) {
  #about_sessions .about_slider_wr .slick-prev {
    border-radius: 6px;
    background: #f5f6fa;
    width: 74px;
    height: 121px;
    top: 0;
    transform: unset;
    left: -100px;
    outline: none;
  }
  #about_sessions .about_slider_wr .slick-prev:before {
    color: #5E1DE1;
    font-size: 40px;
  }
  #about_sessions .about_slider_wr .slick-next {
    border-radius: 6px;
    background: #f5f6fa;
    width: 74px;
    height: 121px;
    top: 0;
    transform: unset;
    right: -100px;
    outline: none;
  }
  #about_sessions .about_slider_wr .slick-next:before {
    color: #5E1DE1;
    font-size: 40px;
  }
}
#about_sessions .about_slider_wr .about_item {
  font-size: 13px;
  line-height: 130%;
  font-weight: 500;
  color: #fff;
  font-family: "Inter", serif;
  border-radius: 6px;
  background: #5E1DE1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  transition: all ease 0.3s;
  height: 121px;
}
#about_sessions .about_slider_wr .about_item img {
  max-width: 50px;
}
#about_sessions .about_slider_wr .about_item svg path,
#about_sessions .about_slider_wr .about_item svg rect {
  transition: all ease 0.3s;
}
#about_sessions .about_slider_wr .about_item:hover {
  background: #f5f6fa;
  color: #0f0f3d;
  text-decoration: none;
}
#about_sessions .about_slider_wr .about_item:hover svg path,
#about_sessions .about_slider_wr .about_item:hover svg rect {
  fill: #5e1de1;
  stroke: #5e1de1;
}

.about_sessions .modal {
  background: transparent;
}
.about_sessions .modal .modal-content {
  overflow: visible;
}
.about_sessions .modal .modal-header {
  background: #fff;
  color: #0f0f3d;
  height: auto;
  border-bottom: unset;
  padding-top: 30px;
  padding-bottom: 0;
}
.about_sessions .modal .modal-header .modal-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
}
.about_sessions .modal .modal-header button {
  position: absolute;
  text-shadow: none;
  padding: 15px;
  z-index: 1100;
  top: -44px;
  right: 0px;
  color: #7d3cff;
  transition: all ease 0.3s;
}
.about_sessions .modal .modal-header button:hover {
  opacity: 0.9;
}
.about_sessions .modal .modal-body {
  border-radius: 0 0 6px 6px;
  padding: 15px 50px 40px;
}
@media (max-width: 991px) {
  .about_sessions .modal .modal-body {
    padding: 15px 30px 30px;
  }
}
.about_sessions .modal .modal-body ol {
  padding-left: 15px;
}
.about_sessions .modal .modal-body p:last-child {
  margin-bottom: 0;
}

.ssn_points_table_wr {
  background: #f5f0ff;
  padding: 5px;
}
.ssn_points_table_wr .ssn_points_table tr:first-child td:nth-child(3) {
  padding-right: 15px;
}
.ssn_points_table_wr .ssn_points_table tr:first-child td:nth-child(3):after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 6px;
  width: 1px;
  height: 20px;
  background: #bfafd6;
}
.ssn_points_table_wr .ssn_points_table tr:nth-child(2) td:nth-child(3) {
  padding-right: 15px;
}
.ssn_points_table_wr .ssn_points_table tr:nth-child(2) td:nth-child(3):after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 20px;
  background: #bfafd6;
}
.ssn_points_table_wr .ssn_points_table tr td {
  padding: 0 10px;
  font-size: 14px;
  line-height: 1.8;
  position: relative;
}
.ssn_points_table_wr .ssn_points_table tr td:first-child {
  font-style: italic;
}
.ssn_points_table_wr .ssn_points_table tr td:nth-child(2) {
  color: #5E1DE1;
  font-weight: 600;
}
.ssn_points_table_wr .ssn_points_table tr td:nth-child(3) {
  font-style: italic;
  font-weight: 600;
}
.ssn_points_table_wr .ssn_points_table tr td:nth-child(4) {
  color: #5E1DE1;
  font-weight: 600;
  padding-left: 15px;
}

#banner.presenter {
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
  text-shadow: none;
  overflow: visible;
}
@media (max-width: 767px) {
  #banner.presenter {
    padding: 30px 15px 80px;
  }
}
@media (max-width: 639px) {
  #banner.presenter {
    padding: 24px 15px 60px;
  }
}
@media (max-width: 767px) {
  #banner.presenter .container {
    max-width: 510px;
  }
}
#banner.presenter .col-lg-4 {
  display: flex;
}
#banner.presenter .bootstrap-select .dropdown-menu > li.selected a:hover,
#banner.presenter .bootstrap-select .dropdown-menu > li.selected a:focus {
  background: #fff;
}
#banner.presenter .media {
  margin: 50px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #banner.presenter .media {
    margin: 40px 0 30px;
  }
}
#banner.presenter .media-body {
  text-align: left;
  color: #000;
}
#banner.presenter .media-body h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 10px;
}
@media (max-width: 1699px) {
  #banner.presenter .media-body h1 {
    font-size: 28px;
  }
}
@media (max-width: 1300px) {
  #banner.presenter .media-body h1 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  #banner.presenter .media-body h1 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  #banner.presenter .media-body h1 {
    font-size: 22px;
    margin: 0 0 5px;
  }
}
@media (max-width: 639px) {
  #banner.presenter .media-body h1 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  #banner.presenter .media-body h1 {
    font-size: 18px;
  }
}
#banner.presenter .media-body .headlines {
  list-style: none;
  padding: 0;
  font-style: italic;
  font-size: 15px;
  color: #747474;
  margin: 0;
}
@media (max-width: 991px) {
  #banner.presenter .media-body .headlines {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  #banner.presenter .media-body .headlines {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  #banner.presenter .media-body .headlines {
    font-size: 12px;
  }
}
#banner.presenter .media-body .headlines li {
  margin: 0;
}
#banner.presenter .media > img {
  width: 126px;
  height: 126px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin-right: 35px;
}
@media (max-width: 991px) {
  #banner.presenter .media > img {
    margin-right: 20px;
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 767px) {
  #banner.presenter .media > img {
    margin-right: 20px;
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 639px) {
  #banner.presenter .media > img {
    margin-right: 15px;
    height: 60px;
    width: 60px;
  }
}
#banner.presenter .choose_presenter {
  margin: auto 0 75px;
}
@media (max-width: 991px) {
  #banner.presenter .choose_presenter {
    max-width: 300px;
    margin: 0 auto 20px;
  }
}
#banner.presenter .choose_presenter .dropdown-toggle {
  border-radius: 30px;
  border: none !important;
  height: 42px;
  line-height: 42px;
  padding: 0 25px;
  position: relative;
  font-size: 14px;
  color: #555555;
}
@media (max-width: 767px) {
  #banner.presenter .choose_presenter .dropdown-toggle {
    font-size: 13px;
    line-height: 40px;
    height: 40px;
  }
}
@media (max-width: 479px) {
  #banner.presenter .choose_presenter .dropdown-toggle {
    font-size: 12px;
    line-height: 32px;
    height: 32px;
  }
}
#banner.presenter .choose_presenter .dropdown-toggle .filter-option {
  color: #555;
}
#banner.presenter .choose_presenter .dropdown-toggle:after {
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  margin: 0;
  margin-top: -20px;
  content: "\e75c";
  font-size: 16px;
  color: #5E1DE1;
}
@media (max-width: 767px) {
  #banner.presenter .choose_presenter .dropdown-toggle:after {
    margin-top: -19px;
  }
}
@media (max-width: 479px) {
  #banner.presenter .choose_presenter .dropdown-toggle:after {
    margin-top: -15px;
  }
}
#banner.presenter .choose_presenter > .dropdown-menu {
  min-width: 0;
  width: 100%;
  margin-left: 20px;
  border: none;
  padding: 0;
  max-width: calc(100% - 40px);
}

#prsntr_cntnt {
  background: #fff;
  position: relative;
  overflow: visible;
  padding: 0;
  /*#social_row{
  	max-width: 240px;
  	@include breakpoint(sm) {
  		margin: 10px auto 0;
  	};
  	ul{
  		margin: 0 auto;
  		width: 100%;
  		li{
  			width: 100%;
  			@include breakpoint(sm) { width: initial; };
  			a{
  				margin: 0;
  				@include breakpoint(sm) { margin: 0 3px; };
  				&:hover{
  					.ttl{
  						margin-left: -15px;
  					}
  				}
  			}
  			.icon{
  				line-height: 49px;
  				font-size: 20px;
  				width: 49px;
  				@include breakpoint(md) {
  					line-height: 37px;
  					font-size: 16px;
  					width: 37px;
  				};
  			}
  			.ttl{
  				padding: 0 0 0 15px;
  				margin-bottom: 7px;
  				@include breakpoint(md) {
  					padding: 0 0 0 10px;
  					margin-bottom: 5px;
  				};
  			}
  		}
  	}
  }

  .panel-group{
      padding: 50px 0 0;
  	@include breakpoint(sm) { padding: 0; }
  }
  .panel .panel-heading{
  	display: none;
  	@include breakpoint(sm) { display: block; };
  }*/
}
#prsntr_cntnt #contact {
  margin-top: 150px;
}
@media (max-width: 767px) {
  #prsntr_cntnt #contact {
    margin-top: 70px;
  }
}
#prsntr_cntnt .nav-tabs {
  border-radius: 6px 6px 0 0;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  margin: 0 0 -20px;
  transform: translateY(-100%);
}
@media (max-width: 991px) {
  #prsntr_cntnt .nav-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow: auto;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .nav-tabs {
    margin: 0 0 -30px;
  }
}
#prsntr_cntnt .nav-tabs .nav-item {
  background: transparent;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  #prsntr_cntnt .nav-tabs .nav-item {
    flex: 33.3333% 0 0;
  }
}
#prsntr_cntnt .nav-tabs .nav-item .nav-link {
  height: 90px;
}
@media (max-width: 1699px) {
  #prsntr_cntnt .nav-tabs .nav-item .nav-link {
    height: 70px;
  }
}
@media (max-width: 991px) {
  #prsntr_cntnt .nav-tabs .nav-item .nav-link {
    height: 50px;
  }
}
#prsntr_cntnt .nav-tabs .nav-item:first-child .nav-link {
  border-left: none;
}
#prsntr_cntnt .nav-tabs .nav-item:last-child .nav-link {
  border-right: none;
}
#prsntr_cntnt .nav.nav-green li.active a,
#prsntr_cntnt .nav.nav-green li.current-menu-item a {
  background: #f5f5f5;
}
#prsntr_cntnt .visible-xxs {
  display: none;
}
#prsntr_cntnt .sp-info {
  margin: 0 0 0;
}
@media (max-width: 767px) {
  #prsntr_cntnt .sp-info {
    text-align: center;
    margin: 0 0 55px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .sp-info {
    margin: 0 0 45px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .sp-info {
    margin: 0 0 35px;
  }
}
#prsntr_cntnt .sp-info img.user_img {
  width: 129px;
  height: 129px;
  border: 1px solid #eeeeee;
  margin: 10px 0 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
#prsntr_cntnt .sp-info > .headlines {
  margin: 0 0 30px;
}
#prsntr_cntnt .sp-info > .headlines h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.3em;
  font-weight: 700;
  color: #000;
}
#prsntr_cntnt .sp-info > .headlines ul {
  max-width: 280px;
  margin: 0;
  list-style: none;
}
@media (max-width: 767px) {
  #prsntr_cntnt .sp-info > .headlines ul {
    margin: 0 auto 20px;
    max-width: none;
  }
}
#prsntr_cntnt .sp-info > .headlines ul li {
  font-size: 15px;
  line-height: 1.55em;
  font-weight: 400;
  letter-spacing: -0.45px;
  font-style: italic;
  margin: 0 0 10px;
  color: #777;
}
@media (max-width: 767px) {
  #prsntr_cntnt .sp-info > .headlines ul li {
    margin: 0 0 5px;
  }
}
#prsntr_cntnt .sp-info img.logo {
  margin: 25px;
}
#prsntr_cntnt .sp-info .btn {
  font: 700 14px "Poppins";
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 5px;
  padding: 15px;
  width: 280px;
}
#prsntr_cntnt .prsntrs_wrap {
  padding: 15px 0;
}
#prsntr_cntnt .prsntrs_wrap .media {
  padding: 10px 0;
}
#prsntr_cntnt .prsntrs_wrap .media > .img_wrap img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin: 0 30px 0 0;
}
@media (max-width: 767px) {
  #prsntr_cntnt .prsntrs_wrap .media > .img_wrap img {
    margin: 0 14px 0 0;
    height: 60px;
    width: 60px;
  }
}
#prsntr_cntnt .prsntrs_wrap .media-body {
  position: relative;
  padding: 0 160px 0 0;
}
@media (max-width: 991px) {
  #prsntr_cntnt .prsntrs_wrap .media-body {
    padding: 0;
  }
}
#prsntr_cntnt .prsntrs_wrap .media-body h3 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 991px) {
  #prsntr_cntnt .prsntrs_wrap .media-body h3 {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .prsntrs_wrap .media-body h3 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .prsntrs_wrap .media-body h3 {
    font-size: 16px;
  }
}
#prsntr_cntnt .prsntrs_wrap .media-body .headlines {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  font-style: italic;
  color: #555;
  list-style: none;
  max-width: 350px;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  #prsntr_cntnt .prsntrs_wrap .media-body .headlines {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .prsntrs_wrap .media-body .headlines {
    font-size: 13px;
    margin: 0 0 5px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .prsntrs_wrap .media-body .headlines {
    font-size: 12px;
  }
}
#prsntr_cntnt .prsntrs_wrap .media-body .headlines li {
  margin: 0;
}
#prsntr_cntnt .prsntrs_wrap .media-body .btn {
  transition: 0.2s;
  position: absolute;
  background: #fff;
  border: 1px solid #5E1DE1;
  right: 0;
  top: 20px;
  width: 145px;
  font-size: 13px;
  line-height: 32px;
  font-weight: 700;
  color: #5E1DE1;
  padding: 0 33px;
}
@media (max-width: 991px) {
  #prsntr_cntnt .prsntrs_wrap .media-body .btn {
    position: relative;
    font-size: 13px;
    line-height: 30px;
    top: auto;
    margin: 10px 0 0;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .prsntrs_wrap .media-body .btn {
    position: relative;
    font-size: 12px;
    line-height: 28px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .prsntrs_wrap .media-body .btn {
    position: relative;
    font-size: 12px;
    line-height: 24px;
    margin: 7px 0 0;
  }
}
#prsntr_cntnt .prsntrs_wrap .media-body .btn:hover {
  background: #5E1DE1;
  color: #fff;
}
#prsntr_cntnt .card .card-header {
  box-shadow: none;
}
#prsntr_cntnt .card .card-header h5 {
  padding: 14px 50px 14px 0;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  right: 0;
}
@media (max-width: 1300px) {
  #prsntr_cntnt .card .card-header h5 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .card .card-header h5 {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .card .card-header h5 {
    font-size: 16px;
    padding: 14px 50px 10px 0;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .card .card-header h5 {
    font-size: 14px;
  }
}
#prsntr_cntnt .card .card-header h5 a {
  width: 50px;
  border: none;
  outline: none;
  background: transparent !important;
  justify-content: flex-end;
  right: 0;
}
#prsntr_cntnt .card .card-header h5 a .txt {
  display: none;
}
#prsntr_cntnt .card .card-header h5 a .icon {
  width: 28px;
  height: 28px;
  background: #eee;
  border-radius: 50%;
  font-size: 12px;
  color: #555;
  line-height: 28px;
  margin: 0;
}
#prsntr_cntnt .card .card-body {
  padding: 30px 0 30px 0;
}
@media (max-width: 1699px) {
  #prsntr_cntnt .card .card-body {
    padding: 30px 0 30px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .card .card-body {
    padding: 30px 0 30px;
  }
}
#prsntr_cntnt .card .card-body h2 {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0 0 23px;
  color: #000;
}
@media (max-width: 1919px) {
  #prsntr_cntnt .card .card-body h2 {
    font-size: 20px;
  }
}
@media (max-width: 1300px) {
  #prsntr_cntnt .card .card-body h2 {
    font-size: 18px;
  }
}
@media (max-width: 1699px) {
  #prsntr_cntnt .card .card-body h2 {
    margin: 0 0 20px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .card .card-body h2 {
    font-size: 16px;
    margin: 0 0 15px;
  }
}
#prsntr_cntnt .card .card-body ol {
  padding: 0 0 0 20px;
}
@media (max-width: 639px) {
  #prsntr_cntnt .card .card-body ol {
    padding: 0 0 0 15px;
  }
}
#prsntr_cntnt .card .card-body ol li {
  margin: 0 0 15px;
}
#prsntr_cntnt .card .card-body ol ol {
  padding-top: 20px;
}
@media (max-width: 639px) {
  #prsntr_cntnt .card .card-body ol ol {
    padding-top: 15px;
  }
}
#prsntr_cntnt .resources .media {
  margin-bottom: 30px;
  align-items: center;
  position: relative;
}
@media (max-width: 639px) {
  #prsntr_cntnt .resources .media {
    align-items: flex-start;
    align-content: flex-start;
  }
}
#prsntr_cntnt .resources .media .thumb_wrap {
  margin-right: 25px;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media (max-width: 991px) {
  #prsntr_cntnt .resources .media .thumb_wrap {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .resources .media .thumb_wrap {
    margin-right: 5px;
  }
}
#prsntr_cntnt .resources .media .thumb_wrap img {
  max-width: 110px;
  max-height: 150px;
}
#prsntr_cntnt .resources .media .media-body {
  padding-right: 15px;
}
#prsntr_cntnt .resources .media .media-body p {
  margin: 0;
}
#prsntr_cntnt .resources .media .media-body .ttl {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: -3px;
}
@media (max-width: 767px) {
  #prsntr_cntnt .resources .media .media-body .ttl {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 0;
  }
}
#prsntr_cntnt .resources .media .media-body .descr {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #747474;
  margin-bottom: 0;
}
#prsntr_cntnt .resources .media .media-body .type {
  font-size: 13px;
  font-weight: 400;
  color: #5E1DE1;
}
#prsntr_cntnt .resources .media .btn-green {
  position: relative;
  font-size: 13px;
  text-transform: lowercase;
  padding: 8px 30px;
  width: 100%;
  max-width: 200px;
}
@media (max-width: 639px) {
  #prsntr_cntnt .resources .media .btn-green {
    position: absolute;
    bottom: 5px;
    left: 115px;
    font-size: 12px;
    padding: 5px 30px;
    left: calc(50% - 100px);
    width: 200px;
  }
}
#prsntr_cntnt .resources .media .btn-green::first-letter {
  text-transform: uppercase;
}
#prsntr_cntnt .resources .media .btn-green .icon-lock {
  position: absolute;
  top: 8px;
  right: 12px;
}
@media (max-width: 767px) {
  #prsntr_cntnt .resources .media .btn-green .icon-lock {
    top: 8px;
  }
}
#prsntr_cntnt .tab-pane h1 {
  margin: 0 0 0 0;
  font-size: 22px;
  line-height: 1.33;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 767px) {
  #prsntr_cntnt .tab-pane h1 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .tab-pane h1 {
    font-size: 18px;
  }
}
#prsntr_cntnt .tab-pane .date_time {
  margin: 10px 0 2px 1px;
}
#prsntr_cntnt .tab-pane .sssn_duration {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
  color: #747474;
  display: inline-block;
}
@media (max-width: 767px) {
  #prsntr_cntnt .tab-pane .sssn_duration {
    display: block;
    margin-top: -3px;
    margin-bottom: 10px;
  }
}
#prsntr_cntnt .tab-pane .dateholder {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
  color: #747474;
  display: inline-block;
  margin: 0 12px 0 0;
}
#prsntr_cntnt .tab-pane .dateholder b {
  font-weight: 600;
}
#prsntr_cntnt .tab-pane .choose_tz .caret {
  font-family: "fontello", serif;
  font-style: normal;
  font-size: 14px;
  display: none;
  width: 1.1em;
  margin-right: 0.1em;
  text-align: center;
  border: none;
  margin-top: -10px;
}
#prsntr_cntnt .tab-pane .choose_tz .caret:before {
  content: "\e75c";
}
#prsntr_cntnt .tab-pane .choose_tz .dropdown-menu.open {
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 0;
  /* Firefox 1-3.6 */
  -moz-border-radius: 0;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 0;
  border-top: 1px solid #5E1DE1;
}
@media screen and (min-width: 991px) {
  #prsntr_cntnt .tab-pane .choose_tz .dropdown-menu.open {
    left: -144px !important;
  }
}
#prsntr_cntnt .tab-pane .choose_tz .dropdown-menu li a {
  padding: 10px 0 10px 20px;
}
#prsntr_cntnt .tab-pane .choose_tz.open .caret:before {
  content: "\e75f";
}
#prsntr_cntnt .tab-pane .descr {
  font: 400 16px/1.9 "Poppins";
  color: #000;
}
#prsntr_cntnt .tab-pane .descr p {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #000;
  margin: 0 0 20px;
}
@media (max-width: 639px) {
  #prsntr_cntnt .tab-pane .descr p {
    font-size: 14px;
    margin: 0 0 15px;
  }
}
#prsntr_cntnt .tab-pane .descr ul {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #000;
  padding: 0 0 0 18px;
  margin: 0 0 36px;
}
@media (max-width: 639px) {
  #prsntr_cntnt .tab-pane .descr ul {
    font-size: 14px;
  }
}
#prsntr_cntnt .tab-pane .descr ol {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #000;
}
@media (max-width: 639px) {
  #prsntr_cntnt .tab-pane .descr ol {
    font-size: 14px;
  }
}
#prsntr_cntnt .tab-pane .starters h3,
#prsntr_cntnt .tab-pane .takeaways h3 {
  font-size: 26px;
  line-height: 1.5em;
  font-weight: 600;
  color: #000;
}
@media (max-width: 991px) {
  #prsntr_cntnt .tab-pane .starters h3,
  #prsntr_cntnt .tab-pane .takeaways h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .tab-pane .starters h3,
  #prsntr_cntnt .tab-pane .takeaways h3 {
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .tab-pane .starters h3,
  #prsntr_cntnt .tab-pane .takeaways h3 {
    font-size: 22px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .tab-pane .starters h3,
  #prsntr_cntnt .tab-pane .takeaways h3 {
    font-size: 20px;
  }
}
#prsntr_cntnt .tab-pane .starters ol,
#prsntr_cntnt .tab-pane .takeaways ol {
  padding: 0 0 0 18px;
}
#prsntr_cntnt .tab-pane .starters ol li,
#prsntr_cntnt .tab-pane .takeaways ol li {
  margin: 0 0 5px;
}
#prsntr_cntnt .tab-pane .starters ul,
#prsntr_cntnt .tab-pane .takeaways ul {
  padding: 0 0 0 18px;
  margin: 0 0 36px;
}
#prsntr_cntnt .bootstrap-select {
  width: auto;
  margin: 0;
}
@media (max-width: 767px) {
  #prsntr_cntnt .bootstrap-select {
    margin: 5px 0 10px;
  }
}
#prsntr_cntnt .bootstrap-select button.btn.dropdown-toggle {
  font-size: 12px;
  line-height: auto;
  font-weight: 600;
  border-radius: 6px;
  text-transform: capitalize;
  background: #5E1DE1;
  color: #fff !important;
  margin: 0 20px 0 0;
  padding: 6px 32px 6px 12px;
  border: none;
  width: auto;
}
#prsntr_cntnt .bootstrap-select button.btn.dropdown-toggle:after {
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  margin: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 5px;
}
#prsntr_cntnt .sssn_meta {
  border-bottom: 1px solid #ddd;
  padding: 30px 150px 20px 0;
}
@media (max-width: 1699px) {
  #prsntr_cntnt .sssn_meta {
    padding: 30px 0 20px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .sssn_meta {
    padding: 20px 0;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .sssn_meta {
    padding: 15px 0 10px;
  }
}
#prsntr_cntnt .upcoming_wrap {
  padding-bottom: 55%;
  position: relative;
}
@media (max-width: 1300px) {
  #prsntr_cntnt .upcoming_wrap {
    min-height: 300px;
    background: #000;
  }
}
#prsntr_cntnt .upcoming_wrap > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1300px) {
  #prsntr_cntnt .upcoming_wrap > img {
    object-fit: contain;
  }
}
#prsntr_cntnt .upcoming_wrap .check_wrap,
#prsntr_cntnt .upcoming_wrap .btn,
#prsntr_cntnt .upcoming_wrap .presenters {
  display: none;
}
#prsntr_cntnt .upcoming_wrap .overlay {
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .overlay {
    padding: 30px;
  }
}
#prsntr_cntnt .upcoming_wrap .overlay .date-cal {
  min-width: 76px;
  text-align: center;
  margin: 0 auto 25px;
}
@media (max-width: 1699px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal {
    min-width: 70px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal {
    min-width: 54px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal {
    margin: 0 auto 18px;
  }
}
#prsntr_cntnt .upcoming_wrap .overlay .date-cal span {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: #5E1DE1;
  border-radius: 6px 6px 0 0;
  padding: 3px 5px 5px;
  display: block;
}
@media (max-width: 1699px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal span {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal span {
    font-size: 14px;
    padding: 3px 5px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal span {
    font-size: 12px;
  }
}
#prsntr_cntnt .upcoming_wrap .overlay .date-cal p {
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
  color: #5E1DE1;
  background: #fff;
  border-radius: 0 0 6px 6px;
  margin: 0;
}
@media (max-width: 1699px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal p {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal p {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal p {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal p {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .upcoming_wrap .overlay .date-cal p {
    font-size: 28px;
    line-height: 32px;
  }
}
#prsntr_cntnt .upcoming_wrap .overlay > .btn.btn_gradient_purple {
  max-width: 255px;
  width: 100%;
  line-height: 35px;
}
#prsntr_cntnt .upcoming_wrap .overlay p {
  font-size: 15px;
  margin: 0 0 5px;
}
#prsntr_cntnt .upcoming_wrap .overlay h2 {
  font-size: 36px;
  line-height: 1.28;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}
@media (max-width: 1699px) {
  #prsntr_cntnt .upcoming_wrap .overlay h2 {
    font-size: 34px;
  }
}
@media (max-width: 1300px) {
  #prsntr_cntnt .upcoming_wrap .overlay h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .overlay h2 {
    font-size: 28px;
    margin: 0 auto 40px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .upcoming_wrap .overlay h2 {
    font-size: 26px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .upcoming_wrap .overlay h2 {
    font-size: 22px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .upcoming_wrap .overlay h2 {
    font-size: 20px;
  }
}
#prsntr_cntnt .upcoming_wrap .overlay .zoom_label {
  position: relative;
  width: 80%;
  max-width: 400px;
  margin: 0 auto 40px;
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .overlay .zoom_label {
    margin: 0 auto 25px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .upcoming_wrap .overlay .zoom_label {
    width: 100%;
  }
}
#prsntr_cntnt .upcoming_wrap .overlay .zoom_label span {
  position: absolute;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  white-space: nowrap;
  right: 100%;
  top: 50%;
  margin-top: -10px;
  padding: 0 15px;
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .overlay .zoom_label span {
    right: 50%;
    top: -15px;
    transform: translateX(50%);
  }
}
#prsntr_cntnt .upcoming_wrap .overlay .zoom_label input {
  height: 55px;
  font-size: 16px;
  color: #555;
  border: none;
  background: #fff;
  -webkit-appearance: none;
  width: 100%;
}
@media (max-width: 1300px) {
  #prsntr_cntnt .upcoming_wrap .overlay .zoom_label input {
    height: 50px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .upcoming_wrap .overlay .zoom_label input {
    font-size: 14px;
    height: 48px;
  }
}
#prsntr_cntnt .upcoming_wrap .overlay .btn {
  font-size: 15px;
  line-height: 40px;
  font-weight: 700;
  padding: 0 30px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .overlay .btn {
    font-size: 13px;
    line-height: 38px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .upcoming_wrap .overlay .btn {
    font-size: 13px;
    line-height: 36px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .upcoming_wrap .overlay .btn {
    font-size: 12px;
    line-height: 30px;
  }
}
#prsntr_cntnt .upcoming_wrap .overlay .btn i {
  margin-right: 10px;
}
#prsntr_cntnt .upcoming_wrap .btn_gradient_purple {
  opacity: 1;
  letter-spacing: 0;
  height: 40px;
  border: 2px solid #5E1DE1;
  border-radius: 20px;
  background: #5E1DE1;
  color: #fff;
  font-size: 14px;
  line-height: 34px;
  font-weight: 600;
  padding: 0 20px 0 50px;
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 2;
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .btn_gradient_purple {
    bottom: 20px;
    right: 20px;
    height: 38px;
    font-size: 14px;
    line-height: 32px;
    padding: 0 20px 0 46px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .upcoming_wrap .btn_gradient_purple {
    bottom: 15px;
    right: 15px;
    height: 34px;
    font-size: 13px;
    line-height: 28px;
    padding: 0 15px 0 38px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .upcoming_wrap .btn_gradient_purple {
    margin: 3px 0 0;
    height: 28px;
    font-size: 12px;
    line-height: 24px;
  }
}
#prsntr_cntnt .upcoming_wrap .btn_gradient_purple i {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 50%;
  width: 32px;
  font-size: 16px;
  background: #fff;
  color: #5E1DE1;
}
@media (max-width: 991px) {
  #prsntr_cntnt .upcoming_wrap .btn_gradient_purple i {
    width: 30px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .upcoming_wrap .btn_gradient_purple i {
    width: 26px;
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .upcoming_wrap .btn_gradient_purple i {
    width: 22px;
    font-size: 13px;
  }
}
#prsntr_cntnt .rec_wrap {
  margin: 0;
}
#prsntr_cntnt .rec_wrap .get_access_btm {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding-right: 1px;
  max-width: 220px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0;
  margin-top: 0;
  margin-left: 5px;
  margin-right: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .get_access_btm {
    line-height: 40px;
    height: 40px;
  }
}
#prsntr_cntnt .rec_wrap .get_access_btm .icon-login {
  margin-right: 15px;
}
#prsntr_cntnt .rec_wrap .sssn_countdown {
  background: #5E1DE1;
  align-items: center;
  padding: 10px 30px;
  display: flex;
  color: #fff;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown {
    align-items: center;
  }
}
#prsntr_cntnt .rec_wrap .sssn_countdown p {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  margin: 0 14px 0 0;
}
#prsntr_cntnt .rec_wrap .sssn_countdown .countdown {
  margin: 0 auto 0 0;
  font-size: 36px;
  color: #fff;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .countdown {
    font-size: 30px;
    margin: 4px auto 0 -7px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .countdown {
    font-size: 30px;
    margin: 0 auto 0 -7px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .countdown {
    margin: 0 auto 5px;
  }
}
#prsntr_cntnt .rec_wrap .sssn_countdown .countdown .countdown-row {
  padding: 0;
}
#prsntr_cntnt .rec_wrap .sssn_countdown .countdown .countdown-section {
  width: 86px;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .countdown .countdown-section {
    width: 50px;
  }
}
#prsntr_cntnt .rec_wrap .sssn_countdown .countdown .countdown-section:after {
  right: -4px;
  top: -2px;
}
#prsntr_cntnt .rec_wrap .sssn_countdown .countdown .countdown-section .countdown-period {
  margin-top: -5px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  font-style: italic;
  color: #fff;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .countdown .countdown-section .countdown-period {
    font-size: 10px;
  }
}
#prsntr_cntnt .rec_wrap .sssn_countdown .btn {
  opacity: 1;
  letter-spacing: 0;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  background: #fff;
  color: #5E1DE1;
  font-size: 14px;
  line-height: 34px;
  font-weight: 600;
  padding: 0 20px 0 50px;
  position: relative;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .btn {
    margin: -60px 0 17px auto;
    height: 38px;
    font-size: 14px;
    line-height: 32px;
    padding: 0 20px 0 46px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .btn {
    margin: -65px 0 20px auto;
    height: 34px;
    font-size: 13px;
    line-height: 28px;
    padding: 0 15px 0 38px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .btn {
    margin: 3px 0 0;
    height: 30px;
    font-size: 12px;
    line-height: 24px;
  }
}
#prsntr_cntnt .rec_wrap .sssn_countdown .btn i {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 50%;
  width: 32px;
  font-size: 16px;
  background: #5E1DE1;
  color: #fff;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .btn i {
    width: 30px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .btn i {
    width: 26px;
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .rec_wrap .sssn_countdown .btn i {
    width: 24px;
    font-size: 13px;
  }
}
#prsntr_cntnt .rec_wrap .sssn_countdown .btn:hover {
  opacity: 0.9;
}
#prsntr_cntnt .rec_wrap .btn.btn_gradient_purple.locked {
  position: relative;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s linear;
  border: none;
  padding: 27px 15px;
  width: 50%;
  border-radius: 0;
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .btn.btn_gradient_purple.locked {
    padding: 15px 15px;
    font-size: 14px;
  }
}
#prsntr_cntnt .rec_wrap .btn.btn_gradient_purple.locked .icon-lock {
  font-weight: 400;
}
#prsntr_cntnt .rec_wrap .btn.btn_gradient_purple.locked:hover {
  background: rgba(94, 29, 225, 0.05);
}
#prsntr_cntnt .rec_wrap .btn.btn_gradient_purple.locked:hover:before {
  position: absolute;
  top: 8px;
  left: 48%;
  display: block;
  font-size: 38px;
  font-family: "fontello", serif;
  content: "\e82d";
  color: #fff;
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .btn.btn_gradient_purple.locked:hover:before {
    top: 10px;
    font-size: 27px;
  }
}
#prsntr_cntnt .rec_wrap .play_video,
#prsntr_cntnt .rec_wrap .play_audio {
  font-size: 16px;
  color: #555;
  transition: all 0.3s linear;
  border: 1px solid #ddd;
  padding: 25px 15px;
  width: 50%;
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .play_video,
  #prsntr_cntnt .rec_wrap .play_audio {
    padding: 15px 15px;
    font-size: 14px;
  }
}
#prsntr_cntnt .rec_wrap .play_video:hover,
#prsntr_cntnt .rec_wrap .play_audio:hover {
  background: rgba(94, 29, 225, 0.05);
  border-color: #5E1DE1;
  color: #5E1DE1;
}
#prsntr_cntnt .rec_wrap .play_video:hover span.icon-video,
#prsntr_cntnt .rec_wrap .play_video:hover span.icon-sound,
#prsntr_cntnt .rec_wrap .play_audio:hover span.icon-video,
#prsntr_cntnt .rec_wrap .play_audio:hover span.icon-sound {
  transform: scale(1.3);
}
#prsntr_cntnt .rec_wrap .play_video span.icon-video,
#prsntr_cntnt .rec_wrap .play_video span.icon-sound,
#prsntr_cntnt .rec_wrap .play_audio span.icon-video,
#prsntr_cntnt .rec_wrap .play_audio span.icon-sound {
  transition: transform 0.3s linear;
  position: relative;
  margin-right: 5px;
  font-size: 22px;
  top: 2px;
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .play_video span.icon-video,
  #prsntr_cntnt .rec_wrap .play_video span.icon-sound,
  #prsntr_cntnt .rec_wrap .play_audio span.icon-video,
  #prsntr_cntnt .rec_wrap .play_audio span.icon-sound {
    font-size: 16px;
    top: 0;
  }
}
#prsntr_cntnt .rec_wrap .play_video.active,
#prsntr_cntnt .rec_wrap .play_audio.active {
  border-bottom: 2px solid #5E1DE1;
  padding: 25px 15px 24px;
  color: #5E1DE1;
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .play_video.active,
  #prsntr_cntnt .rec_wrap .play_audio.active {
    padding: 15px 15px 14px;
  }
}
#prsntr_cntnt .rec_wrap .play_video {
  border-radius: 0 0 0 6px;
}
#prsntr_cntnt .rec_wrap .play_audio {
  border-left: 1px solid transparent;
  border-radius: 0 0 6px 0;
}
#prsntr_cntnt .rec_wrap .video {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
#prsntr_cntnt .rec_wrap .video picture.cover_image {
  z-index: 15;
  transition: all ease 1s;
}
#prsntr_cntnt .rec_wrap .video .presenters {
  position: absolute;
  z-index: 22;
  left: 40px;
  color: #fff;
  bottom: 30px;
  color: #f0edf6;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  max-width: 60%;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .video .presenters {
    bottom: 15px;
    left: 15px;
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .rec_wrap .video .presenters {
    font-size: 10px;
    max-width: 50%;
  }
}
#prsntr_cntnt .rec_wrap .video .rating_wrap {
  position: absolute;
  z-index: 22;
  top: 45px;
  right: 45px;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .video .rating_wrap {
    top: 25px;
    right: 0px;
  }
}
#prsntr_cntnt .rec_wrap .video .rating_wrap div {
  order: 2;
  font-size: 14px;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .video .rating_wrap div {
    font-size: 10px;
  }
}
#prsntr_cntnt .rec_wrap .video .rating_wrap span {
  order: 1;
  display: block;
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .video .rating_wrap span {
    font-size: 24px;
  }
}
#prsntr_cntnt .rec_wrap .video.video-play picture.lazy.cover_image {
  display: none;
}
#prsntr_cntnt .rec_wrap .video .btn.get_access {
  transition: all 1s linear;
  position: absolute;
  padding: 10px 40px;
  font-size: 16px;
  width: initial;
  z-index: -1;
  right: 15px;
  opacity: 0;
  top: 15px;
  margin: 0;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .video .btn.get_access {
    font-size: 14px;
    padding: 8px 30px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .video .btn.get_access {
    font-size: 13px;
    padding: 7px 25px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .rec_wrap .video .btn.get_access {
    font-size: 12px;
    padding: 6px 20px;
    letter-spacing: 0;
  }
}
#prsntr_cntnt .rec_wrap .video .btn.get_access.active {
  z-index: 20;
  opacity: 1;
}
#prsntr_cntnt .rec_wrap .video .btn.btn-play-video {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 6px;
  width: 80px;
  height: 50px;
  font-size: 34px;
  background: #5E1DE1;
  margin: auto;
  z-index: 25;
  bottom: 100px;
  left: 40px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}
@media (max-width: 991px) {
  #prsntr_cntnt .rec_wrap .video .btn.btn-play-video {
    left: 15px;
    bottom: 50px;
    width: 34px;
    height: 20px;
    font-size: 14px;
  }
}
#prsntr_cntnt .rec_wrap .video .btn.btn-play-video:hover {
  transform: scale(1.1);
}
#prsntr_cntnt .rec_wrap .video .btn.btn-play-video span {
  margin-left: 5px;
}
#prsntr_cntnt .rec_wrap .video .btn.btn-play-video svg {
  transition: 0.2s;
  opacity: 1;
  width: 90px;
  height: 80px;
}
@media (max-width: 1300px) {
  #prsntr_cntnt .rec_wrap .video .btn.btn-play-video svg {
    width: 80px;
    height: 70px;
  }
}
@media (max-width: 1300px) {
  #prsntr_cntnt .rec_wrap .video .btn.btn-play-video svg {
    width: 70px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .rec_wrap .video .btn.btn-play-video svg {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .rec_wrap .video .btn.btn-play-video svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .rec_wrap .video .btn.btn-play-video svg {
    width: 40px;
    height: 30px;
  }
}
#prsntr_cntnt .rec_wrap .video .btn.btn-play-video:focus {
  color: #ffffff;
}
#prsntr_cntnt .rec_wrap .video .btn.btn-play-video:hover svg {
  transform: scale(1.1);
}
#prsntr_cntnt .rec_wrap .video .btn.btn-play-video .icon-pause {
  display: none;
}
#prsntr_cntnt .rec_wrap .video.video-pause .btn.get_access {
  display: none;
}
#prsntr_cntnt .rec_wrap .video.video-pause .btn.btn-play-video .icon-pause {
  display: none;
}
#prsntr_cntnt .rec_wrap .video.video-pause .btn.btn-play-video .pause,
#prsntr_cntnt .rec_wrap .video.video-pause .btn.btn-play-video .fa-pause {
  display: none;
}
#prsntr_cntnt .rec_wrap .video.video-play img {
  position: absolute;
  opacity: 0;
  z-index: 0;
}
#prsntr_cntnt .rec_wrap .video.video-play .btn.btn-play-video {
  color: #fff;
  opacity: 0;
  bottom: 0;
  top: 0;
}
#prsntr_cntnt .rec_wrap .video.video-play .btn.btn-play-video .icon-play {
  display: none;
}
#prsntr_cntnt .rec_wrap .video.video-play .btn.btn-play-video .icon-pause {
  display: initial;
}
#prsntr_cntnt .rec_wrap .video.video-play .btn.btn-play-video svg,
#prsntr_cntnt .rec_wrap .video.video-play .btn.btn-play-video .play,
#prsntr_cntnt .rec_wrap .video.video-play .btn.btn-play-video .svg-play {
  opacity: 0;
}
#prsntr_cntnt .rec_wrap .video.video-play .btn.btn-play-video .fa:before {
  padding: 0 0 0 5px;
}
#prsntr_cntnt .rec_wrap .video.hover .btn.btn-play-video {
  opacity: 1;
}
#prsntr_cntnt .rec_wrap .sssn_presenters {
  font-size: 17px;
  line-height: 1.15;
  font-weight: 400;
  color: #fff;
  background: #5E1DE1;
  padding: 25px 35px;
}
#prsntr_cntnt .rec_wrap .sssn_presenters a {
  font-weight: 700;
  color: #fff;
}
#prsntr_cntnt .foot {
  text-align: left;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: none;
  outline: none;
}
#prsntr_cntnt .foot h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #000;
  margin: 15px 0 4px 0;
  padding: 10px 0;
}
@media (max-width: 1300px) {
  #prsntr_cntnt .foot h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #prsntr_cntnt .foot h3 {
    font-size: 18px;
    margin: 10px 0 0;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .foot h3 {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  #prsntr_cntnt .foot h3 {
    font-size: 14px;
  }
}
#prsntr_cntnt .foot ul {
  margin: 0 -10px;
  padding: 15px 0 0;
  position: relative;
  list-style: none;
  overflow: hidden;
}
@media (max-width: 639px) {
  #prsntr_cntnt .foot ul {
    margin: 0 -7.5px;
  }
}
#prsntr_cntnt .foot ul:before {
  border-top: 1px solid #ddd;
  position: absolute;
  display: block;
  content: "";
  right: 10px;
  left: 10px;
  top: 0;
}
@media (max-width: 639px) {
  #prsntr_cntnt .foot ul:before {
    right: 7.5px;
    left: 7.5px;
  }
}
#prsntr_cntnt .foot ul li {
  padding: 0 10px;
  width: 25%;
  float: left;
  margin: 0;
}
@media (max-width: 1300px) {
  #prsntr_cntnt .foot ul li {
    width: 33.3333%;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .foot ul li {
    padding: 0 7.5px;
    width: 50%;
  }
}
#prsntr_cntnt .foot ul li a.btn {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  background: #5E1DE1;
  padding: 8px 0;
  border-radius: 20px;
  letter-spacing: 0;
  margin: 0 0 15px;
  width: 100%;
}
@media (max-width: 991px) {
  #prsntr_cntnt .foot ul li a.btn {
    font-size: 13px;
    padding: 6px 0;
    margin: 0 0 10px;
  }
}
@media (max-width: 639px) {
  #prsntr_cntnt .foot ul li a.btn {
    padding: 5px 0;
    font-size: 12px;
  }
}
#prsntr_cntnt .foot ul li a.btn i.fa {
  font-size: 18px;
  margin-right: 5px;
}
#prsntr_cntnt .foot ul li a.btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}
#prsntr_cntnt .foot + .descr_sm_wrap {
  padding: 50px 0;
}
#prsntr_cntnt .descr_sm_wrap {
  padding: 0 30px 60px;
}
#prsntr_cntnt .accordion-toggle {
  display: block;
  background: #5E1DE1;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  padding: 16px 20px;
}
@media (max-width: 639px) {
  #prsntr_cntnt .accordion-toggle {
    margin: 0 -15px;
  }
}

#prsntr_upgrade {
  text-align: center;
  background: #fff;
  padding: 80px 0;
}
#prsntr_upgrade p {
  font: 400 22px/1.4em "Poppins";
  max-width: 620px;
  margin: 0 auto 0;
  color: #000;
}
#prsntr_upgrade p b {
  font-weight: 600;
  color: #5E1DE1;
}
#prsntr_upgrade .btn_gradient_purple {
  margin: 20px auto;
  padding: 15px 0;
  font-size: 20px;
  width: 290px;
}

.show_all {
  margin: 30px auto 0;
  display: block;
}
.show_all .btn-green {
  max-width: 348px;
  padding: 12px 85px;
  margin: 0 auto 18px;
  display: table;
  border-radius: 0;
  background-color: #5E1DE1;
  color: #ffffff;
  letter-spacing: 1.9px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
.show_all .btn-green:hover {
  background-color: #6e33e5;
}
.show_all .btn-green:before {
  display: inline;
  content: "HIDE";
}
.show_all .btn-green.collapsed:before {
  content: "READ";
}
.show_all .btn-green.collapsed ~ .fa-angle-down {
  display: block;
}
.show_all .btn-green.collapsed ~ .fa-angle-up {
  display: none;
}
.show_all .fa-angle-down {
  text-align: center;
  line-height: 8px;
  display: none;
}
.show_all .fa-angle-down:before {
  font-size: 20px;
  line-height: 8px;
  color: #5E1DE1;
}
.show_all .fa-angle-up {
  text-align: center;
  line-height: 8px;
  display: block;
}
.show_all .fa-angle-up:before {
  font-size: 20px;
  line-height: 8px;
  color: #5E1DE1;
}

.page-template-mmbrs_login {
  position: relative;
  padding: 21px 0;
  min-height: 100vh;
  padding-bottom: 0 !important;
}
.page-template-mmbrs_login header {
  z-index: 5;
}
.page-template-mmbrs_login header img.logo {
  display: block;
  width: 160px;
  height: initial;
}
.page-template-mmbrs_login .login_copy p {
  margin-bottom: 0;
  color: #fff;
}
.page-template-mmbrs_login .login_copy p a {
  color: #fff;
}

body.admin-bar #login {
  min-height: calc(100vh - 162px);
}

.logged-in #login {
  padding: 30px 0 120px;
}
@media (max-width: 479px) {
  .logged-in #login {
    padding: 60px 0 20px;
  }
}
@media (max-width: 1919px) {
  .logged-in #login:before {
    top: -5%;
  }
}
.logged-in #login .top_content {
  display: none;
}
.logged-in #login .logged_in_wrap {
  padding: 30px 15px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
}
@media (max-width: 1919px) {
  .logged-in #login .logged_in_wrap {
    margin: 0 auto 0;
    border-radius: 6px;
    padding-bottom: 40px;
    background: rgba(0, 0, 0, 0.6);
  }
}
.logged-in #login .logged_in_wrap h3 {
  font-size: 26px;
  line-height: 35px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
@media (max-width: 991px) {
  .logged-in #login .logged_in_wrap h3 {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .logged-in #login .logged_in_wrap h3 {
    font-size: 22px;
  }
}
.logged-in #login .logged_in_wrap p {
  font-size: 14px;
  line-height: 1.45em;
  font-weight: 400;
  color: #fff;
  margin: 0 0 25px;
}
@media (max-width: 991px) {
  .logged-in #login .logged_in_wrap p {
    font-size: 15px;
    margin: 0 0 20px;
  }
}
.logged-in #login .logged_in_wrap a.btn.btn-green {
  font-size: 15px;
  line-height: 1.25em;
  letter-spacing: 3px;
  border-radius: 50px;
  padding: 15px 65px;
}
@media (max-width: 991px) {
  .logged-in #login .logged_in_wrap a.btn.btn-green {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 12px 50px;
  }
}

#login {
  justify-content: center;
  flex-direction: column;
  padding: 90px 0 100px;
  align-items: center;
  position: relative;
  text-align: center;
  min-height: calc(100vh - 130px);
  height: 100%;
  overflow: hidden;
  display: flex;
  margin: auto;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 991px) {
  #login {
    min-height: calc(100vh - 95px);
  }
}
@media (max-width: 767px) {
  #login {
    padding: 70px 0 20px;
  }
}
@media (max-width: 639px) {
  #login {
    padding: 60px 0 20px;
  }
}
#login.with_step {
  padding: 0 0 30px;
}
#login.with_step .step {
  margin: 47px 0 65px;
  display: block;
}
@media (max-width: 1699px) {
  #login.with_step .step {
    margin: 40px 0 30px;
  }
}
#login.with_step .step span {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  background: #5E1DE1;
  text-align: center;
  border-radius: 50%;
  margin: 0 0 15px;
  height: 40px;
  width: 40px;
}
@media (max-width: 1699px) {
  #login.with_step .step span {
    font-size: 18px;
    line-height: 21px;
    margin: 0 0 10px;
    height: 32px;
    width: 32px;
  }
}
#login.with_step .step p {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  letter-spacing: 7.7px;
  margin: 0;
}
@media (max-width: 1699px) {
  #login.with_step .step p {
    letter-spacing: 2.5px;
  }
}
#login.with_step form:before, #login.with_step form:after {
  background: #5E1DE1;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  bottom: -150px;
  margin: auto;
  height: 9px;
  width: 9px;
  z-index: 1;
  right: 0;
  left: 0;
}
@media (max-width: 1699px) {
  #login.with_step form:before, #login.with_step form:after {
    bottom: -40px;
  }
}
@media (max-width: 479px) {
  #login.with_step form:before, #login.with_step form:after {
    bottom: 15px;
  }
}
#login.with_step form:before {
  right: 20px;
}
#login.with_step form:after {
  left: 20px;
  background: #bbb;
}
#login .step {
  display: none;
}
#login .container {
  position: relative;
  max-width: 722px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 100px 160px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  #login .container {
    padding: 60px 30px 40px;
  }
}
#login .container .form_wrap {
  max-width: 536px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#login .container .form_wrap a[data-provider^=google] .auth0-lock-social-button-icon {
  z-index: 11;
  transition: all ease 0.3s;
}
#login .container .form_wrap a[data-provider^=google] .auth0-lock-social-button-text {
  font-size: 0;
  position: relative;
}
#login .container .form_wrap a[data-provider^=google] .auth0-lock-social-button-text:before {
  font-size: 14px !important;
  font-width: 600;
  content: "Sign in with Google";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  right: 0;
  font-size: 0;
  padding-left: 12px;
  z-index: 6;
  transition: all ease 0.3s;
}
#login .container .form_wrap a[data-provider^=google]:hover > div {
  opacity: 0.6;
}
#login .trouble_login {
  text-align: center;
  color: #dc099e;
  font-size: 15px;
  font-weight: 600;
}
#login .top_content {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#login .top_content span {
  display: block;
  margin: 0 auto;
  text-align: center;
}
#login h1 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  color: #fff;
  position: relative;
  text-align: left;
  max-width: 620px;
  margin: 0 auto 10px;
}
@media (max-width: 767px) {
  #login h1 {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  #login h1 br {
    display: none;
  }
}
#login p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
  font-family: "Inter";
}
#login p b {
  color: #c02d98;
}
#login p .mob-deliver {
  display: none;
}
@media (max-width: 639px) {
  #login p .mob-deliver {
    display: initial;
  }
}
#login p.copy {
  font-size: 12px;
  font-style: italic;
  color: #767676;
  text-align: center;
  position: relative;
  margin: 265px 0 0;
}
@media (max-width: 1699px) {
  #login p.copy {
    margin: 140px 0 0;
  }
}
@media (max-width: 639px) {
  #login p.copy {
    margin: 90px 0 0;
  }
}
#login p.copy:before {
  border-top: 1px solid #ddd;
  content: "";
  display: block;
  position: absolute;
  width: 160px;
  margin: auto;
  top: -22px;
  right: 0;
  left: 0;
}
#login p.copy a {
  color: #5E1DE1;
}
#login .forgot_pass {
  position: relative;
}
#login form {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
  margin: 40px 0 15px;
  border-radius: 6px;
  text-align: left;
}
#login form .i4w_login_username,
#login form .i4w_login_password {
  margin: 0;
}
#login form .i4w_login_username label,
#login form .i4w_login_password label {
  color: #fff;
  font: 600 15px/1.6em "Poppins";
  margin: 35px 0 4px;
}
@media (max-width: 639px) {
  #login form .i4w_login_username label,
  #login form .i4w_login_password label {
    margin: 15px 0 2px;
  }
}
@media (max-width: 479px) {
  #login form .i4w_login_username label,
  #login form .i4w_login_password label {
    font-size: 13px;
  }
}
#login form .i4w_login_username input,
#login form .i4w_login_password input {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  height: 58px;
  width: 100%;
  transition: all 0.2s;
}
@media (max-width: 639px) {
  #login form .i4w_login_username input,
  #login form .i4w_login_password input {
    height: 44px;
  }
}
#login form .i4w_login_remember {
  font-size: 13px;
  line-height: 1.35em;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  position: relative;
  margin: 30px 0 0 0;
  cursor: pointer;
  z-index: 1;
}
#login form .i4w_login_remember #rememberme {
  margin: 0 11px 0 0;
  position: relative;
  box-shadow: none;
  cursor: pointer;
  outline: none;
  z-index: -1;
}
#login form .i4w_login_remember #rememberme:before {
  transition: all 0.3s ease-in-out;
  border: 1px solid #ddd;
  position: absolute;
  height: 24px;
  width: 24px;
  content: "";
  z-index: 1;
  left: 0px;
  top: -7px;
}
#login form .i4w_login_remember #rememberme:checked:before {
  border: 2px solid #5E1DE1;
  transform: rotate(-45deg);
  border-right-style: none;
  border-top-style: none;
  height: 0.5rem;
  width: 1rem;
  left: 5px;
  top: -1px;
}
#login form .i4w_login_remember #rememberme:after {
  border: 1px solid #ddd;
  position: absolute;
  background: #fff;
  cursor: pointer;
  height: 24px;
  width: 24px;
  content: "";
  top: -7px;
  left: 0px;
}
#login form #rememberme {
  font-size: 14px;
  height: initial;
  width: 20px;
  margin: 0;
}
@media (max-width: 479px) {
  #login form #rememberme {
    font-size: 13px;
  }
}
#login form .forgot_pass {
  font: 700 16px/1.4em "Poppins";
  color: #fff;
  margin: 25px 0 15px;
  display: block;
}
@media (max-width: 767px) {
  #login form .forgot_pass {
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
  }
}
#login form .i4w_login_submit {
  position: relative;
}
#login form #wp-submit {
  font-size: 16.5px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s linear;
  text-transform: capitalize;
  background: #5E1DE1;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin: 40px auto 0;
  cursor: pointer;
  display: table;
  padding: 0 0;
  height: 55px;
  width: 255px;
  border: 0;
}
@media (max-width: 991px) {
  #login form #wp-submit {
    line-height: 2.9em;
    margin: 30px auto 0;
    height: 45px;
  }
}
@media (max-width: 639px) {
  #login form #wp-submit {
    font-size: 16px;
    line-height: 2.8em;
    margin: 20px auto 0;
    font-size: 14px;
    width: 250px;
  }
}
@media (max-width: 479px) {
  #login form #wp-submit {
    height: 44px;
    width: 100%;
  }
}
#login form #wp-submit:hover {
  background: #6e33e5;
}
#login .alert.alert_error {
  color: #ff0000;
  width: 100%;
  z-index: 9999999;
  max-width: 320px;
  left: calc(50% - 160px);
  font-weight: 600;
  margin-top: -11px;
  margin-bottom: -50px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  #login .alert.alert_error {
    margin-bottom: 0;
  }
}
#login .help_p {
  margin-top: 20px;
}

.login_copy {
  font: 400 italic 12.44px "Poppins";
  letter-spacing: -0.5px;
  text-align: center;
  position: relative;
  margin: 0px 0 0;
  padding: 0;
  display: block;
  color: #767676;
  width: 100%;
}
.login_copy a,
.login_copy p {
  color: #828282;
  font-size: 12px;
}
.login_copy:before {
  border-top: 1px solid #ddd;
  content: "";
  display: block;
  position: absolute;
  width: 160px;
  margin: auto;
  top: -22px;
  right: 0;
  left: 0;
}

#partners_cntnt.lost-password h2 {
  text-align: center;
}

#sendpasswordform {
  margin: 0 auto;
  max-width: 345px;
  display: table;
  width: 100%;
}
@media (max-width: 767px) {
  #sendpasswordform {
    margin: 40px auto 0;
  }
}
#sendpasswordform p {
  margin: 0;
}
#sendpasswordform label {
  width: 100%;
}
#sendpasswordform #send_user_login {
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 58px;
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  #sendpasswordform #send_user_login {
    height: 44px;
  }
}
#sendpasswordform #send_user_login:focus {
  border-color: #5E1DE1;
  outline: 0;
}
#sendpasswordform #i4w-password-send-submit {
  font-size: 18px;
  line-height: 1.25;
  background: #5E1DE1;
  border-radius: 50px;
  letter-spacing: 0;
  height: initial;
  cursor: pointer;
  padding: 15px 0;
  margin: 12px 0 0;
  width: 100%;
}
@media (max-width: 767px) {
  #sendpasswordform #i4w-password-send-submit {
    font-size: 18px;
    line-height: 1.35;
    padding: 10px 0;
  }
}

.page-template-pt.page-template-mmbrs_login #login form p {
  display: none;
}
.page-template-pt.page-template-mmbrs_login #login form p a {
  transition: all ease 0.3s;
}
.page-template-pt.page-template-mmbrs_login #login form p a.auth0-lock-alternative-link {
  color: #dc099e;
  font-size: 15px;
  font-weight: 600;
}
.page-template-pt.page-template-mmbrs_login #login form p a.auth0-lock-alternative-link:hover {
  color: #fff;
  text-decoration: none;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock.auth0-lock .auth0-lock-header-logo {
  max-width: 100%;
  height: auto !important;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock {
  font-size: 16px;
}
@media (max-width: 639px) {
  .page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-cred-pane-internal-wrapper {
    height: auto;
  }
}
.page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-center {
  padding-top: 20px;
  justify-content: center;
  display: flex;
  padding: 0;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-form {
  padding: 0;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-cred-pane {
  background: transparent;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-header {
  display: none;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-terms {
  color: #ffffff;
  font-size: 16px;
  background: transparent;
  padding: 0;
  display: none;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-submit {
  background: #5E1DE1 !important;
  border-radius: 6px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border-radius: 60px;
  max-width: 230px;
  font-weight: 600;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-submit:hover {
  background: #6e33e5 !important;
}
.page-template-pt.page-template-mmbrs_login .auth0-lock .auth0-lock-submit:hover span {
  transform: none !important;
}

.page-template-admin_im_attendance .recording_videos .sssn_wrap,
.page-template-cceu_landing .recording_videos .sssn_wrap {
  margin-bottom: 0;
}
.page-template-admin_im_attendance footer,
.page-template-cceu_landing footer {
  margin-top: 0;
}
@media (min-width: 992px) {
  .page-template-admin_im_attendance footer,
  .page-template-cceu_landing footer {
    margin-top: 150px;
  }
}

.cceu_bnr {
  width: 100%;
  background: #f5f5f5;
  padding-bottom: 60px;
}
.cceu_bnr .container {
  background: url(../img/pages/cceu/bnr_bg_v2.jpg?v2) no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
  border-radius: 6px;
}
.cceu_bnr .container > img,
.cceu_bnr .container > .shrm_img_wr {
  margin: 0 15px 15px;
  vertical-align: top;
}
.cceu_bnr .container .shrm_img_wr {
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 194px;
  height: 100px;
}
.cceu_bnr .container .shrm_img_wr img {
  height: 70px;
}
.cceu_bnr .container h1 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
  margin-top: 25px;
}

.cceu_subbnr {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: -76px auto -70px;
  padding: 47px 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  align-content: center;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
@media (max-width: 991px) {
  .cceu_subbnr {
    max-width: 98%;
  }
}
.cceu_subbnr:before {
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  text-align: center;
  content: "Click the button below to receive your 1.5 CCEUs.";
  font-size: 14px;
  font-style: italic;
  color: #fff;
}
.cceu_subbnr .btn.btn-yellow {
  font-size: 18px;
  font-family: "Inter";
  font-weight: 600;
  padding: 11px 73px;
}

.cceu_cta_after {
  position: relative;
  z-index: 1;
  background: #f5f5f5;
  text-align: center;
  text-align: center;
  padding: 140px 15px 88px;
}
@media (max-width: 991px) {
  .cceu_cta_after {
    padding-bottom: 60px;
  }
}
.cceu_cta_after p {
  font-size: 45px;
  line-height: 68px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cceu_cta_after p {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 479px) {
  .cceu_cta_after p {
    font-size: 26px;
    line-height: 34px;
  }
}
.cceu_cta_after p b {
  color: #C500E4;
  font-weight: 600;
}

#cceu_content {
  padding: 52px 15px 0px;
  position: relative;
  margin-bottom: 50px;
}
#cceu_content h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 639px) {
  #cceu_content h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  #cceu_content h2 br {
    display: none;
  }
}
#cceu_content p {
  font-family: 400;
}
#cceu_content .btn_wrap {
  text-align: center;
  margin-top: 30px;
}

.cceu_download .card .card-header {
  background: #f5f5f5;
  border: none;
  box-shadow: none;
  position: relative;
  padding: 21px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
@media (max-width: 991px) {
  .cceu_download .card .card-header {
    flex-wrap: wrap;
  }
}
.cceu_download .card .card-header h5 {
  width: 100%;
  padding: 0;
}
.cceu_download .card .card-header span.ttl {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cceu_download .card .card-header span.ttl {
    display: block;
  }
}
.cceu_download .card .card-header p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}
@media (max-width: 1300px) {
  .cceu_download .card .card-header p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .cceu_download .card .card-header p {
    line-height: 24px;
  }
}
.cceu_download .card .card-header p.ttl {
  font-weight: 600;
  color: #5E1DE1;
}
.cceu_download .card .card-header p.date {
  font-weight: 600;
  color: #0f0f3d;
}
.cceu_download .card .card-header .ttl .btn_gradient_purple {
  position: relative;
  margin-right: 60px;
  background: #c500e4 !important;
  transition: all 0.2s;
}
@media (max-width: 1300px) {
  .cceu_download .card .card-header .ttl .btn_gradient_purple {
    font-size: 13px;
    padding: 6px 25px;
  }
}
@media (max-width: 991px) {
  .cceu_download .card .card-header .ttl .btn_gradient_purple {
    margin-top: 10px;
  }
}
.cceu_download .card .card-header .ttl .btn_gradient_purple:after {
  position: absolute;
  right: -30px;
  width: 1px;
  height: 24px;
  background: #dedede;
  content: "";
}
@media (max-width: 991px) {
  .cceu_download .card .card-header .ttl .btn_gradient_purple:after {
    display: none;
  }
}
.cceu_download .card .card-header .btn_collapse {
  margin-left: 15px;
  right: 15px;
  background: transparent;
  color: #5E1DE1;
  font-size: 22px;
  top: calc(50% - 12px);
  transition: all 0.2s;
}

.cceu_stats {
  margin: 0px auto 250px;
  border-radius: 6px;
  max-width: 1100px;
  box-shadow: 0px 10px 10px 1px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
  .cceu_stats {
    max-width: 98%;
  }
}
.cceu_stats .top {
  position: relative;
  background: linear-gradient(89.27deg, #9200a3 0%, #9200a3 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  border-radius: 6px 6px 0 0;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 6px;
}
@media (max-width: 991px) {
  .cceu_stats .top {
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .cceu_stats .top {
    flex-wrap: wrap;
    padding-top: 110px;
    padding-bottom: 20px;
  }
}
.cceu_stats .top p {
  font-family: "Inter";
  font-size: 14px;
  line-height: 24px;
  width: 21%;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cceu_stats .top p {
    padding-left: 5px;
    padding-right: 5px;
  }
  .cceu_stats .top p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .cceu_stats .top p {
    order: 1;
    width: 33.33%;
  }
}
@media (max-width: 639px) {
  .cceu_stats .top p {
    width: 100%;
    margin-bottom: 20px;
  }
  .cceu_stats .top p br {
    display: initial;
  }
}
.cceu_stats .top p b {
  font-family: "Poppins";
  color: #fff;
  font-size: 26px;
  line-height: 39px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .cceu_stats .top p b {
    font-size: 20px;
    line-height: 30px;
    display: block;
  }
}
@media (max-width: 639px) {
  .cceu_stats .top p b {
    display: initial;
    font-size: 18px;
    line-height: 24px;
  }
}
.cceu_stats .top img {
  position: relative;
  top: -74px;
  margin-bottom: -50px;
  max-width: 253px;
}
@media (max-width: 767px) {
  .cceu_stats .top img {
    order: 0;
    position: absolute;
    top: -74px;
    left: calc(50% - 125px);
  }
}
.cceu_stats .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 8px 8px;
  padding: 26px 5px 31px;
  background: #fff;
}
@media (max-width: 639px) {
  .cceu_stats .bottom {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 10px;
  }
}
.cceu_stats .bottom p {
  font-family: "Inter";
  font-size: 14px;
  line-height: 17px;
  width: 20%;
  text-align: center;
  color: #555555;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 639px) {
  .cceu_stats .bottom p {
    width: 33.33%;
    margin-bottom: 20px;
  }
}
@media (max-width: 479px) {
  .cceu_stats .bottom p {
    width: 50%;
  }
}
.cceu_stats .bottom p img {
  margin-top: -5px;
  margin-bottom: 5px;
}
.cceu_stats .bottom p b {
  font-family: "Poppins";
  color: #C500E4;
  font-size: 34px;
  line-height: 50px;
  font-weight: 500;
}
@media (max-width: 639px) {
  .cceu_stats .bottom p b {
    font-size: 28px;
    line-height: 40px;
  }
}

.page-template-admin_im_attendance .btn_gradient_purple {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

#update_zoom_email {
  transition: all 0.3s linear;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 90px;
  max-width: 1020px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  #update_zoom_email {
    padding: 0 15px 10px;
  }
}
#update_zoom_email.invalid {
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  border: 1px solid red;
  padding-bottom: 60px;
  color: red;
}
#update_zoom_email.valid {
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.3);
  border: 1px solid green;
  padding-bottom: 40px;
  color: green;
}
#update_zoom_email .input_wr {
  font-size: 20px;
  line-height: 1em;
  font-weight: 400;
  color: #000;
  margin: 0;
}
@media (max-width: 767px) {
  #update_zoom_email .input_wr {
    font-size: 18px;
  }
}
#update_zoom_email .input_wr b {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 29px;
  display: block;
}
@media (max-width: 767px) {
  #update_zoom_email .input_wr b {
    font-size: 18px;
    margin: 0 0 5px;
  }
}
#update_zoom_email .input_wr i {
  margin: -3px 5px 3px;
  font-size: 18px;
  color: #5E1DE1;
  display: block;
}
@media (max-width: 767px) {
  #update_zoom_email .input_wr i {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  #update_zoom_email .input_wr i {
    font-size: 14px;
  }
}
#update_zoom_email .btn {
  text-transform: uppercase;
  margin: 30px auto 25px;
  border-radius: 50px;
  padding: 15px 60px;
  display: table;
}
@media (max-width: 479px) {
  #update_zoom_email .btn {
    font-size: 14px;
    padding: 10px 40px;
  }
}
#update_zoom_email .settings-field {
  margin: 15px 0 0;
  align-items: center;
  display: flex;
  height: 100px;
  position: relative;
}
@media (max-width: 991px) {
  #update_zoom_email .settings-field {
    padding: 24px 0;
    height: auto;
  }
}
@media (max-width: 639px) {
  #update_zoom_email .settings-field {
    padding: 12px 0;
  }
}
#update_zoom_email .settings-field:nth-last-child(n+2) {
  border-bottom: 1px solid #e0e0e0;
}
#update_zoom_email .settings-field .alert {
  width: 100%;
  position: absolute;
  left: 83px;
  bottom: -30px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
#update_zoom_email .settings-field .alert.alert-success {
  color: green;
}
#update_zoom_email .settings-field .alert.alert-danger {
  color: red;
}
#update_zoom_email .settings-field .icon {
  margin: 0 40px 0 2px;
  color: #ddd;
}
@media (max-width: 767px) {
  #update_zoom_email .settings-field .icon {
    margin: 0 30px 0 2px;
  }
}
@media (max-width: 639px) {
  #update_zoom_email .settings-field .icon {
    margin: 0 17px 0 2px;
  }
}
@media (max-width: 639px) {
  #update_zoom_email .settings-field .icon img {
    max-width: 28px;
  }
}
#update_zoom_email .settings-field .input_wr {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #666;
  padding-right: 30px;
  margin: 0;
  flex: 0 0 calc(100% - 88px);
}
@media (max-width: 639px) {
  #update_zoom_email .settings-field .input_wr {
    font-size: 12px;
  }
}
#update_zoom_email .settings-field .input_wr b {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
  display: block;
  margin: 0;
}
@media (max-width: 1699px) {
  #update_zoom_email .settings-field .input_wr b {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #update_zoom_email .settings-field .input_wr b {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  #update_zoom_email .settings-field .input_wr b {
    font-size: 15px;
  }
}
#update_zoom_email .settings-field .cta {
  margin-left: auto;
  background: none;
  transition: 0.2s;
  font-size: 28px;
  cursor: pointer;
  color: #5E1DE1;
  border: none;
  padding: 0;
  opacity: 1;
}
#update_zoom_email .settings-field .cta:hover {
  opacity: 0.8;
}
@media (max-width: 479px) {
  #update_zoom_email .settings-field .cta {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 22px;
  }
}

#zoom_email_wrap {
  position: relative;
}
#zoom_email_wrap:before {
  transition: all 0.3s linear;
  font-family: "fontello", serif;
  position: absolute;
  line-height: 44px;
  font-size: 18px;
  display: block;
  content: "";
  z-index: 1;
  right: 0;
}
#zoom_email_wrap.success:before {
  content: "✓";
  color: green;
}
#zoom_email_wrap.success #display_name {
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.3);
  border: 1px solid green;
  color: green;
}
#zoom_email_wrap.error:before {
  color: red;
}
#zoom_email_wrap.error #display_name {
  box-shadow: none;
  border-bottom-color: red;
  color: red;
}
#zoom_email_wrap #zoom_email {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
  border: 1px solid transparent;
  transition: all 0.3s linear;
  padding: 0;
  margin: 0;
  height: auto;
  display: block;
  width: 100%;
}
#zoom_email_wrap #zoom_email:focus {
  box-shadow: none;
  border-bottom: 1px solid #5E1DE1;
  outline: none;
}
@media (max-width: 1699px) {
  #zoom_email_wrap #zoom_email {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #zoom_email_wrap #zoom_email {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  #zoom_email_wrap #zoom_email {
    font-size: 15px;
  }
}

.page-template-mmbrs_bonus_procoach #menu-res-lib {
  display: none;
}
.page-template-mmbrs_bonus_procoach #res_lib .dropdowns {
  position: relative;
  margin: 0 0 40px;
  padding: 0;
  top: -27px;
}
.page-template-mmbrs_bonus_procoach #res_lib .card {
  border: 1px solid #ddd;
  box-shadow: none;
}
.page-template-mmbrs_bonus_procoach #res_lib .card .card-header {
  background: #f6f6f6;
  color: #000;
  box-shadow: none;
}
.page-template-mmbrs_bonus_procoach #res_lib .card .card-header a {
  right: 10px;
}
.page-template-mmbrs_bonus_procoach #res_lib .card .card-body {
  border-top: 1px solid #ddd;
  padding: 60px 92px 50px;
}
@media (max-width: 1699px) {
  .page-template-mmbrs_bonus_procoach #res_lib .card .card-body {
    padding: 40px 65px 30px;
  }
}
@media (max-width: 991px) {
  .page-template-mmbrs_bonus_procoach #res_lib .card .card-body {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .page-template-mmbrs_bonus_procoach #res_lib .card .card-body {
    padding: 0;
  }
}
.page-template-mmbrs_bonus_procoach #res_lib .card .card-body p.ttl {
  font-size: 20px;
}
@media (max-width: 991px) {
  .page-template-mmbrs_bonus_procoach #res_lib .card .card-body p.ttl {
    font-size: 18px;
  }
}
.page-template-mmbrs_bonus_procoach #res_lib .card .card-body .btn.btn-green {
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0;
  padding: 9px;
}
@media (max-width: 991px) {
  .page-template-mmbrs_bonus_procoach #res_lib .card .card-body .btn.btn-green {
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .page-template-mmbrs_bonus_procoach #res_lib .card .card-body .btn.btn-green {
    margin: 3px auto 0;
    width: 290px;
  }
}

#banner.res_lib {
  padding: 64px 15px 105px;
  text-align: center;
  background: url("../img/bg/purple.jpg") center no-repeat;
  background-size: cover;
  background-position: 0% 30%;
  color: #fff;
}
@media (max-width: 991px) {
  #banner.res_lib {
    padding: 60px 15px 80px;
  }
}
@media (max-width: 767px) {
  #banner.res_lib {
    padding: 60px 15px;
  }
}
#banner.res_lib h1 {
  font-size: 42px;
  line-height: 1.2em;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 1699px) {
  #banner.res_lib h1 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  #banner.res_lib h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  #banner.res_lib h1 {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  #banner.res_lib h1 {
    font-size: 24px;
  }
}

#res_lib .modal.with_video .modal-header .modal-title {
  display: none;
}
#res_lib .modal.with_video .modal-header .close {
  top: 22px;
}
#res_lib .modal.with_video .modal-body {
  z-index: 1;
}
#res_lib h1 {
  text-align: center;
}
@media (max-width: 639px) {
  #res_lib .container {
    padding: 0;
  }
}
#res_lib .dropdowns {
  padding: 40px 0 0;
}
@media (max-width: 639px) {
  #res_lib .dropdowns {
    margin: -4px 0 0;
    padding: 0;
  }
}
#res_lib .card .card-header h5 {
  padding-bottom: 15px;
  padding-left: 20px;
}
#res_lib .card .card-body {
  padding: 60px 60px 50px;
  margin-bottom: 0;
}
@media (max-width: 1699px) {
  #res_lib .card .card-body {
    padding: 40px 30px 50px;
  }
}
@media (max-width: 991px) {
  #res_lib .card .card-body {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  #res_lib .card .card-body {
    padding: 0;
  }
}
#res_lib .card .card-body .box {
  padding-right: 250px;
  position: relative;
}
@media (max-width: 991px) {
  #res_lib .card .card-body .box {
    padding-right: 170px;
  }
}
@media (max-width: 767px) {
  #res_lib .card .card-body .box {
    text-align: center;
    padding: 40px 15px;
  }
}
@media (max-width: 767px) {
  #res_lib .card .card-body .box:nth-child(even) {
    background: #f5f5f5;
  }
}
#res_lib .card .card-body p.ttl {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 0 0 26px;
}
@media (max-width: 991px) {
  #res_lib .card .card-body p.ttl {
    font-size: 18px;
    margin: 0 0 20px;
    padding: 2px 0;
  }
}
@media (max-width: 767px) {
  #res_lib .card .card-body p.ttl {
    font-size: 16px;
    padding: 0;
    margin: 0;
  }
}
#res_lib .card .card-body p.small {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #777;
  margin: -20px 0 26px;
}
@media (max-width: 991px) {
  #res_lib .card .card-body p.small {
    margin: -20px 0 20px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #res_lib .card .card-body p.small {
    font-size: 14px;
    margin: 0;
  }
}
#res_lib .card .card-body .btn.btn-green {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  position: absolute;
  padding: 6px 12px;
  width: 215px;
  margin: 0;
  right: 0;
  top: 1px;
}
@media (max-width: 991px) {
  #res_lib .card .card-body .btn.btn-green {
    width: 160px;
  }
}
@media (max-width: 767px) {
  #res_lib .card .card-body .btn.btn-green {
    position: relative;
    padding: 8px 12px;
    margin: 3px 0 0;
    width: 100%;
  }
}
#res_lib .card .card-body .btn.btn-green.upgrade {
  font-size: 16px;
  font-weight: 700;
  margin: -10px 0 10px;
  letter-spacing: 3px;
  position: relative;
  display: table;
  padding: 12px;
  width: 290px;
}
@media (max-width: 991px) {
  #res_lib .card .card-body .btn.btn-green.upgrade {
    margin: -10px 0 10px;
    font-size: 14px;
    padding: 8px;
    width: 220px;
  }
}
@media (max-width: 767px) {
  #res_lib .card .card-body .btn.btn-green.upgrade {
    margin: 5px auto 0;
  }
}
@media (max-width: 479px) {
  #res_lib .card .card-body .btn.btn-green.upgrade {
    width: 100%;
  }
}
#res_lib .rules_agreement {
  margin: 40px auto 0;
  text-align: center;
  max-width: 440px;
}
@media (max-width: 991px) {
  #res_lib .rules_agreement {
    margin: 40px auto 20px;
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  #res_lib .rules_agreement {
    margin: 20px auto 10px;
  }
}
@media (max-width: 639px) {
  #res_lib .rules_agreement {
    margin: 60px auto 10px;
  }
}
@media (max-width: 479px) {
  #res_lib .rules_agreement {
    padding: 0 15px;
  }
}
#res_lib .rules_agreement h4 {
  font-size: 22px;
  line-height: 1.45em;
  font-weight: 400;
  color: #5E1DE1;
}
@media (max-width: 991px) {
  #res_lib .rules_agreement h4 {
    font-size: 18px;
  }
}
#res_lib .rules_agreement .btn {
  letter-spacing: 4px;
  padding: 15px 80px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  #res_lib .rules_agreement .btn {
    padding: 10px 60px;
    margin-top: 5px;
    font-size: 13px;
  }
}

.page-template-pt.archives .filter_my_ssn {
  display: none !important;
}
.page-template-pt.archives .ses_wrap .media-body .date_time .dateholder b {
  display: none !important;
}
.page-template-pt.archives .modal_sssn .sssn_meta .date_time b {
  display: none !important;
}
.page-template-pt.archives .modal_sssn .sssn_meta .date_time .show-tick {
  display: none !important;
}
.page-template-pt.archives .coma {
  display: none !important;
}

.library_sliders .link_wr {
  text-align: right;
}
@media (max-width: 767px) {
  .library_sliders .link_wr {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .library_sliders .mobile_select {
    margin-top: 60px !important;
  }
}
.library_sliders .wrap_slider.coaching_in_action.locked .icon_wr {
  position: relative;
}
.library_sliders .wrap_slider.coaching_in_action.locked .icon_wr:before {
  font-family: "fontello", serif;
  position: absolute;
  content: "\e82d";
  font-size: 22px;
  right: 15px;
  top: 8px;
}
.library_sliders .wrap_slider.coaching_in_action.locked .icon_wr:after {
  content: "Purchase for Access";
  position: absolute;
  bottom: 100%; /* above the icon */
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.library_sliders .wrap_slider.coaching_in_action.locked .icon_wr:hover:after {
  opacity: 1;
  transform: translateY(0);
}
.library_sliders .wrap_slider.coaching_in_action.locked .icon_wr .red {
  display: none !important;
}
.library_sliders .wrap_slider.coaching_in_action .video_item .video_thumb_wr .video_presenter_wr {
  color: #B70074;
}
.library_sliders .wrap_slider.coaching_in_action .icon_wr .blue {
  display: none !important;
}
.library_sliders .wrap_slider.coaching_in_action .icon_wr .red {
  display: block !important;
}
.library_sliders .sessions_slider .session_item .session_thumb_wr {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
@media (max-width: 767px) {
  .library_sliders .sessions_slider .session_item .session_thumb_wr {
    max-width: 278px;
    margin: 0 auto;
  }
}
.library_sliders .sessions_slider .session_item .session_thumb_wr .session_presenter_wr {
  position: relative;
  background: #5E1DE1;
  padding: 6px 75px 6px 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 190%;
}
.library_sliders .sessions_slider .session_item .session_thumb_wr .session_presenter_wr .session_presenter_list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.library_sliders .sessions_slider .session_item .session_thumb_wr .session_presenter_wr .icon_wr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 70px;
  background: #7a38ff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.library_sliders .sessions_slider .session_item .session_thumb_wr .session_presenter_wr .icon_wr img {
  width: 40px;
  height: 22px;
}
.library_sliders .sessions_slider .session_item .session_item_footer {
  position: relative;
  padding: 0 0 0 73px;
  height: 41px;
}
@media (max-width: 767px) {
  .library_sliders .sessions_slider .session_item .session_item_footer {
    max-width: 278px;
    margin: 0 auto;
  }
}
.library_sliders .sessions_slider .session_item .session_item_footer .session_date_wr {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 65px;
}
.library_sliders .sessions_slider .session_item .session_item_footer .session_date_wr .label {
  height: 50%;
  border-radius: 6px 6px 0 0;
  background: #5E1DE1;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.library_sliders .sessions_slider .session_item .session_item_footer .session_date_wr .date {
  height: 50%;
  border-radius: 0 0 6px 6px;
  background: #bea4f3;
  color: #0f0f3d;
  font-size: 14px;
}
.library_sliders .sessions_slider .session_item .session_item_footer .time {
  color: #0f0f3d;
  font-size: 36px;
  padding-right: 46px;
  position: relative;
}
.library_sliders .sessions_slider .session_item .session_item_footer .time sup {
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 13px;
}
@media (min-width: 1450px) {
  .library_sliders .sessions_slider .slick-prev {
    display: none !important;
  }
  .library_sliders .sessions_slider .slick-next {
    border-radius: 6px;
    background: #f5f6fa;
    width: 74px;
    height: 197px;
    top: 0;
    transform: unset;
    right: -100px;
    outline: none;
  }
  .library_sliders .sessions_slider .slick-next:before {
    color: #5E1DE1;
    font-size: 40px;
  }
}
.library_sliders .video_item {
  transition: all 0.2s;
  position: relative;
}
.library_sliders .video_item:hover {
  transform: scale(0.98);
}
.library_sliders .video_item a:hover {
  text-decoration: none;
}
.library_sliders .video_item .rating_wrap {
  position: absolute;
  z-index: 22;
  bottom: 63px;
  left: 10px;
  width: 65px;
  flex-wrap: wrap;
  --star-size: 10px;
}
@media (max-width: 767px) {
  .library_sliders .video_item .rating_wrap {
    left: 10%;
  }
}
@media (max-width: 639px) {
  .library_sliders .video_item .rating_wrap {
    --star-size: 8px;
    top: 5px;
    left: 5px;
    display: none;
  }
}
.library_sliders .video_item .rating_wrap > div {
  order: 2;
  width: 100%;
}
.library_sliders .video_item .rating_wrap > div:before {
  letter-spacing: 0;
}
.library_sliders .video_item .rating_wrap > span {
  position: relative;
  left: 0px;
  margin-left: 0;
  margin-bottom: 5px;
  order: 1;
  font-size: 22px;
  font-weight: 500;
  display: block;
  color: #fff;
}
@media (max-width: 639px) {
  .library_sliders .video_item .rating_wrap > span {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
.library_sliders .video_item .video_thumb_wr {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .library_sliders .video_item .video_thumb_wr {
    max-width: 278px;
    margin: 0 auto;
  }
}
.library_sliders .video_item .video_thumb_wr .video_presenter_wr {
  position: relative;
  background: #f5f6fa;
  padding: 6px 51px 6px 10px;
  color: #5E1DE1;
  font-size: 15px;
  font-weight: 600;
  line-height: 190%;
}
.library_sliders .video_item .video_thumb_wr .video_presenter_wr .video_presenter_list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.library_sliders .video_item .video_thumb_wr .video_presenter_wr .stars {
  top: -24px;
  left: 10px;
  position: absolute;
}
.library_sliders .video_item .video_thumb_wr .video_presenter_wr .icon_wr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 51px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.library_sliders .video_item .video_thumb_wr .video_presenter_wr .icon_wr img {
  width: 29px;
  height: 20px;
}

.page-template-mmbrs_home_cec .session_item .rating_wrap {
  display: none;
}

.home_cec_bnr_top .banner_slider .slick-slide picture img {
  border-radius: 6px;
}

.home_cec_sessions .ttl {
  font-size: 18px;
  color: #0f0f3d;
}
@media (min-width: 992px) {
  .home_cec_sessions .ttl {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .home_cec_sessions .link_wr {
    text-align: right;
  }
}
.home_cec_sessions .link_wr a {
  font-size: 16px;
  color: #0f0f3d;
  transition: all ease 0.3s;
}
.home_cec_sessions .link_wr a:hover {
  color: #5E1DE1;
  text-decoration: none;
}
@media (min-width: 992px) {
  .home_cec_sessions .link_wr a {
    font-size: 18px;
  }
}
.home_cec_sessions .library_ajax_results {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 50px;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}
.home_cec_sessions .library_ajax_results .video_item {
  position: relative;
  transition: all 0.2s;
  width: calc(25% - 20px);
  max-width: 285px;
  transition: all 0.2s;
  margin-bottom: 10px;
  margin: 0 10px 10px;
}
@media (max-width: 991px) {
  .home_cec_sessions .library_ajax_results .video_item {
    width: 100%;
  }
}
.home_cec_sessions .library_ajax_results .video_item:hover {
  transform: scale(0.98);
}
.home_cec_sessions .library_ajax_results .video_item a:hover {
  text-decoration: none;
}
.home_cec_sessions .library_ajax_results .video_item .rating_wrap {
  position: absolute;
  z-index: 22;
  bottom: 63px;
  left: 10px;
  width: 65px;
  flex-wrap: wrap;
  --star-size: 10px;
}
@media (max-width: 639px) {
  .home_cec_sessions .library_ajax_results .video_item .rating_wrap {
    --star-size: 8px;
    bottom: 50px;
  }
}
.home_cec_sessions .library_ajax_results .video_item .rating_wrap > div {
  order: 2;
  width: 100%;
}
.home_cec_sessions .library_ajax_results .video_item .rating_wrap > div:before {
  letter-spacing: 0;
}
.home_cec_sessions .library_ajax_results .video_item .rating_wrap > span {
  position: relative;
  left: 0px;
  margin-left: 0;
  margin-bottom: 5px;
  order: 1;
  font-size: 22px;
  font-weight: 500;
  display: block;
  color: #fff;
}
@media (max-width: 639px) {
  .home_cec_sessions .library_ajax_results .video_item .rating_wrap > span {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
.home_cec_sessions .library_ajax_results .video_item .video_thumb_wr {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .home_cec_sessions .library_ajax_results .video_item .video_thumb_wr {
    max-width: 278px;
    margin: 0 auto;
  }
}
.home_cec_sessions .library_ajax_results .video_item .video_thumb_wr .video_presenter_wr {
  position: relative;
  background: #f5f6fa;
  padding: 6px 51px 6px 10px;
  color: #5E1DE1;
  font-size: 15px;
  font-weight: 600;
  line-height: 190%;
}
.home_cec_sessions .library_ajax_results .video_item .video_thumb_wr .video_presenter_wr .video_presenter_list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_cec_sessions .library_ajax_results .video_item .video_thumb_wr .video_presenter_wr .stars {
  top: -24px;
  left: 10px;
  position: absolute;
}
.home_cec_sessions .library_ajax_results .video_item .video_thumb_wr .video_presenter_wr .icon_wr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 51px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_cec_sessions .library_ajax_results .video_item .video_thumb_wr .video_presenter_wr .icon_wr img {
  width: 29px;
  height: 20px;
}
.home_cec_sessions .library_ajax_results .session_item {
  position: relative;
  margin: 0 10px 30px;
  width: calc(25% - 20px);
  max-width: 278px;
  transition: all 0.2s;
}
@media (max-width: 1300px) {
  .home_cec_sessions .library_ajax_results .session_item {
    width: 278px;
  }
}
@media (max-width: 991px) {
  .home_cec_sessions .library_ajax_results .session_item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .home_cec_sessions .library_ajax_results .session_item {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .home_cec_sessions .library_ajax_results .session_item {
    width: 278px;
  }
}
.home_cec_sessions .library_ajax_results .session_item:hover {
  transform: scale(0.98);
}
.home_cec_sessions .library_ajax_results .session_item a:hover {
  text-decoration: none;
}
.home_cec_sessions .library_ajax_results .session_item .session_thumb_wr {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.home_cec_sessions .library_ajax_results .session_item .session_thumb_wr .session_presenter_wr {
  position: relative;
  background: #5E1DE1;
  padding: 6px 75px 6px 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 190%;
}
.home_cec_sessions .library_ajax_results .session_item .session_thumb_wr .session_presenter_wr .session_presenter_list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_cec_sessions .library_ajax_results .session_item .session_thumb_wr .session_presenter_wr .icon_wr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 70px;
  background: #7a38ff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_cec_sessions .library_ajax_results .session_item .session_thumb_wr .session_presenter_wr .icon_wr img {
  width: 40px;
  height: 22px;
}
.home_cec_sessions .library_ajax_results .session_item .session_item_footer {
  position: relative;
  padding: 0 0 0 73px;
  height: 41px;
}
.home_cec_sessions .library_ajax_results .session_item .session_item_footer .session_date_wr {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 65px;
}
.home_cec_sessions .library_ajax_results .session_item .session_item_footer .session_date_wr .label {
  height: 50%;
  border-radius: 6px 6px 0 0;
  background: #5E1DE1;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.home_cec_sessions .library_ajax_results .session_item .session_item_footer .session_date_wr .date {
  height: 50%;
  border-radius: 0 0 6px 6px;
  background: #bea4f3;
  color: #0f0f3d;
  font-size: 14px;
}
.home_cec_sessions .library_ajax_results .session_item .session_item_footer .time {
  color: #fff;
  font-size: 36px;
  padding-right: 46px;
  position: relative;
}
.home_cec_sessions .library_ajax_results .session_item .session_item_footer .time sup {
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 13px;
}
@media (min-width: 1450px) {
  .home_cec_sessions .library_ajax_results .slick-prev {
    display: none !important;
  }
  .home_cec_sessions .library_ajax_results .slick-next {
    border-radius: 6px;
    background: #f5f6fa;
    width: 74px;
    height: 197px;
    top: 0;
    transform: unset;
    right: -100px;
    outline: none;
  }
  .home_cec_sessions .library_ajax_results .slick-next:before {
    color: #5E1DE1;
    font-size: 40px;
  }
}

.home_cec_programs .ttl {
  font-size: 18px;
  color: #0f0f3d;
}
@media (min-width: 992px) {
  .home_cec_programs .ttl {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .home_cec_programs .link_wr {
    text-align: right;
  }
}
.home_cec_programs .link_wr a {
  font-size: 16px;
  color: #0f0f3d;
  transition: all ease 0.3s;
}
.home_cec_programs .link_wr a:hover {
  color: #5E1DE1;
  text-decoration: none;
}
@media (min-width: 992px) {
  .home_cec_programs .link_wr a {
    font-size: 18px;
  }
}
.home_cec_programs .programs_slider:not(.slick-initialized) .program_item_wr {
  max-width: 278px;
}
.home_cec_programs .programs_slider .program_item_wr {
  margin-top: 15px;
  margin-bottom: 15px;
}
.home_cec_programs .programs_slider .program_item_wr .program_item .program_thumb_wr picture img {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
}
.home_cec_programs .programs_slider .program_item_wr .program_item .program_item_link {
  background: #5E1DE1;
  color: #fff;
  font-size: 14px;
  height: 45px;
  border-radius: 6px;
  padding: 0 14px;
  transition: all ease 0.3s;
  justify-content: center;
}
.home_cec_programs .programs_slider .program_item_wr .program_item .program_item_link:hover {
  opacity: 0.6;
  text-decoration: none;
}
.home_cec_programs .programs_slider .program_item_wr .program_item .program_item_link.py {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home_cec_programs .programs_slider .program_item_wr .program_item .program_item_link {
    height: 58px;
  }
}
.home_cec_programs .programs_slider .program_item_wr .program_item .program_item_link span {
  margin-left: 8px;
  margin-right: auto;
}
.home_cec_programs .programs_slider .program_item_wr .program_item .program_item_link strong {
  color: #fadaa7;
  margin: 0 5px;
}
.home_cec_programs .programs_slider .program_item_wr .program_item .program_item_link small {
  margin-top: -20px;
}

.loading, .sq25_success .head .slider_videos_reviews .video.video_buffer {
  position: relative;
}
.loading:after, .sq25_success .head .slider_videos_reviews .video.video_buffer:after {
  position: absolute;
  content: "";
  z-index: 45;
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(94, 29, 225, 0.3);
}
.loading:before, .sq25_success .head .slider_videos_reviews .video.video_buffer:before {
  position: absolute;
  z-index: 135;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  border: 6px solid #5E1DE1;
  border-color: #5E1DE1 transparent #5E1DE1 transparent;
  animation: loading_rotation 1.5s linear infinite;
  opacity: 0.7;
}

@keyframes loading_rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-template-mmbrs_library #menu-members-main-menu:not(.mmenu_start) li:hover > a:before,
.page-template-mmbrs_library #menu-members-main-menu:not(.mmenu_start) li.current-menu-ancestor > a:before,
.page-template-mmbrs_library #menu-members-main-menu:not(.mmenu_start) li.current-menu-item > a:before,
.page-template-mmbrs_library #menu-members-main-menu:not(.mmenu_start) li.current_page_item > a:before,
.page-template-mmbrs_library #menu-header-menu li:hover > a:before,
.page-template-mmbrs_library #menu-header-menu li.current-menu-ancestor > a:before,
.page-template-mmbrs_library #menu-header-menu li.current-menu-item > a:before,
.page-template-mmbrs_library #menu-header-menu li.current_page_item > a:before,
.page-template-mmbrs_support_video_page #menu-members-main-menu:not(.mmenu_start) li:hover > a:before,
.page-template-mmbrs_support_video_page #menu-members-main-menu:not(.mmenu_start) li.current-menu-ancestor > a:before,
.page-template-mmbrs_support_video_page #menu-members-main-menu:not(.mmenu_start) li.current-menu-item > a:before,
.page-template-mmbrs_support_video_page #menu-members-main-menu:not(.mmenu_start) li.current_page_item > a:before,
.page-template-mmbrs_support_video_page #menu-header-menu li:hover > a:before,
.page-template-mmbrs_support_video_page #menu-header-menu li.current-menu-ancestor > a:before,
.page-template-mmbrs_support_video_page #menu-header-menu li.current-menu-item > a:before,
.page-template-mmbrs_support_video_page #menu-header-menu li.current_page_item > a:before {
  border-bottom: 2px solid #fff;
}
.page-template-mmbrs_library .banner_slider picture img,
.page-template-mmbrs_support_video_page .banner_slider picture img {
  border-radius: 6px;
}
.page-template-mmbrs_library .content_wr,
.page-template-mmbrs_support_video_page .content_wr {
  background: linear-gradient(to bottom, rgba(107, 70, 179, 0.55) 0%, rgba(107, 70, 179, 0) 100%), #241642;
}
@media (min-width: 992px) {
  .page-template-mmbrs_library .content_wr,
  .page-template-mmbrs_support_video_page .content_wr {
    padding-top: 102px;
    margin-top: -102px;
  }
}
.page-template-mmbrs_library .content_wr .container .filter_wr,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr {
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}
@media (min-width: 1200px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr {
    max-width: 505px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item {
  min-width: 240px;
  max-width: 25%;
  width: 100%;
  margin-bottom: 20px;
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item:not(:last-child),
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item:not(:last-child) {
  padding-right: 20px;
}
@media (max-width: 991px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr .filter_item:not(:last-child),
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item:not(:last-child) {
    padding-right: 5px;
  }
}
@media (max-width: 991px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr .filter_item,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item {
    min-width: 220px;
    max-width: 50%;
    padding: 0 5px;
  }
}
@media (max-width: 639px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr .filter_item,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item {
    min-width: initial;
  }
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.search_wrap,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.search_wrap {
  max-width: 75%;
}
@media (max-width: 991px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.search_wrap,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.search_wrap {
    max-width: 50%;
  }
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.search_wrap input::placeholder,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.search_wrap input::placeholder {
  font-weight: 500;
  cursor: pointer;
  text-overflow: ellipsis;
  font-size: 14px;
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.search_wrap .library_search,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.search_wrap .library_search {
  height: 60px;
  width: 100%;
  color: #5e1de1;
  font-weight: 600;
  cursor: pointer;
  text-overflow: ellipsis;
  font-size: 14px;
  border: initial;
}
@media (max-width: 767px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.search_wrap .library_search,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.search_wrap .library_search {
    height: 44px;
  }
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.year_wr,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.year_wr {
  position: relative;
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.year_wr:after,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.year_wr:after {
  position: absolute;
  content: "\e80a";
  font-family: "fontello", serif;
  font-size: 20px;
  border: none;
  right: 27px;
  top: 26%;
  font-weight: bold;
  color: #5e1de1;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  border: initial;
}
@media (max-width: 991px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.year_wr:after,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.year_wr:after {
    right: 10px;
  }
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.year_wr > input,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.year_wr > input {
  width: 100%;
  height: 60px;
  border: 1px solid #eef1f9;
  background: #f5f6fa;
  font-weight: 600 !important;
  color: #5e1de1;
  border-radius: 6px !important;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  position: relative;
  padding-right: 30px;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr .filter_item.year_wr > input,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item.year_wr > input {
    height: 44px;
  }
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item select,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item select {
  width: 100%;
}
.page-template-mmbrs_library .content_wr .container .filter_wr .filter_item .button_filter,
.page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item .button_filter {
  font-size: 16px !important;
  font-weight: 600;
  width: 100%;
  height: 100%;
  min-height: 60px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .page-template-mmbrs_library .content_wr .container .filter_wr .filter_item .button_filter,
  .page-template-mmbrs_support_video_page .content_wr .container .filter_wr .filter_item .button_filter {
    min-height: 44px;
    font-size: 15px !important;
  }
}
.page-template-mmbrs_library .content_wr .container .bootstrap-select,
.page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select {
  width: 100% !important;
}
@media (max-width: 767px) {
  .page-template-mmbrs_library .content_wr .container .bootstrap-select,
  .page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select {
    margin: 0 0 !important;
  }
}
.page-template-mmbrs_library .content_wr .container .bootstrap-select > button,
.page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select > button {
  height: 60px;
  line-height: 60px;
  border: 1px solid #eef1f9;
  background: #f5f6fa;
  font-weight: 600 !important;
  color: #0f0f3d;
  border-radius: 6px !important;
  text-align: center;
  padding: 0;
}
@media (max-width: 767px) {
  .page-template-mmbrs_library .content_wr .container .bootstrap-select > button,
  .page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select > button {
    height: 44px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .page-template-mmbrs_library .content_wr .container .bootstrap-select > button:after,
  .page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select > button:after {
    right: 5px;
    top: 9px;
  }
}
.page-template-mmbrs_library .content_wr .container .bootstrap-select > button .filter-option,
.page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select > button .filter-option {
  display: block !important;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 30px 0 15px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .page-template-mmbrs_library .content_wr .container .bootstrap-select > button .filter-option,
  .page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select > button .filter-option {
    position: relative;
  }
}
@media (max-width: 639px) {
  .page-template-mmbrs_library .content_wr .container .bootstrap-select > button .filter-option,
  .page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select > button .filter-option {
    top: initial;
  }
}
.page-template-mmbrs_library .content_wr .container .bootstrap-select .bs-searchbox,
.page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select .bs-searchbox {
  padding: 2px 15px;
  margin-top: 3px;
}
.page-template-mmbrs_library .content_wr .container .bootstrap-select div.dropdown-menu.open,
.page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select div.dropdown-menu.open {
  max-height: 314px !important;
  overflow: hidden;
}
.page-template-mmbrs_library .content_wr .container .bootstrap-select ul.dropdown-menu.inner,
.page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select ul.dropdown-menu.inner {
  max-height: 260px !important;
  overflow-y: auto;
}
.page-template-mmbrs_library .content_wr .container .bootstrap-select .dropdown-menu,
.page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select .dropdown-menu {
  width: 100%;
  min-width: initial !important;
  top: 2px !important;
  border: none;
  transition: all 0s;
}
.page-template-mmbrs_library .content_wr .container .bootstrap-select .dropdown-menu li a,
.page-template-mmbrs_support_video_page .content_wr .container .bootstrap-select .dropdown-menu li a {
  font-size: 13px;
}
.page-template-mmbrs_library .content_wr .container .slick-next,
.page-template-mmbrs_support_video_page .content_wr .container .slick-next {
  background: #2e1c53;
  border: 2px solid #402a6e;
}
.page-template-mmbrs_library .content_wr .container .slick-next:before,
.page-template-mmbrs_support_video_page .content_wr .container .slick-next:before {
  color: #fff;
}
.page-template-mmbrs_library .menu-members-main-menu-container #menu-members-main-menu:not(.mmenu_start) li a,
.page-template-mmbrs_support_video_page .menu-members-main-menu-container #menu-members-main-menu:not(.mmenu_start) li a {
  color: #fff;
}
.page-template-mmbrs_library .home_cec_sessions .c_dark,
.page-template-mmbrs_support_video_page .home_cec_sessions .c_dark {
  color: #fff !important;
}
.page-template-mmbrs_library .home_cec_sessions .container,
.page-template-mmbrs_library .home_cec_sessions .sessions_slider_styles,
.page-template-mmbrs_library .home_cec_sessions .session_item,
.page-template-mmbrs_library .home_cec_sessions .session_item_footer,
.page-template-mmbrs_library .home_cec_sessions .time,
.page-template-mmbrs_support_video_page .home_cec_sessions .container,
.page-template-mmbrs_support_video_page .home_cec_sessions .sessions_slider_styles,
.page-template-mmbrs_support_video_page .home_cec_sessions .session_item,
.page-template-mmbrs_support_video_page .home_cec_sessions .session_item_footer,
.page-template-mmbrs_support_video_page .home_cec_sessions .time {
  color: #fff;
}

body.page-template-mmbrs_resource_vault .content_wr {
  background: initial;
}
body.page-template-mmbrs_resource_vault .library_sliders .sessions_slider .slick-next {
  background: #f5f6fa;
  border: initial;
}
body.page-template-mmbrs_resource_vault .library_sliders .sessions_slider .slick-next:before {
  color: #5E1DE1;
}
body.page-template-mmbrs_resource_vault .video_thumb_wr .rs_cont_wrap {
  height: 200px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}
body.page-template-mmbrs_resource_vault .video_thumb_wr .rs_cont_wrap span {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 3px;
  color: #FFF;
  text-align: center;
  font-family: Inter, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 2px 5px;
}
body.page-template-mmbrs_resource_vault .mobile_select .c_dark.p16, body.page-template-mmbrs_resource_vault .mobile_select .upsell_content_reviews .reviews_wrap .review .name span.c_dark:nth-child(2), .upsell_content_reviews .reviews_wrap .review .name body.page-template-mmbrs_resource_vault .mobile_select span.c_dark:nth-child(2), body.page-template-mmbrs_resource_vault .mobile_select .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span.c_dark:nth-child(2), .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p body.page-template-mmbrs_resource_vault .mobile_select span.c_dark:nth-child(2) {
  color: #0F0F3D !important;
}
body.page-template-mmbrs_resource_vault .mobile_select .link_wr .c_dark {
  color: #0F0F3D !important;
}
body.page-template-mmbrs_resource_vault .slick_wr {
  padding-bottom: 0 !important;
}
body.page-template-mmbrs_resource_vault .slick_wr .video_item .video_thumb_wr.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
body.page-template-mmbrs_resource_vault .video_presenter_wr {
  padding: 0 !important;
}
body.page-template-mmbrs_resource_vault .video_presenter_wr .video_presenter_list {
  white-space: normal !important;
  line-height: 1.65;
  margin: 0 0 5px;
  background: transparent;
  padding: 3px 10px;
  position: absolute;
  bottom: 40px;
  color: #0F0F3D;
}
body.page-template-mmbrs_resource_vault .video_presenter_wr .link {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 4px 4px;
}
body.page-template-mmbrs_resource_vault .video_presenter_wr .link span {
  position: relative;
  top: 10px;
  left: 10px;
  display: flex;
  width: 63px;
  padding: 3px 9px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-family: Inter, serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%; /* 13.8px */
  border-radius: 120px;
  background: #fff;
}
body.page-template-mmbrs_resource_vault .wrap_slider .icon_wr {
  display: none !important;
}
body.page-template-mmbrs_resource_vault .wrap_slider.templates .video_presenter_wr {
  background: url(../img/pages/res_vault/grey_1.jpg) no-repeat 50% 50%/cover;
}
body.page-template-mmbrs_resource_vault .wrap_slider.templates .video_presenter_wr .link {
  background: #D21DB5;
}
body.page-template-mmbrs_resource_vault .wrap_slider.templates .video_presenter_wr .link span {
  color: #D21DB5;
}
body.page-template-mmbrs_resource_vault .wrap_slider.templates .rs_cont_wrap span {
  background: #D21DB5;
}
body.page-template-mmbrs_resource_vault .wrap_slider.tools .video_presenter_wr {
  background: url(../img/pages/res_vault/grey_2.jpg) no-repeat 50% 50%/cover;
}
body.page-template-mmbrs_resource_vault .wrap_slider.tools .video_presenter_wr .link {
  background: #007;
}
body.page-template-mmbrs_resource_vault .wrap_slider.tools .video_presenter_wr .link span {
  color: #007;
}
body.page-template-mmbrs_resource_vault .wrap_slider.tools .rs_cont_wrap span {
  background: #000077;
}
body.page-template-mmbrs_resource_vault .wrap_slider.activities .video_presenter_wr {
  background: url(../img/pages/res_vault/grey_3.jpg) no-repeat 50% 50%/cover;
}
body.page-template-mmbrs_resource_vault .wrap_slider.activities .video_presenter_wr .link {
  background: #5E1DE1;
}
body.page-template-mmbrs_resource_vault .wrap_slider.activities .video_presenter_wr .link span {
  color: #5E1DE1;
}
body.page-template-mmbrs_resource_vault .wrap_slider.activities .rs_cont_wrap span {
  background: #5E1DE1;
}
body.page-template-mmbrs_resource_vault .wrap_slider.articles .video_presenter_wr {
  background: url(../img/pages/res_vault/grey_4.jpg) no-repeat 50% 50%/cover;
}
body.page-template-mmbrs_resource_vault .wrap_slider.articles .video_presenter_wr .link {
  background: #B70074;
}
body.page-template-mmbrs_resource_vault .wrap_slider.articles .video_presenter_wr .link span {
  color: #B70074;
}
body.page-template-mmbrs_resource_vault .wrap_slider.articles .rs_cont_wrap span {
  background: #B70074;
}

body .daterangepicker {
  font-family: "Inter", serif;
  border-radius: 6px;
  overflow: hidden;
  border: none;
  margin-top: 2px;
  --tw-shadow: 0 2px 10px 0 rgba(166, 175, 191, 0.3) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow) !important;
}
@media (max-width: 767px) {
  body .daterangepicker {
    max-width: 730px;
  }
}
body .daterangepicker select.monthselect, body .daterangepicker select.yearselect {
  height: 32px;
  color: #74747e;
  font-size: 12px;
  background: #f7f9fa;
  border: none;
  padding-left: 5px;
}
body .daterangepicker .drp-calendar {
  border: none !important;
  outline: none !important;
}
@media (max-width: 767px) {
  body .daterangepicker .drp-calendar {
    width: 100%;
  }
}
body .daterangepicker .ranges {
  float: right;
}
@media (max-width: 767px) {
  body .daterangepicker .ranges {
    width: 100%;
  }
}
body .daterangepicker .ranges ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 1300px) {
  body .daterangepicker .ranges ul {
    max-width: 242px;
  }
}
body .daterangepicker .ranges ul li {
  width: 100%;
  padding: 6px 15px;
  height: 32px;
  color: #292b2c;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 400;
  font-family: "Inter", serif;
  transition: all 0.2s;
}
body .daterangepicker .ranges ul li.active, body .daterangepicker .ranges ul li:hover {
  background-color: #5E1DE1 !important;
  color: #fff !important;
}
body .daterangepicker .drp-buttons {
  border-top: 1px solid #f4f4f4;
}
body .daterangepicker .drp-buttons .btn {
  background: #6e33e5;
  border: none;
  font-size: 10px;
  cursor: pointer;
  opacity: 1;
}
body .daterangepicker .drp-buttons .btn.cancelBtn, body .daterangepicker .drp-buttons .btn.btn-primary {
  background: transparent;
  color: #6e33e5;
}
body .daterangepicker .drp-buttons .btn.cancelBtn:hover, body .daterangepicker .drp-buttons .btn.btn-primary:hover {
  opacity: 0.8;
}
body .daterangepicker .calendar-table.left tr:nth-child(1) th:nth-child(3) {
  display: none;
}
body .daterangepicker .calendar-table.right tr:nth-child(1) th:nth-child(1) {
  display: none;
}
body .daterangepicker .calendar-table thead th,
body .daterangepicker .calendar-table thead td {
  font-size: 10px;
  font-weight: 400;
  cursor: initial;
}
body .daterangepicker .calendar-table thead th:hover,
body .daterangepicker .calendar-table thead td:hover {
  background: transparent;
}
body .daterangepicker .calendar-table thead .month {
  max-width: 165px;
  width: 100%;
}
body .daterangepicker .calendar-table thead .next,
body .daterangepicker .calendar-table thead .prev {
  cursor: pointer;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 60px;
}
body .daterangepicker .calendar-table thead .next:hover,
body .daterangepicker .calendar-table thead .prev:hover {
  border-radius: 60px !important;
  background: transparent;
}
body .daterangepicker .calendar-table thead .next:hover span,
body .daterangepicker .calendar-table thead .prev:hover span {
  background: #e5e5e5;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 60px;
}
body .daterangepicker .calendar-table thead .next:hover span:after,
body .daterangepicker .calendar-table thead .prev:hover span:after {
  color: #74747e !important;
}
body .daterangepicker .calendar-table th,
body .daterangepicker .calendar-table td {
  height: 30px;
  width: 30px;
  min-width: 30px;
  line-height: 30px;
  border-radius: 0 !important;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  margin: 4px 4px 0 0;
  border: none;
  max-width: 30px;
  max-height: 30px;
  font-size: 12px;
  color: #74747e;
  font-family: "Inter", serif;
}
body .daterangepicker .calendar-table th:hover,
body .daterangepicker .calendar-table td:hover {
  background: #e0d2fa;
}
body .daterangepicker .calendar-table th.off,
body .daterangepicker .calendar-table td.off {
  opacity: 0;
}
body .daterangepicker .calendar-table th.active,
body .daterangepicker .calendar-table td.active {
  background-color: #5E1DE1;
  color: #f7f9fa;
  font-weight: 600;
}
body .daterangepicker .calendar-table th.month:hover,
body .daterangepicker .calendar-table td.month:hover {
  background-color: transparent;
}
body .daterangepicker .calendar-table th.in-range,
body .daterangepicker .calendar-table td.in-range {
  background-color: #5E1DE1;
  color: #f7f9fa;
  font-weight: 600;
  border-color: #fff;
}
body .daterangepicker .calendar-table td {
  background: #f7f9fa;
}
body .daterangepicker .calendar-table th {
  background: #fff;
}
body .daterangepicker .calendar-table th.next span, body .daterangepicker .calendar-table th.prev span {
  transform: unset;
  border: unset;
  padding: 0;
}
body .daterangepicker .calendar-table th.next span:after, body .daterangepicker .calendar-table th.prev span:after {
  content: "\e809";
  font-family: "fontello", serif;
  font-size: 14px;
  color: #74747e;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .daterangepicker .calendar-table th.next:hover span:after, body .daterangepicker .calendar-table th.prev:hover span:after {
  color: #f7f9fa;
}
body .daterangepicker .calendar-table th.next:not(.available):hover, body .daterangepicker .calendar-table th.prev:not(.available):hover {
  background: transparent;
}
body .daterangepicker .calendar-table th.prev span:after {
  content: "\e80e";
}
body .daterangepicker .drp-selected {
  color: #74747e;
}

#cceu_notice_read {
  display: none;
  background: #fff;
  height: auto;
  left: 0;
  width: 100%;
  z-index: 100000000;
  border-bottom: 1px solid #cbd6e2;
  border-top: 1px solid #cbd6e2;
  color: #33475b;
  font-family: inherit;
  font-weight: 400;
  text-align: left;
  text-shadow: none;
  font-size: 12px;
  line-height: 18px;
  position: fixed;
  border-bottom: 0;
  bottom: 0;
  top: auto;
  box-shadow: 0 -1px 3px #eaf0f6;
}
#cceu_notice_read .inner {
  background: #fff;
  margin: 0 auto;
  max-width: 1000px;
  padding: 20px;
}
#cceu_notice_read .inner .wording {
  margin-bottom: 12px;
}
#cceu_notice_read .inner .wording p {
  margin: 0 0 12px;
  color: #33475b;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  text-align: left;
  text-shadow: none;
}
#cceu_notice_read .inner .wording p a {
  color: #0054b3;
}
#cceu_notice_read .inner .btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 0 3px;
  justify-content: center;
}
#cceu_notice_read .inner .btns .btns_group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#cceu_notice_read .inner .btns .btns_group .btn {
  font-size: 14px !important;
}

.close_bt_wr button.close_notice_read_banner {
  width: 15px;
  height: 15px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  cursor: pointer;
}
.close_bt_wr button.close_notice_read_banner:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top left, rgba(94, 29, 225, 0) 0%, rgba(94, 29, 225, 0) calc(50% - 0.8px), rgb(94, 29, 255) 50%, rgba(94, 29, 225, 0) calc(50% + 0.8px), rgba(94, 29, 225, 0) 100%), linear-gradient(to top right, rgba(94, 29, 225, 0) 0%, rgba(94, 29, 225, 0) calc(50% - 0.8px), rgb(94, 29, 255) 50%, rgba(94, 29, 225, 0) calc(50% + 0.8px), rgba(94, 29, 225, 0) 100%);
}
.close_bt_wr button.close_notice_read_banner:before:before:hover {
  background: linear-gradient(to top left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(50% - 0.8px), rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) calc(50% + 0.8px), rgba(0, 0, 0, 0) 100%), linear-gradient(to top right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) calc(50% - 0.8px), rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) calc(50% + 0.8px), rgba(0, 0, 0, 0) 100%);
}

#cceu_notice_read .inner .close_bt_wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#mmbrs_team {
  overflow: hidden;
  padding: 35px 0;
  background: #F5F5F5;
}
@media (max-width: 991px) {
  #mmbrs_team {
    padding: 60px 0 0;
  }
}
@media (max-width: 639px) {
  #mmbrs_team {
    position: relative;
    padding: 20px 0;
  }
}
#mmbrs_team .single {
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  #mmbrs_team .single {
    position: relative;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .single {
    margin: 0 0 15px;
  }
}
#mmbrs_team .single .sm_txt a {
  color: #5E1DE1;
  cursor: pointer;
}
#mmbrs_team .single > a {
  background: #eee;
  position: relative;
  padding-bottom: 68%;
  text-decoration: none;
  cursor: pointer;
  display: block;
  border-radius: 3px;
  overflow: hidden;
}
#mmbrs_team .single img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
#mmbrs_team .single h3 {
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  color: #C500E4;
  margin: 17px 0 4px;
}
@media (max-width: 767px) {
  #mmbrs_team .single h3 {
    margin: 10px 0 0;
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .single h3 {
    margin: 6px 0 0;
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .single h3 a {
    margin: 0 0 2px;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
#mmbrs_team .single p {
  font-size: 14px;
  line-height: 20px;
  color: #767676;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-family: "Inter";
}
@media (max-width: 767px) {
  #mmbrs_team .single p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  #mmbrs_team .media {
    display: block;
  }
}
#mmbrs_team .media-left {
  margin: 0;
}
#mmbrs_team .media-left img {
  border-radius: 3px;
  margin: 0 100px 0 0;
  height: auto;
  width: 256px;
}
@media (max-width: 1919px) {
  #mmbrs_team .media-left img {
    margin: 0 90px 0 0;
  }
}
@media (max-width: 1699px) {
  #mmbrs_team .media-left img {
    margin: 0 60px 0 0;
  }
}
@media (max-width: 991px) {
  #mmbrs_team .media-left img {
    margin: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  #mmbrs_team .media-left img {
    width: 220px;
    margin: 0 40px 25px 0;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .media-left img {
    width: 200px;
  }
}
@media (max-width: 479px) {
  #mmbrs_team .media-left img {
    width: 180px;
  }
}
#mmbrs_team .media-left h3 {
  font-size: 14px;
  line-height: 1.45em;
  font-weight: 700;
  color: #5E1DE1;
  margin: 22px 0 0;
}
@media (max-width: 991px) {
  #mmbrs_team .media-left h3 {
    margin: 15px 0 0;
  }
}
@media (max-width: 767px) {
  #mmbrs_team .media-left h3 {
    font-size: 20px;
    color: #000;
    margin: 0;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .media-left h3 {
    font-size: 18px;
  }
}
#mmbrs_team .media-left p {
  font-size: 14px;
  line-height: 1.6em;
  color: #555;
  margin: 0;
}
@media (max-width: 767px) {
  #mmbrs_team .media-left p.pos {
    display: none;
  }
}
#mmbrs_team .media-left p a {
  font-weight: 700;
  color: #5E1DE1;
}
#mmbrs_team .media-body h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: #5E1DE1;
  margin: 0 0 30px;
}
@media (max-width: 1699px) {
  #mmbrs_team .media-body h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #mmbrs_team .media-body h3 {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .media-body h3 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  #mmbrs_team .media-body h3 {
    font-size: 16px;
  }
}
#mmbrs_team .media-body p {
  font-size: 14px;
  line-height: 1.9;
  font-family: "Inter";
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  #mmbrs_team .media-body p {
    font-size: 14px;
    line-height: 1.65em;
    margin: 0 0 12px;
  }
}
@media (max-width: 479px) {
  #mmbrs_team .media-body p {
    font-size: 12px;
  }
}
#mmbrs_team .media-body a {
  color: #5E1DE1;
}
#mmbrs_team .media-body ul {
  list-style: none;
  padding: 0;
}
#mmbrs_team .media-body ul li {
  font-size: 14px;
  line-height: 1.9;
  font-family: "Inter", serif;
  color: #666;
  position: relative;
  padding-left: 20px;
  display: block;
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  #mmbrs_team .media-body ul li {
    font-size: 14px;
    line-height: 1.65em;
  }
}
@media (max-width: 479px) {
  #mmbrs_team .media-body ul li {
    font-size: 12px;
  }
}
#mmbrs_team .media-body ul li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5E1DE1;
  position: absolute;
  left: 0;
  top: 10px;
}
@media (max-width: 767px) {
  #mmbrs_team .media-body ul li:before {
    top: 9px;
  }
}
@media (max-width: 479px) {
  #mmbrs_team .media-body ul li:before {
    top: 7px;
  }
}
#mmbrs_team .card {
  margin: 0 0 60px;
}
@media (max-width: 767px) {
  #mmbrs_team .card {
    margin: 0 0 40px;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .card {
    margin: 0 0 30px;
  }
}
@media (max-width: 479px) {
  #mmbrs_team .card {
    margin: 0 0 20px;
  }
}
#mmbrs_team .card .card-header a {
  background: transparent !important;
  font-size: 14px;
  color: #C500E4;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 0 20px;
}
#mmbrs_team .card .card-header h5 {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
}
#mmbrs_team .card .card-header h5 .ttl {
  background: transparent;
}
@media (max-width: 767px) {
  #mmbrs_team .card .card-header h5 {
    font-size: 16px;
  }
}
#mmbrs_team .card .card-header:after {
  display: none;
}
#mmbrs_team .card .card-body {
  padding: 30px 0 0;
  margin: 0;
}
@media (max-width: 639px) {
  #mmbrs_team .card .card-body {
    padding: 15px 0 0;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .card .card-body > .row {
    margin: 0 -6px;
  }
}
@media (max-width: 639px) {
  #mmbrs_team .card .card-body > .row > .col-6 {
    padding: 0 6px;
  }
}

body.single-presenter #banner.presenter {
  background: #fff;
  padding: 30px;
}
body.single-presenter .library_sliders {
  margin-bottom: 40px;
}
body.single-presenter .library_sliders h3 {
  margin: 20px 0 15px;
}
body.single-presenter .session_item .rating_wrap {
  display: none;
}
body.single-presenter #banner.presenter .media > img {
  border-radius: 6px;
  width: 177px;
  height: 314px;
}
body.single-presenter #banner.presenter .media-body .headlines {
  margin-bottom: 30px;
}
body.single-presenter #banner.presenter .media-body .descr p {
  color: #5A5F68;
}
body.single-presenter #contact {
  margin-top: 20px !important;
}

.btn.btn_circle_cta {
  color: #FFF;
  text-align: center;
  text-shadow: 1.705px 1.705px 5.115px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  border-radius: 90px;
  background: #ED47E9;
  padding: 12px 20px;
  color: #fff !important;
  max-width: 260px;
  display: block;
  margin: 0 auto;
}
.btn.btn_circle_cta:hover {
  background: #f850f6;
}

.circle_bnr_top {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.circle_bnr_top .cover_image img {
  object-position: 35% 50%;
}
.circle_bnr_top .descr {
  padding-left: 15px;
  padding-right: 15px;
}
.circle_bnr_top .list_wrap {
  border-radius: 0px 0px 6px 6px;
  background: rgba(29, 18, 51, 0.5);
  backdrop-filter: blur(28.5px);
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .circle_bnr_top .list_wrap {
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap;
    padding-bottom: 0 !important;
  }
}
.circle_bnr_top .list_wrap p {
  margin-bottom: 0;
  font-weight: 600;
  color: #FFC7FD;
  border-left: 3px solid #FFC7FD;
  margin: 0 20px;
  padding-left: 15px;
}
@media (max-width: 991px) {
  .circle_bnr_top .list_wrap p {
    margin: 0 15px 20px;
    width: calc(50% - 30px);
  }
}

.circle_sub_bnr_top {
  position: relative;
  max-width: 1250px;
  height: 670px;
  margin: 100px auto;
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
}
@media (max-width: 1200px) {
  .circle_sub_bnr_top {
    height: 555px;
  }
}
@media (max-width: 767px) {
  .circle_sub_bnr_top {
    height: initial;
  }
}
.circle_sub_bnr_top .cover_image img {
  object-fit: contain;
}
@media (max-width: 1200px) {
  .circle_sub_bnr_top .cover_image img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .circle_sub_bnr_top .cover_image img {
    display: none;
  }
}
.circle_sub_bnr_top p {
  color: #552B89;
}
@media (max-width: 1200px) {
  .circle_sub_bnr_top p {
    max-width: 400px;
  }
}
.circle_sub_bnr_top p b {
  color: #AA2294;
}

.circle_content_review {
  position: relative;
  max-width: 1250px;
  margin: 100px auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .circle_content_review {
    flex-wrap: wrap;
    max-width: 400px;
  }
}
.circle_content_review .img_wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .circle_content_review .img_wrap {
    width: 100%;
    height: 300px;
  }
}
.circle_content_review .descr {
  width: 50%;
  background: #AA2294;
  padding: 75px 75px;
}
@media (max-width: 991px) {
  .circle_content_review .descr {
    padding: 40px 40px;
  }
}
@media (max-width: 767px) {
  .circle_content_review .descr {
    width: 100%;
  }
}

.circle_content_steps > p {
  color: #552B89;
}
.circle_content_steps > p b {
  color: #AA2294;
}
.circle_content_steps .wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 639px) {
  .circle_content_steps .wrap {
    flex-wrap: wrap;
  }
}
.circle_content_steps .wrap .step {
  width: calc(33.33% - 15px);
  max-width: 290px;
  margin: 15px 15px;
  padding: 22px;
  border-radius: 6px;
  border: 1px solid #DDD;
}
@media (max-width: 639px) {
  .circle_content_steps .wrap .step {
    width: 100%;
  }
}
.circle_content_steps .wrap .step .ttl {
  color: #AA2294;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 48px */
}
.circle_content_steps .wrap .step .sub {
  color: #0F0F3D;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  margin-bottom: 20px;
}
.circle_content_steps .wrap .step .txt {
  color: #0F0F3D;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}

.circle_content_copy {
  position: relative;
  max-width: 1450px;
  height: 670px;
  margin: 100px auto;
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1200px) {
  .circle_content_copy {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .circle_content_copy {
    height: initial;
    flex-wrap: wrap;
  }
}
.circle_content_copy .cover_image img {
  object-fit: contain;
}
@media (max-width: 1200px) {
  .circle_content_copy .cover_image img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .circle_content_copy .cover_image img {
    display: none;
  }
}
.circle_content_copy .mob {
  display: none;
}
@media (max-width: 767px) {
  .circle_content_copy .mob {
    display: block;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
}
.circle_content_copy p {
  color: #552B89;
  max-width: 982px;
}
@media (max-width: 767px) {
  .circle_content_copy p {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.circle_content_copy p b {
  color: #AA2294;
}

.circle_content_grey_block {
  max-width: 1250px;
  margin: 0 auto;
  border-radius: 6px;
  background: #f8f8f8;
  padding-left: 15px;
  padding-right: 15px;
}
.circle_content_grey_block p {
  max-width: 824px;
  margin: 0 auto;
  color: #552B89;
}
.circle_content_grey_block p b {
  color: #AA2294;
}

.circle_what_people_say {
  overflow: hidden;
}
.circle_what_people_say .circle {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
}
.circle_what_people_say .ttl {
  text-align: center;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .circle_what_people_say .ttl {
    font-size: 32px;
    line-height: 44px;
    max-width: 370px;
  }
}
@media (max-width: 639px) {
  .circle_what_people_say .ttl {
    max-width: 320px;
    font-size: 28px;
    line-height: 36px;
  }
}
.circle_what_people_say .ttl span {
  color: #AA2294;
}
.circle_what_people_say .ttl .face {
  position: absolute;
}
@media (max-width: 991px) {
  .circle_what_people_say .ttl .face {
    transform: scale(0.7);
  }
}
@media (max-width: 767px) {
  .circle_what_people_say .ttl .face {
    transform: scale(0.5);
  }
}
@media (max-width: 639px) {
  .circle_what_people_say .ttl .face {
    transform: scale(0.3);
  }
}
.circle_what_people_say .ttl .face.p1 {
  top: -134px;
  right: -9%;
}
@media (max-width: 1300px) {
  .circle_what_people_say .ttl .face.p1 {
    right: -25%;
  }
}
@media (max-width: 991px) {
  .circle_what_people_say .ttl .face.p1 {
    right: -20%;
  }
}
@media (max-width: 767px) {
  .circle_what_people_say .ttl .face.p1 {
    right: -15%;
    top: -100px;
  }
}
.circle_what_people_say .ttl .face.p1 img {
  width: 86px;
}
.circle_what_people_say .ttl .face.p2 {
  top: -22px;
  left: -20%;
}
@media (max-width: 1300px) {
  .circle_what_people_say .ttl .face.p2 {
    left: -30%;
  }
}
@media (max-width: 991px) {
  .circle_what_people_say .ttl .face.p2 {
    left: -25%;
  }
}
@media (max-width: 767px) {
  .circle_what_people_say .ttl .face.p2 {
    top: 30px;
  }
}
@media (max-width: 479px) {
  .circle_what_people_say .ttl .face.p2 {
    left: -15%;
  }
}
.circle_what_people_say .ttl .face.p2 img {
  width: 94x;
}
.circle_what_people_say .ttl .face.p3 {
  bottom: -74px;
  right: -15%;
}
@media (max-width: 991px) {
  .circle_what_people_say .ttl .face.p3 {
    right: -5%;
  }
}
@media (max-width: 767px) {
  .circle_what_people_say .ttl .face.p3 {
    bottom: -85px;
  }
}
.circle_what_people_say .ttl .face.p3 img {
  width: 90px;
}
.circle_what_people_say .video_noc {
  max-width: 910px;
  margin: 180px auto 40px;
}
@media (max-width: 639px) {
  .circle_what_people_say .video_noc {
    margin-top: 150px;
  }
}
.circle_what_people_say .video_noc .video-container img {
  border-radius: 0px;
}

#featured {
  position: relative;
  background: #fff;
  padding: 70px 0 150px;
}
@media (max-width: 767px) {
  #featured {
    padding-bottom: 90px;
  }
}
@media (min-width: 1140px) {
  #featured .container {
    max-width: 1128px;
  }
}
#featured.loading, .sq25_success .head .slider_videos_reviews #featured.video.video_buffer {
  position: relative;
}
#featured.loading:after, .sq25_success .head .slider_videos_reviews #featured.video.video_buffer:after {
  position: absolute;
  content: "";
  z-index: 5;
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 158, 0, 0.1176470588);
}
#featured.loading .loader, .sq25_success .head .slider_videos_reviews #featured.video.video_buffer .loader {
  position: fixed;
  z-index: 6;
  display: block;
}
#featured h2 {
  text-align: center;
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
}
@media (max-width: 991px) {
  #featured h2 {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  #featured h2 {
    font-size: 26px;
    line-height: 34px;
  }
}
#featured h2 b {
  color: #5E1DE1;
}
@media (max-width: 479px) {
  #featured h2 br {
    display: none;
  }
}
#featured .discover_grid figure {
  transition: 0.2s;
  box-shadow: 0 0 14px 0 rgba(247, 163, 29, 0);
}
#featured .discover_grid figure:hover {
  box-shadow: 0 0 14px 0 rgb(135, 24, 150);
}
#featured .discover_grid figure:hover .hover-cont {
  pointer-events: all;
  overflow: auto;
  top: 0;
}
#featured .discover_grid figure:hover .cta-cont {
  max-height: 60px;
}
@media (max-width: 767px) {
  #featured .discover_grid figure:hover .cta-cont {
    max-height: 40px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure:hover .cta-cont {
    max-height: 32px;
  }
}
#featured .discover_grid figure .hover-cont {
  color: #fff;
  transition: 0.2s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  overflow: hidden;
  background: #232323;
  z-index: 2;
  padding: 17px 17px 60px;
  pointer-events: none;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
@media (max-width: 479px) {
  #featured .discover_grid figure .hover-cont {
    padding: 10px 9px 50px;
  }
}
#featured .discover_grid figure .hover-cont::-webkit-scrollbar {
  display: none;
}
#featured .discover_grid figure .hover-cont img {
  border: 2px solid #232323;
  border-radius: 30px;
  width: 46px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #featured .discover_grid figure .hover-cont img {
    display: none;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure .hover-cont img {
    width: 34px;
    height: 34px;
    margin-bottom: 7px;
  }
}
@media (max-width: 380px) {
  #featured .discover_grid figure .hover-cont img {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  }
}
#featured .discover_grid figure .hover-cont h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 639px) {
  #featured .discover_grid figure .hover-cont h5 {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure .hover-cont h5 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media (max-width: 380px) {
  #featured .discover_grid figure .hover-cont h5 {
    font-size: 13px;
    margin-bottom: 3px;
  }
}
#featured .discover_grid figure .hover-cont h5 picture {
  margin-bottom: 8px;
}
#featured .discover_grid figure .hover-cont h5:nth-of-type(2) picture {
  position: absolute;
  top: 17px;
  left: 50px;
}
@media (max-width: 479px) {
  #featured .discover_grid figure .hover-cont h5:nth-of-type(2) picture {
    top: 10px;
    left: 45px;
  }
}
#featured .discover_grid figure .hover-cont h5:nth-of-type(4) picture {
  position: absolute;
  top: 17px;
  left: 85px;
}
@media (max-width: 479px) {
  #featured .discover_grid figure .hover-cont h5:nth-of-type(4) picture {
    top: 10px;
    left: 75px;
  }
}
#featured .discover_grid figure .hover-cont h5:nth-of-type(6) picture {
  position: absolute;
  top: 17px;
  left: 120px;
}
@media (max-width: 479px) {
  #featured .discover_grid figure .hover-cont h5:nth-of-type(6) picture {
    top: 10px;
    left: 115px;
  }
}
#featured .discover_grid figure .hover-cont .headlines {
  list-style: none;
  padding: 0;
  margin-bottom: 7px;
}
@media (max-width: 479px) {
  #featured .discover_grid figure .hover-cont .headlines {
    margin-bottom: 10px;
  }
}
#featured .discover_grid figure .hover-cont .headlines li {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  word-wrap: break-word;
}
@media (max-width: 479px) {
  #featured .discover_grid figure .hover-cont .headlines li {
    font-size: 11px;
  }
}
@media (max-width: 350px) {
  #featured .discover_grid figure .hover-cont .headlines li {
    font-size: 9px;
  }
}
#featured .discover_grid figure .cta-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s;
  z-index: 3;
}
@media (max-width: 767px) {
  #featured .discover_grid figure .cta-cont {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure .cta-cont {
    font-size: 12px;
  }
}
#featured .discover_grid figure .cta-cont > div,
#featured .discover_grid figure .cta-cont > a {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #5E1DE1;
  text-decoration: none !important;
  transition: 0.3s;
  cursor: pointer;
  flex: 1 0 0;
}
@media (max-width: 767px) {
  #featured .discover_grid figure .cta-cont > div,
  #featured .discover_grid figure .cta-cont > a {
    height: 40px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure .cta-cont > div,
  #featured .discover_grid figure .cta-cont > a {
    height: 32px;
  }
}
#featured .discover_grid figure .cta-cont > div + div,
#featured .discover_grid figure .cta-cont > div + a,
#featured .discover_grid figure .cta-cont > a + div,
#featured .discover_grid figure .cta-cont > a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
#featured .discover_grid figure .cta-cont > div:hover,
#featured .discover_grid figure .cta-cont > a:hover {
  background: #d10c92;
}
#featured .discover_grid figure .cta-cont > div span {
  transition: all ease 0.3s;
}
#featured .discover_grid figure .cta-cont > a {
  color: #fff;
}
@media (max-width: 400px) {
  #featured .discover_grid .ssn_item.col-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
#featured .discover_grid .ssn_item img {
  width: 100%;
}
#featured.v-2 {
  background-color: #000;
  border-radius: 10px;
  max-width: 1620px;
  overflow: visible;
  margin: 0 auto;
  color: #fff;
}
@media (max-width: 1620px) {
  #featured.v-2 {
    border-radius: 0;
  }
}
#featured.v-2 .container:before {
  display: none !important;
}
#featured.v-2 .discover_grid figure figcaption {
  background: rgba(255, 255, 255, 0.15);
}
#featured h2 {
  margin: 0 auto 43px;
}
@media (max-width: 639px) {
  #featured h2 {
    margin: 0 auto 30px;
  }
}
#featured .bottom {
  text-align: center;
}
#featured .more {
  display: block;
  max-width: 310px;
  border-radius: 30px;
  margin: 7px auto 50px;
  color: #d10c92;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  padding: 4px 0;
  border: 1px solid #d10c92;
  font-family: "Inter";
  transition: all ease 0.3s;
}
#featured .more:hover {
  background: #d10c92;
  color: #fff;
}
@media (max-width: 767px) {
  #featured .more {
    margin-bottom: 10px;
  }
}
@media (max-width: 479px) {
  #featured .more {
    max-width: 290px;
  }
}
#featured .more i {
  font-size: 16px;
  margin: 0 3px;
}
#featured .more span.show_more {
  display: none;
}
#featured .more span.show_less {
  display: block;
}
#featured .more.collapsed span.show_more {
  display: block !important;
}
#featured .more.collapsed span.show_less {
  display: none !important;
}
#featured .widget {
  margin: 0 0 20px;
}
#featured .widget .col-md-4 {
  margin: 26px 0 0;
}
@media (max-width: 767px) {
  #featured .widget .col-md-4 {
    margin: 15px 0 0;
  }
}
#featured .widget .col-md-4 figure {
  display: flex;
  background-color: #111;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
  padding: 0 29px 0;
  border-radius: 5px;
  background-size: cover !important;
  height: 100%;
  transition: 0.2s ease-in;
  opacity: 1;
  justify-content: flex-end;
  min-height: 210px;
}
.page-template-funnel_renewal #featured .widget .col-md-4 figure {
  pointer-events: none !important;
}
#featured .widget .col-md-4 figure img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#featured .widget .col-md-4 figure:hover {
  opacity: 0.9;
}
#featured .widget .col-md-4 figure:hover p i {
  margin-left: 8px;
}
@media (max-width: 1699px) {
  #featured .widget .col-md-4 figure {
    padding: 15px 15px 10px;
  }
}
#featured .widget .col-md-4 figure h4 {
  font-size: 26px;
  line-height: 33px;
  font-weight: bold;
  margin: auto 0 24px;
}
@media (max-width: 1699px) {
  #featured .widget .col-md-4 figure h4 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  #featured .widget .col-md-4 figure h4 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
  }
}
@media (max-width: 639px) {
  #featured .widget .col-md-4 figure h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
#featured #more_speakers {
  padding: 0 15px;
  width: 100%;
}
@media (max-width: 639px) {
  #featured #more_speakers {
    padding: 0 7.5px;
  }
}
@media (max-width: 639px) {
  #featured .discover_grid {
    margin: 0 -7.5px;
  }
}
#featured .discover_grid > .col-6 > a {
  color: #000;
}
@media (max-width: 639px) {
  #featured .discover_grid > .col-6 {
    padding: 0 7.5px;
  }
}
#featured .discover_grid figure {
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 30px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 639px) {
  #featured .discover_grid figure {
    margin-bottom: 15px;
  }
}
#featured .discover_grid figure.premium_label figcaption:after {
  content: "";
  font-style: italic;
  margin-left: auto;
  padding-right: 45px;
  color: #5E1DE1;
  font-weight: bold;
  font-size: 12px;
  background: url("../img/pages/sls24/pc_icon.svg") center right no-repeat;
  background-size: auto;
  height: 100%;
  display: inline-flex;
  align-items: center;
  right: -2px;
  position: relative;
}
@media (max-width: 1300px) {
  #featured .discover_grid figure.premium_label figcaption:after {
    display: none;
  }
}
#featured .discover_grid figure.premium_label .hover-cont:before {
  content: "Premium\aMembers Only";
  font-style: italic;
  margin-left: auto;
  padding-right: 45px;
  color: #5E1DE1;
  font-weight: bold;
  font-size: 12px;
  background: url("../img/pages/sls24/pc_icon.svg") center right no-repeat;
  background-size: auto;
  min-height: 40px;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  right: -5px;
  top: -8px;
  position: relative;
  white-space: pre;
  text-align: right;
  line-height: 1.25;
  margin-bottom: -20px;
}
@media (max-width: 1300px) {
  #featured .discover_grid figure.premium_label .hover-cont:before {
    margin-bottom: -43px;
  }
}
@media (max-width: 767px) {
  #featured .discover_grid figure.premium_label .hover-cont:before {
    margin-bottom: 0;
    line-height: 1.1;
    font-size: 10px;
    top: -10px;
    background-size: 30px auto;
    padding-right: 37px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure.premium_label .hover-cont:before {
    margin-bottom: -9px;
    font-size: 7px;
    min-height: 30px;
    right: -4px;
    top: -10px;
    background-size: 20px auto;
    padding-right: 26px;
  }
}
#featured .discover_grid figure .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  margin-top: -31px;
  background: #5E1DE1;
  color: #fff;
  font-size: 36px;
  width: 60px;
  height: 38px;
  display: flex;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding-left: 3px;
  transition: all ease 0.3s;
  cursor: pointer;
}
#featured .discover_grid figure .icon-play:hover {
  opacity: 0.9;
}
@media (max-width: 1300px) {
  #featured .discover_grid figure .icon-play {
    margin-top: -25px;
  }
}
@media (max-width: 767px) {
  #featured .discover_grid figure .icon-play {
    width: 46px;
    margin-top: -20px;
  }
}
@media (max-width: 639px) {
  #featured .discover_grid figure .icon-play {
    width: 36px;
    margin-top: -16px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure .icon-play {
    border-radius: 40px;
    font-size: 24px;
  }
}
#featured .discover_grid figure:hover .btn-arrow:after {
  transform: translate3d(7px, 0, 0);
}
#featured .discover_grid figure:hover .cta {
  opacity: 1;
  z-index: 3;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
#featured .discover_grid figure .cta {
  background: #5E1DE1;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
  transform: translateY(-100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 2;
}
#featured .discover_grid figure .cta-btn {
  outline: none;
  box-shadow: none;
  flex: 1 0 0;
  position: relative;
  border: none;
  border-bottom: 1px solid #258c25;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #5E1DE1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  #featured .discover_grid figure .cta-btn {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  #featured .discover_grid figure .cta-btn {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure .cta-btn {
    font-size: 12px;
  }
}
#featured .discover_grid figure .cta-btn:hover {
  background: #551aca;
}
#featured .discover_grid figure .cta-btn:last-child {
  border-bottom: none;
}
#featured .discover_grid figure > img {
  width: 100%;
}
@media (max-width: 479px) {
  #featured .discover_grid figure > img {
    object-fit: cover;
    height: auto;
    width: 100%;
  }
}
#featured .discover_grid figure figcaption {
  height: 62px;
  padding: 0 55px 0 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  transition: z-index 0.2s step-end, height 0.1s linear;
  background: #fff;
  z-index: 1;
  position: relative;
}
@media (max-width: 1300px) {
  #featured .discover_grid figure figcaption {
    padding: 0 40px 0 17px;
  }
}
#featured .discover_grid figure figcaption .menu_icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
  line-height: 1;
}
#featured .discover_grid figure figcaption > div {
  max-width: 100%;
  min-width: 0;
}
#featured .discover_grid figure figcaption > div:first-child {
  flex: auto 0 0;
}
#featured .discover_grid figure figcaption > div ~ div h5:before {
  content: "&";
  margin: 0 8px;
}
@media (max-width: 639px) {
  #featured .discover_grid figure figcaption > div ~ div h5:before {
    margin: 0 5px;
  }
}
#featured .discover_grid figure figcaption > div ~ div:nth-child(2) ~ div {
  max-width: 0;
}
#featured .discover_grid figure figcaption h5 {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
  font-family: "Inter";
  display: block;
  max-width: 100%;
  margin: 0;
  color: #6335c3;
}
@media (max-width: 767px) {
  #featured .discover_grid figure figcaption h5 {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  #featured .discover_grid figure figcaption h5 {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure figcaption h5 {
    font-size: 12px;
  }
}
#featured .discover_grid figure figcaption ul.headlines {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  max-width: 0;
  overflow: hidden;
}
#featured .discover_grid figure figcaption ul.headlines li {
  font-style: italic;
  padding: 0;
  margin: 0;
}
#featured .discover_grid figure figcaption ul,
#featured .discover_grid figure figcaption ul li,
#featured .discover_grid figure figcaption ol li,
#featured .discover_grid figure figcaption ol,
#featured .discover_grid figure figcaption p {
  display: block;
  max-height: 0;
  max-width: 0;
  font-size: 14px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 767px) {
  #featured .discover_grid figure figcaption ul,
  #featured .discover_grid figure figcaption ul li,
  #featured .discover_grid figure figcaption ol li,
  #featured .discover_grid figure figcaption ol,
  #featured .discover_grid figure figcaption p {
    font-size: 12px;
  }
}
@media (max-width: 639px) {
  #featured .discover_grid figure figcaption ul,
  #featured .discover_grid figure figcaption ul li,
  #featured .discover_grid figure figcaption ol li,
  #featured .discover_grid figure figcaption ol,
  #featured .discover_grid figure figcaption p {
    font-size: 11px;
    line-height: 1.4;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure figcaption ul,
  #featured .discover_grid figure figcaption ul li,
  #featured .discover_grid figure figcaption ol li,
  #featured .discover_grid figure figcaption ol,
  #featured .discover_grid figure figcaption p {
    font-size: 10px;
    line-height: 1.25;
    margin: 0;
  }
}
#featured .discover_grid figure figcaption.open {
  height: 100%;
  background: #fff;
  overflow: auto;
  color: #000;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  z-index: 3;
  transition: z-index 0.2s step-start, height 0.1s linear;
}
#featured .discover_grid figure figcaption.open > div ~ div h5:before {
  display: none;
}
#featured .discover_grid figure figcaption.open > div ~ div:nth-child(2) ~ div {
  max-width: 100%;
}
#featured .discover_grid figure figcaption.open h5 {
  margin-top: 5px;
}
#featured .discover_grid figure figcaption.open ul li,
#featured .discover_grid figure figcaption.open ul.headlines,
#featured .discover_grid figure figcaption.open p {
  max-height: 2000px;
  max-width: 100%;
  margin: 0 0 10px;
  color: #000;
}
@media (max-width: 639px) {
  #featured .discover_grid figure figcaption.open ul li,
  #featured .discover_grid figure figcaption.open ul.headlines,
  #featured .discover_grid figure figcaption.open p {
    margin: 0 0 5px;
  }
}
#featured .discover_grid figure figcaption.open ul,
#featured .discover_grid figure figcaption.open ol {
  padding: 0;
  max-height: 2000px;
  max-width: 100%;
  margin: 0 !important;
}
#featured .discover_grid figure figcaption.open .btn-arrow {
  display: none;
  color: #fff;
  margin-top: 10px;
}
@media (max-width: 639px) {
  #featured .discover_grid figure figcaption.open .btn-arrow {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure figcaption.open .btn-arrow {
    font-size: 16px;
    color: #5E1DE1;
    position: absolute;
    margin: 5px 0 0;
    bottom: 15px;
  }
}
#featured .discover_grid figure figcaption.open .btn-arrow:after {
  transform: scaleX(-1);
}
#featured .discover_grid figure figcaption.open .btn-arrow .less {
  display: inline-block;
}
#featured .discover_grid figure figcaption.open .btn-arrow .more {
  display: none;
}
#featured .discover_grid figure .btn-arrow {
  font-size: 18px;
  color: #5E1DE1;
  text-decoration: none;
  text-transform: capitalize;
}
@media (max-width: 479px) {
  #featured .discover_grid figure .btn-arrow {
    font-size: 16px;
  }
}
#featured .discover_grid figure .btn-arrow:after {
  content: "\f054";
  font-family: fontAwesome;
  display: inline-block;
  font-size: 14px;
  padding: 0 9px;
  transition: 0.15s ease-in;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 639px) {
  #featured .discover_grid figure .btn-arrow:after {
    font-size: 12px;
  }
}
@media (max-width: 479px) {
  #featured .discover_grid figure .btn-arrow:after {
    padding: 0 5px;
  }
}
#featured .discover_grid figure .btn-arrow .less {
  display: none;
}
#featured .discover_grid figure .btn-arrow:hover:after {
  transform: translate3d(7px, 0, 0);
}
#featured .txt_wrap {
  text-align: center;
  padding: 39px 0 100px;
}
@media (max-width: 991px) {
  #featured .txt_wrap {
    padding: 70px 0 60px;
  }
}
@media (max-width: 767px) {
  #featured .txt_wrap {
    padding: 60px 0 50px;
  }
}
@media (max-width: 639px) {
  #featured .txt_wrap {
    padding: 50px 0 40px;
  }
}
@media (max-width: 479px) {
  #featured .txt_wrap {
    padding: 40px 0 30px;
  }
}
#featured .txt_wrap h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 1699px) {
  #featured .txt_wrap h2 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  #featured .txt_wrap h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  #featured .txt_wrap h2 {
    font-size: 32px;
  }
}
@media (max-width: 639px) {
  #featured .txt_wrap h2 {
    font-size: 30px;
  }
}
@media (max-width: 479px) {
  #featured .txt_wrap h2 {
    font-size: 26px;
  }
}
#featured .txt_wrap p {
  font-size: 22px;
  color: #000;
  text-align: center;
  max-width: 640px;
  margin: 25px auto;
  line-height: 1.63;
}
@media (max-width: 1699px) {
  #featured .txt_wrap p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #featured .txt_wrap p {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  #featured .txt_wrap p {
    font-size: 16px;
  }
}
#featured .txt_wrap .btn {
  margin: 12px auto;
  letter-spacing: 3.3px;
  text-transform: none;
}
@media (max-width: 479px) {
  #featured .txt_wrap .btn {
    padding: 9px 65px;
    width: 100%;
  }
}

body .offer50,
body .sls_discount {
  font-size: 30px !important;
  line-height: 45px !important;
  text-align: center !important;
  max-width: 690px !important;
  display: block;
  margin: 0 auto 30px;
  font-weight: 400;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  body .offer50,
  body .sls_discount {
    font-size: 24px !important;
    line-height: 34px !important;
  }
}
@media (max-width: 639px) {
  body .offer50,
  body .sls_discount {
    font-size: 22px !important;
    line-height: 32px !important;
  }
}
@media (max-width: 639px) {
  body .offer50 br,
  body .sls_discount br {
    display: none;
  }
}
body .offer50 b,
body .sls_discount b {
  color: #d10c92;
}
body .offer50 i,
body .sls_discount i {
  position: relative;
  top: -5px;
  font-size: 22px;
}
body .offer50 i span,
body .sls_discount i span {
  color: #d10c92;
  font-weight: 600;
}

.page-template-funnel_sales .btn_pink {
  font-size: 16px;
  padding: 12px 25px;
}
@media (max-width: 375px) {
  .page-template-funnel_sales .btn_pink {
    font-size: 13px;
  }
}
.page-template-funnel_sales #contact.funnel {
  background: #f5f5f5;
}
.page-template-funnel_sales .reg_form {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 90px;
  background: #f5f5f5;
}
.page-template-funnel_sales .reg_form .ifs_reg {
  margin-top: 0;
}

header nav {
  margin-left: auto;
}
header .hd_time_block {
  position: relative;
  text-align: center;
  padding-left: 15px;
  width: 270px;
  height: 80px;
}
@media (max-width: 1300px) {
  header .hd_time_block {
    width: 180px;
    height: 52px;
  }
}
header .hd_time_block:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 27px;
  border-left: 1px solid #fff;
}
header .hd_time_block .txt {
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 0 15px 10px 0;
}
header .hd_time_block.animated .countdown_init {
  transition: all ease 1s;
  opacity: 0;
  transform: translate(0, 20px);
}
header .hd_time_block.animated.initialized .countdown_init {
  opacity: 1;
  transform: translate(0, 0);
}
header .hd_time_block .countdown-row {
  display: flex;
  justify-content: center;
}
header .hd_time_block .countdown-row .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
}
header .hd_time_block .countdown-row .countdown-section:before {
  content: ":";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 1300px) {
  header .hd_time_block .countdown-row .countdown-section:before {
    font-size: 20px;
  }
}
header .hd_time_block .countdown-row .countdown-section.nodot:before {
  display: none !important;
}
header .hd_time_block .countdown-row .countdown-section .countdown-amount {
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
  width: 100%;
}
@media (max-width: 1300px) {
  header .hd_time_block .countdown-row .countdown-section .countdown-amount {
    font-size: 20px;
  }
}
header .hd_time_block .countdown-row .countdown-section .countdown-period {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  font-family: Inter, Serif;
  width: 100%;
}
@media (max-width: 1300px) {
  header .hd_time_block .countdown-row .countdown-section .countdown-period {
    font-size: 10px;
  }
}

#pass {
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1699px) {
  #pass {
    background-size: 300px auto;
  }
}
@media (max-width: 991px) {
  #pass {
    background-image: none;
  }
}
#pass h2 {
  text-align: center;
  color: #06063c;
  font-weight: 600;
  font-size: 40px;
  line-height: 140%;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  #pass h2 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 20px;
  }
  #pass h2 br {
    display: none;
  }
}
@media (max-width: 767px) {
  #pass h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 10px;
  }
}
@media (max-width: 639px) {
  #pass h2 {
    font-size: 26px;
    line-height: 34px;
  }
}
#pass h2 b {
  color: #d10c92 !important;
}
#pass h3 {
  text-align: center;
  max-width: 700px;
  display: block;
  margin: 0 auto 90px;
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
  font-family: "Inter";
}
@media (max-width: 991px) {
  #pass h3 {
    font-size: 24px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  #pass h3 {
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 26px;
  }
}
#pass .deliver {
  width: 100%;
  display: block;
}

.sls_included {
  max-width: 1620px;
  margin: 0 auto;
}
.sls_included .head {
  border-radius: 6px 6px 0 0;
  text-align: center;
  position: relative;
  padding: 55px 15px 95px;
}
@media (max-width: 767px) {
  .sls_included .head {
    padding: 30px 15px 50px;
  }
}
.sls_included .head .summit img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sls_included .head .summit img {
    max-width: 200px;
    margin-bottom: 20px;
  }
}
.sls_included .head .ttl {
  font-size: 40px;
  line-height: 56px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  .sls_included .head .ttl {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 479px) {
  .sls_included .head .ttl br {
    display: none;
  }
}
.sls_included .body {
  position: relative;
  background: #f8f8f8;
  border-radius: 0 0 6px 6px;
  text-align: center;
  padding: 95px 15px 120px;
}
@media (max-width: 767px) {
  .sls_included .body {
    padding: 70px 15px;
  }
}
.sls_included .body .ttl {
  font-size: 30px;
  line-height: 39px;
  font-family: "Inter";
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  .sls_included .body .ttl {
    font-size: 24px;
    line-height: 32px;
  }
}
.sls_included .body ul {
  margin: 0 auto 15px;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
}
.sls_included .body ul li {
  list-style: none;
  margin: 12px;
  background: #e8e2f1;
  color: #6335c3;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px 0 6px 0;
  font-family: "Inter";
}
@media (max-width: 767px) {
  .sls_included .body ul li {
    margin: 6px;
  }
}
@media (max-width: 479px) {
  .sls_included .body ul li {
    min-width: 215px;
  }
}
.sls_included .body .txt {
  font-size: 18px;
  line-height: 30px;
  font-family: "Inter";
  color: #0f0f3d;
  max-width: 720px;
  width: 100%;
  margin: 0 auto 60px;
}

.sls_backstage .head {
  border-radius: 6px 6px 0 0;
  text-align: center;
  position: relative;
}
.sls_backstage .head .wrap {
  max-width: 722px;
  padding: 102px 15px 70px;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sls_backstage .head .wrap {
    padding: 0px 15px 70px;
  }
}
.sls_backstage .head .badge {
  position: absolute;
  top: 0;
  left: -25px;
}
@media (max-width: 767px) {
  .sls_backstage .head .badge {
    position: relative;
    left: initial;
  }
}
.sls_backstage .head .badge img {
  width: 177px;
  margin-bottom: 20px;
}
.sls_backstage .head .ttl {
  font-size: 46px;
  line-height: 59px;
  color: #fff;
  text-align: left;
  font-weight: 700;
  margin-left: 195px;
}
@media (max-width: 767px) {
  .sls_backstage .head .ttl {
    text-align: center;
    margin-left: 0;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 639px) {
  .sls_backstage .head .ttl {
    font-size: 26px;
    line-height: 32px;
  }
}
.sls_backstage .body {
  position: relative;
  background: #f8f8f8;
  border-radius: 0 0 6px 6px;
  padding: 95px 15px 120px;
}
@media (max-width: 767px) {
  .sls_backstage .body {
    padding: 70px 15px;
  }
}
.sls_backstage .body .wrap {
  text-align: center;
  max-width: 722px;
  margin: 0 auto;
}
.sls_backstage .body .container {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.sls_backstage .body .ttl {
  font-size: 30px;
  line-height: 39px;
  font-family: "Inter";
  text-align: left;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sls_backstage .body .ttl {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .sls_backstage .body .ttl br {
    display: none;
  }
}
.sls_backstage .body .ttl span {
  color: #6335c3;
}
.sls_backstage .body .txt {
  font-size: 22px;
  line-height: 38px;
  font-family: "Inter";
  color: #0f0f3d;
  width: 100%;
  margin: 0 0 60px;
  max-width: 722px;
  text-align: left;
}
@media (max-width: 767px) {
  .sls_backstage .body .txt {
    font-size: 18px;
    line-height: 26px;
  }
}
.sls_backstage .body .txt.btm {
  margin: 0 auto 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .sls_backstage .body .txt.btm {
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .sls_backstage .body .txt.btm br {
    display: none;
  }
}
.sls_backstage .body .txt span {
  font-weight: 600;
  color: #6335c3;
}
.sls_backstage .body ul {
  margin: 0 auto 60px;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 850px;
}
@media (max-width: 767px) {
  .sls_backstage .body ul {
    margin-bottom: 30px;
  }
}
@media (max-width: 639px) {
  .sls_backstage .body ul {
    width: 100%;
  }
}
.sls_backstage .body ul li {
  list-style: none;
  margin: 12px;
  background: #fff;
  color: #0f0f3d;
  font-family: "Inter";
  padding: 20px 20px;
  border-radius: 6px;
  width: 345px;
  display: flex;
  align-items: center;
  align-content: center;
  text-align: left;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .sls_backstage .body ul li {
    width: 300px;
    padding: 15px 20px;
    margin: 10px;
  }
}
@media (max-width: 479px) {
  .sls_backstage .body ul li {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.sls_backstage .body ul li picture {
  margin-right: 25px;
}
.sls_backstage .body ul li img {
  max-width: 60px;
  max-height: 60px;
  height: auto;
}
.sls_backstage .body ul li p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sls_backstage .body ul li p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .sls_backstage .body ul li p br {
    display: none;
  }
}

.plus50 {
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 60px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Inter, Serif;
}
@media (max-width: 767px) {
  .plus50 {
    font-size: 24px;
  }
}
.plus50 b {
  font-weight: 600;
  color: #6335c3;
}
@media (max-width: 639px) {
  .plus50 br {
    display: none;
  }
}

.sls_time_block {
  box-shadow: -1px 5px 15px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 80px 225px;
  position: relative;
  margin-top: 50px;
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  border: 1px solid rgb(241, 241, 241);
}
.sls_time_block.grey_v3 {
  background: #fff;
  box-shadow: none;
  margin-bottom: 0;
}
.sls_time_block .save_50 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  color: #6335c3;
}
@media (max-width: 767px) {
  .sls_time_block .save_50 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 639px) {
  .sls_time_block .save_50 {
    font-size: 22px;
    line-height: 32px;
  }
}
.sls_time_block .save_50 br {
  display: none;
}
@media (max-width: 991px) {
  .sls_time_block .save_50 br {
    display: block;
  }
}
@media (max-width: 991px) {
  .sls_time_block {
    padding: 50px 15px;
    max-width: 98%;
  }
}
@media (max-width: 767px) {
  .sls_time_block {
    padding: 60px 15px;
    margin-top: 80px;
    max-width: 95%;
  }
}
@media (max-width: 639px) {
  .sls_time_block {
    margin-top: 60px;
    max-width: 92%;
    padding: 40px 15px;
  }
}
.sls_time_block.animated .countdown_init {
  transition: all ease 1s;
  opacity: 0;
  transform: translate(0, 20px);
  height: 90px;
}
.sls_time_block.animated.initialized .countdown_init {
  opacity: 1;
  transform: translate(0, 0);
}
.sls_time_block .countdown-row {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.sls_time_block .countdown-row .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
}
.sls_time_block .countdown-row .countdown-section:before {
  content: ":";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 60px;
  font-weight: 300;
  background: #8b15b9;
  background: linear-gradient(to right, #8b15b9 0%, #e6069a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .sls_time_block .countdown-row .countdown-section:before {
    font-size: 50px;
  }
}
.sls_time_block .countdown-row .countdown-section.nodot:before {
  display: none !important;
}
.sls_time_block .countdown-row .countdown-section .countdown-amount {
  width: 100%;
  background: #8b15b9;
  background: linear-gradient(to right, #8b15b9 0%, #e6069a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-weight: 300;
  font-style: initial;
}
@media (max-width: 991px) {
  .sls_time_block .countdown-row .countdown-section .countdown-amount {
    font-size: 50px;
  }
}
.sls_time_block .countdown-row .countdown-section .countdown-period {
  width: 100%;
  color: #555555;
  font-size: 14px;
}

.sticky_timer {
  display: none;
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f7f7f7;
  border-top: 1px solid #fff;
}
.sticky_timer .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  overflow: hidden;
  min-height: 82px;
}
@media (max-width: 52px) {
  .sticky_timer .container {
    max-width: 1000px;
  }
}
@media (max-width: 1699px) {
  .sticky_timer .container {
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .sticky_timer .container {
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .sticky_timer .container {
    justify-content: flex-start;
    flex-wrap: wrap;
    min-height: 75px;
  }
}
.sticky_timer .container p {
  font-size: 16px;
  margin-bottom: 0;
  color: #000;
}
@media (max-width: 767px) {
  .sticky_timer .container p br {
    display: none;
  }
}
@media (max-width: 991px) {
  .sticky_timer .container p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sticky_timer .container p {
    width: 100%;
    font-size: 12px;
  }
}
.sticky_timer .btn_gradient_purple {
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 60px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 30px;
}
@media (max-width: 767px) {
  .sticky_timer .btn_gradient_purple {
    position: absolute;
    bottom: 19px;
    right: 10px;
    font-size: 14px;
    padding: 8px 20px;
  }
}
@media (max-width: 479px) {
  .sticky_timer .btn_gradient_purple {
    bottom: 22px;
    font-size: 12px;
    padding: 6px 14px;
  }
}
.sticky_timer .countdown.lg {
  position: relative;
  margin: 0;
  height: 50px;
}
@media (max-width: 1699px) {
  .sticky_timer .countdown.lg {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .sticky_timer .countdown.lg {
    top: 5px;
    left: -18px;
  }
}
.sticky_timer .countdown.lg .countdown-row {
  padding: 0;
  line-height: 34px;
  display: block;
}
.sticky_timer .countdown.lg .countdown-section {
  width: 55px;
  line-height: 16px;
  font-size: 0px;
}
.sticky_timer .countdown.lg .countdown-section:after {
  color: #5E1DE1;
  font-size: 32px;
  top: 2px;
  right: -5px;
}
.sticky_timer .countdown.lg .countdown-amount {
  color: #5E1DE1;
  font-size: 34px;
  height: 20px;
}
.sticky_timer .countdown.lg .countdown-period {
  position: relative;
  top: 0;
  font-size: 12px;
  color: #000;
  font-weight: 400;
}

.sls24_coaching_marketplace,
.sls24_coaching_software {
  max-width: 1600px;
  width: calc(100vw - 30px);
}
.sls24_coaching_marketplace .top,
.sls24_coaching_software .top {
  width: 100%;
  padding: 15px 0;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 768px) {
  .sls24_coaching_marketplace .top,
  .sls24_coaching_software .top {
    padding: 30px;
  }
}
@media (min-width: 1300px) {
  .sls24_coaching_marketplace .top,
  .sls24_coaching_software .top {
    padding: 130px 250px;
  }
}
.sls24_coaching_marketplace .top .desc,
.sls24_coaching_software .top .desc {
  max-width: 485px;
}
.sls24_coaching_marketplace .bottom,
.sls24_coaching_software .bottom {
  width: 100%;
  padding: 15px 0;
  border-radius: 0 0 20px 20px;
  box-shadow: 4px 4px 45px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .sls24_coaching_marketplace .bottom,
  .sls24_coaching_software .bottom {
    padding: 30px 0;
  }
}
@media (min-width: 1300px) {
  .sls24_coaching_marketplace .bottom,
  .sls24_coaching_software .bottom {
    padding: 149px 200px 108px 250px;
  }
}
.sls24_coaching_marketplace .bottom .container.d-flex,
.sls24_coaching_software .bottom .container.d-flex {
  flex-direction: column;
}
@media (min-width: 992px) {
  .sls24_coaching_marketplace .bottom .container.d-flex,
  .sls24_coaching_software .bottom .container.d-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .sls24_coaching_marketplace .bottom .container.d-flex:nth-child(even),
  .sls24_coaching_software .bottom .container.d-flex:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.sls24_coaching_marketplace .bottom .container .desc,
.sls24_coaching_software .bottom .container .desc {
  width: 100%;
}
@media (min-width: 992px) {
  .sls24_coaching_marketplace .bottom .container .desc,
  .sls24_coaching_software .bottom .container .desc {
    max-width: 395px;
  }
}
.sls24_coaching_marketplace .bottom .container .desc .btn_wr a,
.sls24_coaching_software .bottom .container .desc .btn_wr a {
  border-radius: 50px;
  background: #5E1DE1;
  width: 100%;
  max-width: 238px;
  height: 36px;
  color: #FFF;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}
@media (min-width: 992px) {
  .sls24_coaching_marketplace .bottom .container .desc .btn_wr a,
  .sls24_coaching_software .bottom .container .desc .btn_wr a {
    font-size: 20px;
  }
}
.sls24_coaching_marketplace .bottom .container .desc .btn_wr a:hover,
.sls24_coaching_software .bottom .container .desc .btn_wr a:hover {
  opacity: 0.8;
  text-decoration: unset;
}
.sls24_coaching_marketplace .bottom .container .desc .btn_wr a svg,
.sls24_coaching_software .bottom .container .desc .btn_wr a svg {
  margin-right: 5px;
}
.sls24_coaching_marketplace .bottom .container .image_wr,
.sls24_coaching_software .bottom .container .image_wr {
  width: 100%;
}
.sls24_coaching_marketplace .bottom .container .image_wr picture img,
.sls24_coaching_software .bottom .container .image_wr picture img {
  width: 100%;
}
@media (min-width: 992px) {
  .sls24_coaching_marketplace .bottom .container .image_wr,
  .sls24_coaching_software .bottom .container .image_wr {
    width: calc(100% - 395px);
    max-width: 629px;
  }
}

.sls24_coaching_marketplace_slider,
.sls24_coaching_software_slider {
  max-width: 1260px;
  width: calc(100vw - 30px);
}
@media (max-width: 767px) {
  .sls24_coaching_marketplace_slider,
  .sls24_coaching_software_slider {
    max-width: 400px;
  }
}
.sls24_coaching_marketplace_slider .slick_wr,
.sls24_coaching_software_slider .slick_wr {
  margin-bottom: 150px;
}
.sls24_coaching_marketplace_slider .slick_wr.slick-dotted .slick-dots,
.sls24_coaching_software_slider .slick_wr.slick-dotted .slick-dots {
  bottom: -35px;
}
.sls24_coaching_marketplace_slider .slick_wr.slick-dotted button.slick-arrow,
.sls24_coaching_software_slider .slick_wr.slick-dotted button.slick-arrow {
  bottom: -110px;
}
@media (min-width: 1200px) {
  .sls24_coaching_marketplace_slider .slick_wr .item,
  .sls24_coaching_software_slider .slick_wr .item {
    max-width: 400px;
  }
}
.sls24_coaching_marketplace_slider .slick_wr .item picture,
.sls24_coaching_software_slider .slick_wr .item picture {
  border-radius: 20px;
  border: 1px solid #DDD;
  background: #FFF;
  display: block;
  padding: 14px;
  margin-bottom: 30px;
}
.sls24_coaching_marketplace_slider .slick_wr .item picture.sml,
.sls24_coaching_software_slider .slick_wr .item picture.sml {
  border: unset;
  padding: 14px 0;
}
.sls24_coaching_marketplace_slider .slick_wr .item picture.sml img,
.sls24_coaching_software_slider .slick_wr .item picture.sml img {
  max-width: 130px;
}
@media (max-width: 1200px) {
  .sls24_coaching_marketplace_slider .slick_wr .item picture.sml img,
  .sls24_coaching_software_slider .slick_wr .item picture.sml img {
    max-height: 180px;
    width: auto;
  }
}
@media (max-width: 991px) {
  .sls24_coaching_marketplace_slider .slick_wr .item picture.sml img,
  .sls24_coaching_software_slider .slick_wr .item picture.sml img {
    max-height: 205px;
  }
}
.sls24_coaching_marketplace_slider .slick_wr .item picture img,
.sls24_coaching_software_slider .slick_wr .item picture img {
  max-height: 232px;
  display: block;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .sls24_coaching_marketplace_slider .slick_wr .item picture img,
  .sls24_coaching_software_slider .slick_wr .item picture img {
    max-height: initial;
  }
}
.sls24_coaching_marketplace_slider .slick_wr .item .ttl,
.sls24_coaching_software_slider .slick_wr .item .ttl {
  font-weight: 700;
  line-height: 130;
  margin-bottom: 10px;
  color: #0F0F3D;
  letter-spacing: 0.25px;
}
@media (min-width: 992px) {
  .sls24_coaching_marketplace_slider .slick_wr .item .ttl,
  .sls24_coaching_software_slider .slick_wr .item .ttl {
    min-height: 63px;
    display: flex;
  }
}
@media (min-width: 992px) {
  .sls24_coaching_marketplace_slider .slick_wr .item .ttl,
  .sls24_coaching_software_slider .slick_wr .item .ttl {
    min-height: 88px;
  }
}
.sls24_coaching_marketplace_slider .slick_wr .item .txt,
.sls24_coaching_software_slider .slick_wr .item .txt {
  color: #0F0F3D;
  font-weight: 500;
  line-height: 160;
  margin-bottom: 0;
}

.sls24_bonus {
  max-width: 1600px;
  padding: 30px 15px;
  border-radius: 0;
  backdrop-filter: blur(31.5px);
}
@media (min-width: 768px) {
  .sls24_bonus {
    border-radius: 20px;
    padding: 45px 30px;
  }
}
@media (min-width: 1300px) {
  .sls24_bonus {
    padding: 109px 173px;
  }
}
@media (max-width: 639px) {
  .sls24_bonus .container {
    padding-left: 30px;
  }
}
.sls24_bonus .container .desc {
  margin-left: 30px;
}
.sls24_bonus .container .desc .label {
  background: #D5B0FF;
  border-radius: 6px;
  height: 30px;
  width: 100%;
}
@media (min-width: 576px) {
  .sls24_bonus .container .desc .label {
    height: 61px;
    width: 252px;
  }
}
.sls24_bonus .container .list_item {
  position: relative;
}
.sls24_bonus .container .list_item:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .sls24_bonus .container .list_item:not(:last-child) {
    margin-bottom: 0;
  }
}
.sls24_bonus .container .list_item:before {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 15px;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background: #D5B0FF;
}

.h34 {
  font-size: 24px;
}
@media (min-width: 992px) {
  .h34 {
    font-size: 34px;
  }
}

.page-template-funnel_squeeze .featured_section {
  margin-top: 0;
}

.page-template-funnel_squeeze .btn_pink,
.page-template-funnel_squeeze_hr_ld .btn_pink {
  font-size: 16px;
  padding: 12px 28px;
  letter-spacing: 2px;
}
@media (max-width: 639px) {
  .page-template-funnel_squeeze .btn_pink,
  .page-template-funnel_squeeze_hr_ld .btn_pink {
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 25px;
  }
}

.single-presenter .modal_sssn .upcoming_wrap .check_wrap label .btn,
.page-template-funnel_squeeze .modal_sssn .upcoming_wrap .check_wrap label .btn,
.page-template-funnel_squeeze_hr_ld .modal_sssn .upcoming_wrap .check_wrap label .btn,
.page-template-funnel_sales .modal_sssn .upcoming_wrap .check_wrap label .btn {
  display: none !important;
}
.single-presenter .modal_sssn .prsntrs_wrap .media .media-body .btn-green,
.page-template-funnel_squeeze .modal_sssn .prsntrs_wrap .media .media-body .btn-green,
.page-template-funnel_squeeze_hr_ld .modal_sssn .prsntrs_wrap .media .media-body .btn-green,
.page-template-funnel_sales .modal_sssn .prsntrs_wrap .media .media-body .btn-green {
  display: none !important;
}
.single-presenter .modal_sssn .card.resources,
.page-template-funnel_squeeze .modal_sssn .card.resources,
.page-template-funnel_squeeze_hr_ld .modal_sssn .card.resources,
.page-template-funnel_sales .modal_sssn .card.resources {
  display: none !important;
}

.main-banner {
  position: relative;
}
.main-banner.squeeze {
  background-size: cover;
  padding: 20px 0 127px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .main-banner.squeeze {
    background-position: 55% 50%;
  }
}
@media (max-width: 1300px) {
  .main-banner.squeeze {
    background-position: 60% 50%;
  }
}
@media (max-width: 991px) {
  .main-banner.squeeze {
    background-position: 55% 50%;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .main-banner.squeeze {
    background-position: 0 50%;
  }
}
.main-banner.squeeze.sq_hr .container {
  height: initial;
}
.main-banner.squeeze .cont_wrap {
  position: relative;
}
.main-banner.squeeze .summit img {
  margin-bottom: 30px;
}
@media (max-width: 639px) {
  .main-banner.squeeze .summit img {
    max-width: 160px;
    margin-bottom: 10px;
  }
}
.main-banner.squeeze .container {
  margin-top: 40px !important;
  text-align: center;
}
@media (min-width: 992px) {
  .main-banner.squeeze .container {
    height: 600px;
    display: flex;
    align-items: center;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .main-banner.squeeze .container {
    height: initial;
  }
}
.main-banner.squeeze h1 {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .main-banner.squeeze h1 {
    text-align: left;
  }
}
.main-banner.squeeze h1 span {
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .main-banner.squeeze h1 span {
    display: block;
    font-size: 18px;
    line-height: 28px;
    margin-top: 15px;
  }
}
@media (max-width: 639px) {
  .main-banner.squeeze h1 span {
    font-size: 16px;
    line-height: 26px;
  }
}
.main-banner.squeeze .date-text {
  color: #fff;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 35px;
  display: block;
}
.main-banner.squeeze .date-text img {
  max-width: 26px;
  position: relative;
  top: -3px;
  margin-right: 7px;
}
.main-banner.rec {
  padding-top: 100px;
  padding-bottom: 180px;
}
.main-banner.rec h1 {
  text-align: center;
  font-size: 40px;
  line-height: 130%;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .main-banner.rec h1 {
    margin-bottom: 30px;
  }
}
.main-banner.rec .rec_bnr_top {
  width: 100%;
  display: block;
}
.main-banner.rec .rec_bnr_top img {
  width: 100%;
  max-width: 100%;
}
.main-banner .bg {
  height: 500px;
  background: url(../img/pages/sls24/featured-banner.jpg) no-repeat center;
  background-size: cover;
  padding: 30px;
}
.main-banner .cont {
  position: relative;
  z-index: 20;
}
.main-banner .sliders_wrap {
  position: absolute;
  z-index: 15;
  bottom: 30px;
  top: 30px;
  right: 15px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), #000, #000, #000, #000, #000, rgba(0, 0, 0, 0));
  mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4), #000, #000, #000, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
@media (max-width: 991px) {
  .main-banner .sliders_wrap {
    display: none;
  }
}
.main-banner .slider {
  opacity: 0;
  width: 285px;
  margin: 0;
}
@media (max-width: 767px) {
  .main-banner .slider {
    display: none;
  }
}
.main-banner .slider .slide {
  position: relative;
  margin-top: -1px;
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 0, white 50%);
}
.main-banner .slider .slide img {
  width: 253px;
  height: 253px;
  margin: 10px 20px;
}
.main-banner .slider .slide p {
  margin: 100px auto;
}

.tag-container {
  text-align: center;
}
.tag-container .tag {
  display: inline-block;
  font-size: 16px;
  line-height: 34px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  margin: 0 8px 15px;
  background: #5E1DE1;
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  padding: 0 24px;
}

#future-body {
  margin-bottom: -40px;
}

section.sq_sub_banner {
  position: relative;
  z-index: 15;
  top: -60px;
  margin: 0 0 -40px;
}
section.sq_sub_banner.squeeze {
  margin-bottom: -250px;
}
section.sq_sub_banner .pre {
  font-style: normal;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 15px;
  padding: 15px 0;
}
@media (max-width: 479px) {
  section.sq_sub_banner .pre {
    font-size: 11px;
  }
}
section.sq_sub_banner .pre img {
  position: relative;
  top: -2px;
  margin-right: 10px;
  max-width: 112px;
  width: 100%;
}
section.sq_sub_banner .wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
}
.page-template-funnel_renewal section.sq_sub_banner .wrap {
  border-radius: 6px;
}
section.sq_sub_banner .wrap .top {
  background: linear-gradient(45deg, rgb(69, 133, 144) 0%, rgb(86, 166, 176) 100%);
  background-size: cover;
  border-radius: 6px 6px 0 0;
}
@media (max-width: 767px) {
  section.sq_sub_banner .wrap .top {
    padding: 25px 20px 15px;
    flex-direction: column;
  }
}
section.sq_sub_banner .wrap ul {
  background: #fff;
  border-radius: 0 0 6px 6px;
  padding: 15px 0;
  min-height: 124px;
  display: flex;
  align-items: center;
  margin: 0;
}
@media (max-width: 991px) {
  section.sq_sub_banner .wrap ul {
    flex-wrap: wrap;
    padding: 15px 20px 0;
  }
}
@media (max-width: 767px) {
  section.sq_sub_banner .wrap ul {
    padding-top: 20px;
  }
}
@media (max-width: 479px) {
  section.sq_sub_banner .wrap ul {
    padding-top: 30px;
  }
}
section.sq_sub_banner .wrap ul.btm {
  justify-content: center;
}
@media (max-width: 767px) {
  section.sq_sub_banner .wrap ul.btm li {
    flex: 145px 0 0;
  }
}
section.sq_sub_banner .wrap ul li {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
  padding: 0;
}
@media (max-width: 991px) {
  section.sq_sub_banner .wrap ul li {
    width: 50%;
    margin: 0 0 10px;
    margin-bottom: 20px;
  }
}
section.sq_sub_banner .wrap ul li .ttl,
section.sq_sub_banner .wrap ul li h3 {
  white-space: nowrap;
  font-weight: 500;
  font-size: 28px;
  background: linear-gradient(90deg, #7921b1 0%, #e11391 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 991px) {
  section.sq_sub_banner .wrap ul li .ttl,
  section.sq_sub_banner .wrap ul li h3 {
    white-space: nowrap;
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  section.sq_sub_banner .wrap ul li .ttl,
  section.sq_sub_banner .wrap ul li h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  section.sq_sub_banner .wrap ul li .ttl,
  section.sq_sub_banner .wrap ul li h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
section.sq_sub_banner .wrap ul li p {
  text-align: center;
  font-family: "Inter";
  font-size: 15px;
  color: #06063c;
  font-size: 16px;
  margin: 0;
}
@media (max-width: 1699px) {
  section.sq_sub_banner .wrap ul li p {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  section.sq_sub_banner .wrap ul li p {
    font-size: 14px;
  }
}
section.sq_sub_banner .wrap ul li svg {
  margin-bottom: 3px;
}
section.sq_sub_banner .btm {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  text-align: center;
  padding: 42px 30px;
}
section.sq_sub_banner .btm .btn_pink {
  padding: 9px 38px;
}
@media (max-width: 767px) {
  section.sq_sub_banner .btm {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  section.sq_sub_banner .btm .down_icon_new {
    display: none;
  }
}
section.sq_sub_banner .btm picture img {
  max-width: 170px;
  width: 100%;
}
section.sq_sub_banner .btm.bg {
  background-size: cover;
  padding: 50px 120px 27px;
}
@media (max-width: 991px) {
  section.sq_sub_banner .btm.bg {
    padding: 45px 10px 15px;
  }
}
@media (max-width: 479px) {
  section.sq_sub_banner .btm.bg {
    padding: 45px 0 15px;
  }
}
section.sq_sub_banner .btm.bg .ttl {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
}
section.sq_sub_banner .btm.bg .date {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}
section.sq_sub_banner .btm.bg svg,
section.sq_sub_banner .btm.bg img {
  height: auto;
}
@media (max-width: 991px) {
  section.sq_sub_banner .btm.bg svg,
  section.sq_sub_banner .btm.bg img {
    margin: 15px 5px;
  }
}
@media (max-width: 639px) {
  section.sq_sub_banner .btm.bg svg,
  section.sq_sub_banner .btm.bg img {
    margin: 10px 10px;
    max-width: 103px;
    max-height: 28px;
    object-fit: contain;
  }
}
@media (max-width: 479px) {
  section.sq_sub_banner .btm.bg svg,
  section.sq_sub_banner .btm.bg img {
    margin: 10px 8px;
  }
}
@media (max-width: 340px) {
  section.sq_sub_banner .btm.bg svg,
  section.sq_sub_banner .btm.bg img {
    margin: 10px 3px;
  }
}
section.sq_sub_banner ul {
  width: 100%;
  padding: 28px 65px 20px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  background: #fff;
}
@media (max-width: 1699px) {
  section.sq_sub_banner ul {
    padding: 25px 30px;
  }
}
@media (max-width: 991px) {
  section.sq_sub_banner ul {
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
  }
}
@media (max-width: 479px) {
  section.sq_sub_banner ul {
    padding: 10px 0 5px;
  }
}
section.sq_sub_banner ul li {
  display: inline-block;
  text-align: center;
  width: 25%;
}
@media (max-width: 991px) {
  section.sq_sub_banner ul li {
    width: auto;
    padding: 0 0 7px;
    margin: 0 18px;
  }
}
@media (max-width: 479px) {
  section.sq_sub_banner ul li {
    padding: 0 6px 7px;
    margin: 0;
  }
}
section.sq_sub_banner ul li h3 {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 400;
  color: #5E1DE1;
  margin: 0 0 3px;
}
@media (max-width: 1699px) {
  section.sq_sub_banner ul li h3 {
    font-size: 33px;
  }
}
@media (max-width: 1300px) {
  section.sq_sub_banner ul li h3 {
    font-size: 31px;
  }
}
@media (max-width: 991px) {
  section.sq_sub_banner ul li h3 {
    font-size: 29px;
  }
}
@media (max-width: 767px) {
  section.sq_sub_banner ul li h3 {
    font-size: 27px;
  }
}
@media (max-width: 639px) {
  section.sq_sub_banner ul li h3 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  section.sq_sub_banner ul li h3 {
    font-size: 18px;
  }
}
section.sq_sub_banner ul li p {
  font-size: 16px;
  color: #555;
  margin: 3px 0;
}
@media (max-width: 991px) {
  section.sq_sub_banner ul li p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  section.sq_sub_banner ul li p {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  section.sq_sub_banner ul li p {
    font-size: 12px;
  }
}
@media (max-width: 479px) {
  section.sq_sub_banner ul li p {
    font-size: 11px;
  }
}

.sq_descr_top {
  background: #fff;
  padding-top: 260px;
  padding-bottom: 50px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .sq_descr_top {
    background: initial;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .sq_descr_top {
    padding-bottom: 70px;
    padding-top: 230px;
  }
}
.sq_descr_top.sales {
  background: initial;
  padding-top: 150px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .sq_descr_top.sales {
    padding-top: 120px;
  }
}
.sq_descr_top.recording {
  padding-top: 80px;
  padding-bottom: 64px;
}
.sq_descr_top.recording .cta_wrap {
  margin: 80px auto;
}
.sq_descr_top.recording.v2 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 1px;
  margin-top: 80px;
  margin-bottom: 85px;
  overflow: visible;
  border-radius: 6px;
  background: url(../img/pages/recording/bnr_bg.jpg) no-repeat 50% 50%/cover;
}
.sq_descr_top img.speakers {
  max-width: 100%;
}
.sq_descr_top .black {
  color: #000;
}
.sq_descr_top .ttl {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  margin: 0 auto 40px;
  text-align: center;
}
@media (max-width: 991px) {
  .sq_descr_top .ttl {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sq_descr_top .ttl {
    font-size: 34px;
    line-height: 46px;
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  .sq_descr_top .ttl {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}
.sq_descr_top .ttl b {
  color: #5E1DE1;
}
.sq_descr_top img.speakers {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .sq_descr_top img.speakers {
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  .sq_descr_top img.speakers {
    margin-bottom: 15px;
  }
}
.sq_descr_top .cta_wrap {
  text-align: center;
  margin: 50px auto 120px;
}
@media (max-width: 991px) {
  .sq_descr_top .cta_wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .sq_descr_top .cta_wrap {
    margin: 20px auto 70px;
  }
}
.sq_descr_top .square {
  display: block;
  margin: 0 auto 43px;
}
@media (max-width: 767px) {
  .sq_descr_top .square {
    margin-bottom: 20px;
  }
}
.sq_descr_top h3 {
  font-size: 30px;
  line-height: 44px;
  font-weight: 400;
  text-align: center;
  color: #5E1DE1;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .sq_descr_top h3 {
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .sq_descr_top h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 15px !important;
  }
  .sq_descr_top h3 br {
    display: none;
  }
}
.sq_descr_top .r_txt {
  max-width: 660px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.sq_descr_top .r_txt i {
  font-size: 16px;
  line-height: 24px;
}
.sq_descr_top .icf_emcc_wrap {
  margin-top: -30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.sq_descr_top .icf_emcc_wrap p {
  text-align: center;
  font-family: "Inter";
}
.sq_descr_top .icf_emcc_wrap .normal_txt {
  text-align: left;
}
.sq_descr_top .icf_emcc_wrap i {
  margin-top: 10px;
  text-align: center;
}
.sq_descr_top .big_ttl {
  text-align: center;
  max-width: 836px;
  margin: 0 auto 10px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 40px;
  line-height: 56px;
  font-weight: 600;
  color: #7032c8;
}
@media (max-width: 991px) {
  .sq_descr_top .big_ttl {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 639px) {
  .sq_descr_top .big_ttl {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.sq_descr_top .under_h3 {
  text-align: center;
  margin-bottom: 59px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .sq_descr_top .under_h3 {
    margin-bottom: 30px;
  }
}
.sq_descr_top h2 {
  font-size: 50px;
  line-height: 65px;
  font-weight: 400;
  text-align: center;
  color: #5E1DE1;
  margin-bottom: 54px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .sq_descr_top h2 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .sq_descr_top h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.sq_descr_top h2 b {
  font-weight: 600;
  color: #5E1DE1;
}
.sq_descr_top h4 {
  color: #06063c;
  text-align: center;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
  font-family: "Inter";
}
@media (max-width: 639px) {
  .sq_descr_top h4 {
    display: none;
  }
}
.sq_descr_top h4 br {
  font-size: 22px;
  line-height: 36px;
}
@media (max-width: 767px) {
  .sq_descr_top h4 br {
    display: none;
  }
}
.sq_descr_top .container > p {
  max-width: 682px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}
.sq_descr_top .container .normal_txt {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter";
  color: #06063c;
}
.sq_descr_top .container .normal_txt i {
  display: block;
  margin-top: 5px;
  font-size: 22px;
  font-style: normal;
}
.sq_descr_top .container .normal_txt i b {
  color: #5E1DE1;
}
.sq_descr_top .container .normal_txt i.basic {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter";
  color: #06063c;
  font-style: italic;
}
.sq_descr_top .container .big_txt {
  max-width: 748px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  text-align: center;
  margin: 10px auto 40px;
}
.sq_descr_top .container .big_txt i {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}
.sq_descr_top .container .big_txt i b {
  color: #5E1DE1;
}
.sq_descr_top .container ul {
  max-width: 682px;
  margin: 10px auto 0;
  text-align: left;
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter";
  margin-left: 0;
  padding-left: 18px;
}
.sq_descr_top .container i {
  text-align: center;
}
.sq_descr_top .content p b {
  color: #06063c;
}

.speakers_wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  display: block;
}
@media (max-width: 767px) {
  .speakers_wrap.sls {
    margin-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
  }
}
.speakers_wrap.rec_bnr_top.v2 > div p {
  bottom: -100px;
  height: 110px;
}
.speakers_wrap.rec_bnr_top > div {
  width: 100% !important;
}
.speakers_wrap.rec_bnr_top > div p {
  font-size: 12px;
  line-height: 18px;
  height: 90px;
  bottom: -140px;
}
.speakers_wrap.rec_bnr_top > div.s1 {
  left: 8% !important;
  width: 18% !important;
}
.speakers_wrap.rec_bnr_top > div.s2 {
  left: 26% !important;
  width: 17% !important;
}
.speakers_wrap.rec_bnr_top > div.s3 {
  left: 43% !important;
  width: 15% !important;
}
.speakers_wrap.rec_bnr_top > div.s4 {
  left: 58% !important;
  width: 17% !important;
}
.speakers_wrap.rec_bnr_top > div.s5 {
  left: 75% !important;
  width: 15% !important;
}
.speakers_wrap.recording {
  max-width: 780px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .speakers_wrap.recording {
    margin-bottom: 20px;
  }
}
.speakers_wrap.recording > div > p {
  bottom: -120px;
  background: #fff;
  color: #6335C3;
}
.speakers_wrap.recording > div > p:before {
  border-bottom: 12px solid #fff;
}
.speakers_wrap.recording > div.s1 {
  left: 2%;
  width: 18%;
}
.speakers_wrap.recording > div.s2 {
  left: 20%;
  width: 20%;
}
.speakers_wrap.recording > div.s3 {
  left: 40%;
  width: 20%;
}
.speakers_wrap.recording > div.s4 {
  left: 60%;
  width: 20%;
}
.speakers_wrap.recording > div.s5 {
  left: 80%;
  width: 20%;
}
.speakers_wrap.sq_hr > div.s1 {
  left: 3%;
  width: 20%;
}
.speakers_wrap.sq_hr > div.s2 {
  left: 23%;
  width: 18%;
}
.speakers_wrap.sq_hr > div.s3 {
  left: 41%;
  width: 17%;
}
.speakers_wrap.sq_hr > div.s4 {
  left: 58%;
  width: 17%;
}
.speakers_wrap.sq_hr > div.s5 {
  left: 75%;
  width: 20%;
}
@media (max-width: 639px) {
  .speakers_wrap {
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
  }
}
.speakers_wrap .speakers.desktop {
  display: initial;
}
@media (max-width: 479px) {
  .speakers_wrap .speakers.desktop {
    display: none;
  }
}
.speakers_wrap .speakers.mob {
  display: none;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 479px) {
  .speakers_wrap .speakers.mob {
    display: block;
  }
}
.speakers_wrap > div {
  position: absolute;
  height: 77%;
  bottom: 0;
  overflow: hidden;
}
.speakers_wrap > div:hover {
  overflow: visible;
}
.speakers_wrap > div:hover p {
  opacity: 1;
}
.speakers_wrap > div.s1 {
  left: 4%;
  width: 10%;
}
@media (max-width: 767px) {
  .speakers_wrap > div.s1 p {
    left: 0;
  }
  .speakers_wrap > div.s1 p:before {
    left: 20px;
  }
}
.speakers_wrap > div.s2 {
  left: 14%;
  width: 10%;
}
@media (max-width: 767px) {
  .speakers_wrap > div.s2 p {
    left: calc(50% - 110px);
  }
}
.speakers_wrap > div.s3 {
  left: 24%;
  width: 8%;
}
.speakers_wrap > div.s4 {
  left: 32%;
  width: 8%;
}
.speakers_wrap > div.s5 {
  left: 40%;
  width: 9%;
}
.speakers_wrap > div.s6 {
  left: 49%;
  width: 10%;
}
.speakers_wrap > div.s7 {
  left: 59%;
  width: 10%;
}
.speakers_wrap > div.s8 {
  left: 69%;
  width: 8%;
}
.speakers_wrap > div.s9 {
  left: 77%;
  width: 10%;
}
.speakers_wrap > div.s10 {
  left: 87%;
  width: 10%;
}
@media (max-width: 767px) {
  .speakers_wrap > div.s10 p {
    left: initial;
    right: 0;
  }
  .speakers_wrap > div.s10 p:before {
    left: initial;
    right: 20px;
  }
}
.speakers_wrap > div p {
  position: absolute;
  bottom: -91px;
  left: calc(50% - 130px);
  width: 240px;
  height: 100px;
  color: #fff;
  background: #452589;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1450980392);
  margin-bottom: 0;
  border-radius: 6px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .speakers_wrap > div p {
    bottom: -95px;
  }
}
@media (max-width: 639px) {
  .speakers_wrap > div p {
    display: none;
  }
}
.speakers_wrap > div p:before {
  content: "";
  position: absolute;
  top: -11px;
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #452589;
}
@media (max-width: 767px) {
  .speakers_wrap > div p:before {
    top: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #452589;
  }
}

#intro {
  background: #f5f5f5;
  position: relative;
  padding-bottom: 80px;
}
#intro .down_icon_big {
  position: absolute;
  z-index: 20;
  bottom: -100px;
  top: initial;
  margin: initial;
}
#intro .down_icon_big:before, #intro .down_icon_big:after {
  display: none;
}
#intro .logo_square img {
  position: relative;
  top: -70px;
  display: block;
  margin: 0 auto -20px;
}
#intro h2 {
  display: block;
  max-width: 722px;
  width: 100%;
  background: #3D1D81;
  color: #fff;
  font-size: 42px;
  line-height: 54px;
  font-weight: 400;
  margin: 70px auto 70px;
  text-align: center;
  padding: 36px 15px;
}
@media (max-width: 991px) {
  #intro h2 {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  #intro h2 {
    margin-top: 40px;
    font-size: 34px;
    line-height: 46px;
  }
}
@media (max-width: 639px) {
  #intro h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
#intro h2 b {
  color: #E83BB5;
}
@media (max-width: 767px) {
  #intro h2 br {
    display: none;
  }
}
#intro h3,
#intro .ttl_top {
  text-align: center;
  max-width: 836px;
  margin: 0 auto 40px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 40px;
  line-height: 56px;
  font-weight: 600;
  color: #06063c;
}
#intro h3 span,
#intro .ttl_top span {
  color: #7032c8;
}
@media (max-width: 991px) {
  #intro h3,
  #intro .ttl_top {
    margin-bottom: 50px;
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  #intro h3,
  #intro .ttl_top {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 15px;
  }
}
@media (max-width: 639px) {
  #intro h3,
  #intro .ttl_top {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 479px) {
  #intro h3 br,
  #intro .ttl_top br {
    display: none;
  }
}
#intro .image_wr {
  margin-bottom: 30px;
}
#intro h4,
#intro .ttl_med {
  max-width: 722px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
  text-align: center;
  margin: 40px auto;
  color: #06063c;
}
@media (max-width: 767px) {
  #intro h4,
  #intro .ttl_med {
    font-size: 22px;
    line-height: 34px;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 639px) {
  #intro h4,
  #intro .ttl_med {
    font-size: 20px;
    line-height: 30px;
  }
}
#intro h4 b,
#intro .ttl_med b {
  color: #5E1DE1;
  font-weight: 600;
}
@media (max-width: 767px) {
  #intro h4 br,
  #intro .ttl_med br {
    display: none;
  }
}
#intro p {
  font-size: 16px;
  line-height: 28px;
  font-family: "Inter";
  color: #06063c;
}
#intro p b {
  color: #06063c;
}
#intro .btm_ttl {
  display: block;
  font-size: 30px;
  line-height: 48px;
  text-align: center;
  max-width: 650px;
  margin: 30px auto 20px;
}
@media (max-width: 991px) {
  #intro .btm_ttl {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  #intro .btm_ttl {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
#intro .video_wrap {
  max-width: 910px;
  width: 100%;
  margin: 0 auto 0;
}
#intro .video_wrap .video .trigger_video:before {
  display: none;
}
#intro .video_wrap .video .trigger_video:hover:before {
  transform: scale(1.2);
}
#intro .video_wrap .video .trigger_video svg {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 78px;
  width: 78px;
  height: 78px;
  border-radius: 120px;
  color: #fff;
  transition: all 0.2s;
}
@media (max-width: 639px) {
  #intro .video_wrap .video .trigger_video svg {
    left: 50%;
    top: 50%;
  }
}
#intro .video_wrap .cta_wrap {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 15px;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  #intro .video_wrap .cta_wrap {
    padding: 40px 15px;
  }
}

.featured_section {
  margin: 54px auto 0;
  padding: 0 0 90px;
  max-width: 1620px;
}
.featured_section .head {
  border-radius: 6px 6px 0 0;
  padding: 64px 30px 54px;
}
@media (max-width: 991px) {
  .featured_section .head {
    padding: 40px 15px 30px;
  }
}
@media (max-width: 639px) {
  .featured_section .head {
    border-radius: 0;
  }
}
.featured_section .head h2 {
  text-align: center;
  color: #fff;
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .featured_section .head h2 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 10px;
  }
}
@media (max-width: 639px) {
  .featured_section .head h2 {
    font-size: 26px;
    line-height: 34px;
  }
}
.featured_section .head ul {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.featured_section .head ul li {
  list-style: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 4px 18px;
  background: #5E1DE1;
  margin: 10px 10px;
  text-align: center;
  border-radius: 60px;
  font-family: "Inter";
}
@media (max-width: 639px) {
  .featured_section .head ul li {
    font-size: 14px;
    line-height: 20px;
    margin: 10px 5px;
  }
}
@media (max-width: 479px) {
  .featured_section .head ul li {
    font-size: 13px;
    padding: 4px 10px;
  }
}
.featured_section .body .container {
  padding-top: 58px;
  padding-bottom: 104px;
}
@media (max-width: 767px) {
  .featured_section .body .container {
    padding-bottom: 60px;
  }
}
.featured_section .body .container > p {
  font-size: 22px;
  line-height: 36px;
  font-family: "inter";
  font-weight: 400;
  max-width: 550px;
  margin: 0 auto 65px;
}
@media (max-width: 767px) {
  .featured_section .body .container > p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 28px;
  }
}
.featured_section .body .container > p b {
  color: #5E1DE1;
}
.featured_section .body .img_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 75px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .featured_section .body .img_wrap {
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }
}
.featured_section .body .img_wrap img {
  max-width: 722px;
  width: 100%;
  display: block;
  height: auto;
  margin-left: 15px;
  margin-right: 15px;
}
.featured_section h2 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  margin: 10px auto 40px;
  text-align: center;
  max-width: 870px;
}
@media (max-width: 767px) {
  .featured_section h2 {
    font-size: 34px;
    line-height: 46px;
    margin-bottom: 30px;
  }
}
@media (max-width: 639px) {
  .featured_section h2 {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .featured_section h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
.featured_section h2 b {
  color: #7032c8;
}
.featured_section .btn_pink {
  display: block;
  margin: 0 auto;
  max-width: 245px;
}
.featured_section .bnr_starter {
  max-width: 722px;
  margin: 100px auto 0;
  text-align: left;
  padding: 85px 42px 50px;
  border-radius: 6px;
}
.featured_section .bnr_starter .sub_ttl {
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 22px;
  font-family: "Inter";
}
.featured_section .bnr_starter .ttl {
  margin-bottom: 25px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: #fff;
}
.featured_section .bnr_starter .ttl span {
  color: #D10C92;
}
.featured_section .bnr_starter .btn_pink {
  margin: initial;
}

.reviews_wrap {
  padding: 95px 15px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .reviews_wrap {
    padding: 70px 15px 50px;
  }
}
@media (max-width: 639px) {
  .reviews_wrap {
    padding-top: 40px;
  }
}
.reviews_wrap .heading {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 500;
  color: #06063c;
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 991px) {
  .reviews_wrap .heading {
    margin-bottom: 30px;
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .reviews_wrap .heading {
    font-size: 26px;
    margin-bottom: 5px;
  }
}
.reviews_wrap .review_slider {
  max-width: 1100px;
  width: 100%;
  position: relative;
  padding-bottom: 100px;
}
.reviews_wrap .review_slider .slick-dots {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.reviews_wrap .review_slider .slick-dots li {
  list-style: none;
  background: none;
  margin: 5px 5px;
}
.reviews_wrap .review_slider .slick-dots li button {
  width: 14px;
  height: 14px;
  background: #d9d9d9;
  border-radius: 60px;
  font-size: 0;
  display: block;
  border: none;
  outline: none;
}
.reviews_wrap .review_slider .slick-dots li button:focus {
  border: none;
  outline: none;
}
.reviews_wrap .review_slider .slick-dots li.slick-active button {
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%);
}
.reviews_wrap .review_slider .slick-arrow {
  position: absolute;
  display: block;
  top: 45%;
  width: 50px;
  height: 50px;
  background: none;
  font-size: 0;
  border: none;
  transition: all 0.2s;
  z-index: 11;
}
@media (max-width: 1300px) {
  .reviews_wrap .review_slider .slick-arrow {
    display: none;
  }
}
.reviews_wrap .review_slider .slick-arrow:before {
  display: block;
  font-size: 45px;
  content: "\e80b";
  font-family: "fontello", serif;
  color: #5E1DE1;
  cursor: pointer;
}
@media (max-width: 991px) {
  .reviews_wrap .review_slider .slick-arrow:before {
    font-size: 30px;
  }
}
.reviews_wrap .review_slider .slick-arrow:hover {
  transform: scale(1.1);
}
.reviews_wrap .review_slider .slick-arrow:focus {
  border: none;
  outline: none;
}
.reviews_wrap .review_slider .slick-arrow.slick-next {
  left: initial;
  right: -228px;
}
.reviews_wrap .review_slider .slick-arrow.slick-next:before {
  transform: rotate(90deg);
}
@media (max-width: 1640px) {
  .reviews_wrap .review_slider .slick-arrow.slick-next {
    right: -100px;
  }
}
@media (max-width: 1400px) {
  .reviews_wrap .review_slider .slick-arrow.slick-next {
    right: 0;
  }
}
.reviews_wrap .review_slider .slick-arrow.slick-prev {
  left: -228px;
  right: initial;
}
.reviews_wrap .review_slider .slick-arrow.slick-prev:before {
  transform: rotate(270deg);
}
@media (max-width: 1640px) {
  .reviews_wrap .review_slider .slick-arrow.slick-prev {
    left: -100px;
  }
}
@media (max-width: 1400px) {
  .reviews_wrap .review_slider .slick-arrow.slick-prev {
    left: 0;
  }
}
.reviews_wrap .review_slider .wrap {
  position: relative;
  padding: 10px 50px 80px 100px;
  margin: 0 auto;
  height: 500px;
}
@media (max-width: 1240px) {
  .reviews_wrap .review_slider .wrap {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .reviews_wrap .review_slider .wrap {
    padding: 10px 0 80px;
    height: auto;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .reviews_wrap .review_slider .wrap {
    margin-top: 20px !important;
  }
}
.reviews_wrap .review_slider .wrap .ttl {
  font-size: 30px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .reviews_wrap .review_slider .wrap .ttl {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .reviews_wrap .review_slider .wrap .ttl {
    font-size: 22px;
    line-height: 32px;
  }
}
.reviews_wrap .review_slider .wrap .ttl.normal {
  font-weight: 400;
}
.reviews_wrap .review_slider .wrap .ttl.normal b {
  font-weight: 600;
}
.reviews_wrap .review_slider .wrap .txt {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: #0f0f3d;
  font-family: "Inter";
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .reviews_wrap .review_slider .wrap .txt {
    font-size: 18px;
    line-height: 28px;
  }
}
.reviews_wrap .review_slider .wrap .txt strong,
.reviews_wrap .review_slider .wrap .txt b {
  color: #5E1DE1;
}
.reviews_wrap .review_slider .wrap .txt span {
  color: #6335c3;
}
.reviews_wrap .review_slider .wrap .top {
  height: 80px;
  padding-left: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .reviews_wrap .review_slider .wrap .top {
    left: 0;
  }
}
.reviews_wrap .review_slider .wrap .top .name {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Inter", serif;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.reviews_wrap .review_slider .wrap .top .name:after {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  content: "\e810";
  font-family: "fontello", Serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background: #4b90ff;
}
.reviews_wrap .review_slider .wrap .top .descr {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Inter", serif;
}
.reviews_wrap .review_slider .wrap .top .avatar {
  position: absolute;
  left: 0;
  top: 0;
}
.reviews_wrap .review_slider .wrap .bottom {
  position: absolute;
  bottom: 0;
  left: 100px;
  right: 0;
  height: 80px;
  padding-left: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 991px) {
  .reviews_wrap .review_slider .wrap .bottom {
    left: 0;
  }
}
.reviews_wrap .review_slider .wrap .bottom .name {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Inter", serif;
  margin-bottom: 0;
}
.reviews_wrap .review_slider .wrap .bottom .descr {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Inter", serif;
}
.reviews_wrap .review_slider .wrap .bottom .avatar {
  position: absolute;
  left: 0;
  top: 0;
}
.reviews_wrap.mid {
  max-width: 720px;
}

.features_wrap {
  position: relative;
  display: block;
  max-width: 1620px;
  margin: 0 auto 0;
  padding: 92px 0 20px;
  border-radius: 6px;
  background: #f5f5f5;
}
@media (max-width: 1620px) {
  .features_wrap {
    border-radius: 0;
  }
}
@media (max-width: 639px) {
  .features_wrap {
    padding: 50px 0 0;
    margin: 0 auto 45px;
  }
  .features_wrap.container {
    padding: 50px 15px 0;
  }
}
@media (max-width: 991px) {
  .features_wrap .cover_image img {
    object-position: 100% 50%;
  }
}
.features_wrap .row > div {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 639px) {
  .features_wrap.main-b h4 {
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  .features_wrap.main-b .descr {
    display: none;
  }
}
.features_wrap.v2 {
  color: #fff;
}
@media (max-width: 479px) {
  .features_wrap.v2.sq {
    padding-bottom: 550px;
  }
  .features_wrap.v2.sq picture img {
    object-position: center bottom;
  }
}
@media (max-width: 440px) {
  .features_wrap.v2.sq {
    padding-bottom: 500px;
  }
}
@media (max-width: 380px) {
  .features_wrap.v2.sq {
    padding-bottom: 480px;
  }
}
@media (max-width: 479px) {
  .features_wrap.v2.sls {
    background-color: #000;
    padding-bottom: 650px;
  }
  .features_wrap.v2.sls .cover_image img {
    object-position: bottom center;
  }
}
@media (max-width: 440px) {
  .features_wrap.v2.sls {
    padding-bottom: 550px;
  }
}
@media (max-width: 375px) {
  .features_wrap.v2.sls {
    padding-bottom: 500px;
  }
}
.features_wrap.v2.sls h2 b {
  color: #5E1DE1;
}
.features_wrap.v2 h2,
.features_wrap.v2 h3,
.features_wrap.v2 p {
  color: #fff !important;
}
.features_wrap.v2 h2 b,
.features_wrap.v2 h3 b,
.features_wrap.v2 p b {
  color: #fff !important;
}
.features_wrap.v2 .btn_wrap {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .features_wrap.v2 .offset-md-4 {
    margin-left: 0;
  }
}
.features_wrap h2 {
  margin: 0 auto;
}
.features_wrap .box {
  max-width: 291px;
  margin: 0 auto 40px;
}
.features_wrap h4 {
  font-size: 26px;
  line-height: 39px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .features_wrap h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 639px) {
  .features_wrap h4 {
    font-size: 22px;
    line-height: 28px;
  }
}
.features_wrap .descr {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: "Inter";
  padding-right: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .features_wrap .descr {
    font-size: 16px;
    line-height: 24px;
  }
}
.features_wrap .btn_wrap {
  text-align: center;
  width: 100%;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .features_wrap .btn_wrap {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .features_wrap .btn_wrap {
    margin-bottom: 70px;
  }
}
.features_wrap .container > .row > .col-lg-4 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .features_wrap .container > .row > .col-lg-4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 639px) {
  .features_wrap .container > .row > .col-lg-4 {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .features_wrap .container > .row > .col-lg-4 i {
    margin: 0 auto 20px;
  }
}
@media (max-width: 639px) {
  .features_wrap .container > .row > .col-lg-4 p.small {
    max-width: 350px;
    margin: 0 auto 10px;
  }
}
.features_wrap .container > .row > .col-lg-4 p.small i {
  color: #5E1DE1;
  font-weight: 600;
}
@media (max-width: 639px) {
  .features_wrap .container > .row > .col-lg-4 h4 {
    margin: 0 auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .features_wrap .discount img {
    width: 90px;
  }
}
@media (max-width: 639px) {
  .features_wrap .discount {
    text-align: center;
  }
}
.features_wrap .discount h4 {
  font-weight: 600;
}
.features_wrap .card {
  max-width: 920px;
  width: calc(100% - 30px);
  margin: 0 auto -83px;
  border-radius: 6px;
  padding: 46px 15px;
  box-shadow: 0 5px 30px 0 rgba(74, 74, 74, 0.1);
}
@media (max-width: 767px) {
  .features_wrap .card {
    padding: 36px 15px;
    transform: translateY(50%);
    margin: -30px auto 0;
  }
}
@media (max-width: 639px) {
  .features_wrap .card {
    padding: 26px 15px;
  }
}
.features_wrap .sales_boxes_box_pro {
  margin: 15px 0 22px;
}
.features_wrap i[class^=icon-] {
  line-height: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(63.63deg, #e6069a 0.53%, #8b15b9 99.1%);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  margin: 0 0 10px;
}
@media (max-width: 639px) {
  .features_wrap i[class^=icon-] {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.features_wrap i[class^=icon-] img,
.features_wrap i[class^=icon-] svg {
  max-width: 28px;
}

.review_videos {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  margin-bottom: 140px;
}
@media (max-width: 991px) {
  .review_videos {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .review_videos {
    margin-top: 70px;
    margin-bottom: 40px;
  }
}
.review_videos.align_start {
  align-items: flex-start;
  margin-top: 0;
}
.review_videos.no_video .video .trigger_video {
  pointer-events: none;
  display: none;
}
.review_videos.one_video .block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.review_videos.one_video .block .video_wrap {
  max-width: 48.5%;
  width: 100%;
}
@media (max-width: 991px) {
  .review_videos.one_video .block .video_wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
}
.review_videos.one_video .block .wrap_one {
  width: 48.5%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .review_videos.one_video .block .wrap_one {
    width: 100%;
    max-width: 100%;
  }
}
.review_videos .ttl {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 53px;
  text-align: center;
}
@media (max-width: 767px) {
  .review_videos .ttl {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 30px;
  }
}
@media (max-width: 639px) {
  .review_videos .ttl {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
.review_videos .ttl b {
  color: #5E1DE1;
}
.review_videos .video .trigger_video svg {
  position: absolute;
  z-index: 2;
  top: 60%;
  left: 40px;
  width: 62px;
  height: 62px;
  font-size: 35px;
  padding-top: 3px;
  padding-left: 5px;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .review_videos .video .trigger_video svg {
    left: 28px;
  }
}
@media (max-width: 767px) {
  .review_videos .video .trigger_video svg {
    left: 17px;
    transform: scale(0.8);
  }
}
@media (max-width: 639px) {
  .review_videos .video .trigger_video svg {
    top: 45%;
  }
}
.review_videos .deliver {
  margin: 50px auto;
  width: 100%;
  display: block;
}
@media (max-width: 639px) {
  .review_videos .deliver {
    display: none;
  }
}
.review_videos .block {
  width: 50%;
  padding-right: 30px;
  padding-bottom: 75px;
  position: relative;
}
@media (max-width: 991px) {
  .review_videos .block {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .review_videos .block {
    width: 100%;
    padding-bottom: 30px;
  }
}
.review_videos .block.icon_right .video .trigger_video svg {
  top: initial;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  left: initial;
}
.review_videos .block.video_v2 .video .trigger_video:before {
  top: 55%;
}
.review_videos .block .video_wrap {
  border-radius: 6px;
  overflow: hidden;
}
.review_videos .block .quote img {
  margin-top: 30px;
  margin-bottom: 16px;
  max-width: 65px;
}
.review_videos .block .txt {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
  color: #06063c;
  margin-bottom: 22px;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .review_videos .block .txt {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .review_videos .block .txt {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.review_videos .block .txt b {
  color: #9200a3;
  font-weight: 700;
}
.review_videos .block .txt.mob {
  display: none;
}
@media (max-width: 639px) {
  .review_videos .block .txt.mob {
    display: block;
  }
}
.review_videos .block .txt.desktop {
  display: block;
}
@media (max-width: 639px) {
  .review_videos .block .txt.desktop {
    display: none;
  }
}
.review_videos .block .wrap {
  display: flex;
  align-items: center;
  align-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .review_videos .block .wrap {
    position: relative;
  }
}
.review_videos .block .wrap img {
  margin-right: 15px;
  max-width: 75px;
}
.review_videos .block .wrap p {
  margin-bottom: 0;
}
.review_videos .block .wrap .name {
  line-height: 24px;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 400;
}
.review_videos .block .wrap .name b {
  font-weight: 600;
}
.review_videos .brxs_only {
  margin-top: 40px;
}

#about {
  margin-top: 42px;
  max-width: 630px;
  overflow: hidden;
}
#about .descr {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  font-family: "Inter";
  text-align: center;
  max-width: 534px;
  margin: 0 auto;
}
#about .descr a {
  font-weight: 700;
  color: #D10C92;
}
#about .descr a:hover {
  color: #000;
}
#about .btn-avatar {
  border: none;
  outline: none;
  -webkit-appearance: none;
  background: transparent;
  padding: 0;
  position: relative;
  cursor: pointer;
  width: 100%;
}
#about .btn-avatar:hover figure {
  background: rgba(238, 238, 238, 0.6);
}
#about .btn-avatar figure {
  transition: 0.2s;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 6px;
  background: #eeeeee;
  overflow: hidden;
}
#about .btn-avatar figure img {
  width: 94px;
  height: 100%;
}
#about .btn-avatar figure figcaption {
  padding: 5px 15px;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
}
#about .btn-avatar figure figcaption p {
  color: #000;
}
#about .btn-avatar figure figcaption p strong {
  text-transform: uppercase;
}
#about .btn-avatar svg {
  transition: 0.2s;
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 28px;
  height: auto;
  transform: scale(1);
}
@media (hover: hover) {
  #about .btn-avatar:hover svg {
    transform: scale(1.2);
  }
}
#about .avatar {
  width: 150px;
}
@media (max-width: 991px) {
  #about .avatar {
    width: 130px;
  }
}
@media (max-width: 479px) {
  #about .avatar {
    width: 120px;
  }
}
@media (max-width: 767px) {
  #about h4 {
    margin-bottom: 20px;
  }
}
#about h2 {
  font-size: 32px;
  font-weight: 600;
  color: #06063c;
}
@media (max-width: 767px) {
  #about h2 {
    margin-top: 0 !important;
    padding-top: 30px !important;
  }
}
#about p {
  font-size: 18px;
  font-family: "Inter";
}
@media (max-width: 767px) {
  #about p {
    font-size: 16px;
  }
}

.sq_experience .ttl {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 991px) {
  .sq_experience .ttl {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 767px) {
  .sq_experience .ttl {
    font-size: 32px;
    line-height: 44px;
  }
}
@media (max-width: 639px) {
  .sq_experience .ttl {
    font-size: 26px;
    line-height: 34px;
  }
}
.sq_experience .ttl b {
  color: #5E1DE1;
}
@media (max-width: 991px) {
  .sq_experience .ttl br {
    display: none;
  }
}
.sq_experience .subt {
  max-width: 826px;
  margin: 0 auto 80px;
  display: block;
  text-align: center;
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
  font-family: "Inter";
}
@media (max-width: 767px) {
  .sq_experience .subt {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row.respreverse {
    flex-direction: column-reverse;
  }
}
.sq_experience .content_grid .row h4 {
  font-family: "Inter";
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .sq_experience .content_grid .row h4 {
    font-size: 18px;
    line-height: 28px;
  }
}
.sq_experience .content_grid .row h4 b {
  font-weight: 600;
  color: #5E1DE1;
}
.sq_experience .content_grid .row h3 {
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .sq_experience .content_grid .row h3 {
    font-size: 22px;
    line-height: 32px;
  }
}
.sq_experience .content_grid .row figure {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row figure {
    height: calc(100vw - 60px);
  }
}
@media (max-width: 639px) {
  .sq_experience .content_grid .row figure {
    height: calc(100vw - 30px);
  }
}
.sq_experience .content_grid .row figure img {
  object-position: left bottom;
  height: 100%;
}
.sq_experience .content_grid .row .bg_figure_3 {
  width: 100%;
  height: 481px;
}
@media (max-width: 1200px) {
  .sq_experience .content_grid .row .bg_figure_3 {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .sq_experience .content_grid .row .bg_figure_3 {
    height: calc(100vw - 30px);
  }
}
.sq_experience .content_grid .row .bg_figure_3 h4 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  position: absolute;
  bottom: 30px;
  right: 20px;
  text-align: right;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row .bg_figure_3 h4 {
    font-size: 18px;
    bottom: 20px;
  }
}
.sq_experience .content_grid .row .learn_list {
  background: #f5f5f5;
  max-width: calc(100% - 30px);
  width: 100%;
  margin: 0 auto 0px;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  padding-top: 85px;
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row .learn_list {
    padding: 50px 30px 0;
  }
}
@media (max-width: 767px) {
  .sq_experience .content_grid .row .learn_list {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sq_experience .content_grid .row .learn_list .wrap {
  display: flex;
  justify-content: center;
  text-align: initial;
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row .learn_list .wrap {
    flex-wrap: wrap;
  }
}
.sq_experience .content_grid .row .learn_list p {
  font-size: 20px;
  line-height: 34px;
  max-width: 445px;
  text-align: right;
}
@media (max-width: 767px) {
  .sq_experience .content_grid .row .learn_list p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    text-align: left;
  }
}
.sq_experience .content_grid .row .learn_list ul {
  padding-left: 33px;
  max-width: 468px;
  width: 100%;
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row .learn_list ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    max-width: 100%;
    justify-content: center;
  }
}
.sq_experience .content_grid .row .learn_list ul li {
  list-style: none;
  background: rgba(112, 50, 200, 0.1);
  border-radius: 6px;
  color: #7032c8;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  padding: 10px 24px;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row .learn_list ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .sq_experience .content_grid .row .learn_list ul li {
    font-size: 14px;
    padding: 6px 15px;
    margin-bottom: 7px;
    text-align: center;
  }
}
@media (max-width: 639px) {
  .sq_experience .content_grid .row .learn_list ul li {
    font-size: 11px;
    padding: 5px 14px;
    min-width: 215px;
  }
}
@media (max-width: 479px) {
  .sq_experience .content_grid .row .learn_list ul li {
    margin-right: 0;
  }
}
.sq_experience .content_grid .row .learn_list .deliver {
  width: 100%;
}
.sq_experience .content_grid .row .learn_list .btn {
  margin-top: 30px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row .learn_list .btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .sq_experience .content_grid .row .learn_list .btn {
    margin-top: 10px;
  }
}
.sq_experience .content_grid .row .txt {
  border-radius: 6px;
  background: #f7f7f7;
  padding: 147px 64px;
}
.sq_experience .content_grid .row .txt.right {
  padding: 109px 67px;
}
@media (max-width: 991px) {
  .sq_experience .content_grid .row .txt {
    padding: 70px 30px;
  }
  .sq_experience .content_grid .row .txt.right {
    padding: 45px 30px;
  }
}
@media (max-width: 767px) {
  .sq_experience .content_grid .row .txt {
    padding: 30px 15px;
  }
  .sq_experience .content_grid .row .txt.right {
    padding: 30px 15px;
  }
}
.sq_experience .content_grid .row > div {
  margin-bottom: 30px;
}

#sq_partners {
  margin-bottom: 0;
  padding-top: 132px;
}
@media (max-width: 991px) {
  #sq_partners {
    padding-top: 80px;
    overflow: hidden;
  }
}
@media (max-width: 639px) {
  #sq_partners {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#sq_partners .down_icon_big.mid {
  margin-top: 0;
}
#sq_partners .ttl {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 600;
  color: #06063c;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  #sq_partners .ttl {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #sq_partners .ttl {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
#sq_partners .ttl b {
  color: #5E1DE1;
}
#sq_partners .wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0 0;
  height: auto;
  position: relative;
}
@media (max-width: 767px) {
  #sq_partners .wrap {
    padding-top: 0;
  }
}
#sq_partners .wrap > div {
  min-width: 33.33%;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  #sq_partners .wrap > div {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  #sq_partners .wrap > div {
    margin-bottom: 0;
  }
}
@media (max-width: 479px) {
  #sq_partners .wrap > div {
    width: 50%;
  }
}
#sq_partners .wrap img {
  margin: 15px 40px;
  max-width: 215px;
  max-height: 45px;
  width: 100%;
}
@media (max-width: 767px) {
  #sq_partners .wrap img {
    max-width: 170px;
  }
}
@media (max-width: 479px) {
  #sq_partners .wrap img {
    max-width: 80%;
    max-height: 40px;
    margin: 15px;
  }
}

.sq_cce_emcc_wr.squeeze {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .sq_cce_emcc_wr.squeeze {
    padding: 70px 0;
  }
}
@media (min-width: 1340px) {
  .sq_cce_emcc_wr.squeeze .cover_image {
    left: calc(50vw - 670px);
    right: calc(50vw - 670px);
  }
}
.sq_cce_emcc_wr.squeeze .cover_image img {
  object-position: center bottom;
}
.sq_cce_emcc_wr .sq_cce_emcc {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sq_cce_emcc_wr .sq_cce_emcc.center {
  justify-content: center;
}
.sq_cce_emcc_wr .sq_cce_emcc.center .only_c {
  display: initial !important;
}
.sq_cce_emcc_wr .sq_cce_emcc.center .block {
  width: 100%;
  border-radius: 6px;
  text-align: center;
}
.sq_cce_emcc_wr .sq_cce_emcc.center .block img {
  margin: 0 auto;
}
.sq_cce_emcc_wr .sq_cce_emcc.center .block .ttl {
  font-size: 28px;
  display: block;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.sq_cce_emcc_wr .sq_cce_emcc.center .block .ttl br {
  display: none;
}
.sq_cce_emcc_wr .sq_cce_emcc.center .block .txt {
  max-width: 100%;
  display: block;
  margin: 0 auto 40px;
  font-size: 24px;
  line-height: 34px;
}
.sq_cce_emcc_wr .sq_cce_emcc .cta_mob_wrap {
  display: none;
}
@media (max-width: 639px) {
  .sq_cce_emcc_wr .sq_cce_emcc .cta_mob_wrap {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
.sq_cce_emcc_wr .sq_cce_emcc .block {
  width: 48.5%;
  margin-bottom: 30px;
  background: #fff;
  padding: 34px 37px 40px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
@media (max-width: 991px) {
  .sq_cce_emcc_wr .sq_cce_emcc .block {
    width: 100%;
    background: #f5f5f5;
    box-shadow: unset;
  }
}
@media (max-width: 767px) {
  .sq_cce_emcc_wr .sq_cce_emcc .block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sq_cce_emcc_wr .sq_cce_emcc .block .only_c {
  display: none;
}
.sq_cce_emcc_wr .sq_cce_emcc .block .img_wrap {
  min-height: 120px;
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 0;
}
.sq_cce_emcc_wr .sq_cce_emcc .block .ttl {
  font-size: 26px;
  line-height: 39px;
  font-weight: 600;
}
.sq_cce_emcc_wr .sq_cce_emcc .block .txt {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  font-family: "Inter";
}
.sq_cce_emcc_wr .sq_cce_emcc .block .txt span.sml {
  font-size: 14px;
  line-height: 20px;
}
.sq_cce_emcc_wr .sq_cce_emcc .cta {
  width: 100%;
  background: #fff;
  padding: 56px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media (max-width: 991px) {
  .sq_cce_emcc_wr .sq_cce_emcc .cta {
    background: #f5f5f5;
  }
}
@media (max-width: 767px) {
  .sq_cce_emcc_wr .sq_cce_emcc .cta {
    padding: 30px 15px;
  }
}

.sq_unlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  position: relative;
  padding: 80px 120px;
  max-width: 1336px;
  margin: 0 auto 100px;
}
@media (max-width: 991px) {
  .sq_unlock {
    padding: 60px 60px;
  }
}
@media (max-width: 767px) {
  .sq_unlock {
    padding: 60px 30px;
  }
}
@media (max-width: 639px) {
  .sq_unlock {
    padding: 40px 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sq_unlock .cover_image img {
  border-radius: 6px;
}
.sq_unlock .copy {
  max-width: 350px;
  margin-right: 50px;
}
@media (max-width: 639px) {
  .sq_unlock .copy {
    max-width: 100%;
    margin-right: 0;
    text-align: center;
  }
}
.sq_unlock .copy .logo img {
  margin-bottom: 55px;
}
@media (max-width: 639px) {
  .sq_unlock .copy .logo img {
    margin-bottom: 30px;
    max-width: 70px;
  }
}
.sq_unlock .copy .ttl {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}
.sq_unlock .copy .ttl span {
  color: #5E1DE1;
}
.sq_unlock .copy .txt {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-family: "Inter";
  font-weight: 400;
  margin-bottom: 55px;
}
.sq_unlock .copy .btn_pink {
  text-transform: uppercase;
}
.sq_unlock .mockup {
  position: initial !important;
}
@media (max-width: 639px) {
  .sq_unlock .mockup {
    margin-top: 40px;
  }
}
.sq_unlock .mockup img {
  position: absolute;
  z-index: 25;
  top: 0;
  bottom: 0;
  right: -30px;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .sq_unlock .mockup img {
    height: initial;
    top: 15%;
    max-height: 70%;
    right: 0;
  }
}
@media (max-width: 991px) {
  .sq_unlock .mockup img {
    right: 15px;
  }
}
@media (max-width: 639px) {
  .sq_unlock .mockup img {
    position: relative;
    top: 0;
    right: 0;
    max-width: 350px;
  }
}

.sq_tools {
  max-width: 1336px;
  margin: 50px auto 100px;
  position: relative;
  overflow: hidden;
}
.sq_tools .down_icon_big {
  position: absolute;
  margin: 0 auto;
}
.sq_tools .down_icon_big:before, .sq_tools .down_icon_big:after {
  display: none;
}
.sq_tools .head {
  width: 100%;
  position: relative;
  padding: 100px 15px 125px;
  text-align: center;
  border-radius: 6px 6px 0 0;
}
@media (max-width: 767px) {
  .sq_tools .head {
    padding: 80px 15px 100px;
  }
}
.sq_tools .head .sub {
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  font-family: "Inter";
}
@media (max-width: 767px) {
  .sq_tools .head .sub {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .sq_tools .head .sub {
    font-size: 14px;
  }
}
.sq_tools .head .ttl {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 767px) {
  .sq_tools .head .ttl {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  .sq_tools .head .ttl {
    font-size: 20px;
  }
}
.sq_tools .head .ttl span {
  color: #e31292;
}
.sq_tools .bottom {
  background: #f5f5f5;
  padding: 15px 15px 90px;
  text-align: center;
  position: relative;
  border-radius: 0 0 6px 6px;
}
.sq_tools .bottom .wrap {
  z-index: 25;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  margin-top: -100px;
}
@media (max-width: 767px) {
  .sq_tools .bottom .wrap {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.sq_tools .bottom .wrap .speaker {
  margin: 0 15px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .sq_tools .bottom .wrap .speaker {
    margin-bottom: 30px;
  }
}
.sq_tools .bottom .wrap .speaker img {
  width: 170px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sq_tools .bottom .wrap .speaker img {
    width: 106px;
  }
}
.sq_tools .bottom .wrap .speaker p.sub {
  margin-bottom: 0;
  color: #5E1DE1;
  font-size: 14px;
  font-family: "Inter";
  font-weight: 600;
}
@media (max-width: 767px) {
  .sq_tools .bottom .wrap .speaker p.sub {
    font-size: 12px;
  }
}
@media (max-width: 479px) {
  .sq_tools .bottom .wrap .speaker p.sub {
    font-size: 10px;
  }
}
.sq_tools .bottom .wrap .speaker:hover p.hover_txt {
  opacity: 1;
}
.sq_tools .bottom .wrap .speaker p.hover_txt {
  position: absolute;
  z-index: 35;
  bottom: -71px;
  left: calc(50% - 130px);
  width: 240px;
  height: 100px;
  color: #fff;
  background: #452589;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1450980392);
  margin-bottom: 0;
  border-radius: 6px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .sq_tools .bottom .wrap .speaker p.hover_txt {
    bottom: -95px;
  }
}
@media (max-width: 639px) {
  .sq_tools .bottom .wrap .speaker p.hover_txt {
    display: none;
  }
}
.sq_tools .bottom .wrap .speaker p.hover_txt:before {
  content: "";
  position: absolute;
  top: -10px;
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #452589;
}
@media (max-width: 767px) {
  .sq_tools .bottom .wrap .speaker p.hover_txt:before {
    top: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #452589;
  }
}
@media (max-width: 479px) {
  .sq_tools .bottom .btn {
    font-size: 13px;
  }
}

#reg_anchor .descr h2 {
  font-weight: 600;
}
#reg_anchor .descr h5 {
  font-weight: 600;
  font-family: "Inter";
}
#reg_anchor .descr h5 span {
  color: #5E1DE1;
}
@media (max-width: 479px) {
  #reg_anchor .descr h5 {
    font-size: 13px;
  }
}

.down_icon_big.form_scroll {
  margin: 200px auto -110px;
}
@media (max-width: 991px) {
  .down_icon_big.form_scroll {
    margin: 75px auto -103px;
  }
}
@media (max-width: 767px) {
  .down_icon_big.form_scroll {
    margin: 75px auto -103px;
  }
}
@media (max-width: 639px) {
  .down_icon_big.form_scroll {
    margin: 60px auto -71px;
  }
}
.down_icon_big.form_scroll:before, .down_icon_big.form_scroll:after {
  display: none;
}

@media (max-width: 639px) {
  #contact.funnel h3 {
    font-size: 24px;
    line-height: 1.5;
  }
}

#pass .down_icon_big {
  position: absolute;
}

@media (max-width: 639px) {
  #pre_reg .ifs_reg .btn_main {
    height: 52px;
    font-size: 14px;
    padding: 0;
  }
}

.page-template-funnel_squeeze_hr_ld .reg_form {
  background: none;
}
.page-template-funnel_squeeze_hr_ld .reg_form .descr h5 {
  font-size: 20px;
  line-height: 32px;
  font-family: "Inter";
  color: #06063c;
}
.page-template-funnel_squeeze_hr_ld .reg_form .descr h5 b {
  font-weight: 700;
  color: #c500e4;
}
.page-template-funnel_squeeze_hr_ld .reg_form .ifs_reg .form-control {
  background: #eeeeee;
}
.page-template-funnel_squeeze_hr_ld .main-banner .header-nav a:hover,
.page-template-funnel_squeeze_hr_ld .main-banner .navbar-collapse a:hover {
  color: #c9afff;
}

.sq_hr_event {
  position: relative;
  padding-top: 120px;
  padding-bottom: 150px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .sq_hr_event {
    padding: 80px 15px;
  }
}
@media (max-width: 639px) {
  .sq_hr_event .row > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.sq_hr_event .event_logo {
  position: absolute;
  top: -37px;
  z-index: 25;
  left: calc(50% - 37px);
  margin: 0 auto;
}
.sq_hr_event .event_logo img {
  width: 75px;
  height: 75px;
}
.sq_hr_event .ttl {
  text-align: center;
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #fff;
}
.sq_hr_event .ttl span {
  color: #e338ff;
}
@media (max-width: 767px) {
  .sq_hr_event .ttl {
    font-size: 30px;
    line-height: 42px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 479px) {
  .sq_hr_event .ttl br {
    display: none;
  }
}
.sq_hr_event .txt {
  font-family: "Inter";
  font-size: 18px;
  line-height: 32px;
  color: #fff;
}
.sq_hr_event .sub {
  color: #fff;
  font-weight: 500;
  font-family: "Inter";
  font-size: 22px;
  line-height: 33px;
  text-align: center;
  margin: 40px auto 45px;
}
@media (max-width: 639px) {
  .sq_hr_event .sub {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.sq_hr_event .sub b {
  color: #e338ff;
  font-weight: 600;
}
@media (max-width: 479px) {
  .sq_hr_event .sub br {
    display: none;
  }
}
.sq_hr_event .cta_wrap {
  text-align: center;
}

@media (max-width: 767px) {
  .sq_hr_learn {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .sq_hr_learn .down_icon_new {
    display: none;
  }
}
.sq_hr_learn .ttl {
  text-align: center;
  font-size: 40px;
  line-height: 52px;
  color: #0f0f3d;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sq_hr_learn .ttl {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 20px;
  }
}
.sq_hr_learn .ttl span {
  color: #6335c3;
}
.sq_hr_learn ul {
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 45px;
}
.sq_hr_learn ul li {
  width: 45%;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  font-family: "Inter";
  margin-bottom: 30px;
}
@media (max-width: 639px) {
  .sq_hr_learn ul li {
    width: 100%;
  }
}
.sq_hr_learn ul li b {
  font-weight: 700;
  color: #d10c92;
}
.sq_hr_learn .cta_wrap {
  text-align: center;
}

#sq_hr_access {
  padding: 100px 0;
}
@media (max-width: 991px) {
  #sq_hr_access {
    padding: 70px 0;
  }
}
#sq_hr_access .sq_hr_access_banner {
  height: 500px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  #sq_hr_access .sq_hr_access_banner {
    height: 500px;
    padding: 25px 30px;
  }
}
@media (max-width: 639px) {
  #sq_hr_access .sq_hr_access_banner {
    height: 500px;
    padding: 20px;
  }
}
#sq_hr_access .sq_hr_access_banner .sq_hr_access_banner_des {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}
#sq_hr_access .sq_hr_access_banner .sq_hr_access_banner_des span {
  color: #d10c92;
}
@media (max-width: 1699px) {
  #sq_hr_access .sq_hr_access_banner .sq_hr_access_banner_des {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  #sq_hr_access .sq_hr_access_banner .sq_hr_access_banner_des {
    font-size: 24px;
  }
}
#sq_hr_access .body {
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background: #f5f5f5;
  padding: 70px 190px;
  text-align: center;
}
@media (max-width: 1300px) {
  #sq_hr_access .body {
    padding: 70px 120px;
  }
}
@media (max-width: 991px) {
  #sq_hr_access .body {
    padding: 60px 100px;
  }
}
@media (max-width: 767px) {
  #sq_hr_access .body {
    padding: 30px 60px;
  }
}
@media (max-width: 639px) {
  #sq_hr_access .body {
    padding: 20px;
  }
}
#sq_hr_access .body .txt {
  column-count: 1;
  column-gap: 30px;
  margin-bottom: 60px;
  text-align: left;
  font-size: 18px;
  color: #0f0f3d;
  font-family: Inter, Serif;
  font-weight: 500;
  max-width: 580px;
  margin: 0 auto 60px;
  text-align: center;
}
@media (max-width: 767px) {
  #sq_hr_access .body .txt {
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  #sq_hr_access .body .txt {
    column-count: 1;
    column-gap: 0;
    font-size: 16px;
  }
}
#sq_hr_access .body .txt b {
  font-weight: 700;
  color: #d10c92;
}
#sq_hr_access .body .sub {
  font-size: 40px;
  line-height: 65px;
  font-weight: 500;
  color: #0f0f3d;
  font-family: Inter, Serif;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  #sq_hr_access .body .sub {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 20px;
  }
}
@media (max-width: 639px) {
  #sq_hr_access .body .sub {
    font-size: 26px;
    line-height: 34px;
  }
}
#sq_hr_access .body .sub b {
  font-weight: 700;
  color: #6335c3;
}
#sq_hr_access .body .btn_pink {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 0 28px;
  letter-spacing: 2.3px;
  height: 48px;
  white-space: pre-wrap;
}
@media (max-width: 767px) {
  #sq_hr_access .body .btn_pink {
    padding: 0 15px;
    letter-spacing: 1.3px;
    font-size: 12px;
  }
}
@media (max-width: 479px) {
  #sq_hr_access .body .btn_pink {
    padding: 0 10px;
    letter-spacing: 1px;
    font-size: 10px;
  }
}

#sq_hr_contact {
  padding: 100px 0;
}
@media (max-width: 991px) {
  #sq_hr_contact {
    padding: 50px 0;
  }
}
@media (max-width: 639px) {
  #sq_hr_contact {
    padding: 30px 0;
  }
}
#sq_hr_contact .container {
  max-width: 700px;
  text-align: center;
}
#sq_hr_contact .container .contact_hd {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 32px;
}
@media (max-width: 1699px) {
  #sq_hr_contact .container .contact_hd {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  #sq_hr_contact .container .contact_hd {
    font-size: 24px;
  }
}
#sq_hr_contact .container .contact_des {
  font-size: 18px;
  font-weight: 600;
  font-family: Inter, Serif;
}
#sq_hr_contact .container .contact_des a {
  color: #d10c92;
  transition: all ease 0.3s;
}
#sq_hr_contact .container .contact_des a:hover {
  color: #6335c3;
  text-decoration: none;
}
@media (max-width: 767px) {
  #sq_hr_contact .container .contact_des {
    font-size: 16px;
  }
}

.ty_upsell {
  background: url(../img/pages/ty/upsell_bg.jpg) no-repeat 50% 50%/cover;
  min-height: 100vh;
  width: 100%;
}
.ty_upsell header {
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  margin-bottom: 50px;
  position: relative;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .ty_upsell header {
    padding-left: 15px;
    z-index: 10;
  }
}
.ty_upsell header .logo_wrap {
  display: flex;
  align-items: center;
  align-content: center;
}
.ty_upsell header .logo_wrap p {
  border-left: 1px solid #fff;
  padding-left: 30px;
  margin-left: 30px;
  padding-right: 30px;
  margin-bottom: 0;
  font-size: 15px;
}
@media (max-width: 1500px) {
  .ty_upsell header .logo_wrap p {
    max-width: 335px;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .ty_upsell header .logo_wrap p {
    display: none;
  }
}
.ty_upsell header .logo_wrap .logo {
  width: 100%;
  max-width: 210px;
}
.ty_upsell header .promo_txt {
  font-size: 22px;
  max-width: 750px;
}
@media (max-width: 767px) {
  .ty_upsell header .promo_txt {
    font-size: 28px;
  }
}
.ty_upsell h1 {
  margin-top: 200px;
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  font-family: "Inter";
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .ty_upsell h1 {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 30px;
  }
}
@media (max-width: 639px) {
  .ty_upsell h1 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.ty_upsell h1 b {
  font-weight: 700;
  color: #f505a9;
}
.ty_upsell p.txt {
  margin-bottom: 24px;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 767px) {
  .ty_upsell p.txt {
    font-size: 18px;
    line-height: 26px;
  }
}
.ty_upsell .btn_pink {
  padding: 5px 25px 5px 5px;
}

#ty_banner {
  display: flex;
  align-items: center;
  height: 850px;
  position: relative;
  padding-bottom: 200px;
}
#ty_banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  #ty_banner {
    height: 930px;
  }
}
#ty_banner .logo_wrap {
  position: absolute;
  top: 38px;
  left: 45px;
  display: block;
  z-index: 15;
}
@media (max-width: 991px) {
  #ty_banner .logo_wrap {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#ty_banner .img_wrap {
  width: 382px;
}
@media (max-width: 991px) {
  #ty_banner .img_wrap {
    width: 100%;
    text-align: center;
    margin-top: 80px;
  }
}
#ty_banner .txt_wrap {
  width: calc(100% - 382px);
}
@media (max-width: 991px) {
  #ty_banner .txt_wrap {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
}
#ty_banner .txt_wrap .banner_des {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  font-family: Inter, Serif;
  margin-top: 40px;
}
#ty_banner .txt_wrap .banner_des span {
  color: #f505a9;
}
@media (max-width: 991px) {
  #ty_banner .txt_wrap .banner_des {
    font-size: 32px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  #ty_banner .txt_wrap .banner_des {
    font-size: 26px;
  }
}
#ty_banner .txt_wrap .btn {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  height: 50px;
  margin-top: 40px;
  padding-right: 26px;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  #ty_banner .txt_wrap .btn {
    font-size: 16px;
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  #ty_banner .txt_wrap .btn {
    font-size: 12px;
  }
}

#ty_sub_banner {
  position: relative;
  z-index: 20;
  margin-top: -200px;
  margin-bottom: -65px;
}
#ty_sub_banner .ty_sub_banner_des {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  padding-bottom: 20px;
  text-align: center;
}
@media (max-width: 991px) {
  #ty_sub_banner .ty_sub_banner_des {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  #ty_sub_banner .ty_sub_banner_des {
    font-size: 12px;
  }
}
#ty_sub_banner .ty_sub_banner_counters {
  background: linear-gradient(0deg, #ffffff, #ffffff), linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 200px;
}
@media (max-width: 1300px) {
  #ty_sub_banner .ty_sub_banner_counters {
    padding: 0;
  }
}
#ty_sub_banner .ty_sub_banner_counters .counter_item {
  display: block;
  width: 106px;
  max-width: 30%;
  text-align: center;
}
#ty_sub_banner .ty_sub_banner_counters .counter_item .counter_item_hd {
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  color: #d10c92;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  #ty_sub_banner .ty_sub_banner_counters .counter_item .counter_item_hd {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  #ty_sub_banner .ty_sub_banner_counters .counter_item .counter_item_hd {
    font-size: 20px;
  }
}
#ty_sub_banner .ty_sub_banner_counters .counter_item .counter_item_des {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #06063c;
  font-family: Inter, Serif;
}
@media (max-width: 767px) {
  #ty_sub_banner .ty_sub_banner_counters .counter_item .counter_item_des {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  #ty_sub_banner .ty_sub_banner_counters .counter_item .counter_item_des {
    font-size: 10px;
  }
}

#ty_access {
  background: #f5f5f5;
  padding: 130px 0;
  position: relative;
}
@media (max-width: 991px) {
  #ty_access {
    padding: 130px 0 50px;
  }
}
#ty_access .ty_access_wr {
  text-align: center;
}
#ty_access .ty_access_wr .ty_access_top_hd {
  display: block;
}
#ty_access .ty_access_wr .ty_access_top_hd span {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #5E1DE1;
  background: #e8e2f1;
  padding: 0 10px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #ty_access .ty_access_wr .ty_access_top_hd span {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #ty_access .ty_access_wr .ty_access_top_hd span {
    font-size: 16px;
  }
}
#ty_access .ty_access_wr .ty_access_hd {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  color: #06063c;
  margin-top: 45px;
}
@media (max-width: 991px) {
  #ty_access .ty_access_wr .ty_access_hd {
    font-size: 32px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  #ty_access .ty_access_wr .ty_access_hd {
    font-size: 26px;
  }
}
#ty_access .ty_access_wr .ty_access_des {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 400;
  color: #06063c;
  font-family: Inter, Serif;
  margin-top: 25px;
}
@media (max-width: 991px) {
  #ty_access .ty_access_wr .ty_access_des {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  #ty_access .ty_access_wr .ty_access_des {
    font-size: 15px;
  }
}
#ty_access .ty_access_wr .btn {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  height: 50px;
  margin-top: 50px;
  padding-right: 26px;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  #ty_access .ty_access_wr .btn {
    font-size: 16px;
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  #ty_access .ty_access_wr .btn {
    font-size: 12px;
  }
}
#ty_access .down_icon_big {
  top: unset;
  bottom: 0;
  transform: translate3d(-50%, 50%, 0);
}
#ty_access .down_icon_big circle:first-child {
  stroke: #6335c3;
}
#ty_access .down_icon_big path {
  fill: #6335c3;
}
#ty_access .down_icon_big:hover svg circle:first-child {
  fill: #6335c3;
  stroke: #fff;
}
#ty_access .down_icon_big:hover path {
  fill: #fff;
}

#ty_all_in_one {
  padding: 130px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  #ty_all_in_one {
    padding: 70px 0;
  }
}
#ty_all_in_one .ty_all_in_one_wr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#ty_all_in_one .ty_all_in_one_wr .ty_all_in_one_hd {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  color: #06063c;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  #ty_all_in_one .ty_all_in_one_wr .ty_all_in_one_hd {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #ty_all_in_one .ty_all_in_one_wr .ty_all_in_one_hd {
    font-size: 26px;
  }
}
#ty_all_in_one .ty_all_in_one_wr .ty_all_in_one_des_wr {
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 720px;
  margin-top: 25px;
}
#ty_all_in_one .ty_all_in_one_wr .ty_all_in_one_des_wr .ty_all_in_one_des {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #06063c;
  font-family: Inter, Serif;
  text-align: left;
  width: calc(50% - 15px);
}
@media (max-width: 767px) {
  #ty_all_in_one .ty_all_in_one_wr .ty_all_in_one_des_wr .ty_all_in_one_des {
    width: 100%;
  }
}
#ty_all_in_one .ty_all_in_one_wr .ty_all_in_one_des_wr .ty_all_in_one_des b {
  color: #6335c3;
}
#ty_all_in_one .ty_all_in_one_wr .btn {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  height: 50px;
  margin-top: 60px;
  padding-right: 26px;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  #ty_all_in_one .ty_all_in_one_wr .btn {
    font-size: 16px;
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  #ty_all_in_one .ty_all_in_one_wr .btn {
    font-size: 12px;
  }
}
#ty_all_in_one .down_icon_big {
  top: unset;
  bottom: 0;
  transform: translate3d(-50%, 50%, 0);
}
#ty_all_in_one .down_icon_big circle:first-child {
  stroke: #6335c3;
}
#ty_all_in_one .down_icon_big path {
  fill: #6335c3;
}
#ty_all_in_one .down_icon_big:hover svg circle:first-child {
  fill: #6335c3;
  stroke: #fff;
}
#ty_all_in_one .down_icon_big:hover path {
  fill: #fff;
}

#ty_tabs {
  padding: 110px 0;
  text-align: center;
  position: relative;
  background: #f5f5f5;
  border-radius: 6px;
}
@media (max-width: 991px) {
  #ty_tabs {
    padding: 70px 0;
  }
}
#ty_tabs .ty_hd_wr {
  text-align: center;
}
#ty_tabs .ty_hd_wr .ty_tabs_top_hd {
  display: block;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  #ty_tabs .ty_hd_wr .ty_tabs_top_hd {
    margin-bottom: 40px;
  }
}
#ty_tabs .ty_hd_wr .ty_tabs_top_hd span {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #5E1DE1;
  background: #e8e2f1;
  padding: 0 10px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #ty_tabs .ty_hd_wr .ty_tabs_top_hd span {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #ty_tabs .ty_hd_wr .ty_tabs_top_hd span {
    font-size: 16px;
  }
}
#ty_tabs .ty_tabs_wr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  #ty_tabs .ty_tabs_wr {
    flex-direction: column;
  }
}
#ty_tabs .ty_tabs_wr ul.nav-tabs {
  margin-top: 0;
  width: 420px;
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  border-bottom: none;
}
@media (max-width: 991px) {
  #ty_tabs .ty_tabs_wr ul.nav-tabs {
    flex-direction: row;
    flex-wrap: unset;
    width: 100%;
    flex: 0 0 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    justify-content: flex-start;
  }
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li:nth-last-child(n+2) {
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  #ty_tabs .ty_tabs_wr ul.nav-tabs li:nth-last-child(n+2) {
    margin-bottom: 0;
  }
  #ty_tabs .ty_tabs_wr ul.nav-tabs li:nth-last-child(n+2):nth-last-child(n+2) {
    margin-right: 16px;
  }
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  height: 74px;
  transition: all ease 0.3s;
  color: #06063c;
  background: #fff;
  border-radius: 12px;
}
@media (max-width: 991px) {
  #ty_tabs .ty_tabs_wr ul.nav-tabs li a {
    width: 420px;
    flex: 0 0 420px;
  }
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li a .nav_hd {
  text-align: left;
  width: calc(100% - 70px);
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li a .nav_hd .nav_hd_top {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  font-family: Inter, Serif;
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li a .nav_hd .nav_hd_bottom {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  font-family: Inter, Serif;
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li a path,
#ty_tabs .ty_tabs_wr ul.nav-tabs li a rect {
  transition: all ease 0.3s;
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li a.active, #ty_tabs .ty_tabs_wr ul.nav-tabs li a:hover {
  background: linear-gradient(63.63deg, #5800e7 0.53%, #9800f9 99.1%), linear-gradient(90deg, #7921b1 0%, #e11391 100%);
  color: #fff;
  text-decoration: none;
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li a.active path, #ty_tabs .ty_tabs_wr ul.nav-tabs li a:hover path {
  fill: #fff;
}
#ty_tabs .ty_tabs_wr ul.nav-tabs li a.active rect, #ty_tabs .ty_tabs_wr ul.nav-tabs li a:hover rect {
  stroke: #fff;
}
#ty_tabs .ty_tabs_wr .tab-content {
  width: calc(100% - 450px);
  flex: 0 0 calc(100% - 450px);
  text-align: left;
}
@media (max-width: 991px) {
  #ty_tabs .ty_tabs_wr .tab-content {
    margin-top: 30px;
    width: 100%;
    flex: 0 0 100%;
  }
}

.rating_wrap {
  --star-size: 17px;
  --star-color: #cdcdcd;
  --star-background: #E16BFF;
  border-radius: 6px;
  width: 140px;
  height: 30px;
  padding: 6px 0px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}
.rating_wrap > div {
  --percent: calc(var(--rating) / 10 * 98%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
}
.rating_wrap > div::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating_wrap > span {
  color: #828282;
  font-size: 12px;
  line-height: 15px;
  font-family: "Inter";
  font-weight: 400;
  padding-top: 2px;
  margin-left: 5px;
}

.page-template-funnel_recording_ty .btn_pink {
  color: #fff;
  background: #d10c92;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 38px;
}
.page-template-funnel_recording_ty .btn_pink:active, .page-template-funnel_recording_ty .btn_pink:focus {
  background: #d10c92 !important;
}

.page-template-funnel_recording_opt_in #banner.sales .container .descr .summit {
  margin-bottom: 30px;
}
.page-template-funnel_recording_opt_in #banner.sales .container h1 {
  margin-top: 0;
}
.page-template-funnel_recording_opt_in .btn_pink {
  color: #fff;
  background: #d10c92;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 38px;
}
.page-template-funnel_recording_opt_in .btn_pink:active, .page-template-funnel_recording_opt_in .btn_pink:focus {
  background: #d10c92 !important;
}
.page-template-funnel_recording_opt_in #contact p a {
  color: #d10c92;
}
.page-template-funnel_recording_opt_in .reg_form {
  max-width: 1620px;
  margin: 0 auto;
  padding: 50px 0;
}
@media (max-width: 639px) {
  .page-template-funnel_recording_opt_in .reg_form .ifs_reg {
    padding: 0;
  }
}
.page-template-funnel_recording_opt_in .reg_form .btn_pink {
  width: 100%;
  border-radius: 0;
  font-size: 26px;
  font-weight: 700;
  padding: 25px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .page-template-funnel_recording_opt_in .reg_form .btn_pink {
    font-size: 20px;
  }
}

.recording_missed {
  text-align: center;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .recording_missed {
    padding-top: 40px;
  }
}
.recording_missed .ttl {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
  color: #0f0f3d;
}
@media (max-width: 767px) {
  .recording_missed .ttl {
    font-size: 30px;
    line-height: 42px;
  }
}
.recording_missed .txt {
  font-size: 26px;
  line-height: 39px;
  color: #06063c;
  font-weight: 500;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .recording_missed .txt {
    font-size: 22px;
    line-height: 32px;
  }
}
.recording_missed .txt span {
  color: #6335c3;
}
@media (max-width: 639px) {
  .recording_missed .txt br {
    display: none;
  }
}

.recording_content {
  padding-top: 250px;
  padding-bottom: 60px;
  text-align: center;
}
.recording_content .speakers_wrap {
  width: 100%;
}
.recording_content .speakers_wrap .speakers {
  max-width: 100%;
}
.recording_content h2 {
  text-align: center;
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
  color: #06063c;
  margin-bottom: 46px;
}
@media (max-width: 767px) {
  .recording_content h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 639px) {
  .recording_content h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
.recording_content h3 {
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
  color: #06063c;
  text-align: center;
  max-width: 730px;
  display: block;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .recording_content h3 {
    max-width: 100%;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 639px) {
  .recording_content h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .recording_content h3 br {
    display: none;
  }
}
.recording_content h3 span {
  color: #5E1DE1;
}
.recording_content .btn_gradient_purple {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .recording_content .btn_gradient_purple {
    margin-bottom: 70px;
  }
}

.recording_videos_wrap {
  position: relative;
  max-width: 1620px;
  margin: 0 auto;
}
.recording_videos_wrap .head {
  width: 100%;
  padding: 95px 15px;
  border-radius: 6px 6px 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .recording_videos_wrap .head {
    padding: 70px 15px;
  }
}
.recording_videos_wrap .head p.ttl {
  text-align: center;
  color: #fff;
  font-size: 34px;
  line-height: 44px;
  font-weight: 600;
  max-width: 660px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recording_videos_wrap .head p.ttl {
    font-size: 26px;
    line-height: 34px;
  }
}
.recording_videos_wrap .body {
  padding-bottom: 50px;
}

.recording_tools {
  padding: 0;
  background: #F5F5F5;
  max-width: 1620px;
  margin: 0 auto;
  background: url("../img/pages/recording/tools_bg.jpg") no-repeat 50% 50%/cover;
  height: 100%;
}
@media (max-width: 767px) {
  .recording_tools {
    padding: 30px 0 60px;
  }
}
.recording_tools .wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 30px;
  min-height: 305px;
  position: relative;
  z-index: 25;
  display: flex;
  align-items: center;
  align-content: center;
}
@media (max-width: 991px) {
  .recording_tools .wrap {
    padding: 30px 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .recording_tools .wrap .descr {
    margin: 0 auto;
    text-align: center;
  }
}
.recording_tools .wrap .txt {
  font-size: 21px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 2px;
}
.recording_tools .wrap .ttl {
  font-size: 34px;
  line-height: 44px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
}
.recording_tools .wrap .ttl span {
  color: #ff17a5;
}
@media (max-width: 991px) {
  .recording_tools .wrap .ttl {
    left: 0;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .recording_tools .wrap .ttl {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .recording_tools .wrap .speakers_wrap {
    width: 100%;
    max-width: 520px;
    margin: 40px auto 0px;
  }
}
@media (max-width: 991px) {
  .recording_tools .wrap .speakers_wrap img {
    border-radius: 6px;
  }
}
@media (max-width: 991px) {
  .recording_tools .wrap .speakers_wrap div > p {
    display: none;
  }
}

.recording_videos {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.recording_videos .modal.video .close,
.recording_videos .modal.with_video .close {
  top: -35px;
}
.recording_videos.ty .sssn_wrap {
  margin-bottom: 0;
}
.recording_videos.ty .sssn_wrap article {
  background: #f5f5f5;
}
.recording_videos.ty .cta_wra {
  margin: 48px 0 60px;
}
.recording_videos.ty .cta_wra .save_copy {
  font-size: 30px;
  line-height: 45px;
  color: #000;
  margin-bottom: 20px;
}
.recording_videos.ty .cta_wra .save_copy b {
  color: #D10C92;
}
.recording_videos.ty .body {
  background: #fff;
}
.recording_videos .down_icon_big.top {
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
.recording_videos .down_icon_big.top:before, .recording_videos .down_icon_big.top:after {
  display: none;
}
.recording_videos .down_icon_big.bottom {
  margin: 0 auto;
  bottom: -100px;
  top: initial;
  position: relative;
  z-index: 20;
}
.recording_videos .down_icon_big.bottom:before, .recording_videos .down_icon_big.bottom:after {
  display: none;
}
@media (max-width: 767px) {
  .recording_videos .down_icon_big.bottom {
    display: none;
  }
}
.recording_videos .head {
  position: relative;
  background: url(../img/pages/recording/video_head.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.recording_videos .head .container {
  display: flex;
  align-items: center;
  align-content: center;
}
@media (max-width: 767px) {
  .recording_videos .head .container {
    flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.recording_videos .head .box {
  display: block;
  max-width: 100%;
  margin: -60px -40px 55px -143px;
}
@media (max-width: 1300px) {
  .recording_videos .head .box {
    margin: -60px -60px 30px -95px;
    max-width: 350px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .recording_videos .head .box {
    max-width: 300px;
    margin: -100px auto 25px;
  }
}
.recording_videos .head p {
  font-size: 34px;
  line-height: 44px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 1300px) {
  .recording_videos .head p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .recording_videos .head p {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .recording_videos .head p br {
    display: none;
  }
}
.recording_videos .body {
  width: 100%;
  background: #f5f5f5;
}
.recording_videos .body .container {
  padding-top: 50px;
  padding-bottom: 0px;
}
@media (max-width: 991px) {
  .recording_videos .body .container {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.recording_videos .cta_wra {
  text-align: center;
  width: 100%;
}
.recording_videos .sssn_wrap {
  margin-bottom: 100px;
}
.recording_videos .sssn_wrap .media {
  width: 100%;
}
.recording_videos .sssn_wrap article {
  background: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-radius: 6px;
  width: 100%;
  display: flex;
  overflow: hidden;
}
@media (max-width: 991px) {
  .recording_videos .sssn_wrap article {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .recording_videos .sssn_wrap article {
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
  }
}
.recording_videos .sssn_wrap article .video_wrapper {
  display: flex;
  align-items: center;
  align-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .recording_videos .sssn_wrap article .video_wrapper {
    width: 100%;
  }
}
.recording_videos .sssn_wrap article .video_wrapper .icon_play {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 80px;
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%), rgba(197, 0, 228, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: all 0.2s;
}
.recording_videos .sssn_wrap article .video_wrapper .icon_play:hover {
  transform: scale(1.1);
}
.recording_videos .sssn_wrap article .video_wrapper .icon_play span {
  color: #fff;
  font-size: 20px;
}
.recording_videos .sssn_wrap article .video_wrapper img {
  max-width: 282px;
  display: block;
  height: auto;
}
@media (max-width: 767px) {
  .recording_videos .sssn_wrap article .video_wrapper img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.recording_videos .sssn_wrap article .txt_wrap {
  width: 100%;
  padding: 30px 18px;
}
@media (max-width: 991px) {
  .recording_videos .sssn_wrap article .txt_wrap {
    padding-bottom: 10px;
  }
}
.recording_videos .sssn_wrap article .txt_wrap .ttl,
.recording_videos .sssn_wrap article .txt_wrap h5 {
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
  color: #0f0f3d;
  margin-bottom: 0;
}
.recording_videos .sssn_wrap article .txt_wrap p {
  font-size: 15px;
  font-family: "Inter";
  color: #5E1DE1;
  font-weight: 600;
  margin-bottom: 0;
}
.recording_videos .sssn_wrap article .btns_wrap {
  padding: 25px 50px;
  border-left: 1px solid #dedede;
}
@media (max-width: 1300px) {
  .recording_videos .sssn_wrap article .btns_wrap {
    padding: 20px 20px;
  }
}
@media (max-width: 991px) {
  .recording_videos .sssn_wrap article .btns_wrap {
    padding: 5px 20px 20px;
    border: none;
  }
}
.recording_videos .sssn_wrap article .btns_wrap .date {
  display: block;
  width: 65px;
  text-align: center;
}
.recording_videos .sssn_wrap article .btns_wrap .date span:nth-child(1) {
  display: block;
  width: 100%;
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%);
  border-radius: 6px 6px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.recording_videos .sssn_wrap article .btns_wrap .date span:nth-child(2) {
  display: block;
  width: 100%;
  background: rgba(99, 53, 195, 0.15);
  border-radius: 0 0 6px 6px;
  color: #06063c;
  font-size: 33px;
  font-weight: 600;
}
.recording_videos .sssn_wrap article .btns_wrap .btn {
  background: #7132c9;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: "Inter";
  display: flex;
  align-items: center;
  align-content: center;
  padding: 3px 18px 3px 3px;
  border-radius: 60px;
  transition: all 0.2s;
}
.recording_videos .sssn_wrap article .btns_wrap .btn:hover {
  opacity: 0.8;
}
.recording_videos .sssn_wrap article .btns_wrap .btn.play_video span {
  font-size: 24px;
  justify-content: center;
  margin-right: 5px;
}
.recording_videos .sssn_wrap article .btns_wrap .btn i,
.recording_videos .sssn_wrap article .btns_wrap .btn span {
  background: #fff;
  color: #7132c9;
  border-radius: 60px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 15px;
}

.rec_footer_line {
  text-align: center;
  color: #06063c;
  font-size: 13px;
  margin: 150px auto 20px;
}
@media (max-width: 639px) {
  .rec_footer_line {
    margin-top: 70px;
  }
}

.what_people_say {
  overflow: hidden;
}
.what_people_say .ttl {
  text-align: center;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .what_people_say .ttl {
    font-size: 32px;
    line-height: 44px;
    max-width: 370px;
  }
}
@media (max-width: 639px) {
  .what_people_say .ttl {
    max-width: 320px;
    font-size: 28px;
    line-height: 36px;
  }
}
.what_people_say .ttl .face {
  position: absolute;
}
@media (max-width: 991px) {
  .what_people_say .ttl .face {
    transform: scale(0.7);
  }
}
@media (max-width: 767px) {
  .what_people_say .ttl .face {
    transform: scale(0.5);
  }
}
@media (max-width: 639px) {
  .what_people_say .ttl .face {
    transform: scale(0.3);
  }
}
.what_people_say .ttl .face.p1 {
  top: -120px;
  right: -33%;
}
@media (max-width: 1300px) {
  .what_people_say .ttl .face.p1 {
    right: -25%;
  }
}
@media (max-width: 991px) {
  .what_people_say .ttl .face.p1 {
    right: -20%;
  }
}
@media (max-width: 767px) {
  .what_people_say .ttl .face.p1 {
    right: -15%;
    top: -100px;
  }
}
.what_people_say .ttl .face.p1 img {
  width: 150px;
}
.what_people_say .ttl .face.p2 {
  top: 53px;
  left: -40%;
}
@media (max-width: 1300px) {
  .what_people_say .ttl .face.p2 {
    left: -30%;
  }
}
@media (max-width: 991px) {
  .what_people_say .ttl .face.p2 {
    left: -25%;
  }
}
@media (max-width: 767px) {
  .what_people_say .ttl .face.p2 {
    top: 30px;
  }
}
@media (max-width: 479px) {
  .what_people_say .ttl .face.p2 {
    left: -15%;
  }
}
.what_people_say .ttl .face.p2 img {
  width: 145px;
}
.what_people_say .ttl .face.p3 {
  bottom: -120px;
  right: -15%;
}
@media (max-width: 991px) {
  .what_people_say .ttl .face.p3 {
    right: -5%;
  }
}
@media (max-width: 767px) {
  .what_people_say .ttl .face.p3 {
    bottom: -85px;
  }
}
.what_people_say .ttl .face.p3 img {
  width: 120px;
}
.what_people_say .video_noc {
  max-width: 910px;
  margin: 180px auto 40px;
}
@media (max-width: 639px) {
  .what_people_say .video_noc {
    margin-top: 150px;
  }
}
.what_people_say .video_noc .video-container img {
  border-radius: 0px;
}

.sq25_prices_build.v_membership .container {
  max-width: 900px;
}
.sq25_prices_build.v_membership .table .row_wrap {
  justify-content: center;
}
.sq25_prices_build.v_membership .table .row_wrap .column {
  width: calc(50% - 30px) !important;
}
.sq25_prices_build.v_membership .show_more {
  width: calc(50% - 30px) !important;
}
.sq25_prices_build.v_membership .table .row_wrap .column:nth-child(2) {
  display: none;
}

#modal_video_preview .modal-dialog {
  max-width: 1010px;
}
#modal_video_preview .modal-content {
  overflow: visible;
  border: initial;
}
#modal_video_preview .modal-header {
  padding: 0;
  height: 0;
  background: transparent;
  border: initial;
}
#modal_video_preview .modal-header .close {
  top: -45px;
  right: 5px;
  color: #5E1DE1;
  font-size: 42px;
  border: initial;
  box-shadow: initial;
  text-shadow: initial;
}
#modal_video_preview .modal-body {
  padding: 0;
}

.sls24_bnr_top {
  position: relative;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .sls24_bnr_top {
    border-radius: 0;
  }
}
@media (max-width: 639px) {
  .sls24_bnr_top {
    text-align: center;
    padding-bottom: 50px !important;
  }
}
@media (max-width: 639px) {
  .sls24_bnr_top .container {
    padding-top: 100px;
  }
}
.sls24_bnr_top .btn.become_a_member {
  margin-left: 0 !important;
}
@media (max-width: 639px) {
  .sls24_bnr_top .btn.become_a_member {
    margin-left: auto !important;
  }
}
.sls24_bnr_top .c_pink {
  color: #F04282 !important;
}
.sls24_bnr_top .c_pink_2 {
  color: #D167FF !important;
}
.sls24_bnr_top .p20 span, .sls24_bnr_top .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote span, .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .sls24_bnr_top .quote span, .sls24_bnr_top body .hs_form_wrap.descr_top .descr .sub span, body .hs_form_wrap.descr_top .descr .sls24_bnr_top .sub span, .sls24_bnr_top .modal_sssn .suport_video_page_descr .title span, .modal_sssn .suport_video_page_descr .sls24_bnr_top .title span {
  color: #D167FF;
  font-weight: 700;
}

.sls24_partners_list {
  position: relative;
  top: -1px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  padding: 50px 40px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .sls24_partners_list {
    flex-wrap: wrap;
    padding: 30px 15px;
  }
}
.sls24_partners_list picture.cover_image img {
  border-radius: 0 0 20px 20px;
}
@media (max-width: 767px) {
  .sls24_partners_list picture.cover_image img {
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .sls24_partners_list picture:not(.cover_image) {
    transform: scale(0.8);
  }
}
@media (max-width: 639px) {
  .sls24_partners_list picture:not(.cover_image) {
    width: 100%;
    text-align: center;
    max-width: 50%;
    margin: 7.5px 0;
  }
}
@media (max-width: 639px) and (max-width: 639px) {
  .sls24_partners_list picture:not(.cover_image) {
    margin: 5px 0;
  }
}

.sls24_unlimited_access {
  max-width: 1150px !important;
}
.sls24_unlimited_access .unlimited_access img {
  max-width: 100%;
  width: 100%;
  height: 200px;
}
.sls24_unlimited_access .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
}
@media (max-width: 767px) {
  .sls24_unlimited_access .wrap {
    flex-wrap: wrap;
  }
}
.sls24_unlimited_access .wrap > div {
  width: 50%;
  max-width: 45%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
@media (max-width: 767px) {
  .sls24_unlimited_access .wrap > div {
    width: 100%;
    max-width: 100%;
  }
}
.sls24_unlimited_access .wrap > div.left p span {
  color: #F04282;
  font-weight: 700;
}
.sls24_unlimited_access .wrap > div.right {
  position: relative;
}
@media (max-width: 767px) {
  .sls24_unlimited_access .wrap > div.right {
    margin-top: 60px;
  }
}
.sls24_unlimited_access .wrap > div.right:before {
  position: absolute;
  top: 80px;
  left: -16%;
  width: 48px;
  height: 24px;
  background: url(../img/pages/sls24/sls24_unlimited_access_arrow.svg) no-repeat 50% 50%/cover;
  display: block;
  content: "";
}
@media (max-width: 767px) {
  .sls24_unlimited_access .wrap > div.right:before {
    top: -70px;
    left: 48%;
    transform: rotate(90deg);
  }
}
@media (max-width: 639px) {
  .sls24_unlimited_access .wrap > div.right:before {
    left: 45%;
    top: -60px;
  }
}
.sls24_unlimited_access .wrap > div.right .item {
  margin-top: -12px;
}
.sls24_unlimited_access .wrap > div .item {
  display: block;
  width: 100%;
}
.sls24_unlimited_access .wrap > div .item img {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sls24_unlimited_access .wrap > div .item img {
    margin-bottom: 20px;
  }
}
.sls24_unlimited_access .wrap .left > p,
.sls24_unlimited_access .wrap .right > p {
  line-height: 160%;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sls24_unlimited_access .wrap .left > p,
  .sls24_unlimited_access .wrap .right > p {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 639px) {
  .sls24_unlimited_access .wrap .left > p,
  .sls24_unlimited_access .wrap .right > p {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.sls24_whats_included_ms_top {
  text-align: center;
  position: relative;
  max-width: 700px !important;
  margin-top: 140px;
}
@media (max-width: 1300px) {
  .sls24_whats_included_ms_top {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .sls24_whats_included_ms_top {
    padding-top: 50px;
  }
}
.sls24_whats_included_ms_top .icon img {
  max-width: 60px;
}
.sls24_whats_included_ms_top .circle_1 {
  position: absolute;
  top: -30%;
  right: 15%;
  width: 145px;
  height: 131px;
}
@media (max-width: 639px) {
  .sls24_whats_included_ms_top .circle_1 {
    transform: scale(0.7);
    top: -18%;
    right: 34%;
  }
}
.sls24_whats_included_ms_top .circle_2 {
  position: absolute;
  top: -7%;
  left: -25%;
  width: 186px;
  height: 226px;
}
@media (max-width: 1300px) {
  .sls24_whats_included_ms_top .circle_2 {
    right: initial;
    left: initial;
    margin: -57px 19px 0px -400px;
  }
}
@media (max-width: 767px) {
  .sls24_whats_included_ms_top .circle_2 {
    display: none;
  }
}
.sls24_whats_included_ms_top .circle_3 {
  right: -23%;
  top: 2%;
  display: block;
  width: 236px;
  height: 186px;
  position: absolute;
}
@media (max-width: 1300px) {
  .sls24_whats_included_ms_top .circle_3 {
    right: -7%;
    top: -4px;
    display: none;
  }
}
.sls24_whats_included_ms_top .circle_3 .ic_1 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.sls24_whats_included_ms_top .circle_3 .ic_2 {
  position: absolute;
  bottom: 0;
  right: 30%;
  z-index: 1;
}

.sls24_whats_included_ms_bottom {
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 639px) {
  .sls24_whats_included_ms_bottom {
    overflow: hidden;
  }
}
.sls24_whats_included_ms_bottom .line_top {
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .sls24_whats_included_ms_bottom .line_top {
    height: auto;
    width: 70%;
  }
}
@media (max-width: 767px) {
  .sls24_whats_included_ms_bottom .line_top {
    display: none;
  }
}
.sls24_whats_included_ms_bottom .line_bottom {
  width: 100%;
  max-width: 432px;
  margin-left: 180px;
}
@media (max-width: 767px) {
  .sls24_whats_included_ms_bottom .line_bottom {
    display: none;
  }
}
.sls24_whats_included_ms_bottom .slider_menu {
  position: relative;
  padding-top: 0px;
}
@media (max-width: 639px) {
  .sls24_whats_included_ms_bottom .slider_menu {
    margin-bottom: -30px;
  }
}
.sls24_whats_included_ms_bottom .slider_menu .slick-list {
  z-index: 10;
}
.sls24_whats_included_ms_bottom .slider_menu .slick-dots {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-left: 0;
  padding-left: 0;
  bottom: -60px !important;
}
.sls24_whats_included_ms_bottom .slider_menu .slick-dots li {
  list-style: none;
}
.sls24_whats_included_ms_bottom .slider_menu .slick-dots li.slick-active button {
  background: #5E1DE1;
}
.sls24_whats_included_ms_bottom .slider_menu .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 60px;
  border: initial;
  font-size: 0;
}
.sls24_whats_included_ms_bottom .wrap {
  display: flex;
  justify-content: space-between;
}
.sls24_whats_included_ms_bottom .item {
  width: 32%;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .sls24_whats_included_ms_bottom .item {
    max-width: initial;
    width: initial;
  }
}
.sls24_whats_included_ms_bottom .item .item_link,
.sls24_whats_included_ms_bottom .item a {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  text-decoration: initial;
  margin-bottom: 33px;
  transition: all 0.2s;
  border-radius: 6px;
}
@media (max-width: 1699px) {
  .sls24_whats_included_ms_bottom .item .item_link,
  .sls24_whats_included_ms_bottom .item a {
    height: 160px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .sls24_whats_included_ms_bottom .item .item_link,
  .sls24_whats_included_ms_bottom .item a {
    max-width: 300px;
    margin: 0 auto 20px;
  }
}
.sls24_whats_included_ms_bottom .item .item_link:hover,
.sls24_whats_included_ms_bottom .item a:hover {
  background: #efe8ff;
}
.sls24_whats_included_ms_bottom .item .item_link svg,
.sls24_whats_included_ms_bottom .item a svg {
  max-width: 60px;
  max-height: 60px;
  margin-bottom: 10px;
}
.sls24_whats_included_ms_bottom .item .item_link svg path,
.sls24_whats_included_ms_bottom .item a svg path {
  transition: all 0.2s;
}
.sls24_whats_included_ms_bottom .item .item_link p,
.sls24_whats_included_ms_bottom .item a p {
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 130%;
  font-weight: 600;
  font-family: "Inter";
  text-align: center;
  color: #0f0f3d;
}
@media (max-width: 1699px) {
  .sls24_whats_included_ms_bottom .item .item_link p,
  .sls24_whats_included_ms_bottom .item a p {
    font-size: 16px;
    line-height: 120%;
  }
}
@media (max-width: 767px) {
  .sls24_whats_included_ms_bottom .item .item_link p,
  .sls24_whats_included_ms_bottom .item a p {
    font-size: 14px;
  }
}

.sls24_center_of_excellence {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.sls24_center_of_excellence > p {
  padding-left: 15px;
  padding-right: 15px;
}
.sls24_center_of_excellence .cover_image img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .sls24_center_of_excellence .cover_image img {
    border-radius: 0;
  }
}
.sls24_center_of_excellence .sliders_wrap {
  position: relative;
  overflow: hidden;
  width: calc(100vw - 30px);
  max-width: 1630px;
}
.sls24_center_of_excellence .sliders_wrap:before {
  position: absolute;
  z-index: 25;
  content: "";
  top: 0;
  left: -4px;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, rgb(36, 23, 67) 0%, rgba(36, 23, 67, 0.6) 42%, rgba(36, 23, 67, 0) 100%);
}
@media (max-width: 639px) {
  .sls24_center_of_excellence .sliders_wrap:before {
    width: 70px;
  }
}
.sls24_center_of_excellence .sliders_wrap:after {
  position: absolute;
  z-index: 25;
  content: "";
  top: 0;
  right: -4px;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, rgba(36, 23, 67, 0) 0%, rgba(36, 23, 67, 0.6) 42%, rgb(36, 23, 67) 100%);
}
@media (max-width: 639px) {
  .sls24_center_of_excellence .sliders_wrap:after {
    width: 70px;
  }
}
.sls24_center_of_excellence .slider_videos {
  margin-top: 15px;
  margin-bottom: 30px;
  min-width: 900px;
  pointer-events: none;
}
.sls24_center_of_excellence .slider_videos .slide video {
  border-radius: 6px;
  overflow: hidden;
}
.sls24_center_of_excellence .slider_videos .slide picture {
  display: block;
  width: 260px;
}
.sls24_center_of_excellence .slider_videos .slide picture img {
  width: 100%;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1 {
  margin-top: 50px;
  direction: rtl;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1.slick_wr:not(.slick-initialized) .item {
  width: 202px;
  margin: 0 auto 0 0;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1.slick_wr:before {
  background: transparent;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1.slick_wr:after {
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1 .item {
  max-width: 202px;
  margin: 0 auto;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1 .item .session_thumb_wr {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  margin-bottom: -1px;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1 .item .session_thumb_wr .stars {
  left: 7px;
  position: absolute;
  z-index: 5;
  bottom: 9px;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1 .item .video_presenter_wr {
  position: relative;
  background: #f5f6fa;
  padding: 4px 51px 4px 8px;
  color: #5E1DE1;
  font-size: 11px;
  font-weight: 600;
  line-height: 190%;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1 .item .video_presenter_wr .video_presenter_list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1 .item .video_presenter_wr .icon_wr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 51px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_1 .item .video_presenter_wr .icon_wr img {
  width: 20px;
  height: 14px;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2 {
  position: relative;
  margin-top: 50px;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2.slick_wr:not(.slick-initialized) .item {
  width: 202px;
  margin: 0 auto 0 0;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2.slick_wr:before {
  background: transparent;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2.slick_wr:after {
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2 .item {
  max-width: 202px;
  margin: 0 auto;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2 .item .session_thumb_wr {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  margin-bottom: -1px;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2 .item .session_presenter_wr {
  position: relative;
  background: #5E1DE1;
  padding: 4px 55px 4px 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 190%;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2 .item .session_presenter_wr .session_presenter_list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2 .item .session_presenter_wr .icon_wr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 50px;
  background: #7a38ff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sls24_center_of_excellence .sls24_center_of_excellence_slider_2 .item .session_presenter_wr .icon_wr img {
  width: 29px;
  height: 16px;
}

.sls24_mastery_sessions {
  max-width: 1600px;
  margin: 0 auto;
  box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.08);
}
.sls24_mastery_sessions .label {
  display: block;
  margin: 0 auto;
  width: 190px;
  padding: 0;
  color: #0f0f3d;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%;
  border-radius: 50px;
  background: #d5b0ff;
}
.sls24_mastery_sessions .h40 span, .sls24_mastery_sessions .rec25_bnt_top_stats .item span:nth-child(1) span, .rec25_bnt_top_stats .item .sls24_mastery_sessions span:nth-child(1) span, .sls24_mastery_sessions .upsel_price_build .price_block .mid .price span, .upsel_price_build .price_block .mid .sls24_mastery_sessions .price span, .sls24_mastery_sessions .upsell_2025_stats p span:nth-child(1) span, .upsell_2025_stats p .sls24_mastery_sessions span:nth-child(1) span, .sls24_mastery_sessions .sq25_success .slider_quote_reviews .rev .descr .copy span, .sq25_success .slider_quote_reviews .rev .descr .sls24_mastery_sessions .copy span, .sls24_mastery_sessions .reg_form h2 span, .reg_form .sls24_mastery_sessions h2 span, .sls24_mastery_sessions #banner.pre_smmt .bnr_top h1 span, #banner.pre_smmt .bnr_top .sls24_mastery_sessions h1 span, .sls24_mastery_sessions body .step_1 b span, body .step_1 .sls24_mastery_sessions b span,
.sls24_mastery_sessions body .step_2 b span,
body .step_2 .sls24_mastery_sessions b span,
.sls24_mastery_sessions body .step_3 b span,
body .step_3 .sls24_mastery_sessions b span {
  color: #F04282;
}
.sls24_mastery_sessions .wrap {
  display: flex;
  justify-content: center;
  line-height: 160%;
  color: #0f0f3d;
}
@media (max-width: 639px) {
  .sls24_mastery_sessions .wrap {
    flex-wrap: wrap;
  }
}
.sls24_mastery_sessions .wrap b {
  font-weight: 600;
  color: #5E1DE1;
}
.sls24_mastery_sessions .wrap p {
  max-width: 390px;
  margin: 0 25px;
}
@media (max-width: 639px) {
  .sls24_mastery_sessions .wrap p {
    max-width: 100%;
    margin: 0 0 10px 0;
  }
}
.sls24_mastery_sessions .video_mid {
  width: 100%;
  max-width: 922px;
  margin: 0 auto;
  display: block;
}
.sls24_mastery_sessions .img_mid {
  width: 100%;
  max-width: 922px;
  margin: 0 auto;
  display: block;
}
.sls24_mastery_sessions .img_mid img {
  width: 100%;
}
.sls24_mastery_sessions .slider_wrap {
  padding-left: 15px;
  padding-right: 15px;
}
.sls24_mastery_sessions .sls24_mastery_sessions_slider {
  width: calc(100vw - 30px);
  max-width: 1284px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sls24_mastery_sessions .sls24_mastery_sessions_slider {
    margin-bottom: 70px;
  }
}
.sls24_mastery_sessions .sls24_mastery_sessions_slider.slick_wr:not(.slick-initialized) .item {
  width: 290px;
  margin: 0 auto 0 0;
}
@media (max-width: 767px) {
  .sls24_mastery_sessions .sls24_mastery_sessions_slider .slick-dots {
    bottom: -30px !important;
  }
}
.sls24_mastery_sessions .sls24_mastery_sessions_slider .item picture {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.sls24_mastery_sessions .sls24_mastery_sessions_slider .item picture img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}
.sls24_mastery_sessions .sls24_mastery_sessions_slider .item p {
  color: #0f0f3d;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}
.sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b {
  color: #292929;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  display: block;
  margin-bottom: 15px;
}
.sls24_mastery_sessions .library {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  align-content: center;
  text-align: center;
}
@media (max-width: 639px) {
  .sls24_mastery_sessions .library {
    min-height: initial;
    padding-top: 250px;
    padding-bottom: 250px;
  }
}

.sls24_timer_section {
  text-align: center;
}
.sls24_timer_section > p {
  margin: 0 auto;
}
.sls24_timer_section .sls_countdown {
  min-height: 111px;
}
@media (max-width: 639px) {
  .sls24_timer_section .sls_countdown {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.sls24_timer_section .sls_countdown .countdown-row {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.sls24_timer_section .sls_countdown .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
}
.sls24_timer_section .sls_countdown .countdown-section:before {
  position: absolute;
  top: 15px;
  right: -5px;
  font-size: 60px;
  font-weight: 300;
  color: #5E1DE1;
  content: ":";
}
@media (max-width: 991px) {
  .sls24_timer_section .sls_countdown .countdown-section:before {
    font-size: 50px;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .sls24_timer_section .sls_countdown .countdown-section:before {
    font-size: 30px;
    top: 0px;
  }
}
.sls24_timer_section .sls_countdown .countdown-section.nodot:before {
  display: none !important;
}
.sls24_timer_section .sls_countdown .countdown-section .countdown-amount {
  width: 100%;
  color: #5E1DE1;
  font-size: 80px;
  font-weight: 300;
  font-style: initial;
  letter-spacing: -1.6px;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .sls24_timer_section .sls_countdown .countdown-section .countdown-amount {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .sls24_timer_section .sls_countdown .countdown-section .countdown-amount {
    font-size: 30px;
  }
}
.sls24_timer_section .sls_countdown .countdown-section .countdown-period {
  margin-top: -14px;
  width: 100%;
  color: #0f0f3d;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: #0f0f3d;
  text-align: center;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .sls24_timer_section .sls_countdown .countdown-section .countdown-period {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sls24_timer_section .sls_countdown .countdown-section .countdown-period {
    font-size: 14px;
  }
}

.sl24_premium_member_head {
  position: relative;
}
@media (max-width: 767px) {
  .sl24_premium_member_head .container {
    padding-top: 200px;
  }
}
@media (max-width: 639px) {
  .sl24_premium_member_head .container {
    padding-top: 250px;
  }
}
.sl24_premium_member_head .cover_image img {
  border-radius: 20px 20px 0 0;
}
@media (max-width: 767px) {
  .sl24_premium_member_head .cover_image img {
    border-radius: 0;
    object-position: 50% 5%;
  }
}
.sl24_premium_member_head .label_premium {
  background: #5e1de1;
  color: #fff;
  width: 145px;
  padding: 2px 0;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 60px;
}
.sl24_premium_member_head .label_premium picture {
  width: 22px;
}
.sl24_premium_member_head .label_premium picture img {
  width: 22px;
  max-width: 22px;
  margin-right: 3px;
}

.sl24_premium_member_body {
  position: relative;
  box-shadow: 4px 4px 45px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .sl24_premium_member_body .pm_icon img {
    margin-top: 70px;
    max-width: 50px;
  }
}
.sl24_premium_member_body .ttl {
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
}
@media (max-width: 639px) {
  .sl24_premium_member_body .ttl {
    flex-wrap: wrap;
  }
}
.sl24_premium_member_body .ttl a {
  transition: all 0.2s;
}
.sl24_premium_member_body .ttl a:hover {
  opacity: 0.9;
}
.sl24_premium_member_body .ttl a picture img {
  width: 310px;
  height: 52px;
}
@media (max-width: 479px) {
  .sl24_premium_member_body .sl24_premium_member_body_slider_1 {
    max-width: 291px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 639px) {
  .sl24_premium_member_body .sl24_premium_member_body_slider_1 .slick-arrow {
    bottom: -70px !important;
  }
}
.sl24_premium_member_body .sl24_premium_member_body_slider_1 .item .session_thumb_wr {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  margin-bottom: -1px;
}
.sl24_premium_member_body .sl24_premium_member_body_slider_1 .item .session_presenter_wr {
  position: relative;
  background: #5E1DE1;
  padding: 6px 75px 6px 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 190%;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
}
.sl24_premium_member_body .sl24_premium_member_body_slider_1 .item .session_presenter_wr .session_presenter_list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.sl24_premium_member_body .sl24_premium_member_body_slider_1 .item .session_presenter_wr .icon_wr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 70px;
  background: #7a38ff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sl24_premium_member_body .sl24_premium_member_body_slider_1 .item .session_presenter_wr .icon_wr img {
  width: 40px;
  height: 22px;
}
.sl24_premium_member_body .sl24_premium_member_body_slider_1 .slick-dots {
  bottom: -40px !important;
}
@media (max-width: 639px) {
  .sl24_premium_member_body .sl24_premium_member_body_slider_1 .slick-dots {
    bottom: -30px !important;
  }
}
.sl24_premium_member_body .sl24_premium_member_body_slider_features.slick_wr:not(.slick-initialized) .item {
  width: 278px;
}
@media (max-width: 767px) {
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .slick-arrow {
    bottom: -70px !important;
  }
}
.sl24_premium_member_body .sl24_premium_member_body_slider_features .item .ttl {
  font-weight: 500;
  color: #5E1DE1;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  min-height: 126px;
  font-size: 35px;
  line-height: 1;
}
@media (max-width: 991px) {
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .item .ttl {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .item .ttl {
    font-size: 24px;
    min-height: 110px;
  }
}
@media (max-width: 479px) {
  .sl24_premium_member_body .sl24_premium_member_body_slider_features .item .ttl {
    min-height: initial;
  }
}
.sl24_premium_member_body .sl24_premium_member_body_slider_features .item .txt {
  line-height: 160%;
  color: #0f0f3d;
  margin-bottom: 40px;
}

.sls24_experienced_coaches .video_mid {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.sls24_experienced_coaches picture {
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}
.sls24_experienced_coaches picture img {
  width: 100%;
}

.sls_slider_reviews_btm {
  max-width: 890px;
  padding: 0 15px;
  margin: 100px auto;
}
.sls_slider_reviews_btm .slider_reviews_btm {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.sls_slider_reviews_btm .slider_reviews_btm .slide {
  display: flex;
  padding-left: 30px;
  padding-right: 30px;
}
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr {
  width: 100%;
}
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 20px;
  min-height: 385px;
  font-family: "Inter";
}
@media (max-width: 767px) {
  .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
    min-height: initial;
  }
}
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info {
  line-height: 160%;
  display: flex;
  align-items: center;
  align-content: center;
}
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info picture img {
  display: block;
  max-width: 84px;
  margin-right: 20px;
}
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p {
  color: #0f0f3d;
  margin-bottom: 0;
  line-height: 120%;
}
.sls_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1) {
  font-weight: 600;
  display: block;
}
.prices_platform_for_coaches {
  margin-top: 100px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches {
    overflow: scroll;
  }
}
.prices_platform_for_coaches .scroll_overview {
  padding: 40px 0 0;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .scroll_overview {
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: auto;
  }
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .scroll_overview {
    padding-left: 5px;
    padding-top: 50px;
    padding-bottom: 70px;
    margin-bottom: 50px;
  }
}
.prices_platform_for_coaches .swipe_txt {
  position: relative;
  display: none;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .swipe_txt {
    display: block;
  }
}
.prices_platform_for_coaches .swipe_txt p {
  position: absolute;
  top: 15px;
  font-size: 12px;
  width: 100%;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
  color: #5E1DE1;
  font-family: "Inter";
  letter-spacing: 0.5px;
  font-weight: 500;
}
.prices_platform_for_coaches .wrapper1 {
  margin-bottom: -20px;
  pointer-events: none;
  position: relative;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .wrapper1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: scroll;
    transform: scale(0.5);
  }
}
.prices_platform_for_coaches .wrapper1 .container {
  border: none;
  background: none;
  text-align: center;
  min-width: 1040px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .wrapper1 .container {
    min-width: 840px;
  }
}
.prices_platform_for_coaches .container {
  max-width: 850px;
  min-width: 840px;
}
.prices_platform_for_coaches .label {
  background: #5226ae;
  display: flex;
  padding: 0 15px;
  height: 84px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  min-width: calc(100% + 30px);
  max-width: calc(100% + 30px);
  margin-left: -15px;
  transition: all 0.2s;
  min-width: calc(100% + 100px);
  max-width: calc(100% + 100px);
  margin-left: -50px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .label {
    height: 60px;
    min-width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.prices_platform_for_coaches .label:hover {
  opacity: 0.8;
}
.prices_platform_for_coaches .label:after {
  content: "\e80a";
  font-family: "Fontello";
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  font-size: 34px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .label:after {
    font-size: 24px;
  }
}
.prices_platform_for_coaches .label.collapsed:after {
  content: "\e80b";
}
.prices_platform_for_coaches .label.first {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .label.first {
    margin-bottom: 10px;
  }
}
.prices_platform_for_coaches .label p {
  margin-bottom: 0;
  color: #fff;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: 150%;
  font-family: "Inter";
  text-align: center;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .label p {
    font-size: 13px;
  }
}
.prices_platform_for_coaches .label p img {
  position: relative;
  top: -1px;
  width: 100%;
  max-width: 50px;
  max-height: 40px;
  margin-right: 7px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .label p img {
    transform: scale(0.7);
  }
}
.prices_platform_for_coaches .table {
  margin-bottom: 0;
  padding: 0 50px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .table {
    padding: 0 10px;
  }
}
.prices_platform_for_coaches .table.descr .column:nth-child(1) p,
.prices_platform_for_coaches .table.descr .column:nth-child(1) ul li {
  margin-bottom: 0;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 21px */
  color: #0f0f3d;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .table.descr .column:nth-child(1) p,
  .prices_platform_for_coaches .table.descr .column:nth-child(1) ul li {
    font-size: 13px;
    padding: 0 5px;
  }
}
.prices_platform_for_coaches .table.descr .column:nth-child(1) ul {
  margin-bottom: 0;
}
.prices_platform_for_coaches .table.descr .column:nth-child(2), .prices_platform_for_coaches .table.descr .column:nth-child(3) {
  background: #fff;
  text-align: center;
  color: #6335c3;
  display: flex;
  justify-content: center;
}
.prices_platform_for_coaches .table.descr .column:nth-child(2) p, .prices_platform_for_coaches .table.descr .column:nth-child(3) p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  width: 100%;
  font-family: "Inter";
}
.prices_platform_for_coaches .table.descr .column:nth-child(2) p.reg, .prices_platform_for_coaches .table.descr .column:nth-child(3) p.reg {
  color: #0f0f3d;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .table.descr .column:nth-child(2) p, .prices_platform_for_coaches .table.descr .column:nth-child(3) p {
    font-size: 13px;
    padding: 0 5px;
  }
}
.prices_platform_for_coaches .table.descr .column:nth-child(2) img, .prices_platform_for_coaches .table.descr .column:nth-child(3) img {
  max-width: 24px;
}
.prices_platform_for_coaches .table.descr .column:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid #d4e0e5;
  right: 0;
  left: 0;
}
.prices_platform_for_coaches .table .row_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.prices_platform_for_coaches .table .row_wrap .column.no_border:after, .prices_platform_for_coaches .table .row_wrap.no_border .column:after, .prices_platform_for_coaches .table .row_wrap.no_border .column {
  border: none !important;
}
.prices_platform_for_coaches .table .row_wrap.top picture img {
  max-width: 100% !important;
  width: 100% !important;
}
.prices_platform_for_coaches .table .row_wrap.top div:nth-child(3) {
  position: relative;
  border-top: 3px solid #5226ae !important;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .table .row_wrap.top div:nth-child(3) {
    margin-top: 30px;
  }
}
.prices_platform_for_coaches .table .row_wrap.top div:nth-child(3):before {
  position: absolute;
  width: 80%;
  left: 10%;
  top: -60px;
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.4px;
  border-radius: 0;
  background: #5226ae;
  height: 60px;
  line-height: 60px;
  content: "RECOMMENDED";
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .table .row_wrap.top div:nth-child(3):before {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    top: -40px;
  }
}
.prices_platform_for_coaches .table .row_wrap.bottom div:nth-child(3) {
  position: relative;
  border-bottom: 3px solid #5226ae !important;
}
.prices_platform_for_coaches .table .row_wrap:first-child .column {
  padding-top: 30px;
}
@media (max-width: 639px) {
  .prices_platform_for_coaches .table .row_wrap:first-child .column {
    padding-top: 15px;
  }
}
.prices_platform_for_coaches .table .row_wrap:last-child .column {
  padding-bottom: 30px;
  border: none;
}
@media (max-width: 639px) {
  .prices_platform_for_coaches .table .row_wrap:last-child .column {
    padding-bottom: 15px;
  }
}
.prices_platform_for_coaches .table .row_wrap .column {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 14px 0;
  position: relative;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .table .row_wrap .column {
    padding: 8px 0;
  }
}
.prices_platform_for_coaches .table .row_wrap .column:nth-child(1) {
  width: 50%;
}
@media (max-width: 1300px) {
  .prices_platform_for_coaches .table .row_wrap .column:nth-child(1) {
    width: 28%;
  }
}
.prices_platform_for_coaches .table .row_wrap .column:nth-child(2) {
  width: 50%;
}
@media (max-width: 1300px) {
  .prices_platform_for_coaches .table .row_wrap .column:nth-child(2) {
    width: 32%;
  }
}
.prices_platform_for_coaches .table .row_wrap .column:nth-child(3) {
  width: 50%;
}
.prices_platform_for_coaches .table .row_wrap .column:nth-child(3):after {
  left: 15px;
}
.prices_platform_for_coaches .indy_footer_price.monthly_active .price_block .monthly {
  display: block;
}
.prices_platform_for_coaches .indy_footer_price.monthly_active .price_block .annual {
  display: none;
}
.prices_platform_for_coaches .indy_footer_price .price_block .monthly {
  display: none;
}
.prices_platform_for_coaches .indy_footer_price .price_block .annual {
  display: block;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap {
  margin-top: 50px;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column {
  border: none;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column:nth-child(1) {
  padding: 0;
  height: 100%;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column:nth-child(2), .prices_platform_for_coaches .indy_footer_price .row_wrap .column:nth-child(3) {
  background: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  padding: 20px 20px;
  border-radius: 6px;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .column:nth-child(2), .prices_platform_for_coaches .indy_footer_price .row_wrap .column:nth-child(3) {
    padding: 0 0;
  }
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column p.choose {
  color: #0f0f3d;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 639px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .column p.choose {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column .divider {
  width: 100%;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .offer {
  position: absolute;
  top: 0px;
  color: #6335c3;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .date {
  width: 100%;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .price {
  color: #6335c3;
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  width: 100%;
  margin-bottom: 5px;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .reg_price {
  margin-bottom: 10px;
  font-size: 16px;
  margin-top: -5px;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .limited {
  color: #0f0f3d;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 130%;
  width: 100%;
  margin-top: -10px;
  margin-bottom: 10px;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .btn {
  font-size: 15px !important;
  letter-spacing: 1.8px;
  height: 43px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  border-radius: 40px;
  background: #6335c3;
  font-family: "Poppins", serif;
  font-weight: 600;
  transition: all ease 0.3s;
}
@media (max-width: 767px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .btn {
    letter-spacing: 0.4px;
  }
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .btn:hover {
  opacity: 0.8;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .cancel_text_wr {
  flex: 0 0 100%;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .cancel_text_wr .cancel_text {
  color: #000;
  text-align: center;
  font-family: Inter, serif;
  font-size: 12px;
  font-weight: 400;
  width: 100%;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .free {
  font-style: italic;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .hover_block:hover .hover_content {
  opacity: 1;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .hover_block i {
  position: relative;
  margin-left: 6px;
  cursor: pointer;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .hover_block i:before {
  color: #5e1de1;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .hover_block .hover_content {
  position: absolute;
  top: 115%;
  left: 0;
  right: 0;
  width: 360px;
  z-index: 30;
  opacity: 0;
  transition: all 0.2s;
  background: #fff;
  padding: 15px 15px;
  border: 1px solid #ddd;
  box-shadow: 3px 4px 30px 0 rgba(0, 0, 0, 0.2);
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .column.price_block .promo {
  width: 100%;
  color: red;
  opacity: 0;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer {
  position: absolute;
  font-family: "Inter";
  width: 220px;
  margin: 0 auto;
  display: block;
  left: 0%;
  right: 0;
  bottom: -10px;
  background: transparent;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer {
    position: relative;
    transform: unset;
    left: unset;
    bottom: initial;
  }
}
@media (max-width: 767px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer {
    margin: initial;
    width: 200px;
  }
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-row {
  display: flex;
  justify-content: center;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
  justify-content: center;
  font-family: "Poppins", serif;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section:before {
  position: absolute;
  top: 0;
  right: -5px;
  font-size: 24px;
  font-weight: 300;
  color: #5E1DE1;
  content: ":";
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section:before {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section:before {
    top: 4px;
    font-size: 22px;
  }
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section.nodot:before {
  display: none !important;
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section .countdown-amount {
  width: 100%;
  color: #5E1DE1;
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section .countdown-amount {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section .countdown-amount {
    margin-bottom: -7px;
  }
}
.prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section .countdown-period {
  position: relative;
  width: 100%;
  color: #5E1DE1;
  text-align: center;
  font-size: 10px;
  line-height: 1;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .indy_footer_price .row_wrap .price_table_timer .countdown-section .countdown-period {
    line-height: 1.5;
  }
}
.prices_platform_for_coaches .radio {
  margin: 0 0 10px;
  border: none !important;
}
.prices_platform_for_coaches .radio label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #0f0f3d;
  cursor: pointer;
}
@media (max-width: 991px) {
  .prices_platform_for_coaches .radio label {
    font-size: 12px;
  }
}
.prices_platform_for_coaches .radio input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.prices_platform_for_coaches .radio input[type=radio] + .radio-label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 2px solid #6335c3;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.prices_platform_for_coaches .radio input[type=radio]:checked + .radio-label:before {
  background-color: #6335c3;
  box-shadow: inset 0 0 0 4px #fff;
}
.prices_platform_for_coaches .radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #6335c3;
}
.prices_platform_for_coaches .radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #fff;
  border-color: #bfbfbf;
  background: #bfbfbf;
}
.prices_platform_for_coaches .radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.paymenr_options {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  overflow: hidden;
}
.paymenr_options img {
  width: 270px;
  margin-bottom: 25px;
}
.paymenr_options p {
  position: relative;
  text-align: center;
  color: #828282;
  font-size: 12px;
  font-style: italic;
  width: 200px;
  margin: 0 auto;
}
.paymenr_options p:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -345px;
  width: 350px;
  border-bottom: 1px solid #c4c4c4;
}
.paymenr_options p:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -345px;
  width: 350px;
  border-bottom: 1px solid #c4c4c4;
}

.sls24_featured_speakers {
  max-width: 1630px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}
.sls24_featured_speakers > p {
  color: #0f0f3d;
}
.sls24_featured_speakers.coupon > p.c_main {
  color: #5226ae;
}
.sls24_featured_speakers.coupon .icon img {
  max-width: 84px;
  margin: 0 auto;
}
.sls24_featured_speakers .icon img {
  display: block;
  margin: 0 auto 30px;
  max-width: 60px;
}
.sls24_featured_speakers .slider_sls24_featured_speakers .slick-dots {
  bottom: -30px !important;
}
.sls24_featured_speakers .slider_sls24_featured_speakers.space_between_slides .slick-list {
  margin: 0 -11px;
}
.sls24_featured_speakers .slider_sls24_featured_speakers.space_between_slides .slick-list .slick-slide {
  margin: 0 11px;
}
@media (max-width: 767px) {
  .sls24_featured_speakers .slider_sls24_featured_speakers {
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .sls24_featured_speakers .slider_sls24_featured_speakers {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.sls24_featured_speakers .slider_sls24_featured_speakers .item {
  width: 177px;
  height: 365px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}
.sls24_featured_speakers .slider_sls24_featured_speakers .item:hover p {
  bottom: -20px;
}
.sls24_featured_speakers .slider_sls24_featured_speakers .item p {
  position: absolute;
  bottom: -90px;
  height: 150px;
  background: #AA2294;
  font-style: italic;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
  font-size: 12px;
  margin-bottom: 0;
  transition: all 0.4s;
}
.sls24_featured_speakers .slider_sls24_featured_speakers .item p b {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

#guarantee {
  padding: 0 0 40px;
  background: #fff;
}
@media (max-width: 1919px) {
  #guarantee {
    padding: 0 0 80px;
  }
}
@media (max-width: 639px) {
  #guarantee {
    padding: 0 0 0;
  }
}
#guarantee .panel {
  margin-bottom: 136px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  border-color: #dddddd;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 7px;
  /* Firefox 1-3.6 */
  -moz-border-radius: 7px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 7px;
}
@media (max-width: 767px) {
  #guarantee .panel {
    margin-bottom: 120px;
  }
}
#guarantee .panel-heading {
  padding: 44px 95px;
  text-align: center;
  color: #ffffff;
  border-radius: 6px 6px 0 0;
  font-size: 32px;
  line-height: 1.25em;
  font-weight: 600;
}
@media (max-width: 991px) {
  #guarantee .panel-heading {
    padding: 25px 85px;
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  #guarantee .panel-heading {
    padding: 25px 15px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #guarantee .panel-heading {
    text-align: center;
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  #guarantee .panel-heading {
    font-size: 18px;
  }
}
#guarantee .panel-body {
  padding: 53px 96px 100px 95px;
  position: relative;
  background: #f5f5f5;
  border-radius: 0 0 6px 6px;
}
@media (max-width: 991px) {
  #guarantee .panel-body {
    padding: 40px 85px 100px;
  }
}
@media (max-width: 767px) {
  #guarantee .panel-body {
    padding: 30px 30px 70px;
  }
}
#guarantee .panel-body .c-cletter {
  margin: 0;
  color: #000;
  font-family: "Inter";
  font-size: 14px;
  line-height: 1.8em;
  font-weight: 400;
}
@media (max-width: 991px) {
  #guarantee .panel-body .c-cletter {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 479px) {
  #guarantee .panel-body .c-cletter {
    font-size: 14px;
  }
}
#guarantee .panel-body .c-cletter:before {
  content: "";
  margin: -8px 4px -15px -25px;
  display: block;
  float: left;
  background-image: url("../img/pages/sls24/capital.svg");
  -webkit-background-size: 65px 65px;
  background-size: 65px 65px;
  width: 65px;
  height: 65px;
}
@media (max-width: 991px) {
  #guarantee .panel-body .c-cletter:before {
    margin: -4px 5px 0px -21px;
    background-size: contain;
    height: 45px;
    width: 51px;
  }
}
@media (max-width: 767px) {
  #guarantee .panel-body .c-cletter:before {
    display: block;
  }
}
#guarantee .panel-body .c-cletter span {
  display: none;
}
#guarantee .panel-body:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-size: 100% auto;
  width: 160px;
  height: 134px;
  background-image: url("../img/pages/sls24/stamp.png");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translate(-55%, 48%);
  -ms-transform: translate(-55%, 48%);
  -o-transform: translate(-55%, 48%);
  transform: translate(-55%, 48%);
}
@media (max-width: 767px) {
  #guarantee .panel-body:before {
    width: 120px;
    height: 120px;
  }
}
#guarantee .subheader {
  margin: 0 0 30px;
  color: #444444;
  letter-spacing: 6.6px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 767px) {
  #guarantee .subheader {
    letter-spacing: 2px;
  }
}

.sls_guarantee {
  padding: 0 0 20px;
  background: #fff;
  margin-bottom: 150px;
}
@media (max-width: 1300px) {
  .sls_guarantee {
    padding: 0 0 30px;
  }
}
@media (max-width: 639px) {
  .sls_guarantee {
    padding: 0 0 0;
  }
}
@media (max-width: 1919px) {
  .sls_guarantee.passes {
    padding: 20px 0 0;
  }
}
.sls_guarantee .panel {
  max-width: 910px;
  margin: 0 auto;
  padding-bottom: 0px;
  border-color: #000;
  box-shadow: 1px 0px 15px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.sls_guarantee .panel-heading {
  text-align: center;
  padding: 46px 95px;
  color: #fff;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  background: #3a1e75;
  background-size: cover;
}
@media (max-width: 1300px) {
  .sls_guarantee .panel-heading {
    padding: 35px 70px;
  }
}
@media (max-width: 991px) {
  .sls_guarantee .panel-heading {
    padding: 25px 50px;
  }
}
@media (max-width: 767px) {
  .sls_guarantee .panel-heading {
    padding: 25px 30px;
  }
}
@media (max-width: 479px) {
  .sls_guarantee .panel-heading {
    padding: 20px 15px;
  }
}
.sls_guarantee .panel-body {
  padding: 60px 120px 100px 120px;
  position: relative;
  background: #fff;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 0;
  /* Firefox 1-3.6 */
  -moz-border-radius: 0;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 0;
}
@media (max-width: 991px) {
  .sls_guarantee .panel-body {
    padding: 40px 70px 78px;
  }
}
@media (max-width: 767px) {
  .sls_guarantee .panel-body {
    padding: 40px 70px 80px;
  }
}
@media (max-width: 479px) {
  .sls_guarantee .panel-body {
    padding: 40px 30px 70px 30px;
  }
}
.sls_guarantee .panel-body .c-cletter {
  position: relative;
  margin: 0;
  color: #000;
}
.sls_guarantee .panel-body .c-cletter:before {
  content: "";
  margin: -40px 0 0 -16px;
  display: block;
  float: left;
  width: 60px;
  height: 65px;
  background-image: url("../img/icons/letter_w.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.sls_guarantee .panel-body .c-cletter span {
  display: none;
}
@media (max-width: 767px) {
  .sls_guarantee .panel-body .c-cletter span {
    display: inline;
  }
}
.sls_guarantee .panel-body:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  background-size: 100% auto;
  width: 160px;
  height: 160px;
  background-image: url("../img/icons/stamp.png?v2");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translate(-55%, 48%);
  -ms-transform: translate(-55%, 48%);
  -o-transform: translate(-55%, 48%);
  transform: translate(-55%, 48%);
}
@media (max-width: 479px) {
  .sls_guarantee .panel-body:before {
    bottom: -5px;
    width: 120px;
  }
}

.sls_modern_way {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 12px;
  background: #F8F8F8;
}
.sls_modern_way .wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .sls_modern_way .wrap {
    flex-wrap: wrap;
  }
}
.sls_modern_way .wrap .item {
  max-width: 400px;
  width: 100%;
  border-radius: 32px;
  border: 1px solid #EEE;
  background: #FFF;
  padding: 35px;
  margin: 15px 15px;
}
@media (max-width: 639px) {
  .sls_modern_way .wrap .item {
    padding: 25px 15px;
  }
}
.sls_modern_way .wrap .item.v2 {
  background: #F04282;
  border: 1px solid transparent;
}
.sls_modern_way .wrap .item.v2 ul li {
  color: #fff;
}
.sls_modern_way .wrap .item.v2 ul li:before {
  background: url(../img/pages/sls24/ico_check.svg);
}
.sls_modern_way .wrap .item.v2 p {
  color: #fff;
}
.sls_modern_way .wrap .item ul li {
  list-style: none;
  position: relative;
  margin-bottom: 10px;
}
.sls_modern_way .wrap .item ul li:before {
  position: absolute;
  left: -30px;
  top: 0px;
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/pages/sls24/ico_cancel.svg) no-repeat 50% 50%/cover;
  margin-right: 10px;
}
.sls_modern_way .wrap .item p {
  font-weight: 500;
  color: #333;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 20px;
}

.sls_hogan {
  background: #4E0172;
  border-radius: 10px;
  max-width: 1615px;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 1699px) {
  .sls_hogan {
    border-radius: 0;
  }
}
.sls_hogan .hero {
  position: relative;
  padding: 0 15px;
  width: 100%;
}
.sls_hogan .hero .wrap {
  max-width: 900px;
  margin: 0 auto;
}
.sls_hogan .hero span.label {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Poppins, serif;
  background: #C500E4;
  padding: 10px 25px;
  border-radius: 6px;
  display: table;
}
@media (max-width: 991px) {
  .sls_hogan .hero span.label {
    padding: 5px 15px;
  }
}
@media (max-width: 1699px) {
  .sls_hogan .hero .hogan_logo img {
    max-width: 320px;
  }
}
@media (max-width: 991px) {
  .sls_hogan .hero .hogan_logo img {
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .sls_hogan .hero .hogan_logo img {
    max-width: 240px;
  }
}
@media (max-width: 639px) {
  .sls_hogan .hero .hogan_logo img {
    max-width: 200px;
  }
}
.sls_hogan .description {
  max-width: 768px;
  padding: 0 15px;
  margin: 0 auto;
}
.sls_hogan .description h4 b {
  color: #C500E4;
}
.sls24_showcase {
  max-width: 1255px;
  margin: 0 auto;
}
.sls24_showcase.grey .top {
  background: #f6f4f8;
}
.sls24_showcase.grey .top .descr {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .sls24_showcase.grey .top .descr {
    margin-right: 0;
  }
}
.sls24_showcase.grey .bottom {
  background: #ECE9F0;
}
.sls24_showcase.grey .scroll_down {
  position: absolute;
  top: initial;
  bottom: -30px;
  width: 60px;
  height: 54px;
  background: url(../img/pages/sls24/scroll_1.png) no-repeat 50% 50%/cover !important;
  border-radius: 0;
  margin: 0 auto;
}
.sls24_showcase.grey .scroll_down:before, .sls24_showcase.grey .scroll_down:after {
  display: none;
}
.sls24_showcase.grey .scroll_down span {
  display: none;
}
.sls24_showcase.pink .top {
  background: #eadde8;
}
.sls24_showcase.pink .top .descr {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .sls24_showcase.pink .top .descr {
    margin-left: 0;
  }
}
.sls24_showcase.pink .bottom {
  background: #E3D0E0;
}
.sls24_showcase.pink .scroll_down {
  position: absolute;
  top: initial;
  bottom: -30px;
  width: 60px;
  height: 54px;
  background: url(../img/pages/sls24/scroll_2.png) no-repeat 50% 50%/cover !important;
  border-radius: 0;
  margin: 0 auto;
}
.sls24_showcase.pink .scroll_down:before, .sls24_showcase.pink .scroll_down:after {
  display: none;
}
.sls24_showcase.pink .scroll_down span {
  display: none;
}
.sls24_showcase .top {
  border-radius: 10px 10px 0 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 90px 75px;
}
@media (max-width: 991px) {
  .sls24_showcase .top {
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 30px;
  }
}
@media (max-width: 767px) {
  .sls24_showcase .top {
    padding: 40px 15px;
  }
}
@media (max-width: 991px) {
  .sls24_showcase .top .showcase {
    order: 1;
  }
}
.sls24_showcase .top .descr {
  max-width: 530px;
}
@media (max-width: 991px) {
  .sls24_showcase .top .descr {
    order: 2;
    padding-top: 50px;
  }
}
.sls24_showcase .top .img_1 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .sls24_showcase .top .img_1 {
    display: none;
  }
}
.sls24_showcase .top .img_2 {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .sls24_showcase .top .img_2 {
    display: none;
  }
}
.sls24_showcase .bottom {
  border-radius: 0 0 10px 10px;
  position: relative;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
  padding: 90px 75px;
}
@media (max-width: 991px) {
  .sls24_showcase .bottom {
    padding: 60px 30px;
  }
}
@media (max-width: 767px) {
  .sls24_showcase .bottom {
    padding: 40px 15px;
  }
}
.sls24_showcase .bottom .descr {
  max-width: 48%;
}
@media (max-width: 479px) {
  .sls24_showcase .bottom .descr {
    max-width: 100%;
  }
}
.sls24_showcase .bottom .w100 {
  width: 100%;
}

.btn.btn_play_top10 {
  width: 210px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", serif;
  padding: 12px 20px 12px 24px;
  letter-spacing: 0;
  transition: all 0.2s;
  color: #fff;
  border: 2px solid #5E1DE1;
  display: flex;
  border-radius: 6px;
  align-items: center;
  align-content: center;
  margin: 0 auto;
  background: #5E1DE1;
}
.btn.btn_play_top10:hover {
  background: #6e33e5;
  border-color: #6e33e5;
  color: #fff;
}
.btn.btn_play_top10.white {
  background: #fff;
  color: #5E1DE1;
}
.btn.btn_play_top10.white:hover {
  background: #dea2fa;
  color: #fff;
}
.btn.btn_play_top10 .icon-play {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 32px;
  top: 0;
  left: 0;
  margin-right: 5px;
  background: transparent;
  transition: all 0.1s;
  border-radius: 60px;
}
@media (max-width: 767px) {
  .btn.btn_play_top10 .icon-play {
    font-size: 26px;
  }
}

.top_10_timer {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  background: #7a38ff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  padding: 30px 60px;
}
@media (max-width: 991px) {
  .top_10_timer {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .top_10_timer {
    padding: 20px 15px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.top_10_timer p {
  color: #fff;
  font-weight: 500;
  max-width: 493px;
  margin-bottom: 0;
}
.top_10_timer p b {
  font-weight: 600;
  color: #dea2fa;
}
.top_10_timer .btn_play_top10 {
  margin: initial;
}
.top_10_timer .btn_play_top10:hover {
  background: #6e33e5 !important;
}
.top_10_timer .timer_wrap {
  padding: 0 10px;
}
@media (max-width: 991px) {
  .top_10_timer .timer_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.top_10_timer .countdown_init {
  font-family: "Inter";
  width: 245px;
  display: block;
}
@media (max-width: 991px) {
  .top_10_timer .countdown_init {
    position: relative;
    transform: unset;
    left: unset;
    bottom: initial;
  }
}
@media (max-width: 767px) {
  .top_10_timer .countdown_init {
    margin: initial;
    width: 200px;
  }
}
.top_10_timer .countdown_init .countdown-row {
  display: flex;
  justify-content: center;
}
.top_10_timer .countdown_init .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
  justify-content: center;
  font-family: "Poppins", serif;
}
.top_10_timer .countdown_init .countdown-section:before {
  position: absolute;
  top: 5;
  right: -2px;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  content: ":";
}
@media (max-width: 991px) {
  .top_10_timer .countdown_init .countdown-section:before {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .top_10_timer .countdown_init .countdown-section:before {
    top: 4px;
    font-size: 22px;
  }
}
.top_10_timer .countdown_init .countdown-section.nodot:before {
  display: none !important;
}
.top_10_timer .countdown_init .countdown-section .countdown-amount {
  width: 100%;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin: 0 6px 4px;
  border-radius: 6px;
  background: #5E1DE1;
}
@media (max-width: 991px) {
  .top_10_timer .countdown_init .countdown-section .countdown-amount {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .top_10_timer .countdown_init .countdown-section .countdown-amount {
    margin-bottom: -7px;
  }
}
.top_10_timer .countdown_init .countdown-section .countdown-period {
  position: relative;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 10px;
  line-height: 1;
}
@media (max-width: 991px) {
  .top_10_timer .countdown_init .countdown-section .countdown-period {
    line-height: 1.5;
  }
}

.sticky_top_10 {
  position: fixed;
  z-index: 27;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  box-shadow: 1px 2px 20px 0 rgba(0, 0, 0, 0.35);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.sticky_top_10 .container {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 16px 15px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sticky_top_10 .container {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 5px;
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .sticky_top_10 .container {
    padding-left: 5px;
    padding-right: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sticky_top_10 .container .sticky_timer {
  font-family: "Inter";
  width: 220px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 14px;
  background: transparent;
}
@media (max-width: 991px) {
  .sticky_top_10 .container .sticky_timer {
    position: relative;
    transform: unset;
    left: unset;
    bottom: initial;
  }
}
@media (max-width: 767px) {
  .sticky_top_10 .container .sticky_timer {
    margin: initial;
    width: 200px;
  }
}
.sticky_top_10 .container .sticky_timer .countdown-row {
  display: flex;
  justify-content: center;
}
.sticky_top_10 .container .sticky_timer .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
  justify-content: center;
  font-family: "Poppins", serif;
}
.sticky_top_10 .container .sticky_timer .countdown-section:before {
  position: absolute;
  top: 0;
  right: -5px;
  font-size: 24px;
  font-weight: 300;
  color: #5E1DE1;
  content: ":";
}
@media (max-width: 991px) {
  .sticky_top_10 .container .sticky_timer .countdown-section:before {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sticky_top_10 .container .sticky_timer .countdown-section:before {
    top: 4px;
    font-size: 22px;
  }
}
.sticky_top_10 .container .sticky_timer .countdown-section.nodot:before {
  display: none !important;
}
.sticky_top_10 .container .sticky_timer .countdown-section .countdown-amount {
  width: 100%;
  color: #5E1DE1;
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sticky_top_10 .container .sticky_timer .countdown-section .countdown-amount {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .sticky_top_10 .container .sticky_timer .countdown-section .countdown-amount {
    margin-bottom: -7px;
  }
}
.sticky_top_10 .container .sticky_timer .countdown-section .countdown-period {
  position: relative;
  width: 100%;
  color: #5E1DE1;
  text-align: center;
  font-size: 10px;
  line-height: 1;
}
@media (max-width: 991px) {
  .sticky_top_10 .container .sticky_timer .countdown-section .countdown-period {
    line-height: 1.5;
  }
}
.sticky_top_10 .container .timer_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sticky_top_10 .container .timer_wrap {
    width: 100%;
    justify-content: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .sticky_top_10 .container .timer_wrap .divider {
    width: 100%;
    margin-bottom: 15px;
  }
}
.sticky_top_10 .container .timer_wrap p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sticky_top_10 .container .timer_wrap p {
    font-size: 12px;
  }
}
@media (max-width: 639px) {
  .sticky_top_10 .container .timer_wrap p {
    width: 100%;
    text-align: center;
  }
}
.sticky_top_10 .container .timer_wrap .btn {
  border-radius: 60px;
  padding-left: 20px;
  padding-right: 20px;
}
.sticky_top_10 .container .request_wrap {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  max-width: 910px;
  margin: auto;
}
@media (max-width: 767px) {
  .sticky_top_10 .container .request_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sticky_top_10 .container .request_wrap .divider {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sticky_top_10 .container .request_wrap > a {
    padding-right: 10px;
  }
}
.sticky_top_10 .container > p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sticky_top_10 .container > p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .sticky_top_10 .container > p {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
}
@media (max-width: 479px) {
  .sticky_top_10 .container > p {
    width: 100%;
    margin-bottom: 5px;
  }
}
.sticky_top_10 .container > p b {
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%), #c4c4c4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 991px) {
  .sticky_top_10 .container > p b {
    display: block;
  }
}
.contact-collapsed .sticky_top_10 {
  transform: translate3d(0, 100%, 0);
}
.contact-collapsed .sticky_top_10 #countdown_sticky_toggle i {
  transform: scaleY(-1);
}
.sticky_top_10 .btn_play_top10 {
  margin: initial;
  font-size: 14px;
  padding: 7px 14px 7px 16px;
  max-width: 177px;
  text-transform: uppercase;
  font-weight: 600;
}
.sticky_top_10 #countdown_sticky_toggle {
  border-radius: 6px 6px 0 0;
  outline: none !important;
  background: #5E1DE1;
  margin-left: -27px;
  position: absolute;
  line-height: 12px;
  margin-top: -14px;
  transition: 0.2s;
  cursor: pointer;
  height: 14px;
  border: none;
  width: 54px;
  color: #fff;
  left: 50%;
  top: 0;
}
.sticky_top_10 #countdown_sticky_toggle:hover {
  background: #5E1DE1;
}

.coming_soon {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.coming_soon header {
  position: absolute;
  top: 0;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  justify-content: center;
}
.coming_soon header img.logo {
  max-width: 200px;
}
.coming_soon header .logo_wrap {
  margin-top: 40px;
}
@media (max-width: 1699px) {
  .coming_soon header .logo_wrap {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .coming_soon header .logo_wrap {
    margin-top: 10px;
  }
}
.coming_soon header .logo_wrap picture > img {
  width: 205px;
}
@media (max-width: 1699px) {
  .coming_soon header .logo_wrap picture > img {
    max-width: 160px;
  }
}
@media (max-width: 767px) {
  .coming_soon header .logo_wrap picture > img {
    max-width: 100px;
  }
}
.coming_soon .container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  max-width: 722px;
  height: 100%;
  padding-top: 85px;
  padding-bottom: 85px;
}
@media (max-width: 1699px) {
  .coming_soon .container {
    max-width: 690px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .coming_soon .container {
    max-width: 610px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .coming_soon .container {
    max-width: 95%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 639px) {
  .coming_soon .container {
    text-align: center;
  }
}
.coming_soon .container .logo_summit {
  max-width: 565px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.coming_soon .container .logo_summit img {
  width: 100%;
  margin-bottom: 30px;
}
.coming_soon .container h1 {
  width: 100%;
  color: #0F0F3D;
  text-align: center;
}
.coming_soon .container p.date {
  width: 100%;
  text-align: center;
  color: #5E1DE1;
}
.coming_soon .container p.date img {
  width: 60px;
  margin-right: 10px;
}

.page-template-funnel_coe_landing .session_item, .page-template-funnel_coe_landing .video_item {
  pointer-events: none;
}

.coe_bnr_top {
  position: relative;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .coe_bnr_top {
    border-radius: 0;
  }
}
@media (max-width: 639px) {
  .coe_bnr_top {
    padding-bottom: 50px !important;
  }
}
.coe_bnr_top .container {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .coe_bnr_top .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .coe_bnr_top .container {
    justify-content: flex-start;
  }
}
.coe_bnr_top .container .descr_wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .coe_bnr_top .container .descr_wrap {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 639px) {
  .coe_bnr_top .container .descr_wrap {
    width: 100%;
    text-align: left;
  }
}
.coe_bnr_top .container .slider_wrap {
  width: 50%;
  position: relative;
  padding-top: 17px;
  max-height: 450px;
  min-width: 600px;
  max-width: 600px;
  opacity: 0;
}
@media (max-width: 1300px) {
  .coe_bnr_top .container .slider_wrap {
    left: -50px;
  }
}
@media (max-width: 991px) {
  .coe_bnr_top .container .slider_wrap {
    width: 100%;
    margin-top: 80px;
    margin: 80px auto 0;
  }
}
@media (max-width: 767px) {
  .coe_bnr_top .container .slider_wrap {
    transform: scale(0.8);
    margin-top: 25px;
  }
}
@media (max-width: 639px) {
  .coe_bnr_top .container .slider_wrap {
    transform: scale(0.6);
    margin-top: -25px;
    margin-bottom: -80px;
    left: -167px;
  }
}
.coe_bnr_top .container .slider_wrap .top_ttl {
  position: absolute;
  top: -30px;
  left: 83px;
  width: 100%;
  color: #BEA4F3;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 28.6px */
  display: flex;
  align-items: center;
  align-content: center;
}
@media (max-width: 767px) {
  .coe_bnr_top .container .slider_wrap .top_ttl {
    left: 90px;
  }
}
.coe_bnr_top .container .slider_wrap .top_ttl span {
  color: #7B39FF;
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 22.1px */
  display: flex;
  width: 48px;
  height: 24px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #fff;
  margin: 0 8px;
}
.coe_bnr_top .btn.become_a_member {
  margin-left: 0 !important;
}
@media (max-width: 991px) {
  .coe_bnr_top .btn.become_a_member {
    margin: 0 auto !important;
  }
}
@media (max-width: 639px) {
  .coe_bnr_top .btn.become_a_member {
    margin-left: 0 !important;
  }
}
.coe_bnr_top .coe_bnr_slider {
  margin: 0 21px 0;
  max-width: 568px;
  width: 100%;
}
.coe_bnr_top .coe_bnr_slider ul.slick-dots {
  top: -34px;
  right: 0;
  left: initial;
  bottom: initial;
  pointer-events: none;
}
.coe_bnr_top .coe_bnr_slider .slick-arrow {
  border: none !important;
  outline: none !important;
}
.coe_bnr_top .coe_bnr_slider .slick-arrow.slick-next {
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  right: -70px;
}
.coe_bnr_top .coe_bnr_slider .slick-arrow.slick-next:before {
  background: #43297b;
  color: #d5b0ff;
  border: 1px solid rgba(229, 229, 229, 0.1411764706);
  width: 50px;
  height: 50px;
  border-radius: 120px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.coe_bnr_top .coe_bnr_slider .slick-arrow.slick-prev {
  display: none;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide {
  width: 450px;
  height: 400px !important;
  transition: transform 0.4s;
  position: relative;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide {
  opacity: 0;
  transition: all 0.5s;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-center {
  opacity: 1;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-center + .slick-slide {
  opacity: 1;
  pointer-events: none;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-center + .slick-slide + .slick-slide {
  opacity: 1;
  pointer-events: none;
}
.coe_bnr_top .coe_bnr_slider .item {
  max-width: 535px;
  width: 100%;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide {
  transform: scale(0.7) translate(640px);
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-active {
  transform: scale(1.1) translate(250px);
  z-index: 35;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-active .session_thumb_wr:before {
  display: none;
}
.coe_bnr_top .coe_bnr_slider .slick-slide.slick-current .session_item_footer {
  opacity: 1;
}
.coe_bnr_top .coe_bnr_slider .slick-slide.slick-current .session_thumb_wr:before {
  display: none;
}
.coe_bnr_top .coe_bnr_slider .session_thumb_wr {
  position: relative;
  pointer-events: none;
}
.coe_bnr_top .coe_bnr_slider .session_thumb_wr picture img {
  width: 100%;
}
.coe_bnr_top .coe_bnr_slider .session_thumb_wr:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5A36A4;
  z-index: 25;
  border-radius: 6px;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-center + .slick-slide {
  transform: scale(0.9) translate(-450px);
  z-index: 10;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-center + .slick-slide .session_thumb_wr:before {
  display: block !important;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5A36A4;
  z-index: 25;
  border-radius: 6px;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
  transform: scale(0.72) translate(-1099px);
  z-index: 5;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-center + .slick-slide + .item.slick-slide .session_thumb_wr:before {
  display: block !important;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4A2B8B;
  z-index: 25;
  border-radius: 6px;
}
.coe_bnr_top .coe_bnr_slider .item.slick-slide.slick-center {
  /* margin: 0 -10%; */
  transform: scale(1);
  z-index: 30;
}
.coe_bnr_top .coe_bnr_slider .slick-center:after {
  opacity: 0;
}
.coe_bnr_top .coe_bnr_slider .session_item {
  position: relative;
  margin: 0 10px 30px;
  width: 100%;
  transition: all 0.2s;
}
.coe_bnr_top .coe_bnr_slider .session_item a:hover {
  text-decoration: none;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_thumb_wr {
  margin-top: 12px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  transition: all 0.2s;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_thumb_wr:hover {
  box-shadow: 0 0px 12px 4px rgba(255, 255, 255, 0.2);
}
.coe_bnr_top .coe_bnr_slider .session_item .session_thumb_wr .session_presenter_wr {
  position: relative;
  background: #5E1DE1;
  padding: 12px 75px 12px 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 190%;
  min-height: 65px;
  border-radius: 0 0 6px 6px;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_thumb_wr .session_presenter_wr .session_presenter_list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_thumb_wr .session_presenter_wr .icon_wr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: 70px;
  background: #7a38ff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 6px 0;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_thumb_wr .session_presenter_wr .icon_wr img {
  width: 50px;
  height: 26px;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_item_footer {
  position: relative;
  padding: 0 0 0 100px;
  height: 55px;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 639px) {
  .coe_bnr_top .coe_bnr_slider .session_item .session_item_footer {
    margin-top: 15px;
  }
}
.coe_bnr_top .coe_bnr_slider .session_item .session_item_footer .session_date_wr {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 82px;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_item_footer .session_date_wr .label {
  height: 50%;
  border-radius: 6px 6px 0 0;
  background: #5E1DE1;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_item_footer .session_date_wr .date {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  border-radius: 0 0 6px 6px;
  background: #bea4f3;
  color: #0f0f3d;
  font-size: 16px;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_item_footer .time {
  color: #fff;
  font-size: 46px;
  padding-right: 46px;
  position: relative;
}
.coe_bnr_top .coe_bnr_slider .session_item .session_item_footer .time sup {
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 14px;
}

.page-template-funnel_showcase_landing .library_sliders .mobile_select {
  display: none;
}
.page-template-funnel_showcase_landing .sessions_slider.slick-slider.slick-dotted {
  margin-bottom: 50px;
}

.btn.btn_showcase {
  background: #ED47E9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 120px;
  max-width: 160px;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 5px;
  color: #fff;
}
.btn.btn_showcase:hover {
  background: #ff5bfc;
}

.showcase_bnr_top {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding-bottom: 175px;
}
.showcase_bnr_top .cover_image img {
  border-radius: 6px;
}
.showcase_bnr_top .bnr_logo {
  margin: 0 auto;
  text-align: center;
}
.showcase_bnr_top .bnr_logo img {
  display: block;
  margin: -100px auto;
  width: 610px;
}
@media (max-width: 639px) {
  .showcase_bnr_top .bnr_logo img {
    width: 400px;
    margin: -80px auto -50px;
  }
}
.showcase_bnr_top .p22, .showcase_bnr_top .upsell_content_reviews .reviews_wrap .review .name span:nth-child(1), .upsell_content_reviews .reviews_wrap .review .name .showcase_bnr_top span:nth-child(1), .showcase_bnr_top .upsell_2025_content_will_transform ul li, .upsell_2025_content_will_transform ul .showcase_bnr_top li, .showcase_bnr_top .upsell_content_sub_bnr_top .grey_wrap ul li, .upsell_content_sub_bnr_top .grey_wrap ul .showcase_bnr_top li, .showcase_bnr_top .upsell_2025_stats p span:nth-child(2), .upsell_2025_stats p .showcase_bnr_top span:nth-child(2), .showcase_bnr_top .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub, .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .showcase_bnr_top .sub, .showcase_bnr_top .sq25_3_reasons .item p:nth-child(2), .sq25_3_reasons .item .showcase_bnr_top p:nth-child(2), .showcase_bnr_top .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1), .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p .showcase_bnr_top span:nth-child(1), .showcase_bnr_top .showcase_steps .wrap .step .sub, .showcase_steps .wrap .step .showcase_bnr_top .sub, .showcase_bnr_top .top_list p, .showcase_bnr_top .reg_form h5, .reg_form .showcase_bnr_top h5, .showcase_bnr_top #program_faq .card .card-header h5 span b, #program_faq .card .card-header h5 span .showcase_bnr_top b, .showcase_bnr_top #program_faq .card .card-body li, #program_faq .card .card-body .showcase_bnr_top li,
.showcase_bnr_top #program_faq .card .card-body p,
#program_faq .card .card-body .showcase_bnr_top p, .showcase_bnr_top .ses_wrap .sssn.big .media-body .ssn_ttl, .ses_wrap .sssn.big .media-body .showcase_bnr_top .ssn_ttl, .showcase_bnr_top .modal_sssn .sssn_meta h1, .modal_sssn .sssn_meta .showcase_bnr_top h1, .showcase_bnr_top .circle_bnr_top .list_wrap p, .circle_bnr_top .list_wrap .showcase_bnr_top p, .showcase_bnr_top .circle_content_steps .wrap .step .sub, .circle_content_steps .wrap .step .showcase_bnr_top .sub, .showcase_bnr_top .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b, .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p .showcase_bnr_top b {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.showcase_bnr_top .btn_wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}
@media (max-width: 767px) {
  .showcase_bnr_top .btn_wrap {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .showcase_bnr_top .btn_wrap .btn {
    width: 100% !important;
    height: 58px !important;
    padding: 0 !important;
    line-height: 58px !important;
  }
}
.showcase_bnr_top .btn_wrap .btn_showcase {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .showcase_bnr_top .btn_wrap .btn_showcase {
    width: 100%;
    max-width: 100%;
  }
}
.showcase_bnr_top .btn_wrap .btn.btn_play {
  width: 210px;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  font-family: "Inter", serif;
  padding: 8px 12px 8px 12px;
  letter-spacing: 0;
  transition: all 0.2s;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  margin: 0 0 0 20px;
  border-radius: 46.194px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .showcase_bnr_top .btn_wrap .btn.btn_play {
    width: 100%;
    margin: 20px 0 0 0;
    justify-content: center;
  }
}
.showcase_bnr_top .btn_wrap .btn.btn_play:hover {
  opacity: 0.8;
}
.showcase_bnr_top .btn_wrap .btn.btn_play .icon-play {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 32px;
  top: 0;
  left: 0;
  margin-right: 5px;
  color: #F264EE;
  background: transparent;
  transition: all 0.1s;
  border-radius: 60px;
}
@media (max-width: 767px) {
  .showcase_bnr_top .btn_wrap .btn.btn_play .icon-play {
    font-size: 26px;
  }
}
.showcase_bnr_top .top_list {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 175px;
  max-width: 1260px;
  margin: 0 auto;
  background: rgba(29, 18, 51, 0.5);
  backdrop-filter: blur(28.5px);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 991px) {
  .showcase_bnr_top .top_list {
    flex-wrap: wrap;
    height: initial;
    padding: 15px 15px;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
  }
}
.showcase_bnr_top .top_list p {
  color: #fff;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  width: 23%;
  border-left: 3px solid #FFC7FD;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 639px) {
  .showcase_bnr_top .top_list p {
    width: 50%;
    margin-bottom: 10px;
  }
}
.showcase_bnr_top .top_list p span {
  color: #FF4EFA;
}

.showcase_content_people {
  padding-top: 300px;
  padding-bottom: 300px;
  max-width: 1600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 1300px) {
  .showcase_content_people {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media (max-width: 767px) {
  .showcase_content_people {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.showcase_content_people .cover_image img {
  object-fit: contain;
}
@media (max-width: 991px) {
  .showcase_content_people .cover_image img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .showcase_content_people .cover_image img {
    display: none;
  }
}
.showcase_content_people p {
  color: #552B89;
}
@media (max-width: 991px) {
  .showcase_content_people p {
    max-width: 300px;
    background: #fff;
  }
}
.showcase_content_people p b {
  color: #FF4EFA;
}

.showcase_exclusive {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: center;
  margin-bottom: 70px;
}
@media (max-width: 1300px) {
  .showcase_exclusive {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .showcase_exclusive {
    flex-wrap: wrap;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
.showcase_exclusive .img_wrap {
  width: 50%;
  border-radius: 6px 0 0 6px;
  background: #ddd;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .showcase_exclusive .img_wrap {
    width: 100%;
    height: 300px;
    border-radius: 6px 6px 0 0;
  }
}
.showcase_exclusive .descr {
  width: 50%;
  border-radius: 0 6px 6px 0;
  background: #AA2294;
  color: #fff;
  padding: 75px 70px 135px;
}
@media (max-width: 1300px) {
  .showcase_exclusive .descr {
    padding: 50px 30px 100px;
  }
}
@media (max-width: 767px) {
  .showcase_exclusive .descr {
    width: 100%;
    border-radius: 0 0 6px 6px;
  }
}
.showcase_exclusive .exc_logo {
  width: 250px;
  position: absolute;
  bottom: -40px;
  left: calc(50% - 125px);
}
.showcase_exclusive .exc_logo img {
  width: 100%;
}

.showcase_exclusive_bottom p {
  color: #552B89;
}
.showcase_exclusive_bottom p b {
  color: #FF4EFA;
}

.showcase_steps .down_icon_new.mid:hover {
  background: #ED47E9;
}
.showcase_steps > p {
  color: #552B89;
}
.showcase_steps > p b {
  color: #FF4EFA;
}
.showcase_steps .wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 639px) {
  .showcase_steps .wrap {
    flex-wrap: wrap;
  }
}
.showcase_steps .wrap .step {
  width: calc(33.33% - 15px);
  max-width: 290px;
  margin: 15px 15px;
  padding: 22px;
  border-radius: 6px;
  border: 1px solid #DDD;
}
@media (max-width: 639px) {
  .showcase_steps .wrap .step {
    width: 100%;
  }
}
.showcase_steps .wrap .step .ttl {
  color: #AA2294;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 48px */
}
.showcase_steps .wrap .step .sub {
  color: #0F0F3D;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  margin-bottom: 20px;
}
.showcase_steps .wrap .step .txt {
  color: #0F0F3D;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}

.showcase_content_video .video_wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 930px;
}
.showcase_content_video .video_wrapper .icon_main {
  display: none;
}
.showcase_content_video .video_wrapper .icon_play_pink {
  display: block !important;
  width: 180px;
}
.showcase_content_video .video_wrapper .cta_wrap {
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  border-radius: 0 0 6px 6px;
}
@media (max-width: 991px) {
  .showcase_content_video .video_wrapper .cta_wrap {
    padding: 40px 15px;
  }
}

.showcase_join {
  padding-top: 200px;
  padding-bottom: 200px;
  overflow: hidden;
}
.showcase_join .success {
  background: #5E1DE1;
  border-radius: 6px 0 6px 0;
  padding: 2px 10px;
  color: #FFF;
  font-family: Poppins;
  font-size: 13.424px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 21.478px */
  margin: 0 auto 30px;
  display: block;
  text-align: center;
  max-width: 140px;
}
@media (max-width: 991px) {
  .showcase_join .success {
    margin-bottom: 10px;
  }
}
.showcase_join > p {
  color: #552B89;
  position: relative;
}
@media (max-width: 991px) {
  .showcase_join > p {
    max-width: 300px;
  }
}
.showcase_join > p b {
  color: #FF4EFA;
}
.showcase_join > p .face {
  position: absolute;
  display: block;
}
.showcase_join > p .face img {
  width: 100%;
}
@media (max-width: 991px) {
  .showcase_join > p .face img {
    transform: scale(0.8);
  }
}
@media (max-width: 479px) {
  .showcase_join > p .face img {
    transform: scale(0.6);
  }
}
.showcase_join > p .face._1 {
  width: 65px;
  top: -120px;
  right: -10px;
}
.showcase_join > p .face._2 {
  width: 105px;
  left: -180px;
  bottom: -40px;
}
@media (max-width: 639px) {
  .showcase_join > p .face._2 {
    left: -100px;
  }
}
@media (max-width: 479px) {
  .showcase_join > p .face._2 {
    left: -75px;
  }
}
.showcase_join > p .face._3 {
  width: 90px;
  right: -140px;
  bottom: -90px;
}
@media (max-width: 639px) {
  .showcase_join > p .face._3 {
    right: -50px;
  }
}

.showcase_slider_reviews_btm {
  max-width: 720px;
  padding: 0px 15px 0 15px;
  margin: 0 auto;
}
.showcase_slider_reviews_btm .slider_reviews_btm {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.showcase_slider_reviews_btm .slider_reviews_btm .slick-arrow {
  top: calc(100% + 50px);
  background: #f2f2f2;
}
.showcase_slider_reviews_btm .slider_reviews_btm .slick-arrow:before {
  color: #8C40ED;
}
.showcase_slider_reviews_btm .slider_reviews_btm .slick-arrow.slick-prev {
  left: calc(50% - 50px);
}
.showcase_slider_reviews_btm .slider_reviews_btm .slick-arrow.slick-next {
  right: calc(50% - 50px);
}
.showcase_slider_reviews_btm .slider_reviews_btm .slide {
  display: flex;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 639px) {
  .showcase_slider_reviews_btm .slider_reviews_btm .slide {
    padding-left: 0;
    padding-right: 0;
  }
}
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr {
  width: 100%;
}
@media (max-width: 767px) {
  .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .quote {
  color: #61319F;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 41.6px */
  margin-bottom: 40px;
}
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info {
  line-height: 160%;
  display: flex;
  align-items: center;
  align-content: center;
}
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info picture img {
  display: block;
  max-width: 84px;
  margin-right: 20px;
}
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p {
  color: #0f0f3d;
  margin-bottom: 0;
  line-height: 120%;
}
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1) {
  font-weight: 600;
  display: block;
  color: #0F0F3D;
}
.showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(2) {
  display: block;
  font-style: italic;
  color: #61319F;
  padding-top: 6px;
}

.showcase_content_cta {
  border-radius: 6px;
  background: #F8F8F8;
  max-width: 1060px;
  margin: 160px auto 0;
  padding-left: 15px;
  padding-right: 15px;
}
.showcase_content_cta p {
  color: #0F0F3D;
  text-align: center;
}

.page-template-mmbrs_support_video_page .content_wr {
  background: linear-gradient(0deg, #0F0F3D 0%, #0F0F3D 100%), radial-gradient(89.52% 49.34% at 50% 0%, rgba(107, 70, 179, 0.55) 0%, rgba(107, 70, 179, 0) 100%), #241642 !important;
}

.href_link {
  text-decoration: underline;
  color: #212529 !important;
}
.href_link:hover {
  text-decoration: initial;
}

.page-template-funnel_squeeze_2025 .hs_form_wrap.descr_top .form_wrap {
  padding-top: 0;
}
.page-template-funnel_squeeze_2025 .hs_form_wrap.descr_top .descr {
  display: none !important;
}
.page-template-funnel_squeeze_2025 .hs_form_wrap.descr_top h2,
.page-template-funnel_squeeze_2025 .hs_form_wrap.descr_top .sub {
  display: none !important;
}

.v_short .sq25_success .review_quote {
  padding-top: 150px;
}
@media (max-width: 991px) {
  .v_short .sq25_success .review_quote {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .v_short .sq25_success .review_quote {
    padding-top: 60px;
  }
}
.v_short .sq25_powder_packed .sq25_ttl, .v_short .sq25_powder_packed .sq25_form_descr h2, .sq25_form_descr .v_short .sq25_powder_packed h2, .v_short .sq25_powder_packed body .hs_form_wrap.descr_top .descr h2, body .hs_form_wrap.descr_top .descr .v_short .sq25_powder_packed h2 {
  display: none !important;
}
.v_short .sq25_powder_packed > .p20, .v_short body .hs_form_wrap.descr_top .descr .sq25_powder_packed > .sub, body .hs_form_wrap.descr_top .descr .v_short .sq25_powder_packed > .sub, .v_short .modal_sssn .suport_video_page_descr .sq25_powder_packed > .title, .modal_sssn .suport_video_page_descr .v_short .sq25_powder_packed > .title, .v_short .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .sq25_powder_packed > .quote, .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .v_short .sq25_powder_packed > .quote {
  display: none !important;
}
.v_short .sq25_powder_packed .nav-tabs {
  display: none;
}
.v_short .sq25_form_descr {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .v_short .sq25_form_descr {
    margin-top: 20px;
  }
}
.v_short .sq25_form_descr h2 {
  max-width: 480px;
  margin: 0 auto;
}

.cp_1 {
  color: #f75289;
}

.cp_2 {
  color: #b70074;
}

.cp_3 {
  color: #fb5290;
}

.sq25_ttl, .sq25_form_descr h2, body .hs_form_wrap.descr_top .descr h2 {
  font-size: 75px;
  font-weight: 700;
  line-height: 100%;
  color: #0f0f3d;
  text-align: center;
}
@media (max-width: 991px) {
  .sq25_ttl, .sq25_form_descr h2, body .hs_form_wrap.descr_top .descr h2 {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .sq25_ttl, .sq25_form_descr h2, body .hs_form_wrap.descr_top .descr h2 {
    font-size: 44px;
  }
}

.header_menu.container {
  max-width: 1275px;
}
.header_menu.top_10 .btn.btn_play {
  font-weight: 500 !important;
  padding: 3px 22px !important;
}
.header_menu .navbar {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .header_menu .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }
}
.header_menu .navbar .logo img {
  width: 100%;
  max-width: 200px;
}
.header_menu .navbar .navbar-toggle {
  background: none;
  border: none;
  outline: none;
}
.header_menu .navbar .navbar-toggle .hamburger .line {
  width: 25px;
  height: 2px;
  background-color: rgba(29, 29, 81, 0.7725490196);
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}
.header_menu .navbar .navbar-toggle .hamburger:hover {
  cursor: pointer;
}
.header_menu #main_navbar {
  flex-grow: initial;
}
.header_menu #main_navbar ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  align-content: center;
}
@media (max-width: 991px) {
  .header_menu #main_navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .header_menu #main_navbar ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
.header_menu #main_navbar ul li a.link {
  color: #0f0f3d;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  transition: all 0.2s;
  margin: 0 11px;
}
.header_menu #main_navbar ul li a.link:hover {
  color: #5E1DE1;
}
.header_menu #main_navbar ul li a.link span {
  color: #5E1DE1;
}
.header_menu #main_navbar ul li a.btn_gradient_purple {
  padding: 5px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
  width: 195px;
}
.header_menu #main_navbar ul li a.btn_gradient_purple img {
  max-width: 20px;
  margin-right: 3px;
  margin-left: -5px;
}

.btn.sq25_btn_reg {
  border-radius: 60px;
  background: #5E1DE1;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 250px;
  height: 60px;
  line-height: 60px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.15);
  border-radius: 0;
}
@media (max-width: 767px) {
  .btn.sq25_btn_reg {
    padding: 10px 15px;
    max-width: 240px;
    height: 50px;
    line-height: 50px;
  }
}
.btn.sq25_btn_reg:hover {
  background: #6e33e5;
}
.btn.sq25_btn_reg.without_small p {
  top: 0;
}
.btn.sq25_btn_reg.without_small p small {
  display: none;
}
.btn.sq25_btn_reg.without_small p b {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .btn.sq25_btn_reg svg {
    width: 30px;
    min-width: 30px;
  }
}
.btn.sq25_btn_reg p {
  margin-bottom: 0 !important;
  text-align: left !important;
  position: relative;
  padding-left: 10px;
}
.btn.sq25_btn_reg p b {
  display: block;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 18px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
  margin-bottom: -2px;
}
@media (max-width: 767px) {
  .btn.sq25_btn_reg p b {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .btn.sq25_btn_reg p b {
    font-size: 12px;
  }
}
.btn.sq25_btn_reg p small {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
}
@media (max-width: 767px) {
  .btn.sq25_btn_reg p small {
    font-size: 12px;
  }
}
.btn.sq25_btn_reg p small span {
  font-weight: 600;
}

.sq25_bnr_top {
  position: relative;
  background: #bc1c64;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .sq25_bnr_top {
    border-radius: 0;
  }
}
.sq25_bnr_top.rec_ty h1 {
  font-size: 60px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .sq25_bnr_top.rec_ty h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .sq25_bnr_top.rec_ty h1 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .sq25_bnr_top .summit_logo {
    max-width: 195px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .sq25_bnr_top .summit_logo picture {
    width: 100%;
    max-width: 220px;
  }
}
@media (max-width: 479px) {
  .sq25_bnr_top .p_date {
    font-size: 16px !important;
  }
}
.sq25_bnr_top .label {
  display: block;
  width: 311px;
  margin: 54px auto 10px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #f7518e;
  padding: 1px 10px;
  text-align: center;
  border-radius: 40px;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .sq25_bnr_top .label {
    margin-top: 45px;
  }
}
@media (max-width: 639px) {
  .sq25_bnr_top .label {
    max-height: 22px;
  }
}
.sq25_bnr_top h1 {
  font-size: 100px;
  text-shadow: 0px 2px 15px rgba(101, 0, 72, 0.8);
  line-height: 90%;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
}
@media (max-width: 1300px) {
  .sq25_bnr_top h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .sq25_bnr_top h1 {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .sq25_bnr_top h1 {
    font-size: 42px;
  }
}
@media (max-width: 639px) {
  .sq25_bnr_top h1 {
    font-size: 36px;
  }
}
.sq25_bnr_top h1 span {
  color: #ff80ae;
}
.sq25_bnr_top .h40 span, .sq25_bnr_top .rec25_bnt_top_stats .item span:nth-child(1) span, .rec25_bnt_top_stats .item .sq25_bnr_top span:nth-child(1) span, .sq25_bnr_top .upsel_price_build .price_block .mid .price span, .upsel_price_build .price_block .mid .sq25_bnr_top .price span, .sq25_bnr_top .upsell_2025_stats p span:nth-child(1) span, .upsell_2025_stats p .sq25_bnr_top span:nth-child(1) span, .sq25_bnr_top .sq25_success .slider_quote_reviews .rev .descr .copy span, .sq25_success .slider_quote_reviews .rev .descr .sq25_bnr_top .copy span, .sq25_bnr_top .reg_form h2 span, .reg_form .sq25_bnr_top h2 span, .sq25_bnr_top #banner.pre_smmt .bnr_top h1 span, #banner.pre_smmt .bnr_top .sq25_bnr_top h1 span, .sq25_bnr_top body .step_1 b span, body .step_1 .sq25_bnr_top b span,
.sq25_bnr_top body .step_2 b span,
body .step_2 .sq25_bnr_top b span,
.sq25_bnr_top body .step_3 b span,
body .step_3 .sq25_bnr_top b span {
  color: #ff80ae;
}

.sq25_bnt_top_stats {
  background: #bc1c64;
  position: relative;
  max-width: 1600px;
  padding: 65px 15px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media (max-width: 1300px) {
  .sq25_bnt_top_stats {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .sq25_bnt_top_stats {
    padding: 30px 15px;
  }
}
@media (max-width: 767px) {
  .sq25_bnt_top_stats {
    border-radius: 0;
  }
}
@media (max-width: 639px) {
  .sq25_bnt_top_stats {
    justify-content: space-between;
  }
}
.sq25_bnt_top_stats .item {
  margin-bottom: 0;
  color: #fff;
  margin: 0 75px 0;
  font-family: "Inter";
  text-align: center;
}
@media (max-width: 1300px) {
  .sq25_bnt_top_stats .item {
    margin: 0 50px;
  }
}
@media (max-width: 991px) {
  .sq25_bnt_top_stats .item {
    margin: 0 25px;
    line-height: 100%;
  }
}
@media (max-width: 767px) {
  .sq25_bnt_top_stats .item {
    margin: 0 15px;
  }
}
@media (max-width: 639px) {
  .sq25_bnt_top_stats .item {
    margin: 0 7.5px;
  }
}
.sq25_bnt_top_stats .item span:nth-child(1) {
  font-size: 70px;
  font-weight: 700;
  line-height: 120%;
  display: block;
}
@media (max-width: 1300px) {
  .sq25_bnt_top_stats .item span:nth-child(1) {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .sq25_bnt_top_stats .item span:nth-child(1) {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .sq25_bnt_top_stats .item span:nth-child(1) {
    font-size: 26px;
  }
}
@media (max-width: 639px) {
  .sq25_bnt_top_stats .item span:nth-child(1) {
    font-size: 24px;
  }
}
.sq25_bnt_top_stats .item span:nth-child(2) {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 991px) {
  .sq25_bnt_top_stats .item span:nth-child(2) {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sq25_bnt_top_stats .item span:nth-child(2) {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .sq25_bnt_top_stats .item span:nth-child(2) {
    font-size: 12px;
  }
}

.sq25_content_text_animation {
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.sq25_content_text_animation .rec_ttl {
  text-transform: uppercase;
}
.sq25_content_text_animation .rec_ttl span {
  color: #5e1de1;
}
.sq25_content_text_animation .label {
  background: #fb5290;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0px 5px;
  width: 213px;
  margin: 5px auto 24px;
  border-radius: 60px;
}
.sq25_content_text_animation .text_animation_wrap {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  color: #0f0f3d;
  font-family: Poppins;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 75px */
  text-transform: uppercase;
}
@media (max-width: 1450px) {
  .sq25_content_text_animation .text_animation_wrap {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .sq25_content_text_animation .text_animation_wrap {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .sq25_content_text_animation .text_animation_wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 639px) {
  .sq25_content_text_animation .text_animation_wrap {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .sq25_content_text_animation .text_animation_wrap {
    font-size: 26px;
  }
}
.sq25_content_text_animation .text_animation_wrap > span {
  text-align: right;
  width: 45%;
}
@media (max-width: 767px) {
  .sq25_content_text_animation .text_animation_wrap > span {
    width: 100%;
    text-align: center;
  }
}
.sq25_content_text_animation .text_animation_wrap > .wrap {
  text-align: left;
  width: 55%;
}
@media (max-width: 767px) {
  .sq25_content_text_animation .text_animation_wrap > .wrap {
    width: 100%;
    text-align: center;
  }
}
.sq25_content_text_animation .text_animation_wrap .text_animation {
  padding-left: 10px;
  padding-right: 0;
  display: inline-block;
  padding-right: 5px;
  color: #ff679f;
  border-right: 5px solid #ff679f;
}
.sq25_content_text_animation .text_animation_wrap .text_animation.color_0 {
  color: #b70074;
  animation: 1s infinite blink_1;
}
.sq25_content_text_animation .text_animation_wrap .text_animation.color_1 {
  color: #df376f;
  animation: 1s infinite blink_2;
}
.sq25_content_text_animation .text_animation_wrap .text_animation.color_2 {
  color: #ff679f;
  animation: 1s infinite blink_3;
}
@keyframes blink_1 {
  0% {
    border-color: rgba(0, 0, 0, 0);
  }
  49.99% {
    border-color: rgba(0, 0, 0, 0);
  }
  50% {
    border-color: rgb(183, 0, 116);
  }
  99.5% {
    border-color: rgb(183, 0, 116);
  }
}
@keyframes blink_2 {
  0% {
    border-color: rgba(0, 0, 0, 0);
  }
  49.99% {
    border-color: rgba(0, 0, 0, 0);
  }
  50% {
    border-color: rgb(223, 55, 111);
  }
  99.5% {
    border-color: rgb(223, 55, 111);
  }
}
@keyframes blink_3 {
  0% {
    border-color: rgba(0, 0, 0, 0);
  }
  49.99% {
    border-color: rgba(0, 0, 0, 0);
  }
  50% {
    border-color: rgb(255, 103, 159);
  }
  99.5% {
    border-color: rgb(255, 103, 159);
  }
}

.sq25_speakers_top {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sq25_speakers_top {
    margin-bottom: 70px;
  }
}
.sq25_speakers_top .wrap_big {
  display: flex;
  justify-content: center;
  margin-bottom: 23px;
}
@media (max-width: 767px) {
  .sq25_speakers_top .wrap_big {
    margin-bottom: 15px;
  }
}
.sq25_speakers_top .wrap_big picture {
  margin: 0 14px;
}
@media (max-width: 767px) {
  .sq25_speakers_top .wrap_big picture {
    margin: 0 7px;
  }
}
.sq25_speakers_top .wrap_small {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .sq25_speakers_top .wrap_small {
    padding-left: 2px;
    padding-right: 2px;
  }
}
.sq25_speakers_top .wrap_small picture {
  width: calc(25% - 30px);
  margin: 0 15px 33px;
}
@media (max-width: 767px) {
  .sq25_speakers_top .wrap_small picture {
    width: calc(33.33% - 20px);
    margin: 0 10px 15px;
  }
}
@media (max-width: 639px) {
  .sq25_speakers_top .wrap_small picture {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
}

.sq25_bnr_leaders {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.sq25_bnr_leaders .down_icon_new {
  position: absolute;
  top: -38px;
  margin: 0 auto;
  width: 77px;
  height: 77px;
  background: url(../img/pages/sq25/arrow_down.png) no-repeat 50% 50%/cover !important;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .sq25_bnr_leaders .down_icon_new {
    width: 35px;
    height: 35px;
    top: -18px;
  }
}
.sq25_bnr_leaders .down_icon_new:before, .sq25_bnr_leaders .down_icon_new:after {
  display: none;
}
.sq25_bnr_leaders .down_icon_new span {
  display: none;
}
.sq25_bnr_leaders .down_icon_new span:before {
  display: none;
}
.sq25_bnr_leaders .head {
  border-radius: 20px 20px 0 0;
  background: #5f0088;
  position: relative;
  padding-bottom: 92px;
}
@media (max-width: 991px) {
  .sq25_bnr_leaders .head {
    padding-bottom: 40px;
  }
}
.sq25_bnr_leaders .head .label {
  display: block;
  width: 150px;
  margin: 40px auto 10px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #f7518e;
  padding: 1px 0px;
  text-align: center;
  border-radius: 40px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sq25_bnr_leaders .head .label {
    margin-top: 30px;
    font-size: 12px;
  }
}
.sq25_bnr_leaders .head .h40, .sq25_bnr_leaders .head .rec25_bnt_top_stats .item span:nth-child(1), .rec25_bnt_top_stats .item .sq25_bnr_leaders .head span:nth-child(1), .sq25_bnr_leaders .head .upsel_price_build .price_block .mid .price, .upsel_price_build .price_block .mid .sq25_bnr_leaders .head .price, .sq25_bnr_leaders .head .upsell_2025_stats p span:nth-child(1), .upsell_2025_stats p .sq25_bnr_leaders .head span:nth-child(1), .sq25_bnr_leaders .head .sq25_success .slider_quote_reviews .rev .descr .copy, .sq25_success .slider_quote_reviews .rev .descr .sq25_bnr_leaders .head .copy, .sq25_bnr_leaders .head .reg_form h2, .reg_form .sq25_bnr_leaders .head h2, .sq25_bnr_leaders .head #banner.pre_smmt .bnr_top h1, #banner.pre_smmt .bnr_top .sq25_bnr_leaders .head h1, .sq25_bnr_leaders .head body .step_1 b, body .step_1 .sq25_bnr_leaders .head b,
.sq25_bnr_leaders .head body .step_2 b,
body .step_2 .sq25_bnr_leaders .head b,
.sq25_bnr_leaders .head body .step_3 b,
body .step_3 .sq25_bnr_leaders .head b {
  text-transform: uppercase;
}
.sq25_bnr_leaders .head .lh100 {
  line-height: 100%;
}
.sq25_bnr_leaders .list_wrap {
  background: #ff1fad;
  position: relative;
}

.sq25_partners {
  max-width: 1600px;
  margin: 0 auto;
  padding: 44px 192px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  position: relative;
}
@media (max-width: 991px) {
  .sq25_partners {
    padding: 30px 60px;
  }
}
@media (max-width: 767px) {
  .sq25_partners {
    padding: 30px 15px;
  }
}
@media (max-width: 639px) {
  .sq25_partners {
    padding: 20px 15px;
  }
}
.sq25_partners > p {
  position: absolute;
  top: -30px;
  left: 0;
  text-align: center;
  align-items: center;
  align-content: center;
  width: 100%;
  color: #fff;
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sq25_partners > p {
    font-size: 12px;
    top: -20px;
  }
}
@media (max-width: 991px) {
  .sq25_partners picture {
    margin: 0 15px;
  }
}

.sq25_content_one_event {
  padding-top: 85px;
}
@media (max-width: 991px) {
  .sq25_content_one_event {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .sq25_content_one_event {
    padding-top: 40px;
  }
}
.sq25_content_one_event .label {
  display: block;
  width: 385px;
  margin: 60px auto 10px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #f7518e;
  padding: 1px 0px;
  text-align: center;
  border-radius: 40px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .sq25_content_one_event .label {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .sq25_content_one_event .label {
    margin-top: 15px;
  }
}
@media (max-width: 639px) {
  .sq25_content_one_event .label {
    display: inline-block;
    max-width: 100%;
    padding: 5px 15px;
    display: block;
    margin: 0 auto 20px;
    font-size: 12px;
  }
}

#sq25_prices_build.sq25_prices_build .container {
  max-width: 600px;
}
#sq25_prices_build.sq25_prices_build .table .row_wrap {
  justify-content: center;
}
#sq25_prices_build.sq25_prices_build .table .row_wrap .column {
  width: calc(50% - 30px) !important;
}
#sq25_prices_build.sq25_prices_build .show_more {
  width: calc(50% - 30px) !important;
}
@media (max-width: 991px) {
  #sq25_prices_build.sq25_prices_build .show_more {
    position: relative;
    right: 15px;
  }
}
#sq25_prices_build.sq25_prices_build .table .row_wrap .column:nth-child(2) {
  display: none !important;
}

.sq25_prices_build {
  position: relative;
  top: -1px;
  padding-top: 62px;
  padding-bottom: 50px;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 991px) {
  .sq25_prices_build {
    overflow: scroll;
  }
}
.sq25_prices_build.ppc .table .row_wrap {
  justify-content: center;
}
@media (max-width: 767px) {
  .sq25_prices_build.ppc .table .row_wrap {
    justify-content: flex-start;
  }
}
.sq25_prices_build.dublicate .sq25_footer_price .row_wrap {
  justify-content: center;
}
.sq25_prices_build.dublicate .not_show {
  display: none !important;
}
.sq25_prices_build .addon_wrapper {
  border-radius: 10px;
  background: linear-gradient(0deg, #B70074 0%, #B70074 100%), linear-gradient(0deg, #AA2294 0%, #AA2294 100%), linear-gradient(0deg, #4F1246 0%, #4F1246 100%), linear-gradient(0deg, #AA2294 0%, #AA2294 100%), linear-gradient(0deg, #E3D0E0 0%, #E3D0E0 100%), linear-gradient(264deg, #FDD394 -25.34%, #936635 82.41%), #F5F5F5;
  margin: 100px 15px -40px;
  padding: 60px 55px;
  color: #fff;
  position: relative;
}
@media (max-width: 991px) {
  .sq25_prices_build .addon_wrapper {
    margin: 80px 30px -40px 15px;
    padding: 40px 55px;
  }
}
.sq25_prices_build .addon_wrapper .checkbox_wrap {
  margin: 0;
  border: none !important;
  text-align: left;
  position: relative;
}
.sq25_prices_build .addon_wrapper .checkbox_wrap label {
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 600;
}
@media (max-width: 991px) {
  .sq25_prices_build .addon_wrapper .checkbox_wrap label {
    font-size: 16px;
  }
}
.sq25_prices_build .addon_wrapper .checkbox_wrap input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.sq25_prices_build .addon_wrapper .checkbox_wrap input[type=checkbox] + .checkbox-label:before {
  content: "";
  background: #b60073;
  border-radius: 100%;
  border: 2px solid #fff;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -35px;
  top: 0;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.sq25_prices_build .addon_wrapper .checkbox_wrap input[type=checkbox]:checked + .checkbox-label:before {
  background-color: #fff;
  box-shadow: inset 0 0 0 4px #C500E4;
}
.sq25_prices_build .addon_wrapper .checkbox_wrap input[type=checkbox]:focus + .checkbox-label:before {
  outline: none;
  border-color: #fff;
}
.sq25_prices_build .addon_wrapper .checkbox_wrap input[type=checkbox]:disabled + .checkbox-label:before {
  box-shadow: inset 0 0 0 4px #C500E4;
  border-color: #570065;
  background: #570065;
}
.sq25_prices_build .addon_wrapper .checkbox_wrap input[type=checkbox] + .checkbox-label:empty:before {
  margin-right: 0;
}
.sq25_prices_build .addon_wrapper .addone_price {
  position: absolute;
  font-family: Inter, serif;
  text-align: center;
  font-style: normal;
  line-height: 90%;
  font-size: 32px;
  font-weight: 700;
  max-width: 150px;
  right: 110px;
  top: 42px;
}
@media (max-width: 991px) {
  .sq25_prices_build .addon_wrapper .addone_price {
    max-width: 130px;
    font-size: 28px;
    right: 130px;
    top: 27px;
  }
}
.sq25_prices_build .addon_wrapper .addone_price .payment_type {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .sq25_prices_build .addon_wrapper .addone_price .payment_type {
    font-size: 14px;
  }
}
.sq25_prices_build .btn_purchase {
  position: relative;
  display: block;
  width: 100%;
  top: 80px;
  margin: 0 -20px -100px;
  color: #b70074;
  text-align: center;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.727px;
  text-transform: uppercase;
  padding: 12px 15px;
  border-radius: 6px;
  background: #fff;
  transition: all 0.2s;
}
@media (max-width: 639px) {
  .sq25_prices_build .btn_purchase {
    font-size: 12px;
    padding: 7px 15px;
  }
}
.sq25_prices_build .btn_purchase:hover {
  text-decoration: initial;
  background: #dae2ff;
}
.sq25_prices_build .scroll_overview {
  padding: 40px 0 0;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .sq25_prices_build .scroll_overview {
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: auto;
    padding-left: 5px;
    padding-top: 70px;
    padding-bottom: 70px;
    margin-bottom: 0px;
  }
}
.sq25_prices_build .swipe_txt {
  position: relative;
  display: none;
}
@media (max-width: 767px) {
  .sq25_prices_build .swipe_txt {
    display: block;
  }
}
.sq25_prices_build .swipe_txt p {
  position: absolute;
  top: 15px;
  font-size: 12px;
  width: 100%;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
  color: #b70074;
  font-family: "Inter";
  letter-spacing: 0.5px;
  font-weight: 500;
}
.sq25_prices_build .wrapper1 {
  margin-bottom: -20px;
  pointer-events: none;
  position: relative;
  display: none !important;
}
@media (max-width: 991px) {
  .sq25_prices_build .wrapper1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: scroll;
    transform: scale(0.5);
  }
}
.sq25_prices_build .wrapper1 .container {
  border: none;
  background: none;
  text-align: center;
  min-width: 1040px;
}
@media (max-width: 991px) {
  .sq25_prices_build .wrapper1 .container {
    min-width: 860px;
  }
}
.sq25_prices_build .container {
  max-width: 1300px;
  min-width: 860px;
  padding-left: 15px;
  padding-right: 15px;
}
.sq25_prices_build .show_more {
  background: #ffd4e2;
  display: flex;
  padding: 0 15px;
  width: calc(33.33% - 30px);
  height: 80px;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  cursor: pointer;
  position: relative;
  float: right;
  border-radius: 0 0 6px 6px;
  margin: 0 15px 15px;
}
@media (max-width: 991px) {
  .sq25_prices_build .show_more {
    width: calc(37% - 30px);
    height: 60px;
  }
}
.sq25_prices_build .show_more:hover {
  opacity: 0.8;
}
.sq25_prices_build .show_more:before {
  content: "\e80a";
  font-family: "Fontello";
  display: block;
  position: absolute;
  left: 72px;
  top: 53%;
  transform: translate(0, -53%);
  color: #b70074;
  font-size: 18px;
}
@media (max-width: 991px) {
  .sq25_prices_build .show_more:before {
    left: 30px;
  }
}
.sq25_prices_build .show_more:after {
  content: "\e80a";
  font-family: "Fontello";
  display: block;
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translate(0, -50%);
  color: #b70074;
  font-size: 18px;
}
@media (max-width: 991px) {
  .sq25_prices_build .show_more:after {
    right: 30px;
  }
}
.sq25_prices_build .show_more.collapsed:after, .sq25_prices_build .show_more.collapsed:before {
  content: "\e80b";
}
.sq25_prices_build .show_more.first {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .sq25_prices_build .show_more.first {
    margin-bottom: 10px;
  }
}
.sq25_prices_build .show_more p {
  margin-bottom: 0;
  color: #b70074;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  font-family: "Inter";
  text-align: center;
}
@media (max-width: 991px) {
  .sq25_prices_build .show_more p {
    font-size: 13px;
  }
}
.sq25_prices_build .show_more p img {
  position: relative;
  top: -1px;
  width: 100%;
  max-width: 50px;
  max-height: 40px;
  margin-right: 7px;
}
@media (max-width: 991px) {
  .sq25_prices_build .show_more p img {
    transform: scale(0.7);
  }
}
.sq25_prices_build .table {
  margin-bottom: 0;
  padding: 0 0px;
}
.sq25_prices_build .table.descr .column:nth-child(1) {
  padding-right: 15px;
}
@media (max-width: 767px) {
  .sq25_prices_build .table.descr .column:nth-child(1) {
    padding-left: 10px;
  }
}
.sq25_prices_build .table.descr .column:nth-child(1) p,
.sq25_prices_build .table.descr .column:nth-child(1) ul li {
  margin-bottom: 0;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 21px */
  color: #000;
}
@media (max-width: 991px) {
  .sq25_prices_build .table.descr .column:nth-child(1) p,
  .sq25_prices_build .table.descr .column:nth-child(1) ul li {
    font-size: 13px;
    padding: 0 5px;
  }
}
.sq25_prices_build .table.descr .column:nth-child(1) p small,
.sq25_prices_build .table.descr .column:nth-child(1) ul li small {
  display: block;
  margin-top: -3px;
  font-style: italic;
}
.sq25_prices_build .table.descr .column:nth-child(1) ul {
  margin-bottom: 0;
}
.sq25_prices_build .table.descr .column:nth-child(2) {
  background: #f0edfa;
}
.sq25_prices_build .table.descr .column:nth-child(2), .sq25_prices_build .table.descr .column:nth-child(3) {
  text-align: center;
  color: #000;
  display: flex;
  justify-content: center;
}
.sq25_prices_build .table.descr .column:nth-child(2) p, .sq25_prices_build .table.descr .column:nth-child(3) p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  width: 100%;
  font-family: "Inter";
}
.sq25_prices_build .table.descr .column:nth-child(2) p.reg, .sq25_prices_build .table.descr .column:nth-child(3) p.reg {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .sq25_prices_build .table.descr .column:nth-child(2) p, .sq25_prices_build .table.descr .column:nth-child(3) p {
    font-size: 13px;
    padding: 0 5px;
  }
}
.sq25_prices_build .table.descr .column:nth-child(2) img, .sq25_prices_build .table.descr .column:nth-child(3) img {
  max-width: 24px;
}
@media (max-width: 991px) {
  .sq25_prices_build .table.descr .column:nth-child(2) img, .sq25_prices_build .table.descr .column:nth-child(3) img {
    max-width: 16px;
  }
}
.sq25_prices_build .table.descr .column:nth-child(3) {
  background: #fff0f5;
}
.sq25_prices_build .table.descr .column {
  position: relative;
}
.sq25_prices_build .table.descr .column.free {
  background: #e5deff;
  border-radius: 10px 10px 0 0;
  padding: 0 !important;
  letter-spacing: 1.9px;
}
.sq25_prices_build .table.descr .column.premium {
  background: #b70074;
  color: #fff;
  padding: 10px 10px !important;
  border-radius: 10px 10px 0 0;
  position: relative;
  overflow: visible;
  letter-spacing: 1.9px;
}
.sq25_prices_build .table.descr .column.premium .cdc_logo {
  position: absolute;
  width: 200px;
  max-width: 200px;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .sq25_prices_build .table.descr .column.premium .cdc_logo {
    display: none;
  }
}
.sq25_prices_build .table.descr .column.premium .cdc_logo img {
  width: 200px;
  max-width: 200px;
}
.sq25_prices_build .table.descr .column.premium .icon_members {
  position: absolute;
  bottom: -26px;
  right: 33px;
  width: 35px;
  z-index: 10;
}
@media (max-width: 991px) {
  .sq25_prices_build .table.descr .column.premium .icon_members {
    bottom: -30px;
    width: 25px;
  }
}
.sq25_prices_build .table.descr .column.premium .icon_members img {
  width: 100%;
  max-width: 100%;
}
.sq25_prices_build .table .row_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.sq25_prices_build .table .row_wrap .column.no_border:after, .sq25_prices_build .table .row_wrap.no_border .column:after, .sq25_prices_build .table .row_wrap.no_border .column {
  border: none !important;
}
.sq25_prices_build .table .row_wrap.top picture img {
  max-width: 100% !important;
  width: 100% !important;
}
.sq25_prices_build .table .row_wrap.bottom div:nth-child(3) {
  position: relative;
}
.sq25_prices_build .table .row_wrap:last-child .column {
  padding-bottom: 30px;
  border: initial;
}
@media (max-width: 639px) {
  .sq25_prices_build .table .row_wrap:last-child .column {
    padding-bottom: 15px;
  }
}
.sq25_prices_build .table .row_wrap .column {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 17px 0;
  color: #000;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin: 0 15px;
}
@media (max-width: 991px) {
  .sq25_prices_build .table .row_wrap .column {
    padding: 8px 0;
    font-size: 14px;
    justify-content: flex-start;
  }
}
.sq25_prices_build .table .row_wrap .column:nth-child(1) {
  width: calc(33.33% - 30px);
  padding-left: 15px;
}
@media (max-width: 991px) {
  .sq25_prices_build .table .row_wrap .column:nth-child(1) {
    padding-left: 0;
    padding-right: 0;
    width: 26%;
    margin: 0;
  }
}
.sq25_prices_build .table .row_wrap .column:nth-child(2) {
  width: calc(33.33% - 30px);
}
@media (max-width: 991px) {
  .sq25_prices_build .table .row_wrap .column:nth-child(2) {
    width: calc(37% - 30px);
  }
}
.sq25_prices_build .table .row_wrap .column:nth-child(3) {
  width: calc(33.33% - 30px);
}
@media (max-width: 991px) {
  .sq25_prices_build .table .row_wrap .column:nth-child(3) {
    width: calc(37% - 30px);
  }
}
.sq25_prices_build .table .row_wrap .column:nth-child(3):after {
  left: 15px;
}
.sq25_prices_build .hover_block:hover .hover_content {
  opacity: 1;
  display: block;
}
.sq25_prices_build .hover_block .icon_help {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/pages/sq25/info.svg) no-repeat 50% 50%/cover;
  position: relative;
  margin-left: 6px;
  overflow: hidden;
  cursor: pointer;
}
.sq25_prices_build .hover_block .icon_help:before {
  color: #5e1de1;
}
.sq25_prices_build .hover_block .hover_content {
  display: none;
  position: absolute;
  top: 90%;
  left: 30px;
  right: 0;
  width: 360px;
  z-index: 30;
  opacity: 0;
  transition: all 0.2s;
  box-shadow: 3px 4px 30px 0 rgba(0, 0, 0, 0.2);
  font-family: "Inter";
  font-weight: 400;
}
.sq25_prices_build .hover_block .hover_content:before {
  position: absolute;
  top: -5px;
  left: calc(50% - 2.5px);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #f9fafb;
  content: "";
}
.sq25_prices_build .hover_block .hover_content span {
  display: block;
  font-size: 14px;
  color: #666;
  background: #fff;
  padding: 10px 12px;
  line-height: 150%;
  border-radius: 0 0 10px 10px;
}
.sq25_prices_build .hover_block .hover_content b {
  font-size: 14px;
  display: block;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 8px 12px;
  border-radius: 10px 10px 0 0;
}
.sq25_prices_build .sq25_footer_price {
  margin-top: 15px;
}
.sq25_prices_build .sq25_footer_price.annual_active .price_block .monthly {
  display: none;
}
.sq25_prices_build .sq25_footer_price.annual_active .price_block .annual {
  display: block;
}
.sq25_prices_build .sq25_footer_price.annual_active .price_block .special {
  display: none;
}
.sq25_prices_build .sq25_footer_price.monthly_active .price_block .monthly {
  display: block;
}
.sq25_prices_build .sq25_footer_price.monthly_active .price_block .annual {
  display: none;
}
.sq25_prices_build .sq25_footer_price.monthly_active .price_block .special {
  display: none;
}
.sq25_prices_build .sq25_footer_price.special_active .price_block .monthly {
  display: none;
}
.sq25_prices_build .sq25_footer_price.special_active .price_block .annual {
  display: none;
}
.sq25_prices_build .sq25_footer_price.special_active .price_block .special {
  display: block;
}
.sq25_prices_build .sq25_footer_price .hover_block .hover_content {
  top: 110%;
  left: 0;
  padding: 10px 15px;
  background: #fff;
  text-align: center;
  font-size: 14px;
}
.sq25_prices_build .sq25_footer_price .price_block .monthly {
  display: none;
}
.sq25_prices_build .sq25_footer_price .price_block .annual {
  display: block;
}
.sq25_prices_build .sq25_footer_price .price_block .special {
  display: none;
}
.sq25_prices_build .sq25_footer_price .row_wrap {
  margin-top: 50px;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column {
  border: none;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column:nth-child(1) {
  padding: 0;
  height: 100%;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column:nth-child(2), .sq25_prices_build .sq25_footer_price .row_wrap .column:nth-child(3) {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
  border-radius: 6px;
}
@media (max-width: 991px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .column:nth-child(2), .sq25_prices_build .sq25_footer_price .row_wrap .column:nth-child(3) {
    padding: 0 0;
  }
}
.sq25_prices_build .sq25_footer_price .row_wrap .column:nth-child(2) {
  background: #f0edfa;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column:nth-child(3) {
  background: #fff0f5;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column p.choose {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  width: 100%;
  text-align: left;
  margin-bottom: 22px;
}
@media (max-width: 639px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .column p.choose {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.not_show {
  opacity: 0;
  pointer-events: none;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column .divider {
  width: 100%;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block {
  position: relative;
  display: flex;
  align-content: flex-end;
  height: 350px;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block > div {
  width: 100%;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .offer {
  position: absolute;
  top: 0px;
  color: #b70074;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .del {
  display: block;
  color: #0f0f3d;
  text-align: center;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  width: 65px;
  margin: 0 auto 0px;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .del:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 0;
  background: url(../img/pages/sq25/cross.svg) no-repeat 50% 50%/contain;
  content: "";
  width: 100%;
  height: 100%;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .price {
  color: #b70074;
  text-align: center;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  width: 100%;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .price {
    font-size: 32px;
  }
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .date {
  width: 100%;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .reg_price {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-top: -5px;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .limited {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 130%;
  width: 100%;
  margin-top: -10px;
  margin-bottom: 10px;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .btn_wrap {
  width: 100%;
  padding: 30px 30px;
  border-radius: 0 0 10px 10px;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .btn_wrap.pink {
  background: #ffd4e2;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .btn_wrap.blue {
  background: #e5deff;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .btn_wrap.blue .btn {
  background: #6335c3 !important;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .btn {
  font-size: 14px !important;
  letter-spacing: 1.8px;
  height: 45px;
  width: 100%;
  max-width: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  background: #b70074 !important;
  color: #fff !important;
  font-family: "Poppins", serif;
  font-weight: 600;
  transition: all ease 0.3s;
  border-radius: 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .btn {
    letter-spacing: 0.4px;
    margin-top: 30px;
    font-size: 12px !important;
  }
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .btn:hover {
  opacity: 0.9;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .cancel_text_wr {
  flex: 0 0 100%;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .cancel_text_wr .cancel_text {
  color: #000;
  text-align: center;
  font-family: Inter, serif;
  font-size: 12px;
  font-weight: 400;
  width: 100%;
}
.sq25_prices_build .sq25_footer_price .row_wrap .column.price_block .promo {
  width: 100%;
  color: red;
  opacity: 0;
}
.sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer {
  position: absolute;
  font-family: "Inter";
  width: 220px;
  margin: 0 auto;
  display: block;
  left: 0%;
  right: 0;
  bottom: -10px;
  background: transparent;
}
@media (max-width: 991px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer {
    position: relative;
    transform: unset;
    left: unset;
    bottom: initial;
  }
}
@media (max-width: 767px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer {
    margin: initial;
    width: 200px;
  }
}
.sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-row {
  display: flex;
  justify-content: center;
}
.sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
  justify-content: center;
  font-family: "Poppins", serif;
}
.sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section:before {
  position: absolute;
  top: 0;
  right: -5px;
  font-size: 24px;
  font-weight: 300;
  color: #5E1DE1;
  content: ":";
}
@media (max-width: 991px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section:before {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section:before {
    top: 4px;
    font-size: 22px;
  }
}
.sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section.nodot:before {
  display: none !important;
}
.sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section .countdown-amount {
  width: 100%;
  color: #5E1DE1;
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section .countdown-amount {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section .countdown-amount {
    margin-bottom: -7px;
  }
}
.sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section .countdown-period {
  position: relative;
  width: 100%;
  color: #5E1DE1;
  text-align: center;
  font-size: 10px;
  line-height: 1;
}
@media (max-width: 991px) {
  .sq25_prices_build .sq25_footer_price .row_wrap .price_table_timer .countdown-section .countdown-period {
    line-height: 1.5;
  }
}
.sq25_prices_build .radio {
  margin: 0 0 10px;
  border: none !important;
}
.sq25_prices_build .radio label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  cursor: pointer;
}
@media (max-width: 991px) {
  .sq25_prices_build .radio label {
    font-size: 12px;
  }
}
.sq25_prices_build .radio input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.sq25_prices_build .radio input[type=radio] + .radio-label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 2px solid #b70074;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.sq25_prices_build .radio input[type=radio]:checked + .radio-label:before {
  background-color: #b70074;
  box-shadow: inset 0 0 0 4px #fff;
}
.sq25_prices_build .radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #b70074;
}
.sq25_prices_build .radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #fff;
  border-color: #bfbfbf;
  background: #bfbfbf;
}
.sq25_prices_build .radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}
@media (min-width: 992px) {
  .sq25_prices_build .price_animation .animation_del {
    position: relative;
    color: #b70074;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 40px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    width: 120px !important;
    margin: 0 auto -45px;
    animation: moveUpShrink 8s ease-in-out infinite;
    z-index: 1;
  }
  .sq25_prices_build .price_animation .animation_del::before {
    position: absolute;
    display: table;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    width: 0%;
    height: 100%;
    background: url(../img/pages/sq25/cross.svg) no-repeat 50% 50%/contain;
    content: "";
    pointer-events: none;
    animation: showCrossLine 8s ease-in-out infinite;
  }
  .sq25_prices_build .price_animation .animation_del::after {
    position: absolute;
    display: table;
    margin: 0 auto;
    font-size: 14px;
    top: -30px;
    left: calc(50% - 75px);
    right: 0;
    opacity: 1;
    width: 150px;
    height: 100%;
    color: #000;
    font-weight: 600;
    content: "Regular Price";
    pointer-events: none;
    animation: showPriceOldLabel 8s ease-in-out infinite;
  }
  @keyframes moveUpShrink {
    0% {
      transform: translateY(0) scale(1);
      color: #b70074;
    }
    23% {
      transform: translateY(-30px) scale(0.5);
      color: #0f0f3d;
    }
    85% {
      transform: translateY(-30px) scale(0.5);
      color: #0f0f3d;
    }
    90% {
      transform: translateY(0) scale(1);
      color: #b70074;
    }
    100% {
      transform: translateY(0) scale(1);
      color: #b70074;
    }
  }
  @keyframes showCrossLine {
    0% {
      width: 0%;
      opacity: 0;
    }
    23% {
      width: 100%;
      opacity: 1;
    }
    85% {
      width: 100%;
      opacity: 1;
    }
    90% {
      width: 0%;
      opacity: 0;
    }
    100% {
      width: 0%;
      opacity: 0;
    }
  }
  @keyframes showPriceOldLabel {
    0% {
      transform: translateY(0) scale(1);
    }
    23% {
      transform: translateY(-5px) scale(1.4);
    }
    85% {
      transform: translateY(-5px) scale(1.4);
    }
    90% {
      transform: translateY(0) scale(1);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }
  .sq25_prices_build .price_animation .animation_current {
    color: #b70074;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 140%;
    width: 100%;
    margin-top: -40px;
    opacity: 0;
    transform: scale(1);
    animation: fadeInGrow 8s ease-in-out infinite;
    position: relative;
    z-index: 0;
    margin-bottom: 12px !important;
  }
  .sq25_prices_build .price_animation .animation_current::after {
    position: absolute;
    display: table;
    margin: 0 auto;
    font-size: 14px;
    bottom: -30px;
    left: 0;
    right: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
    color: #000;
    font-weight: 600;
    content: "Limited-time Only";
    pointer-events: none;
    animation: showPriceNewLabel 8s ease-in-out infinite;
  }
  @keyframes fadeInGrow {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    23% {
      opacity: 1;
      transform: scale(1);
    }
    85% {
      opacity: 1;
      transform: scale(1);
    }
    90% {
      opacity: 0;
      transform: scale(0.5);
    }
    100% {
      opacity: 0;
      transform: scale(0.5);
    }
  }
}

.sq25_powder_packed {
  max-width: 1250px !important;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sq25_powder_packed {
    max-width: 100%;
    overflow: hidden;
  }
}
.sq25_powder_packed > .p20, body .hs_form_wrap.descr_top .descr .sq25_powder_packed > .sub, .modal_sssn .suport_video_page_descr .sq25_powder_packed > .title, .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .sq25_powder_packed > .quote {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .sq25_powder_packed > .p20, body .hs_form_wrap.descr_top .descr .sq25_powder_packed > .sub, .modal_sssn .suport_video_page_descr .sq25_powder_packed > .title, .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .sq25_powder_packed > .quote {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .sq25_powder_packed > .p20, body .hs_form_wrap.descr_top .descr .sq25_powder_packed > .sub, .modal_sssn .suport_video_page_descr .sq25_powder_packed > .title, .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .sq25_powder_packed > .quote {
    margin-bottom: 80px;
  }
}
.sq25_powder_packed .nav-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid #b70074;
}
.sq25_powder_packed .nav-tabs button {
  width: 49%;
  padding: 38px 15px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 20px 20px 0 0;
  color: #fb5290;
  background: #f5f5f5;
  cursor: pointer;
  outline: initial !important;
  border-top: 3px solid #b70074 !important;
  border-left: 3px solid #b70074 !important;
  border-right: 3px solid #b70074 !important;
  border-bottom: initial !important;
}
@media (max-width: 991px) {
  .sq25_powder_packed .nav-tabs button {
    padding: 20px 10px;
  }
}
@media (max-width: 639px) {
  .sq25_powder_packed .nav-tabs button {
    padding: 10px 10px;
    font-size: 14px;
  }
}
.sq25_powder_packed .nav-tabs button.active {
  background: #b70074;
  color: #fff;
}
.sq25_powder_packed .tab-pane {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.sq25_powder_packed .tab-pane .day_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  padding-top: 28px;
  margin-right: -30px;
}
@media (max-width: 639px) {
  .sq25_powder_packed .tab-pane .day_wrap {
    flex-wrap: wrap;
  }
}
.sq25_powder_packed .tab-pane .day_wrap .item picture {
  display: block;
  padding-right: 26px;
  width: 100%;
  max-width: 204px;
}
@media (max-width: 767px) {
  .sq25_powder_packed .tab-pane .day_wrap .item picture {
    max-width: 100%;
    padding: 0 10px;
    padding-right: 0px;
  }
}
.sq25_powder_packed .tab-pane .day_wrap .descr_wrap {
  min-width: 200px;
}
@media (max-width: 767px) {
  .sq25_powder_packed .tab-pane .day_wrap .descr_wrap {
    min-width: 160px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 639px) {
  .sq25_powder_packed .tab-pane .day_wrap .descr_wrap {
    width: 100%;
  }
}
.sq25_powder_packed .tab-pane .day_wrap .descr_wrap.dont_show {
  opacity: 0;
  pointer-events: none;
}
.sq25_powder_packed .tab-pane .day_wrap .descr_wrap .ttl b {
  color: #fb5290;
  text-transform: uppercase;
}
.sq25_powder_packed .tab-pane .day_wrap .items_wrap {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .sq25_powder_packed .tab-pane .day_wrap .items_wrap > div:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .sq25_powder_packed .tab-pane .day_wrap .items_wrap {
    max-width: 420px;
    width: 100%;
  }
}
@media (max-width: 639px) {
  .sq25_powder_packed .tab-pane .day_wrap .items_wrap {
    margin-left: auto;
    margin-right: auto;
  }
}
.sq25_powder_packed .tab-pane .day_wrap .items_wrap .slick-dots {
  bottom: -28px;
}
.sq25_powder_packed .tab-pane .day_wrap .items_wrap .item picture img {
  display: block;
}
.sq25_powder_packed .tab-pane .day_wrap .day_label {
  display: block;
  width: 122px;
  margin: 0px 0 5px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #f7518e;
  padding: 0px 5px;
  text-align: center;
  border-radius: 40px;
  text-transform: uppercase;
}
@media (max-width: 639px) {
  .sq25_powder_packed .tab-pane .day_wrap .day_label {
    font-size: 10px;
    width: 100px;
  }
}
.sq25_powder_packed .tab-pane .day_wrap .ttl {
  font-size: 26px;
  font-weight: 700;
  color: #0f0f3d;
  margin-bottom: 0;
  max-width: 150px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .sq25_powder_packed .tab-pane .day_wrap .ttl {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}
@media (max-width: 639px) {
  .sq25_powder_packed .tab-pane .day_wrap .ttl {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .sq25_powder_packed .tab-pane .day_wrap .ttl {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sq25_powder_packed .tab-pane .day_wrap .ttl br {
    display: none;
  }
}
.sq25_powder_packed .tab-pane .day_wrap .day_date {
  color: #fb5290;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.price_radio_style_1 {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.price_radio_style_1 .radio {
  display: flex;
  align-items: center;
  align-content: center;
  margin: 0 10px 5px;
}
.price_radio_style_1 .radio input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.price_radio_style_1 .radio input[type=radio] + .radio-label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 2px solid #b70074;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  top: -0.2em;
  margin-right: 5px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.price_radio_style_1 .radio input[type=radio]:checked + .radio-label:before {
  background-color: #b70074;
  box-shadow: inset 0 0 0 4px #fff;
}
.price_radio_style_1 .radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #b70074;
}
.price_radio_style_1 .radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #fff;
  border-color: #bfbfbf;
  background: #bfbfbf;
}
.price_radio_style_1 .radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}
.price_radio_style_1 .radio label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  align-content: center;
  text-align: left;
}

.sq25_become_a_member_ttl .p20 b, .sq25_become_a_member_ttl body .hs_form_wrap.descr_top .descr .sub b, body .hs_form_wrap.descr_top .descr .sq25_become_a_member_ttl .sub b, .sq25_become_a_member_ttl .modal_sssn .suport_video_page_descr .title b, .modal_sssn .suport_video_page_descr .sq25_become_a_member_ttl .title b, .sq25_become_a_member_ttl .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote b, .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .sq25_become_a_member_ttl .quote b {
  color: #6335c3;
}

.sq25_become_a_member {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  background: #241642;
  border-radius: 20px;
}
.sq25_become_a_member > .p22 span, .upsell_content_reviews .reviews_wrap .review .name .sq25_become_a_member > span:nth-child(1) span, .upsell_2025_content_will_transform ul .sq25_become_a_member > li span, .upsell_content_sub_bnr_top .grey_wrap ul .sq25_become_a_member > li span, .upsell_2025_stats p .sq25_become_a_member > span:nth-child(2) span, .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sq25_become_a_member > .sub span, .sq25_3_reasons .item .sq25_become_a_member > p:nth-child(2) span, .reg_form .sq25_become_a_member > h5 span, #program_faq .card .card-header h5 span .sq25_become_a_member > b span, #program_faq .card .card-body .sq25_become_a_member > li span,
#program_faq .card .card-body .sq25_become_a_member > p span, .ses_wrap .sssn.big .media-body .sq25_become_a_member > .ssn_ttl span, .modal_sssn .sssn_meta .sq25_become_a_member > h1 span, .circle_bnr_top .list_wrap .sq25_become_a_member > p span, .circle_content_steps .wrap .step .sq25_become_a_member > .sub span, .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p .sq25_become_a_member > b span, .showcase_bnr_top .top_list .sq25_become_a_member > p span, .showcase_steps .wrap .step .sq25_become_a_member > .sub span, .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p .sq25_become_a_member > span:nth-child(1) span {
  color: #ff0ea6;
}
.sq25_become_a_member .cover_image img {
  object-fit: contain;
  object-position: 50% 0;
}
@media (max-width: 991px) {
  .sq25_become_a_member .cover_image img {
    object-position: 50% 50%;
    object-fit: cover;
  }
}
.sq25_become_a_member .arrow_down {
  position: absolute;
  top: -40px;
  left: calc(50% - 46px);
  display: block;
  margin: 0 auto;
  width: 93px;
  height: 82px;
  transition: all 0.2s;
  z-index: 30;
}
@media (max-width: 767px) {
  .sq25_become_a_member .arrow_down {
    width: 40px;
    height: 36px;
    top: -20px;
    left: calc(50% - 20px);
  }
}
.sq25_become_a_member .arrow_down:hover {
  transform: scale(0.95);
}
.sq25_become_a_member .cdc_logo {
  padding-top: 100px;
  text-align: center;
  display: block;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .sq25_become_a_member .cdc_logo {
    padding-top: 60px;
  }
}
.sq25_become_a_member .cover_image img {
  border-radius: 20px 20px 0 0;
}
.sq25_become_a_member .items_slider .slick-dots li button:before {
  color: #fff;
}
.sq25_become_a_member .item_wrap {
  margin-top: 360px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .sq25_become_a_member .item_wrap {
    max-width: 400px;
    margin: 300px auto 50px !important;
  }
}
.sq25_become_a_member .item_wrap .item {
  max-width: 350px;
  margin: 0 20px 50px;
  color: #fff;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 991px) {
  .sq25_become_a_member .item_wrap .item {
    display: block !important;
    margin: 0 auto 25px;
    max-width: initial;
  }
}
.sq25_become_a_member .item_wrap .item span {
  font-size: 30px;
}
.sq25_become_a_member .item_wrap .item > span,
.sq25_become_a_member .item_wrap .item picture {
  display: block;
  min-height: 37px;
  margin-bottom: 5px;
}
.sq25_become_a_member .item_wrap .item b {
  color: #fff;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .sq25_become_a_member .item_wrap .item b {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .sq25_become_a_member .item_wrap .item b {
    font-size: 24px;
  }
}

.sq25_success {
  position: relative;
  background: #500072;
  border-radius: 20px 20px 0 0;
  max-width: 1600px;
  margin: 0 auto;
}
.sq25_success.v_rec .head {
  justify-content: center;
  text-align: center;
}
.sq25_success.v_rec .head .label {
  margin: 0 auto 10px;
}
.sq25_success .down_icon_new {
  position: absolute;
  top: -38px;
  margin: 0 auto;
  width: 77px;
  height: 77px;
  background: url(../img/pages/sq25/arrow_down.png) no-repeat 50% 50%/cover !important;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .sq25_success .down_icon_new {
    top: -16px;
    width: 35px;
    height: 35px;
  }
}
.sq25_success .down_icon_new:before, .sq25_success .down_icon_new:after {
  display: none;
}
.sq25_success .down_icon_new span {
  display: none;
}
.sq25_success .down_icon_new span:before {
  display: none;
}
.sq25_success .head {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sq25_success .head {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 100px !important;
    text-align: center;
  }
}
.sq25_success .head .label {
  display: block;
  width: 330px;
  margin: 40px 0 10px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #f7518e;
  padding: 1px 10px;
  text-align: center;
  border-radius: 40px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sq25_success .head .label {
    margin-top: 0;
  }
}
.sq25_success .head .slick-arrow {
  background: #7200a4;
  border: initial !important;
  outline: initial !important;
}
.sq25_success .head .slick-arrow:before {
  color: #fb5290;
}
@media (max-width: 991px) {
  .sq25_success .head .slick-arrow {
    top: calc(100% + 60px);
  }
}
@media (max-width: 991px) {
  .sq25_success .head .slick-arrow.slick-next {
    right: calc(50% - 50px);
  }
}
@media (max-width: 991px) {
  .sq25_success .head .slick-arrow.slick-prev {
    left: calc(50% - 50px);
  }
}
.sq25_success .head .slider_videos_reviews {
  max-width: 386px;
  margin-right: 50px;
  width: 100%;
}
@media (max-width: 767px) {
  .sq25_success .head .slider_videos_reviews {
    margin-right: 0;
  }
}
.sq25_success .head .slider_videos_reviews:not(.slick-initialized) .slide {
  width: 100%;
}
.sq25_success .head .slider_videos_reviews .icon_main {
  display: none;
}
.sq25_success .head .slider_videos_reviews .icon_play_sq25 {
  display: block !important;
  width: 65px !important;
  height: 65px !important;
  top: 50% !important;
  left: 50% !important;
  pointer-events: none;
}
.sq25_success .head .slider_videos_reviews .video {
  border-radius: 12px;
  overflow: hidden;
}
.sq25_success .head .slider_videos_reviews .video-container > img {
  border-radius: 8px;
}
.sq25_success .head .slider_videos_reviews .video_wrap {
  max-width: 800px;
  margin: 0 auto;
}
.sq25_success .head .slider_videos_reviews .video_wrap .trigger_video svg,
.sq25_success .head .slider_videos_reviews .video_wrap .video_preview svg {
  top: 85%;
  left: 12%;
  width: 10%;
  height: auto;
}
.sq25_success .head .slick-dots {
  bottom: -25px !important;
}
.sq25_success .head .slick-dots li:hover button,
.sq25_success .head .slick-dots li.slick-active button {
  background: #fb5290 !important;
}
.sq25_success .review_quote {
  background: #610289;
  padding-top: 50px;
  padding-bottom: 80px !important;
}
.sq25_success .slider_quote_reviews .slick-arrow {
  background: #fb5290;
  border: initial !important;
  outline: initial !important;
  width: 70px;
  height: 70px;
  top: 80%;
}
@media (max-width: 991px) {
  .sq25_success .slider_quote_reviews .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.sq25_success .slider_quote_reviews .slick-arrow:before {
  color: #7200a4;
}
@media (max-width: 991px) {
  .sq25_success .slider_quote_reviews .slick-arrow {
    top: calc(100% + 60px);
  }
}
@media (max-width: 991px) {
  .sq25_success .slider_quote_reviews .slick-arrow.slick-next {
    right: calc(50% - 50px);
  }
}
@media (max-width: 991px) {
  .sq25_success .slider_quote_reviews .slick-arrow.slick-prev {
    left: calc(50% - 50px);
  }
}
.sq25_success .slider_quote_reviews .slick-dots {
  bottom: -25px !important;
}
.sq25_success .slider_quote_reviews .slick-dots li:hover button,
.sq25_success .slider_quote_reviews .slick-dots li.slick-active button {
  background: #fb5290 !important;
}
.sq25_success .slider_quote_reviews .rev {
  display: flex;
  align-content: flex-start;
}
@media (max-width: 767px) {
  .sq25_success .slider_quote_reviews .rev {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .sq25_success .slider_quote_reviews .rev > picture {
    max-width: 200px;
    display: block;
    margin: 0 0 20px;
    text-align: center;
  }
}
.sq25_success .slider_quote_reviews .rev .descr {
  max-width: 650px;
  padding-left: 45px;
}
@media (max-width: 767px) {
  .sq25_success .slider_quote_reviews .rev .descr {
    width: 100%;
    padding-left: 0;
  }
}
.sq25_success .slider_quote_reviews .rev .descr > picture {
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .sq25_success .slider_quote_reviews .rev .descr > picture {
    max-width: 40px;
  }
}
.sq25_success .slider_quote_reviews .rev .descr .copy {
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.sq25_success .slider_quote_reviews .rev .descr .copy span {
  color: #ff2fb3;
}
.sq25_success .slider_quote_reviews .rev .descr .name {
  padding-bottom: 50px;
}
.sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(1) {
  color: #fff;
  font-weight: 600;
  display: block;
}
.sq25_success .slider_quote_reviews .rev .descr .name span:nth-child(2) {
  color: #fff;
  font-style: italic;
}

.sq25_3_reasons {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .sq25_3_reasons {
    flex-wrap: wrap;
  }
}
.sq25_3_reasons .item {
  padding: 110px 75px 63px;
  width: 33.33%;
  color: #fff;
}
@media (max-width: 1300px) {
  .sq25_3_reasons .item {
    padding: 50px 30px 30px;
  }
}
@media (max-width: 767px) {
  .sq25_3_reasons .item {
    width: 100%;
    max-width: 400px;
  }
}
.sq25_3_reasons .item._1 {
  background: #e63e78;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 767px) {
  .sq25_3_reasons .item._1 {
    border-radius: 20px 20px 0 0;
  }
}
.sq25_3_reasons .item._1 p:nth-child(1) {
  border-bottom: 1px solid #ff6bcb;
}
.sq25_3_reasons .item._1 a {
  color: #e137a5;
}
.sq25_3_reasons .item._2 {
  background: #de356b;
}
.sq25_3_reasons .item._2 p:nth-child(1) {
  border-bottom: 1px solid #ff69aa;
}
.sq25_3_reasons .item._2 a {
  color: #e12979;
}
.sq25_3_reasons .item._3 {
  background: #cb0066;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .sq25_3_reasons .item._3 {
    border-radius: 0 0 20px 20px;
  }
}
.sq25_3_reasons .item._3 p:nth-child(1) {
  border-bottom: 1px solid #ff2cb2;
}
.sq25_3_reasons .item._3 a {
  color: #cb0081;
}
.sq25_3_reasons .item p:nth-child(1) {
  color: #fff;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  border-bottom: 1px solid #ff6bcb;
  padding-bottom: 33px;
  margin-bottom: 33px;
  padding-bottom: 33px;
}
@media (max-width: 991px) {
  .sq25_3_reasons .item p:nth-child(1) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.sq25_3_reasons .item p:nth-child(1) b {
  font-weight: 700;
  display: block;
}
.sq25_3_reasons .item p:nth-child(2) {
  color: #fff;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  min-height: 147px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sq25_3_reasons .item p:nth-child(2) {
    min-height: initial;
  }
}
.sq25_3_reasons .item a {
  background: #fff;
  padding: 10px 23px;
  border-radius: 60px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

#contact_wrapper {
  padding: 89px 0 102px;
}
@media (max-width: 991px) {
  #contact_wrapper {
    padding: 46px 0 60px;
  }
}
#contact_wrapper .container svg {
  display: block;
  margin: 0 auto 30px;
}
#contact_wrapper .h64 {
  line-height: 100%;
}
#contact_wrapper .contact_block_wr:nth-last-child(n+2) {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #contact_wrapper .contact_block_wr:nth-last-child(n+2) {
    margin-bottom: 60px;
  }
}
#contact_wrapper .contact_block_wr .contact_block {
  text-align: center;
  padding-bottom: 65px;
  position: relative;
  height: 100%;
}
#contact_wrapper .contact_block_wr .contact_block .ttl {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  #contact_wrapper .contact_block_wr .contact_block .ttl {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  #contact_wrapper .contact_block_wr .contact_block .ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
#contact_wrapper .contact_block_wr .contact_block .txt {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
  font-family: "Inter", serif;
  letter-spacing: -0.36px;
}
@media (max-width: 991px) {
  #contact_wrapper .contact_block_wr .contact_block .txt {
    letter-spacing: 0;
  }
}
#contact_wrapper .contact_block_wr .contact_block .txt a {
  color: #5E1DE1;
  transition: all ease 0.3s;
  margin-top: 18px;
  display: block;
  font-weight: 600 !important;
}
@media (max-width: 991px) {
  #contact_wrapper .contact_block_wr .contact_block .txt a {
    margin-top: 10px;
  }
}
#contact_wrapper .contact_block_wr .contact_block .txt a:hover {
  font-weight: 600 !important;
  color: #000;
  text-decoration: none;
}
#contact_wrapper .contact_block_wr .contact_block .btn {
  transition: all ease 0.3s;
  width: 100%;
  max-width: 180px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #5E1DE1;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  font-weight: 600 !important;
}
#contact_wrapper .contact_block_wr .contact_block .btn:hover {
  font-weight: 600 !important;
  opacity: 0.85;
}

.sq25_about_coaching {
  max-width: 1600px;
  border-radius: 20px;
  background: #f8f8f8;
  margin: 0 auto 60px;
  padding-left: 15px;
  padding-right: 15px;
}
.sq25_about_coaching .wrap {
  max-width: 640px;
  margin: 0 auto;
}
.sq25_about_coaching .h32, .sq25_about_coaching .upsell_content_reviews .reviews_wrap .review .quote, .upsell_content_reviews .reviews_wrap .review .sq25_about_coaching .quote, .sq25_about_coaching .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl, .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sq25_about_coaching .ttl, .sq25_about_coaching #banner.pre_smmt .bnr_top.bnr_ps_25 h1, #banner.pre_smmt .bnr_top.bnr_ps_25 .sq25_about_coaching h1, .sq25_about_coaching #banner.pre_smmt .bnr_top.bnr_fs_25 h1, #banner.pre_smmt .bnr_top.bnr_fs_25 .sq25_about_coaching h1, .sq25_about_coaching .circle_content_steps .wrap .step .ttl, .circle_content_steps .wrap .step .sq25_about_coaching .ttl, .sq25_about_coaching .sls_modern_way .wrap .item p, .sls_modern_way .wrap .item .sq25_about_coaching p, .sq25_about_coaching .showcase_steps .wrap .step .ttl, .showcase_steps .wrap .step .sq25_about_coaching .ttl {
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .sq25_about_coaching .h32, .sq25_about_coaching .upsell_content_reviews .reviews_wrap .review .quote, .upsell_content_reviews .reviews_wrap .review .sq25_about_coaching .quote, .sq25_about_coaching .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl, .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sq25_about_coaching .ttl, .sq25_about_coaching #banner.pre_smmt .bnr_top.bnr_ps_25 h1, #banner.pre_smmt .bnr_top.bnr_ps_25 .sq25_about_coaching h1, .sq25_about_coaching #banner.pre_smmt .bnr_top.bnr_fs_25 h1, #banner.pre_smmt .bnr_top.bnr_fs_25 .sq25_about_coaching h1, .sq25_about_coaching .circle_content_steps .wrap .step .ttl, .circle_content_steps .wrap .step .sq25_about_coaching .ttl, .sq25_about_coaching .sls_modern_way .wrap .item p, .sls_modern_way .wrap .item .sq25_about_coaching p, .sq25_about_coaching .showcase_steps .wrap .step .ttl, .showcase_steps .wrap .step .sq25_about_coaching .ttl {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .sq25_about_coaching p {
    padding-left: 40px;
  }
}
.sq25_about_coaching .position_relative picture {
  position: absolute;
  top: -5px;
  left: -35px;
}
.sq25_about_coaching .position_relative picture img {
  width: 25px;
}

.countdown_sticky {
  position: fixed;
  z-index: 27;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  box-shadow: 1px 2px 20px 0 rgba(0, 0, 0, 0.35);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.countdown_sticky.hide_top {
  opacity: 0;
}
.countdown_sticky.hide_top.show {
  opacity: 1;
}
.countdown_sticky.no_button .container .sticky_timer {
  position: relative;
  top: 0;
  left: initial;
  right: initial;
}
.countdown_sticky.no_button .container .divider {
  display: none;
}
.countdown_sticky .c_pink {
  color: #D167FF;
}
.countdown_sticky .container {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 16px 15px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .countdown_sticky .container {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 5px;
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .countdown_sticky .container {
    padding-left: 5px;
    padding-right: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.countdown_sticky .container .sticky_timer {
  font-family: "Inter";
  width: 220px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 14px;
  background: transparent;
}
@media (max-width: 991px) {
  .countdown_sticky .container .sticky_timer {
    position: relative;
    transform: unset;
    left: unset;
    bottom: initial;
  }
}
@media (max-width: 767px) {
  .countdown_sticky .container .sticky_timer {
    margin: initial;
    width: 200px;
  }
}
.countdown_sticky .container .sticky_timer .countdown-row {
  display: flex;
  justify-content: center;
}
.countdown_sticky .container .sticky_timer .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
  justify-content: center;
  font-family: "Poppins", serif;
}
.countdown_sticky .container .sticky_timer .countdown-section:before {
  position: absolute;
  top: 0;
  right: -5px;
  font-size: 24px;
  font-weight: 300;
  color: #5E1DE1;
  content: ":";
}
@media (max-width: 991px) {
  .countdown_sticky .container .sticky_timer .countdown-section:before {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .countdown_sticky .container .sticky_timer .countdown-section:before {
    top: 4px;
    font-size: 22px;
  }
}
.countdown_sticky .container .sticky_timer .countdown-section.nodot:before {
  display: none !important;
}
.countdown_sticky .container .sticky_timer .countdown-section .countdown-amount {
  width: 100%;
  color: #5E1DE1;
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .countdown_sticky .container .sticky_timer .countdown-section .countdown-amount {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .countdown_sticky .container .sticky_timer .countdown-section .countdown-amount {
    margin-bottom: -7px;
  }
}
.countdown_sticky .container .sticky_timer .countdown-section .countdown-period {
  position: relative;
  width: 100%;
  color: #5E1DE1;
  text-align: center;
  font-size: 10px;
  line-height: 1;
}
@media (max-width: 991px) {
  .countdown_sticky .container .sticky_timer .countdown-section .countdown-period {
    line-height: 1.5;
  }
}
.countdown_sticky .container .timer_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .countdown_sticky .container .timer_wrap {
    width: 100%;
    justify-content: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .countdown_sticky .container .timer_wrap .divider {
    width: 100%;
    margin-bottom: 15px;
  }
}
.countdown_sticky .container .timer_wrap p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .countdown_sticky .container .timer_wrap p {
    font-size: 12px;
  }
}
@media (max-width: 639px) {
  .countdown_sticky .container .timer_wrap p {
    width: 100%;
    text-align: center;
  }
}
.countdown_sticky .container .timer_wrap .btn {
  border-radius: 60px;
  padding-left: 20px;
  padding-right: 20px;
}
.countdown_sticky .container .timer_wrap .d-flex .text-white {
  background: #5E1DE1;
  border-radius: 5px;
  padding: 1px 4px;
}
.countdown_sticky .container .timer_wrap .d-flex .text-white i {
  text-decoration: underline;
  margin-right: 3px;
  display: inline;
}
.countdown_sticky .container .request_wrap {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .countdown_sticky .container .request_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .countdown_sticky .container .request_wrap .divider {
    width: 100%;
  }
}
.countdown_sticky .container .request_wrap > span {
  padding-right: 5px;
}
@media (max-width: 639px) {
  .countdown_sticky .container .request_wrap > span {
    width: 100%;
    padding-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .countdown_sticky .container .request_wrap > a {
    padding-right: 10px;
  }
}
.countdown_sticky .container .request_wrap .btn_purple {
  border-radius: 60px;
  font-size: 14px !important;
  padding-left: 10px;
  padding-right: 10px;
}
.countdown_sticky .container > p {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .countdown_sticky .container > p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .countdown_sticky .container > p {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
}
@media (max-width: 479px) {
  .countdown_sticky .container > p {
    width: 100%;
    margin-bottom: 5px;
  }
}
.countdown_sticky .container > p b {
  background: linear-gradient(63.63deg, #8b15b9 0.53%, #e6069a 99.1%), #c4c4c4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 991px) {
  .countdown_sticky .container > p b {
    display: block;
  }
}
.contact-collapsed .countdown_sticky {
  transform: translate3d(0, 100%, 0);
}
.contact-collapsed .countdown_sticky #countdown_sticky_toggle i {
  transform: scaleY(-1);
}
.countdown_sticky #countdown_sticky_toggle {
  border-radius: 6px 6px 0 0;
  outline: none !important;
  background: #5E1DE1;
  margin-left: -27px;
  position: absolute;
  line-height: 12px;
  margin-top: -14px;
  transition: 0.2s;
  cursor: pointer;
  height: 14px;
  border: none;
  width: 54px;
  color: #fff;
  left: 50%;
  top: 0;
}
.countdown_sticky #countdown_sticky_toggle:hover {
  background: #5E1DE1;
}

.sq25_bonus_tool {
  margin-top: 130px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sq25_bonus_tool {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 80px 0;
  }
}
.sq25_bonus_tool .container {
  max-width: 730px;
  padding-left: 15px;
  padding-right: 15px;
}
.sq25_bonus_tool .head {
  position: relative;
  background: #fff0f5;
  border-radius: 20px 20px 0 0;
  padding: 0px 15px 0px;
}
.sq25_bonus_tool .head .label {
  position: relative;
  top: -18px;
  color: #fff;
  border-radius: 110px;
  background: #df376f;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 5px;
  max-width: 860px;
  margin: 0 auto;
  padding: 4px 10px;
}
@media (max-width: 767px) {
  .sq25_bonus_tool .head .label {
    font-size: 14px;
    letter-spacing: 3px;
  }
}
@media (max-width: 639px) {
  .sq25_bonus_tool .head .label {
    font-size: 12px;
    letter-spacing: 1px;
  }
}
.sq25_bonus_tool .head .container {
  padding-left: 0;
  padding-right: 0;
}
.sq25_bonus_tool .head .bonus_img {
  display: block;
  margin: 0 auto 10px;
}
.sq25_bonus_tool .head .h40 span, .sq25_bonus_tool .head .rec25_bnt_top_stats .item span:nth-child(1) span, .rec25_bnt_top_stats .item .sq25_bonus_tool .head span:nth-child(1) span, .sq25_bonus_tool .head .upsel_price_build .price_block .mid .price span, .upsel_price_build .price_block .mid .sq25_bonus_tool .head .price span, .sq25_bonus_tool .head .upsell_2025_stats p span:nth-child(1) span, .upsell_2025_stats p .sq25_bonus_tool .head span:nth-child(1) span, .sq25_bonus_tool .head .reg_form h2 span, .reg_form .sq25_bonus_tool .head h2 span, .sq25_bonus_tool .head #banner.pre_smmt .bnr_top h1 span, #banner.pre_smmt .bnr_top .sq25_bonus_tool .head h1 span, .sq25_bonus_tool .head body .step_1 b span, body .step_1 .sq25_bonus_tool .head b span,
.sq25_bonus_tool .head body .step_2 b span,
body .step_2 .sq25_bonus_tool .head b span,
.sq25_bonus_tool .head body .step_3 b span,
body .step_3 .sq25_bonus_tool .head b span, .sq25_bonus_tool .head .sq25_success .slider_quote_reviews .rev .descr .copy span, .sq25_success .slider_quote_reviews .rev .descr .sq25_bonus_tool .head .copy span {
  color: #cb0066;
}
.sq25_bonus_tool .body {
  position: relative;
  background: #f5f5f5;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 0 0 20px 20px;
}
.sq25_bonus_tool .body .container {
  padding-left: 0;
  padding-right: 0;
}
.sq25_bonus_tool .body .container > p {
  text-align: center;
}
.sq25_bonus_tool .body .container > p span {
  margin-bottom: 10px;
  color: #fff;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  background: #fb5290;
  font-size: 16px;
  padding: 5px 25px;
  border-radius: 60px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.sq25_bonus_tool .body .container > p b {
  display: block;
  margin: 10px auto 5px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  color: #b70074;
}
.sq25_bonus_tool .body ul {
  margin-left: 0;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .sq25_bonus_tool .body ul {
    padding-left: 15px;
  }
}
.sq25_bonus_tool .body ul li {
  color: #0f0f3d;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 15px;
}
.sq25_bonus_tool .body ul li span {
  font-weight: 700;
  color: #2457ff;
}
.sq25_bonus_tool .body ul li::marker {
  color: #2457ff;
}

.sq_content_agenda {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 20px;
  background: #cb0066;
  text-align: center;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .sq_content_agenda {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.sq_content_agenda hr {
  border-color: #ff6bcb;
  max-width: 383px;
  margin: 40px auto 40px;
}
@media (max-width: 767px) {
  .sq_content_agenda hr {
    margin: 20px auto;
  }
}
.sq_content_agenda a {
  background: #fff;
  color: #cb0081 !important;
  padding: 10px 23px;
  border-radius: 60px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  text-decoration: initial !important;
  transition: all 0.2s;
}
.sq_content_agenda a:hover {
  opacity: 0.9;
}

.sq25_what_people_say {
  overflow: hidden;
}
.sq25_what_people_say .ttl {
  text-align: center;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .sq25_what_people_say .ttl {
    font-size: 32px;
    line-height: 44px;
    max-width: 370px;
  }
}
@media (max-width: 639px) {
  .sq25_what_people_say .ttl {
    max-width: 320px;
    font-size: 28px;
    line-height: 36px;
  }
}
.sq25_what_people_say .ttl span {
  color: #fb5290;
}
.sq25_what_people_say .ttl .face {
  position: absolute;
}
@media (max-width: 991px) {
  .sq25_what_people_say .ttl .face {
    transform: scale(0.7);
  }
}
@media (max-width: 767px) {
  .sq25_what_people_say .ttl .face {
    transform: scale(0.5);
  }
}
@media (max-width: 639px) {
  .sq25_what_people_say .ttl .face {
    transform: scale(0.3);
  }
}
.sq25_what_people_say .ttl .face.p1 {
  top: -120px;
  right: -33%;
}
@media (max-width: 1300px) {
  .sq25_what_people_say .ttl .face.p1 {
    right: -25%;
  }
}
@media (max-width: 991px) {
  .sq25_what_people_say .ttl .face.p1 {
    right: -20%;
  }
}
@media (max-width: 767px) {
  .sq25_what_people_say .ttl .face.p1 {
    right: -15%;
    top: -100px;
  }
}
.sq25_what_people_say .ttl .face.p1 img {
  width: 150px;
}
.sq25_what_people_say .ttl .face.p2 {
  top: 53px;
  left: -40%;
}
@media (max-width: 1300px) {
  .sq25_what_people_say .ttl .face.p2 {
    left: -30%;
  }
}
@media (max-width: 991px) {
  .sq25_what_people_say .ttl .face.p2 {
    left: -25%;
  }
}
@media (max-width: 767px) {
  .sq25_what_people_say .ttl .face.p2 {
    top: 30px;
  }
}
@media (max-width: 479px) {
  .sq25_what_people_say .ttl .face.p2 {
    left: -15%;
  }
}
.sq25_what_people_say .ttl .face.p2 img {
  width: 145px;
}
.sq25_what_people_say .ttl .face.p3 {
  bottom: -120px;
  right: -15%;
}
@media (max-width: 991px) {
  .sq25_what_people_say .ttl .face.p3 {
    right: -5%;
  }
}
@media (max-width: 767px) {
  .sq25_what_people_say .ttl .face.p3 {
    bottom: -85px;
  }
}
.sq25_what_people_say .ttl .face.p3 img {
  width: 120px;
}
.sq25_what_people_say .video_noc {
  max-width: 910px;
  margin: 180px auto 40px;
}
@media (max-width: 639px) {
  .sq25_what_people_say .video_noc {
    margin-top: 150px;
  }
}
.sq25_what_people_say .video_noc .video-container img {
  border-radius: 0px;
}

.sq25_form_descr {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.sq25_form_descr h2 {
  text-transform: uppercase;
}
.sq25_form_descr h2 span {
  color: #ff2fb3;
}
.sq25_form_descr .p20 span, .sq25_form_descr body .hs_form_wrap.descr_top .descr .sub span, body .hs_form_wrap.descr_top .descr .sq25_form_descr .sub span, .sq25_form_descr .modal_sssn .suport_video_page_descr .title span, .modal_sssn .suport_video_page_descr .sq25_form_descr .title span, .sq25_form_descr .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote span, .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .sq25_form_descr .quote span {
  color: #ff2fb3;
}
.sq25_form_descr .p24, .sq25_form_descr .top_10_timer p, .top_10_timer .sq25_form_descr p {
  color: #ff2fb3;
}

.sls_bnr_circles_head {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.sls_bnr_circles_head .cover_image img {
  border-radius: 12px 12px 0 0;
}
.sls_bnr_circles_head .p22, .sls_bnr_circles_head .upsell_content_reviews .reviews_wrap .review .name span:nth-child(1), .upsell_content_reviews .reviews_wrap .review .name .sls_bnr_circles_head span:nth-child(1), .sls_bnr_circles_head .upsell_2025_content_will_transform ul li, .upsell_2025_content_will_transform ul .sls_bnr_circles_head li, .sls_bnr_circles_head .upsell_content_sub_bnr_top .grey_wrap ul li, .upsell_content_sub_bnr_top .grey_wrap ul .sls_bnr_circles_head li, .sls_bnr_circles_head .upsell_2025_stats p span:nth-child(2), .upsell_2025_stats p .sls_bnr_circles_head span:nth-child(2), .sls_bnr_circles_head .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub, .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sls_bnr_circles_head .sub, .sls_bnr_circles_head .reg_form h5, .reg_form .sls_bnr_circles_head h5, .sls_bnr_circles_head #program_faq .card .card-header h5 span b, #program_faq .card .card-header h5 span .sls_bnr_circles_head b, .sls_bnr_circles_head #program_faq .card .card-body li, #program_faq .card .card-body .sls_bnr_circles_head li,
.sls_bnr_circles_head #program_faq .card .card-body p,
#program_faq .card .card-body .sls_bnr_circles_head p, .sls_bnr_circles_head .ses_wrap .sssn.big .media-body .ssn_ttl, .ses_wrap .sssn.big .media-body .sls_bnr_circles_head .ssn_ttl, .sls_bnr_circles_head .modal_sssn .sssn_meta h1, .modal_sssn .sssn_meta .sls_bnr_circles_head h1, .sls_bnr_circles_head .circle_bnr_top .list_wrap p, .circle_bnr_top .list_wrap .sls_bnr_circles_head p, .sls_bnr_circles_head .circle_content_steps .wrap .step .sub, .circle_content_steps .wrap .step .sls_bnr_circles_head .sub, .sls_bnr_circles_head .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p b, .sls24_mastery_sessions .sls24_mastery_sessions_slider .item p .sls_bnr_circles_head b, .sls_bnr_circles_head .showcase_bnr_top .top_list p, .showcase_bnr_top .top_list .sls_bnr_circles_head p, .sls_bnr_circles_head .showcase_steps .wrap .step .sub, .showcase_steps .wrap .step .sls_bnr_circles_head .sub, .sls_bnr_circles_head .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p span:nth-child(1), .showcase_slider_reviews_btm .slider_reviews_btm .slide .descr .speaker_info p .sls_bnr_circles_head span:nth-child(1), .sls_bnr_circles_head .sq25_3_reasons .item p:nth-child(2), .sq25_3_reasons .item .sls_bnr_circles_head p:nth-child(2) {
  font-family: "Poppins";
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.sls_bnr_circles_body {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  background: #f3f0f3;
}
.sls_bnr_circles_body .h26 b {
  color: #aa2294;
}
.sls_bnr_circles_body .h26 a {
  text-decoration: underline;
  color: #0F0F3D;
}
.sls_bnr_circles_body .h26 a:hover {
  text-decoration: initial;
}
.sls_bnr_circles_body .circle_bnr {
  position: relative;
  max-width: 1250px;
  height: 670px;
  margin: 0px auto;
  text-align: center;
  display: flex;
  align-items: center;
  align-content: center;
}
@media (max-width: 1200px) {
  .sls_bnr_circles_body .circle_bnr {
    height: 555px;
  }
}
@media (max-width: 767px) {
  .sls_bnr_circles_body .circle_bnr {
    height: initial;
  }
}
.sls_bnr_circles_body .circle_bnr .cover_image img {
  object-fit: contain;
}
@media (max-width: 1200px) {
  .sls_bnr_circles_body .circle_bnr .cover_image img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .sls_bnr_circles_body .circle_bnr .cover_image img {
    display: none;
  }
}
.sls_bnr_circles_body .circle_bnr p {
  color: #552b89;
}
@media (max-width: 1200px) {
  .sls_bnr_circles_body .circle_bnr p {
    max-width: 400px;
  }
}
.sls_bnr_circles_body .circle_bnr p b {
  color: #aa2294;
}
.sls_bnr_circles_body .circle_content_steps_wrap > p {
  color: #552b89;
}
.sls_bnr_circles_body .circle_content_steps_wrap > p b {
  color: #aa2294;
}
.sls_bnr_circles_body .circle_content_steps_wrap .wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 639px) {
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap {
    flex-wrap: wrap;
  }
}
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step {
  width: calc(33.33% - 15px);
  max-width: 290px;
  margin: 15px 15px;
  padding: 22px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}
@media (max-width: 639px) {
  .sls_bnr_circles_body .circle_content_steps_wrap .wrap .step {
    width: 100%;
  }
}
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .ttl {
  color: #aa2294;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 48px */
}
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .sub {
  color: #0f0f3d;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  margin-bottom: 20px;
}
.sls_bnr_circles_body .circle_content_steps_wrap .wrap .step .txt {
  color: #0f0f3d;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}
.sls_bnr_circles_body .timer_section {
  text-align: center;
}
.sls_bnr_circles_body .timer_section > p {
  margin: 0 auto;
}
.sls_bnr_circles_body .timer_section > p b {
  color: #aa2294;
}
.sls_bnr_circles_body .timer_section .sls_countdown {
  min-height: 111px;
}
@media (max-width: 639px) {
  .sls_bnr_circles_body .timer_section .sls_countdown {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.sls_bnr_circles_body .timer_section .sls_countdown .countdown-row {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.sls_bnr_circles_body .timer_section .sls_countdown .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
}
.sls_bnr_circles_body .timer_section .sls_countdown .countdown-section:before {
  position: absolute;
  top: 15px;
  right: -5px;
  font-size: 60px;
  font-weight: 300;
  color: #f04282;
  content: ":";
}
@media (max-width: 991px) {
  .sls_bnr_circles_body .timer_section .sls_countdown .countdown-section:before {
    font-size: 50px;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .sls_bnr_circles_body .timer_section .sls_countdown .countdown-section:before {
    font-size: 30px;
    top: 0px;
  }
}
.sls_bnr_circles_body .timer_section .sls_countdown .countdown-section.nodot:before {
  display: none !important;
}
.sls_bnr_circles_body .timer_section .sls_countdown .countdown-section .countdown-amount {
  width: 100%;
  color: #f04282;
  font-size: 80px;
  font-weight: 300;
  font-style: initial;
  letter-spacing: -1.6px;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .sls_bnr_circles_body .timer_section .sls_countdown .countdown-section .countdown-amount {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .sls_bnr_circles_body .timer_section .sls_countdown .countdown-section .countdown-amount {
    font-size: 30px;
  }
}
.sls_bnr_circles_body .timer_section .sls_countdown .countdown-section .countdown-period {
  margin-top: -14px;
  width: 100%;
  color: #0f0f3d;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: #0f0f3d;
  text-align: center;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .sls_bnr_circles_body .timer_section .sls_countdown .countdown-section .countdown-period {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sls_bnr_circles_body .timer_section .sls_countdown .countdown-section .countdown-period {
    font-size: 14px;
  }
}

.top3_timer > p b {
  color: #df376f;
}
.top3_timer .sls_countdown {
  min-height: 111px;
}
@media (max-width: 639px) {
  .top3_timer .sls_countdown {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.top3_timer .sls_countdown .countdown-row {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.top3_timer .sls_countdown .countdown-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
}
.top3_timer .sls_countdown .countdown-section:before {
  position: absolute;
  top: 15px;
  right: -5px;
  font-size: 60px;
  font-weight: 300;
  color: #f04282;
  content: ":";
}
@media (max-width: 991px) {
  .top3_timer .sls_countdown .countdown-section:before {
    font-size: 50px;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .top3_timer .sls_countdown .countdown-section:before {
    font-size: 30px;
    top: 0px;
  }
}
.top3_timer .sls_countdown .countdown-section.nodot:before {
  display: none !important;
}
.top3_timer .sls_countdown .countdown-section .countdown-amount {
  text-align: center;
  width: 100%;
  color: #f04282;
  font-size: 80px;
  font-weight: 300;
  font-style: initial;
  letter-spacing: -1.6px;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .top3_timer .sls_countdown .countdown-section .countdown-amount {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .top3_timer .sls_countdown .countdown-section .countdown-amount {
    font-size: 30px;
  }
}
.top3_timer .sls_countdown .countdown-section .countdown-period {
  margin-top: -14px;
  width: 100%;
  color: #0f0f3d;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: #0f0f3d;
  text-align: center;
  font-family: "Inter";
}
@media (max-width: 991px) {
  .top3_timer .sls_countdown .countdown-section .countdown-period {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .top3_timer .sls_countdown .countdown-section .countdown-period {
    font-size: 14px;
  }
}

.sq25_ty_bnr_top {
  position: relative;
  background: #bc1c64;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .sq25_ty_bnr_top {
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  .sq25_ty_bnr_top .summit_logo {
    max-width: 195px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .sq25_ty_bnr_top .summit_logo picture {
    width: 100%;
    max-width: 220px;
  }
}
.sq25_ty_bnr_top h1 {
  text-shadow: 0px 2px 15px rgba(101, 0, 72, 0.8);
  line-height: 90%;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
  text-transform: uppercase;
}
.sq25_ty_bnr_top h1 span {
  color: #ff80ae;
}
.sq25_ty_bnr_top .h40 span, .sq25_ty_bnr_top .rec25_bnt_top_stats .item span:nth-child(1) span, .rec25_bnt_top_stats .item .sq25_ty_bnr_top span:nth-child(1) span, .sq25_ty_bnr_top .upsel_price_build .price_block .mid .price span, .upsel_price_build .price_block .mid .sq25_ty_bnr_top .price span, .sq25_ty_bnr_top .upsell_2025_stats p span:nth-child(1) span, .upsell_2025_stats p .sq25_ty_bnr_top span:nth-child(1) span, .sq25_ty_bnr_top .reg_form h2 span, .reg_form .sq25_ty_bnr_top h2 span, .sq25_ty_bnr_top #banner.pre_smmt .bnr_top h1 span, #banner.pre_smmt .bnr_top .sq25_ty_bnr_top h1 span, .sq25_ty_bnr_top body .step_1 b span, body .step_1 .sq25_ty_bnr_top b span,
.sq25_ty_bnr_top body .step_2 b span,
body .step_2 .sq25_ty_bnr_top b span,
.sq25_ty_bnr_top body .step_3 b span,
body .step_3 .sq25_ty_bnr_top b span, .sq25_ty_bnr_top .sq25_success .slider_quote_reviews .rev .descr .copy span, .sq25_success .slider_quote_reviews .rev .descr .sq25_ty_bnr_top .copy span {
  color: #ff80ae;
}

.sq25_ty_bnr_sub {
  position: relative;
  background: #DF376F;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.sq25_ty_bnr_sub > p {
  text-transform: capitalize;
}
.sq25_ty_bnr_sub .down_icon_new {
  position: absolute;
  top: initial;
  bottom: -38px;
  margin: 0 auto;
  width: 77px;
  height: 77px;
  background: url(../img/pages/sq25/arrow_down_pink.png) no-repeat 50% 50%/cover !important;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .sq25_ty_bnr_sub .down_icon_new {
    width: 35px;
    height: 35px;
    bottom: -18px;
  }
}
.sq25_ty_bnr_sub .down_icon_new:before, .sq25_ty_bnr_sub .down_icon_new:after {
  display: none;
}
.sq25_ty_bnr_sub .down_icon_new span {
  display: none;
}
.sq25_ty_bnr_sub .down_icon_new span:before {
  display: none;
}

.sq25_ty_content {
  text-align: center;
}
.sq25_ty_content .c_1 {
  color: #DF376F;
}
.sq25_ty_content .c_2 {
  color: #E35886;
}
.sq25_ty_content .grey_wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  background: #F8F8F8;
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-funnel_upsell_2025 .card .card-header a.btn_collapse {
  color: #B70074;
}
.page-template-funnel_upsell_2025 .accordion .card-header {
  border-bottom: 1px solid #E0E0E0;
}
.page-template-funnel_upsell_2025 .accordion .card-header h5 {
  font-weight: 600;
}

.btn.upsell_2025_btn_cta {
  border-radius: 60px;
  background: #5E1DE1;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 450px;
  height: 60px;
  line-height: 60px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.15);
  border-radius: 60px;
}
@media (max-width: 767px) {
  .btn.upsell_2025_btn_cta {
    padding: 10px 15px;
    height: 50px;
    line-height: 50px;
  }
}
.btn.upsell_2025_btn_cta:hover {
  background: #6e33e5;
}
.btn.upsell_2025_btn_cta.without_small p {
  top: 0;
}
.btn.upsell_2025_btn_cta.without_small p small {
  display: none;
}
.btn.upsell_2025_btn_cta.without_small p b {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .btn.upsell_2025_btn_cta svg {
    width: 30px;
    min-width: 30px;
  }
}
.btn.upsell_2025_btn_cta p {
  margin-bottom: 0 !important;
  text-align: left !important;
  position: relative;
  padding-left: 10px;
}
.btn.upsell_2025_btn_cta p b {
  display: block;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 18px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
  margin-bottom: -2px;
}
@media (max-width: 767px) {
  .btn.upsell_2025_btn_cta p b {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .btn.upsell_2025_btn_cta p b {
    font-size: 12px;
  }
}
.btn.upsell_2025_btn_cta p small {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
}
@media (max-width: 767px) {
  .btn.upsell_2025_btn_cta p small {
    font-size: 12px;
  }
}
.btn.upsell_2025_btn_cta p small span {
  font-weight: 600;
}

.btn.upsell_2025_btn_price {
  background: #5E1DE1;
  color: #fff !important;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 250px;
  height: 60px;
  line-height: 60px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  font-weight: 600;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .btn.upsell_2025_btn_price {
    padding: 10px 15px;
    max-width: 240px;
    height: 50px;
    line-height: 50px;
  }
}
.btn.upsell_2025_btn_price:hover {
  background: #6e33e5;
}
.btn.upsell_2025_btn_price.without_small p {
  top: 0;
}
.btn.upsell_2025_btn_price.without_small p small {
  display: none;
}
.btn.upsell_2025_btn_price.without_small p b {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .btn.upsell_2025_btn_price svg {
    width: 30px;
    min-width: 30px;
  }
}
.btn.upsell_2025_btn_price p {
  margin-bottom: 0 !important;
  text-align: left !important;
  position: relative;
  padding-left: 10px;
}
.btn.upsell_2025_btn_price p b {
  display: block;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 18px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
  margin-bottom: -2px;
}
@media (max-width: 767px) {
  .btn.upsell_2025_btn_price p b {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .btn.upsell_2025_btn_price p b {
    font-size: 12px;
  }
}
.btn.upsell_2025_btn_price p small {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
}
@media (max-width: 767px) {
  .btn.upsell_2025_btn_price p small {
    font-size: 12px;
  }
}
.btn.upsell_2025_btn_price p small span {
  font-weight: 600;
}

.upsell_2025_header {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 25px 20px;
  margin: 0 auto;
  background: #fff;
}
.upsell_2025_header p {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
  margin-left: 35px;
  padding-left: 30px;
  border-left: 1px solid #fff;
}
@media (max-width: 991px) {
  .upsell_2025_header p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .upsell_2025_header p {
    display: none;
  }
}
.upsell_2025_header p b {
  font-size: 16px;
  font-weight: 600;
  color: #5e1de1;
}
@media (max-width: 991px) {
  .upsell_2025_header p b {
    font-size: 14px;
  }
}

.upsell_2025_bnr_top {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  background: #350E70;
  display: flex;
  align-items: center;
  align-content: center;
  padding-left: 160px;
  padding-right: 160px;
  position: relative;
}
@media (max-width: 991px) {
  .upsell_2025_bnr_top {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .upsell_2025_bnr_top {
    flex-wrap: wrap;
  }
}
.upsell_2025_bnr_top .p20, .upsell_2025_bnr_top body .hs_form_wrap.descr_top .descr .sub, body .hs_form_wrap.descr_top .descr .upsell_2025_bnr_top .sub, .upsell_2025_bnr_top .modal_sssn .suport_video_page_descr .title, .modal_sssn .suport_video_page_descr .upsell_2025_bnr_top .title, .upsell_2025_bnr_top .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .quote, .sls_slider_reviews_btm .slider_reviews_btm .slide .descr .upsell_2025_bnr_top .quote {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .upsell_2025_bnr_top picture {
    order: 1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .upsell_2025_bnr_top picture img {
    max-width: 100%;
  }
}
.upsell_2025_bnr_top .descr {
  padding-right: 60px;
}
@media (max-width: 767px) {
  .upsell_2025_bnr_top .descr {
    order: 2;
  }
}
.upsell_2025_bnr_top .descr .upsell_2025_btn_cta {
  margin-left: 0 !important;
}

.upsell_2025_stats {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 60px 15px;
  background: #2D0D5D;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .upsell_2025_stats {
    padding: 30px 15px 15px;
  }
}
@media (max-width: 639px) {
  .upsell_2025_stats {
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.upsell_2025_stats p {
  margin-bottom: 0;
  color: #fff;
  margin: 0 75px 0;
  font-family: "Inter";
  text-align: center;
}
@media (max-width: 1300px) {
  .upsell_2025_stats p {
    margin: 0 50px;
  }
}
@media (max-width: 991px) {
  .upsell_2025_stats p {
    margin: 0 25px;
    line-height: 100%;
  }
}
@media (max-width: 767px) {
  .upsell_2025_stats p {
    margin: 0 15px;
  }
}
@media (max-width: 639px) {
  .upsell_2025_stats p {
    margin: 0 8px 15px;
    width: calc(50% - 16px);
  }
}
.upsell_2025_stats p span:nth-child(1) {
  font-weight: 700;
  line-height: 120%;
  display: block;
  margin-bottom: 10px;
  color: #D5B0FF;
}
@media (max-width: 639px) {
  .upsell_2025_stats p span:nth-child(1) {
    margin-bottom: 5px;
  }
}
.upsell_2025_stats p span:nth-child(2) {
  color: #fff;
  font-weight: 500;
  line-height: 130%;
}

.upsell_content_sub_bnr_top {
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}
.upsell_content_sub_bnr_top .container > p span {
  color: #B70074;
}
.upsell_content_sub_bnr_top .grey_wrap {
  background: #F8F8F8;
  border-radius: 12px;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .upsell_content_sub_bnr_top .grey_wrap {
    margin-top: 80px;
    padding-top: 40px;
    margin-bottom: 50px;
  }
}
.upsell_content_sub_bnr_top .grey_wrap .scroll_down {
  position: absolute;
  top: -30px;
  width: 60px;
  height: 54px;
  background: url(../img/pages/upsell_2025/arrow_icon_1.png) no-repeat 50% 50%/cover !important;
  border-radius: 0;
  margin: 0 auto;
}
.upsell_content_sub_bnr_top .grey_wrap .scroll_down:before, .upsell_content_sub_bnr_top .grey_wrap .scroll_down:after {
  display: none;
}
.upsell_content_sub_bnr_top .grey_wrap .scroll_down span {
  display: none;
}
.upsell_content_sub_bnr_top .grey_wrap p span {
  color: #5E1EE1;
  font-weight: 700;
}
.upsell_content_sub_bnr_top .grey_wrap ul li {
  margin-bottom: 15px;
}
.upsell_content_sub_bnr_top .grey_wrap ul li::marker {
  color: #5E1EE1;
}
.upsell_content_sub_bnr_top .grey_wrap ul li span {
  color: #5E1EE1;
  font-weight: 700;
}

.upsell_bnr_what_inside {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  background: #350E70;
  color: #fff;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}
@media (max-width: 1300px) {
  .upsell_bnr_what_inside {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .upsell_bnr_what_inside {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 80px !important;
    padding-top: 80px !important;
  }
}
.upsell_bnr_what_inside .scroll_down {
  position: absolute;
  top: -30px;
  width: 60px;
  height: 54px;
  background: url(../img/pages/upsell_2025/arrow_icon_2.png) no-repeat 50% 50%/cover !important;
  border-radius: 0;
  margin: 0 auto;
}
.upsell_bnr_what_inside .scroll_down:before, .upsell_bnr_what_inside .scroll_down:after {
  display: none;
}
.upsell_bnr_what_inside .scroll_down span {
  display: none;
}
.upsell_bnr_what_inside .items_wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .upsell_bnr_what_inside .items_wrap {
    flex-wrap: wrap;
  }
}
.upsell_bnr_what_inside .items_wrap .item {
  width: 100%;
  max-width: 25%;
  padding: 25px 25px;
}
@media (max-width: 991px) {
  .upsell_bnr_what_inside .items_wrap .item {
    max-width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 479px) {
  .upsell_bnr_what_inside .items_wrap .item {
    max-width: 100%;
  }
}
.upsell_bnr_what_inside .items_wrap .item picture {
  margin-bottom: 10px;
  height: 60px;
  display: block;
}
@media (max-width: 991px) {
  .upsell_bnr_what_inside .items_wrap .item picture {
    margin-bottom: 5px;
  }
}
.upsell_bnr_what_inside .items_wrap .item p.c_p {
  color: #FF6297;
}
.upsell_bnr_what_inside .items_wrap .item p:nth-child(2) {
  font-size: 30px;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 1300px) {
  .upsell_bnr_what_inside .items_wrap .item p:nth-child(2) {
    font-size: 24px;
    margin-bottom: 5px;
  }
}
.upsell_bnr_what_inside p span {
  color: #B70074;
}

.upsell_content_series {
  max-width: 1600px !important;
}
.upsell_content_series .sub {
  font-size: 30px;
  color: #B70074;
  font-weight: 600;
  line-height: 160%;
}
@media (max-width: 991px) {
  .upsell_content_series .sub {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .upsell_content_series .sub {
    font-size: 20px;
  }
}
.upsell_content_series .links_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .upsell_content_series .links_wrap {
    flex-wrap: wrap;
  }
}
.upsell_content_series .links_wrap a {
  margin: 20px 20px;
  transition: all 0.2s;
}
.upsell_content_series .links_wrap a .btn {
  width: 100%;
}
@media (max-width: 767px) {
  .upsell_content_series .links_wrap a {
    margin: 10px;
    width: calc(50% - 20px);
  }
}

.modal_upsell_speaker .modal-dialog {
  max-width: 910px;
  width: 100%;
  padding-top: 80px;
}
.modal_upsell_speaker .modal-content {
  overflow: visible;
}
.modal_upsell_speaker .modal-header {
  padding: 0;
  background: transparent;
  border: initial;
}
.modal_upsell_speaker .modal-header .close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 30px;
  height: 30px;
  z-index: 1000;
  top: -20px;
  background: #5E1DE1;
  color: #fff;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .modal_upsell_speaker .modal-header .close {
    top: 30px;
    right: 30px;
  }
}
.modal_upsell_speaker .modal-body {
  padding: 0;
}
.modal_upsell_speaker .modal-body .content_part {
  border-left: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
  padding: 40px 60px 100px;
}
@media (max-width: 767px) {
  .modal_upsell_speaker .modal-body .content_part {
    padding: 20px 15px 30px;
  }
}
.modal_upsell_speaker .modal-body .content_part .ttl {
  color: #0F0F3D;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  margin-bottom: 0;
}
.modal_upsell_speaker .modal-body .content_part .sub {
  color: #828282;
  font-family: Inter;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 180%;
  margin-top: -5px;
}
.modal_upsell_speaker .modal-body .content_part .accordion .card-body p span {
  color: #B70074;
  font-weight: 700;
}
.modal_upsell_speaker .modal-body .content_part .accordion .card-body p b {
  display: block;
}

.upsell_2025_content_will_transform {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  background: #F8F8F8;
  position: relative;
}
.upsell_2025_content_will_transform .scroll_down {
  position: absolute;
  top: -30px;
  width: 60px;
  height: 54px;
  background: url(../img/pages/upsell_2025/arrow_icon_1.png) no-repeat 50% 50%/cover !important;
  border-radius: 0;
  margin: 0 auto;
}
.upsell_2025_content_will_transform .scroll_down:before, .upsell_2025_content_will_transform .scroll_down:after {
  display: none;
}
.upsell_2025_content_will_transform .scroll_down span {
  display: none;
}
.upsell_2025_content_will_transform .h40 span, .upsell_2025_content_will_transform .rec25_bnt_top_stats .item span:nth-child(1) span, .rec25_bnt_top_stats .item .upsell_2025_content_will_transform span:nth-child(1) span, .upsell_2025_content_will_transform .upsel_price_build .price_block .mid .price span, .upsel_price_build .price_block .mid .upsell_2025_content_will_transform .price span, .upsell_2025_content_will_transform .reg_form h2 span, .reg_form .upsell_2025_content_will_transform h2 span, .upsell_2025_content_will_transform #banner.pre_smmt .bnr_top h1 span, #banner.pre_smmt .bnr_top .upsell_2025_content_will_transform h1 span, .upsell_2025_content_will_transform body .step_1 b span, body .step_1 .upsell_2025_content_will_transform b span,
.upsell_2025_content_will_transform body .step_2 b span,
body .step_2 .upsell_2025_content_will_transform b span,
.upsell_2025_content_will_transform body .step_3 b span,
body .step_3 .upsell_2025_content_will_transform b span, .upsell_2025_content_will_transform .sq25_success .slider_quote_reviews .rev .descr .copy span, .sq25_success .slider_quote_reviews .rev .descr .upsell_2025_content_will_transform .copy span, .upsell_2025_content_will_transform .upsell_2025_stats p span:nth-child(1) span, .upsell_2025_stats p .upsell_2025_content_will_transform span:nth-child(1) span {
  color: #5E1DE1;
}
.upsell_2025_content_will_transform ul li {
  color: #0F0F3D;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 20px;
}
.upsell_2025_content_will_transform ul li span {
  color: #B70074;
  font-weight: 700;
}
.upsell_2025_content_will_transform ul li::marker {
  color: #B70074;
}
.upsell_2025_content_will_transform p span {
  color: #B70074;
}

.upsell_content_reviews {
  overflow: hidden;
}
.upsell_content_reviews hr {
  margin-top: 100px;
  max-width: 390px;
}
@media (max-width: 767px) {
  .upsell_content_reviews hr {
    margin-top: 60px;
  }
}
.upsell_content_reviews .ttl {
  text-align: center;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .upsell_content_reviews .ttl {
    font-size: 32px;
    line-height: 44px;
    max-width: 370px;
  }
}
@media (max-width: 639px) {
  .upsell_content_reviews .ttl {
    max-width: 320px;
    font-size: 28px;
    line-height: 36px;
  }
}
.upsell_content_reviews .ttl span {
  display: block;
  margin-bottom: 0;
}
.upsell_content_reviews .ttl .face {
  position: absolute;
}
@media (max-width: 991px) {
  .upsell_content_reviews .ttl .face {
    transform: scale(0.7);
  }
}
@media (max-width: 767px) {
  .upsell_content_reviews .ttl .face {
    transform: scale(0.5);
  }
}
@media (max-width: 639px) {
  .upsell_content_reviews .ttl .face {
    transform: scale(0.3);
  }
}
.upsell_content_reviews .ttl .face.p1 {
  top: -120px;
  right: -33%;
}
@media (max-width: 1300px) {
  .upsell_content_reviews .ttl .face.p1 {
    right: -25%;
  }
}
@media (max-width: 991px) {
  .upsell_content_reviews .ttl .face.p1 {
    right: -10%;
    top: -70px;
  }
}
@media (max-width: 767px) {
  .upsell_content_reviews .ttl .face.p1 {
    right: -15%;
    top: -60px;
  }
}
.upsell_content_reviews .ttl .face.p1 img {
  width: 100px;
}
.upsell_content_reviews .ttl .face.p2 {
  top: 53px;
  left: -40%;
}
@media (max-width: 1300px) {
  .upsell_content_reviews .ttl .face.p2 {
    left: -30%;
  }
}
@media (max-width: 991px) {
  .upsell_content_reviews .ttl .face.p2 {
    left: -25%;
  }
}
@media (max-width: 767px) {
  .upsell_content_reviews .ttl .face.p2 {
    top: 30px;
  }
}
@media (max-width: 479px) {
  .upsell_content_reviews .ttl .face.p2 {
    left: -15%;
  }
}
.upsell_content_reviews .ttl .face.p2 img {
  width: 100px;
}
.upsell_content_reviews .ttl .face.p3 {
  bottom: -120px;
  right: -15%;
}
@media (max-width: 991px) {
  .upsell_content_reviews .ttl .face.p3 {
    right: -5%;
  }
}
@media (max-width: 767px) {
  .upsell_content_reviews .ttl .face.p3 {
    bottom: -85px;
  }
}
.upsell_content_reviews .ttl .face.p3 img {
  width: 100px;
}
.upsell_content_reviews .reviews_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 160px;
  margin-bottom: 160px;
}
@media (max-width: 991px) {
  .upsell_content_reviews .reviews_wrap {
    margin-bottom: 50px;
    margin-top: 100px;
  }
}
.upsell_content_reviews .reviews_wrap .review {
  display: block;
}
.upsell_content_reviews .reviews_wrap .review picture {
  display: block;
  margin-bottom: 30px;
}
.upsell_content_reviews .reviews_wrap .review .quote {
  color: #0F0F3D;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 30px;
  padding-right: 30px;
}
.upsell_content_reviews .reviews_wrap .review .name {
  color: #0F0F3D;
}
.upsell_content_reviews .reviews_wrap .review .name span:nth-child(1) {
  display: block;
}
.upsell_content_reviews .reviews_wrap .review .name span:nth-child(2) {
  font-style: italic;
  display: block;
}

.upsel_price_build {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 15px;
  padding-right: 15px;
}
.upsel_price_build > p {
  width: 100%;
}
.upsel_price_build > p b {
  color: #B70074;
}
.upsel_price_build .w100 {
  width: 100%;
}
.upsel_price_build .w100 p b {
  color: #B70074;
}
.upsel_price_build .c_p {
  color: #B70074;
}
.upsel_price_build .wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .upsel_price_build .wrap {
    flex-wrap: wrap;
  }
}
.upsel_price_build .price_block {
  border-radius: 10px;
  overflow: hidden;
  background: #E5DEFF;
  max-width: 620px;
  width: 100%;
  margin: 0 15px;
  text-align: center;
}
.upsel_price_build .price_block.v2 {
  margin-bottom: 20px;
}
.upsel_price_build .price_block.v2 .top {
  min-height: 180px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .upsel_price_build .price_block.v2 .top {
    min-height: initial;
  }
}
.upsel_price_build .price_block.v2 .mid {
  min-height: 150px;
}
@media (max-width: 767px) {
  .upsel_price_build .price_block.v2 .mid {
    min-height: initial;
  }
}
.upsel_price_build .price_block .top {
  padding-left: 15px;
  padding-right: 15px;
}
.upsel_price_build .price_block .mid {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  background: #F0EDFA;
}
.upsel_price_build .price_block .mid .price {
  width: 100%;
  color: #B70074;
  font-weight: 600;
  margin-bottom: 15px;
}
.upsel_price_build .price_block .mid .sub {
  width: 100%;
  color: #0F0F3D;
  text-align: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  line-height: 18.187px; /* 125% */
}
.upsel_price_build .price_block .bottom > p {
  color: #6335C3;
  text-align: center;
  font-family: Poppins;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 0;
}
.upsel_price_build .price_block .bottom .btn {
  display: flex;
  flex-direction: column;
  line-height: initial;
}
.upsel_price_build .price_block .bottom .btn small {
  display: block;
  font-weight: 500;
}

#pricing_in_action {
  margin: 80px 0 120px 535px;
  border-radius: 10px;
  width: 505px;
}
@media (max-width: 991px) {
  #pricing_in_action {
    margin: 100px 0 120px 300px;
    width: 380px;
  }
}
@media (max-width: 767px) {
  #pricing_in_action {
    margin: 100px 0 80px;
  }
}
#pricing_in_action .head {
  border-radius: 10px 10px 0 0;
  background: #E5DEFF;
  position: relative;
}
#pricing_in_action .head picture {
  position: absolute;
  display: table;
  margin: auto;
  top: -125px;
  left: 12px;
  right: 0;
}
@media (max-width: 767px) {
  #pricing_in_action .head picture {
    max-width: 280px;
  }
}
#pricing_in_action .head h3 {
  color: #0F0F3D;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 36px */
  padding: 115px 30px 32px;
  margin: 0;
}
@media (max-width: 991px) {
  #pricing_in_action .head h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  #pricing_in_action .head h3 {
    padding: 90px 30px 30px;
    font-size: 24px;
  }
}
#pricing_in_action .head h3 span {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 125% */
  margin-top: 10px;
}
#pricing_in_action .body {
  background: #F0EDFA;
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}
@media (max-width: 767px) {
  #pricing_in_action .body {
    margin: 0 0 30px;
  }
}
#pricing_in_action .body li {
  padding: 50px 20px 46px 20px;
  text-align: center;
  position: relative;
  margin: 0;
}
@media (max-width: 767px) {
  #pricing_in_action .body li {
    border-bottom: 1px solid #ddd;
    padding: 50px 15px 40px;
  }
}
#pricing_in_action .body li p.label {
  position: absolute;
  color: #0F0F3D;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px; /* 140% */
  text-align: left;
  left: -428px;
  margin: auto;
  bottom: 0;
  top: 33px;
}
@media (max-width: 991px) {
  #pricing_in_action .body li p.label {
    left: -300px;
  }
}
@media (max-width: 767px) {
  #pricing_in_action .body li p.label {
    position: relative;
    text-align: center;
    margin: 0 0 15px;
    font-size: 18px;
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
  }
}
#pricing_in_action .body li p.label i {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: block;
}
@media (max-width: 767px) {
  #pricing_in_action .body li p.label i {
    font-size: 14px;
  }
}
#pricing_in_action .body li span.qty {
  padding: 20px 20px 20px;
  color: #0F0F3D;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px; /* 100% */
}
#pricing_in_action .foot {
  border-radius: 0 0 10px 10px;
  background: #F0EDFA;
  text-align: center;
  overflow: hidden;
}
#pricing_in_action .foot span.price {
  color: #B70074;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  padding: 40px 0;
  display: block;
}
@media (max-width: 991px) {
  #pricing_in_action .foot span.price {
    padding: 35px 0;
  }
}
#pricing_in_action .foot .bottom {
  padding: 38px 15px;
  background: #E5DEFF;
}
#pricing_in_action .foot .bottom a {
  letter-spacing: 0.3px;
  line-height: initial;
  display: block;
}
@media (max-width: 767px) {
  #pricing_in_action .foot .bottom a {
    line-height: 1.2;
    display: block;
    height: 54px;
  }
}
#pricing_in_action .foot .bottom a small {
  display: block;
  font-weight: 500;
}

.upsell_2025_what_people_say {
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 130px;
}
@media (max-width: 991px) {
  .upsell_2025_what_people_say {
    padding-top: 130px;
  }
}
.upsell_2025_what_people_say .ttl {
  text-align: center;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .upsell_2025_what_people_say .ttl {
    font-size: 32px;
    line-height: 44px;
    max-width: 370px;
  }
}
@media (max-width: 639px) {
  .upsell_2025_what_people_say .ttl {
    max-width: 320px;
    font-size: 28px;
    line-height: 36px;
  }
}
.upsell_2025_what_people_say .ttl span {
  display: block;
}
.upsell_2025_what_people_say .ttl .face {
  position: absolute;
}
@media (max-width: 991px) {
  .upsell_2025_what_people_say .ttl .face {
    transform: scale(0.7);
  }
}
@media (max-width: 767px) {
  .upsell_2025_what_people_say .ttl .face {
    transform: scale(0.5);
  }
}
@media (max-width: 639px) {
  .upsell_2025_what_people_say .ttl .face {
    transform: scale(0.3);
  }
}
.upsell_2025_what_people_say .ttl .face.p1 {
  top: -140px;
  right: 3%;
}
@media (max-width: 767px) {
  .upsell_2025_what_people_say .ttl .face.p1 {
    right: -15%;
    top: -100px;
  }
}
@media (max-width: 639px) {
  .upsell_2025_what_people_say .ttl .face.p1 {
    top: -80px;
  }
}
.upsell_2025_what_people_say .ttl .face.p1 img {
  width: 100px;
}
.upsell_2025_what_people_say .ttl .face.p2 {
  top: 22px;
  left: -10%;
}
@media (max-width: 767px) {
  .upsell_2025_what_people_say .ttl .face.p2 {
    top: 30px;
  }
}
@media (max-width: 479px) {
  .upsell_2025_what_people_say .ttl .face.p2 {
    left: -15%;
    top: 0;
  }
}
.upsell_2025_what_people_say .ttl .face.p2 img {
  width: 112px;
}
.upsell_2025_what_people_say .ttl .face.p3 {
  bottom: -120px;
  right: -15%;
}
@media (max-width: 991px) {
  .upsell_2025_what_people_say .ttl .face.p3 {
    right: -5%;
  }
}
@media (max-width: 767px) {
  .upsell_2025_what_people_say .ttl .face.p3 {
    bottom: -85px;
  }
}
.upsell_2025_what_people_say .ttl .face.p3 img {
  width: 110px;
}
.upsell_2025_what_people_say .video_noc {
  max-width: 910px;
  margin: 180px auto 40px;
}
@media (max-width: 639px) {
  .upsell_2025_what_people_say .video_noc {
    margin-top: 150px;
  }
}
.upsell_2025_what_people_say .video_noc .video-container img {
  border-radius: 0px;
}

.upsell_hogan_bnr_top {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #350E70;
  padding-left: 175px;
  padding-right: 175px;
  position: relative;
  font-family: "Inter", serif;
}
@media (max-width: 1699px) {
  .upsell_hogan_bnr_top {
    border-radius: 0;
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media (max-width: 991px) {
  .upsell_hogan_bnr_top {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.upsell_hogan_bnr_top .wrap {
  max-width: 520px;
}
.upsell_hogan_bnr_top .wrap a {
  text-shadow: 1.853px 1.853px 5.56px rgba(0, 0, 0, 0.15);
  font-size: 22.242px;
  font-style: normal;
  font-weight: 600;
  padding: 12px 45px;
}
@media (max-width: 991px) {
  .upsell_hogan_bnr_top .wrap a {
    font-size: 18px;
    padding: 10px 30px;
  }
}
@media (max-width: 767px) {
  .upsell_hogan_bnr_top .wrap a {
    font-size: 16px;
  }
}
.upsell_hogan_bnr_top .wrap a img {
  margin: -4px 5px 0 0;
}
@media (max-width: 991px) {
  .upsell_hogan_bnr_top .wrap a img {
    max-width: 20px;
  }
}

@media (max-width: 991px) {
  .upsell_hogan_text .hogan_logo img {
    max-width: 220px;
  }
}
@media (max-width: 767px) {
  .upsell_hogan_text .hogan_logo img {
    max-width: 200px;
  }
}
@media (max-width: 639px) {
  .upsell_hogan_text .hogan_logo img {
    max-width: 180px;
  }
}
@media (max-width: 479px) {
  .upsell_hogan_text .hogan_logo img {
    max-width: 160px;
  }
}
.upsell_hogan_text .btn {
  text-shadow: 1.853px 1.853px 5.56px rgba(0, 0, 0, 0.15);
  font-family: Inter, serif;
  font-size: 22.242px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 16px 50px;
}
@media (max-width: 991px) {
  .upsell_hogan_text .btn {
    font-size: 18px;
    padding: 10px 40px;
  }
}
@media (max-width: 767px) {
  .upsell_hogan_text .btn {
    font-size: 16px;
  }
}

.page-template-funnel_recording_ty .sq25_prices_build .container {
  max-width: 900px;
}
.page-template-funnel_recording_ty .sq25_prices_build .table .row_wrap {
  justify-content: center;
}
.page-template-funnel_recording_ty .sq25_prices_build .table .row_wrap .column {
  width: calc(50% - 30px) !important;
}
.page-template-funnel_recording_ty .sq25_prices_build .show_more {
  width: calc(50% - 30px) !important;
}
.page-template-funnel_recording_ty .sq25_prices_build .table .row_wrap .column:nth-child(2) {
  display: none !important;
}

.rec25_bnt_top_stats {
  background: #bc1c64;
  position: relative;
  max-width: 1600px;
  padding: 65px 15px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
}
@media (max-width: 1300px) {
  .rec25_bnt_top_stats {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .rec25_bnt_top_stats {
    padding: 30px 15px;
  }
}
@media (max-width: 767px) {
  .rec25_bnt_top_stats {
    border-radius: 0;
  }
}
@media (max-width: 639px) {
  .rec25_bnt_top_stats {
    justify-content: space-between;
  }
}
.rec25_bnt_top_stats .arrow_down {
  position: absolute;
  z-index: 100;
  bottom: -40px;
  left: calc(50% - 46px);
  display: block;
  margin: 0 auto;
  width: 93px;
  height: 82px;
  transition: all 0.2s;
  z-index: 30;
}
@media (max-width: 767px) {
  .rec25_bnt_top_stats .arrow_down {
    width: 40px;
    height: 36px;
    top: -20px;
    left: calc(50% - 20px);
  }
}
.rec25_bnt_top_stats .arrow_down:hover {
  transform: scale(0.95);
}
.rec25_bnt_top_stats .item {
  margin-bottom: 0;
  color: #fff;
  margin: 0 50px 0;
  font-family: "Inter";
  text-align: center;
}
@media (max-width: 1300px) {
  .rec25_bnt_top_stats .item {
    margin: 0 50px;
  }
}
@media (max-width: 991px) {
  .rec25_bnt_top_stats .item {
    margin: 0 25px;
    line-height: 100%;
  }
}
@media (max-width: 767px) {
  .rec25_bnt_top_stats .item {
    margin: 0 15px;
  }
}
@media (max-width: 639px) {
  .rec25_bnt_top_stats .item {
    margin: 0 7.5px;
  }
}
.rec25_bnt_top_stats .item span:nth-child(1) {
  font-weight: 500;
  line-height: 120%;
  display: block;
}
.rec25_bnt_top_stats .item span:nth-child(2) {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 991px) {
  .rec25_bnt_top_stats .item span:nth-child(2) {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .rec25_bnt_top_stats .item span:nth-child(2) {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .rec25_bnt_top_stats .item span:nth-child(2) {
    font-size: 12px;
  }
}

.rec25_bnr_sub {
  background: #DF376F;
  position: relative;
  max-width: 1600px;
  padding: 65px 15px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media (max-width: 1300px) {
  .rec25_bnr_sub {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .rec25_bnr_sub {
    padding: 30px 15px;
  }
}
@media (max-width: 767px) {
  .rec25_bnr_sub {
    border-radius: 0;
  }
}
@media (max-width: 639px) {
  .rec25_bnr_sub {
    justify-content: space-between;
  }
}

.rec25_top_3 {
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.rec25_top_3 .item {
  width: 100%;
  background: #F8F8F8;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 35px 30px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .rec25_top_3 .item {
    margin-bottom: 15px;
  }
}
.rec25_top_3 .item a {
  display: block;
  min-width: 255px;
}
.rec25_top_3 .item .descr {
  padding-left: 30px;
}
.rec25_top_3 .item .descr .hidden_coma {
  display: none;
}
.rec25_top_3 .item .descr .hidden {
  display: none;
}
.rec25_top_3 .item .descr .ttl {
  color: #0F0F3D;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 10px;
}
.rec25_top_3 .item .descr .sub {
  font-style: italic;
  font-weight: 500;
  color: #0F0F3D;
}
.rec25_top_3 .item .descr .sub b {
  font-size: 16px !important;
  font-weight: 600;
  font-style: initial;
}
@media (max-width: 767px) {
  .rec25_top_3 .item .descr .sub b {
    font-size: 12px !important;
  }
}
.rec25_top_3 .item .descr .copy {
  color: #F75289;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  color: #5A5F68;
}
.rec25_top_3 .item .descr .copy a {
  color: #F75289;
  font-weight: 600;
  display: inline-block;
}

.rec25_guarantee {
  padding: 0 0 20px;
  background: #fff;
  margin-bottom: 150px;
}
@media (max-width: 1300px) {
  .rec25_guarantee {
    padding: 0 0 30px;
  }
}
@media (max-width: 639px) {
  .rec25_guarantee {
    padding: 0 0 0;
  }
}
@media (max-width: 1919px) {
  .rec25_guarantee.passes {
    padding: 20px 0 0;
  }
}
.rec25_guarantee .panel {
  max-width: 910px;
  margin: 0 auto;
  padding-bottom: 0px;
  border-color: #000;
  box-shadow: 1px 0px 15px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.rec25_guarantee .panel-heading {
  text-align: center;
  padding: 46px 95px;
  color: #fff;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  background: #6B1E75;
  background-size: cover;
}
@media (max-width: 1300px) {
  .rec25_guarantee .panel-heading {
    padding: 35px 70px;
  }
}
@media (max-width: 991px) {
  .rec25_guarantee .panel-heading {
    padding: 25px 50px;
  }
}
@media (max-width: 767px) {
  .rec25_guarantee .panel-heading {
    padding: 25px 30px;
  }
}
@media (max-width: 479px) {
  .rec25_guarantee .panel-heading {
    padding: 20px 15px;
  }
}
.rec25_guarantee .panel-body {
  padding: 60px 120px 100px 120px;
  position: relative;
  background: #fff;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 0;
  /* Firefox 1-3.6 */
  -moz-border-radius: 0;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 0;
}
@media (max-width: 991px) {
  .rec25_guarantee .panel-body {
    padding: 40px 70px 78px;
  }
}
@media (max-width: 767px) {
  .rec25_guarantee .panel-body {
    padding: 40px 70px 80px;
  }
}
@media (max-width: 479px) {
  .rec25_guarantee .panel-body {
    padding: 40px 30px 70px 30px;
  }
}
.rec25_guarantee .panel-body .c-cletter {
  position: relative;
  margin: 0;
  color: #000;
}
.rec25_guarantee .panel-body .c-cletter:before {
  content: "";
  margin: -40px 0 0 -16px;
  display: block;
  float: left;
  width: 60px;
  height: 65px;
  background-image: url("../img/icons/letter_w_pink.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.rec25_guarantee .panel-body .c-cletter span {
  display: none;
}
@media (max-width: 767px) {
  .rec25_guarantee .panel-body .c-cletter span {
    display: inline;
  }
}
.rec25_guarantee .panel-body:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  background-size: 100% auto;
  width: 160px;
  height: 160px;
  background-image: url("../img/icons/stamp.png?v2");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translate(-55%, 48%);
  -ms-transform: translate(-55%, 48%);
  -o-transform: translate(-55%, 48%);
  transform: translate(-55%, 48%);
}
@media (max-width: 479px) {
  .rec25_guarantee .panel-body:before {
    bottom: -5px;
    width: 120px;
  }
}

.rec25_what_people_say {
  overflow: hidden;
}
.rec25_what_people_say .ttl {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .rec25_what_people_say .ttl {
    font-size: 32px;
    line-height: 44px;
    max-width: 370px;
  }
}
@media (max-width: 639px) {
  .rec25_what_people_say .ttl {
    max-width: 320px;
    font-size: 28px;
    line-height: 36px;
  }
}
.rec25_what_people_say .ttl .face {
  position: absolute;
}
@media (max-width: 991px) {
  .rec25_what_people_say .ttl .face {
    transform: scale(0.7);
  }
}
@media (max-width: 767px) {
  .rec25_what_people_say .ttl .face {
    transform: scale(0.5);
  }
}
@media (max-width: 639px) {
  .rec25_what_people_say .ttl .face {
    transform: scale(0.3);
  }
}
.rec25_what_people_say .ttl .face.p1 {
  top: -120px;
  right: -33%;
}
@media (max-width: 1300px) {
  .rec25_what_people_say .ttl .face.p1 {
    right: -25%;
  }
}
@media (max-width: 991px) {
  .rec25_what_people_say .ttl .face.p1 {
    right: -20%;
  }
}
@media (max-width: 767px) {
  .rec25_what_people_say .ttl .face.p1 {
    right: -15%;
    top: -100px;
  }
}
.rec25_what_people_say .ttl .face.p1 img {
  width: 150px;
}
.rec25_what_people_say .ttl .face.p2 {
  top: 53px;
  left: -40%;
}
@media (max-width: 1300px) {
  .rec25_what_people_say .ttl .face.p2 {
    left: -30%;
  }
}
@media (max-width: 991px) {
  .rec25_what_people_say .ttl .face.p2 {
    left: -25%;
  }
}
@media (max-width: 767px) {
  .rec25_what_people_say .ttl .face.p2 {
    top: 30px;
  }
}
@media (max-width: 479px) {
  .rec25_what_people_say .ttl .face.p2 {
    left: -15%;
  }
}
.rec25_what_people_say .ttl .face.p2 img {
  width: 145px;
}
.rec25_what_people_say .ttl .face.p3 {
  bottom: -120px;
  right: -15%;
}
@media (max-width: 991px) {
  .rec25_what_people_say .ttl .face.p3 {
    right: -5%;
  }
}
@media (max-width: 767px) {
  .rec25_what_people_say .ttl .face.p3 {
    bottom: -85px;
  }
}
.rec25_what_people_say .ttl .face.p3 img {
  width: 120px;
}
.rec25_what_people_say .video_noc {
  max-width: 910px;
  margin: 180px auto 40px;
}
@media (max-width: 639px) {
  .rec25_what_people_say .video_noc {
    margin-top: 150px;
  }
}
.rec25_what_people_say .video_noc .video-container img {
  border-radius: 0px;
}

/*# sourceMappingURL=main.css.map */
