/****************************** ****************************** 
Root CSS
****************************** *****************************/ 
:root {
  font-size: 16px;
  --hy-primary: #12DB7D;
  --hy-primary-100: #19CD79;
  --hy-primary-200: #11D177;
  --hy-primary-300: #20C276;
  --hy-primary-400: #10C26F;
  --hy-primary-500: #188F57;
  --hy-secondary: #0D0C0C;
  --hy-secondary-100: #363131;
  --hy-secondary-200: #292626;
  --hy-secondary-300: #5C5555;
  --hy-secondary-400: #141313;
  --hy-secondary-500: #181616;
  --hy-secondary-600: #252424;
  --hy-neutral: #E8E5E5;
  --hy-neutral-50: #8E8E8E;
  --hy-neutral-100: #4E4E4F;
  --hy-neutral-200: #9C9696;
  --hy-neutral-300: #495159;
  --hy-neutral-500: #444E57;
  --hy-success: #0F693F;
  --hy-success-100: #eefff7;
  --hy-success-200: #e3faef;
  --hy-success-300: #0a3622;
  --hy-yellow: #F5CE43;
  --hy-warning: #FCF8E5;
  --hy-warning-100: #7B6841;
  --hy-error: #F43010;
  --hy-error-100: #FEE7E6;
  --hy-error-200: #FCE5E5;
  --hy-error-300: #800B0B;
  --hy-info: #cff4fc;
  --hy-info-100: #055160;
  --hy-shades-0: #FFFFFF;
  --hy-shades-100: #000000;
  --hy-gray: #FAF7F7;
  --hy-gray-100: #F5F2F2;
  --hy-gray-200: #EDEBEB;
  --hy-gray-300: #474747;
  --hy-gray-400: #E6E6E6;
  --hy-gray-500: #F7F7F7;
  --hy-gray-600: #EDEDED;
  --hy-gray-700: #807B7B;
  --hy-gray-800: #4B5058;
  --hy-gray-900: #F8F8F8;
  --hy-shades-0-rgb: 255, 255, 255;
  --hy-shades-100-rgb: 0, 0, 0;
  --heading-theme-font: 'Archivo Black', sans-serif;
  --primary-theme-font: 'Inter', sans-serif;
  --body-theme-font: 'Inter', sans-serif;
  --secondary-theme-font: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
/*body, html {
  overflow-x: hidden;
}*/
.overflow-hidden {
  overflow: hidden !important;
}
/*Flex Row and Col*/
.hy-flex-row {
  display: flex;
}
.hy-justify-content--center {
  justify-content: center;
}
.hy-align-items-center {
  align-items: center;
}
.hy-justify-content-between {
  justify-content: space-between;
}
.hy-order-first {
  order: -1 !important;
}
.hy-order-last {
  order: 6 !important;
}
@media (max-width: 767px) {
  .hy-order-sm-first {
    order: -1 !important;
  }
  .hy-order-sm-last {
    order: 6 !important;
  }
}
/*Select Box CSS*/
.hy-select .btn {
  border-radius: 8px;
  color: var(--hy-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  height: 46px;
  box-shadow: 0px 1px 2px 0px rgba(156, 150, 150, 0.24);
}
.hy-select .btn-default {
  border-color: rgba(34, 32, 32, 0.08);
}
.hy-select .btn-default:hover, .hy-select .btn-default:focus, .hy-select .btn-default.focus {
  border-color: rgba(255, 255, 255, 0.01);
  box-shadow: 0px 0px 0px 2px #0A0A0A;
}
.hy-select .form-control {
  height: 46px;
}
.hy-select .dropdown-menu {
  color: var(--hy-secondary);
  font-size: 0.875rem;
  font-weight: 400;
}
.hy-select .dropdown-menu > li > a {
  padding: 12px 20px;
  color: var(--hy-secondary);
  font-size: 0.875rem;
  font-weight: 400;
}
.hy-select .bootstrap-select.btn-group .dropdown-toggle .caret {
  border: none;
  background: url(../images/dropdown-select-arrow.svg) 0 0 /cover no-repeat;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
/*Radio Button CSS*/
.hy-form-check-inline {
  display: inline-block;
  margin-right: 2rem;
}
.hy-form-radio {
  display: block;
  min-height: 1.5rem;
  padding-left: 30px;
  margin-bottom: .125rem;
}
.hy-form-radio:last-child {
  margin-right: 0;
}
.hy-form-radio-input[type="radio"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--hy-shades-0);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid var(--hy-gray-400);
  border-radius: 50%;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}
.hy-form-radio .hy-form-radio-input {
  float: left;
  margin-left: -30px;
}
.hy-form-radio-input:checked {
  background-color: var(--hy-shades-0);
  border-color: var(--hy-secondary);
  box-shadow: none;
}
.hy-form-radio-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%230D0C0C'/%3e%3c/svg%3e");
}
.hy-form-radio-label {
  font-family: var(--body-theme-font);
  color: var(--hy-secondary);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  letter-spacing: normal;
}
/*Button CSS*/
.hype-block-buttons .hype-btn {
  width: 100%;
}
.hype-btn {
  font-family: var(--body-theme-font);
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 9px 15px;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.hype-btn-small {
  padding: 8px 12px;
  font-size: 0.875rem;
}
.hype-btn-large {
  padding: 12px 15px;
  font-size: 1.125rem;
}
.hype-btn-link {
  color: var(--hy-secondary);
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}
.hype-btn-link:hover {
  color: var(--hy-secondary);
  background-color: transparent;
  border-color: transparent;
  text-decoration: underline;
}
.hype-btn-link:active {
  color: var(--hy-secondary);
  background-color: transparent;
  border-color: transparent;
}
.hype-btn-green {
  color: var(--hy-shades-0);
  background-color: var(--hy-primary);
  border-color: var(--hy-primary-100);
  box-shadow: 0px 1px 2px 0px rgba(17, 130, 77, 0.50);
}
.hype-btn-green:hover {
  color: var(--hy-shades-0);
  background-color: var(--hy-primary-200);
  border-color: var(--hy-primary-300);
}
.hype-btn-green:active {
  color: var(--hy-shades-0);
  background-color: var(--hy-primary-400);
  border-color: var(--hy-primary-500);
}
.hype-btn-black {
  color: var(--hy-shades-0);
  background-color: var(--hy-secondary);
  border-color: var(--hy-secondary-100);
  box-shadow: 0px 1px 2px 0px rgba(13, 12, 12, 0.50);
}
.hype-btn-black:hover {
  color: var(--hy-shades-0);
  background-color: var(--hy-secondary-200);
  border-color: var(--hy-secondary-300);
}
.hype-btn-black:active {
  color: var(--hy-shades-0);
  background-color: var(--hy-secondary-400);
  border-color: var(--hy-secondary-500);
}
.hype-btn-gray {
  color: var(--hy-secondary);
  background-color: var(--hy-shades-0);
  border-color: rgba(34, 32, 32, 0.08);
  box-shadow: 0px 1px 2px 0px rgba(156, 150, 150, 0.24);
}
.hype-btn-gray:hover {
  color: var(--hy-secondary);
  background-color: var(--hy-gray-500);
  border-color: rgba(34, 32, 32, 0.08);
}
.hype-btn-gray:active {
  color: var(--hy-secondary);
  background-color: var(--hy-gray-600);
  border-color: rgba(34, 32, 32, 0.16);
}
.hype-btn.disabled, .hype-btn:disabled {
  color: var(--hy-neutral-50);
  background-color: var(--hy-neutral);
  border-color: var(--hy-neutral);
  opacity: 1;
  pointer-events: none;
  box-shadow: none;
}
.hype-loading-btn {
  background: url(../images/loading-sprite.png) 0 0 repeat var(--hy-gray-600);
  color: var(--hy-neutral-50);
  animation: animatedBackground 10s linear infinite;
  -ms-animation: animatedBackground 10s linear infinite;
  -moz-animation: animatedBackground 10s linear infinite;
  -webkit-animation: animatedBackground 10s linear infinite;
  border-color: var(--hy-gray-600);
  box-shadow: none;
}
.hype-loading-btn:hover {
  background: url(../images/loading-sprite.png) 0 0 repeat #e9ebec;
  background-color: var(--hy-neutral);
  color: var(--hy-neutral-50);
  border-color: var(--hy-gray-600);
  box-shadow: none;
}
.hype-loading-btn.disabled, .hype-loading-btn:disabled {
  background-color: var(--hy-neutral);
  color: var(--hy-neutral-50);
  border-color: var(--hy-gray-600);
  box-shadow: none;
}
/*Badge CSS*/
.hy-badge {
  font-family: var(--body-theme-font);
  font-size: 0.75rem;
  border-radius: 4px;
  padding: 4px 10px;
  text-transform: none;
  font-weight: 600;
}
.hy-badge img {
  margin-right: 8px;
}
.badge-green {
  background-color: var(--hy-primary);
  color: var(--hy-shades-0);
}
.badge-red {
  background-color: var(--hy-error);
  color: var(--hy-shades-0);
}
.badge-black {
  background-color: var(--hy-secondary);
  color: var(--hy-shades-0);
}
.badge-gray {
  background-color: var(--hy-gray-200);
  color: var(--hy-secondary);
}
.badge-yellow {
  background-color: var(--hy-yellow);
  color: var(--hy-secondary);
}
.hy-main-container-section {
  font-family: var(--body-theme-font);
  background-color: var(--hy-shades-0);
  padding: 70px 0;
}
@media (max-width: 767px) {
  body:not(.hype-header-scroll) .hy-main-container-section > div:first-child.has-padding-top--medium {
    padding-top: 0 !important;
  }
}
/*Gray Tooltip*/
.info-btn.gray-tooltip {
  margin-left: 5px;
  width: 25px;
}
.gray-tooltip + .tooltip > .tooltip-inner {
  background-color: var(--hy-neutral-100);
  border-radius: 8px;
  color: var(--hy-shades-0);
  box-shadow: 0px 1px 2px 0px rgba(27, 32, 44, 0.12), 0px 8px 8px 0px rgba(27, 32, 44, 0.04);
  padding: 10px;
}
.gray-tooltip + .tooltip.top > .tooltip-arrow {
  border-top-color: var(--hy-neutral-100);
  display: none;
}
.gray-tooltip + .tooltip.bottom > .tooltip-arrow {
  border-bottom-color: var(--hy-neutral-100);
  display: none;
}
.gray-tooltip + .tooltip.left > .tooltip-arrow {
  border-left-color: var(--hy-neutral-100);
  display: none;
}
.gray-tooltip + .tooltip.right > .tooltip-arrow {
  border-right-color: var(--hy-neutral-100);
  display: none;
}
.gray-tooltip + .tooltip > .tooltip-inner ul {
  margin: 0 0 0 20px;
  padding: 0;
}
.gray-tooltip + .tooltip > .tooltip-inner ul li {
  margin: 5px 0;
}
/*Forms*/
.hype-form-group {
  margin-bottom: 1.5rem;
}
.hype-form-select {
  position: relative;
}
.hype-form-label {
  font-family: var(--secondary-theme-font);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #495159;
  letter-spacing: 0;
  padding-top: 0;
}
.hype-form-label > p {
  font-size: 1.125rem;
  color: #495159;
  font-weight: 500;
  margin: 0 0 15px;
}
.hype-form-control {
  font-family: var(--secondary-theme-font);
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--hy-shades-0);
  background-clip: padding-box;
  border: 1px solid #D7D9DF;
  border-radius: 4px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  outline: none;
}
.hype-form-control:focus {
  border: 1px solid #b7bdc4;
  outline: none;
}
.hype-form-select.is-valid .hype-form-control {
  background-color: var(--hy-success-100);
  border-color: var(--hy-success);
}
.hype-form-select.is-invalid .hype-form-control {
  background-color: var(--hy-error-100);
  border-color: var(--hy-error);
}
.hype-valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: .75em;
  color: var(--hy-success);
}
.hype-invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: .75em;
  color: var(--hy-error);
}
.hype-form-select.is-valid ~ .hype-valid-feedback, .hype-form-select.is-valid > .hype-valid-feedback,
.hype-form-select.is-invalid ~ .hype-invalid-feedback, .hype-form-select.is-invalid > .hype-invalid-feedback {
  display: block;
}
/*Alerts*/
.hype-alert {
  padding: 1rem;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 400;
}
.hype-alert a {
  color: inherit;
  text-decoration: underline;
}
.hype-alert a:hover {
  color: var(--hy-shades-100);
}
.hype-alert-success {
  background-color: var(--hy-success-200);
  color: var(--hy-success-300);
}
.hype-alert-danger {
  background-color: var(--hy-error-200);
  color: var(--hy-error-300);
}
.hype-alert-warning {
  background-color: var(--hy-warning);
  color: var(--hy-warning-100);
}
.hype-alert-info {
  background-color: var(--hy-info);
  color: var(--hy-info-100);
}
/*New Modal/Popup*/
.hy-modal {
  font-family: var(--body-theme-font);
}
.hy-modal .modal-content {
  background-color: var(--hy-shades-0);
  border: none;
  border-radius: 12px;
}
.hy-modal .modal-header {
  background-color: var(--hy-shades-0);
  border-radius: 12px 12px 0 0;
  border-bottom: none;
  padding: 18px 20px;
}
.hy-modal .modal-header .close {
  margin-top: 3px;
  opacity: 1;
  filter: alpha(opacity=100);
  color: var(--hy-neutral-100);
}
.hy-modal .modal-header .close:hover, .hy-modal .modal-header .close:focus {
  color: var(--hy-secondary);
  filter: alpha(opacity=100);
  opacity: 1;
}
.hy-modal .modal-header.modal-header-red-info {
  background-color: #F1240C;
  position: relative;
  margin-bottom: 2rem;
}
.hy-modal .modal-header.modal-header-red-info p {
  font-family: var(--heading-theme-font);
  color: var(--hy-shades-0);
  text-transform: uppercase;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  position: absolute;
  width: 100%;
  left: 0;
  margin: 0;
  padding: 0 20px;
  line-height: 1.7;
  pointer-events: none;
}
@media (max-width: 499px) {
  .hy-modal .modal-header.modal-header-red-info p {
    line-height: 1;
    margin-top: -5px;
  }
}
.hy-modal .modal-header.modal-header-red-info button.close svg {
  color: var(--hy-shades-0);
}
.hy-modal .modal-title {
  font-family: var(--heading-theme-font);
  color: var(--hy-secondary);
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hy-modal .modal-body {
  position: relative;
  padding: 20px;
}
@media (min-width: 992px) {
  .hy-modal .modal-header {
    padding: 20px 32px;
  }
  .hy-modal .modal-header .close {
    margin-top: 6px;
  }
  .hy-modal .modal-title {
    font-size: 1.5rem;
  }
  .hy-modal .modal-body {
    padding: 32px;
  }
}
/*Margin Padding CSS*/
.has-margin-top--off {
  margin-top: 0 !important
}
.has-margin-top--small {
  margin-top: 1.5em !important
}
@media (min-width: 480px) {
  .has-margin-top--small {
    margin-top: 2em !important
  }
}
@media (min-width: 768px) {
  .has-margin-top--small {
    margin-top: 2.5em !important
  }
}
@media (min-width: 992px) {
  .has-margin-top--small {
    margin-top: 3em !important
  }
}
.has-margin-top--medium {
  margin-top: 3em !important
}
@media (min-width: 480px) {
  .has-margin-top--medium {
    margin-top: 4em !important
  }
}
@media (min-width: 768px) {
  .has-margin-top--medium {
    margin-top: 5em !important
  }
}
@media (min-width: 992px) {
  .has-margin-top--medium {
    margin-top: 6em !important
  }
}
.has-margin-top--large {
  margin-top: 6em !important
}
@media (min-width: 480px) {
  .has-margin-top--large {
    margin-top: 7em !important
  }
}
@media (min-width: 768px) {
  .has-margin-top--large {
    margin-top: 9em !important
  }
}
@media (min-width: 992px) {
  .has-margin-top--large {
    margin-top: 12em !important
  }
}
.has-margin-bottom--off {
  margin-bottom: 0 !important
}
.has-margin-bottom--small {
  margin-bottom: 1.5em !important
}
@media (min-width: 480px) {
  .has-margin-bottom--small {
    margin-bottom: 2em !important
  }
}
@media (min-width: 768px) {
  .has-margin-bottom--small {
    margin-bottom: 2.5em !important
  }
}
@media (min-width: 992px) {
  .has-margin-bottom--small {
    margin-bottom: 3em !important
  }
}
.has-margin-bottom--medium {
  margin-bottom: 3em !important
}
@media (min-width: 480px) {
  .has-margin-bottom--medium {
    margin-bottom: 4em !important
  }
}
@media (min-width: 768px) {
  .has-margin-bottom--medium {
    margin-bottom: 5em !important
  }
}
@media (min-width: 992px) {
  .has-margin-bottom--medium {
    margin-bottom: 6em !important
  }
}
.has-margin-bottom--large {
  margin-bottom: 6em !important
}
@media (min-width: 480px) {
  .has-margin-bottom--large {
    margin-bottom: 7em !important
  }
}
@media (min-width: 768px) {
  .has-margin-bottom--large {
    margin-bottom: 9em !important
  }
}
@media (min-width: 992px) {
  .has-margin-bottom--large {
    margin-bottom: 12em !important
  }
}
.has-padding-top--off {
  padding-top: 0 !important
}
.has-padding-top--small {
  padding-top: 1.5em !important
}
@media (min-width: 480px) {
  .has-padding-top--small {
    padding-top: 2em !important
  }
}
@media (min-width: 768px) {
  .has-padding-top--small {
    padding-top: 2.5em !important
  }
}
@media (min-width: 992px) {
  .has-padding-top--small {
    padding-top: 3em !important
  }
}
.has-padding-top--medium {
  padding-top: 3em !important
}
@media (min-width: 480px) {
  .has-padding-top--medium {
    padding-top: 4em !important
  }
}
@media (min-width: 768px) {
  .has-padding-top--medium {
    padding-top: 5em !important
  }
}
@media (min-width: 992px) {
  .has-padding-top--medium {
    padding-top: 6em !important
  }
}
.has-padding-top--large {
  padding-top: 6em !important
}
@media (min-width: 480px) {
  .has-padding-top--large {
    padding-top: 7em !important
  }
}
@media (min-width: 768px) {
  .has-padding-top--large {
    padding-top: 9em !important
  }
}
@media (min-width: 992px) {
  .has-padding-top--large {
    padding-top: 12em !important
  }
}
.has-padding-bottom--off {
  padding-bottom: 0 !important
}
.has-padding-bottom--small {
  padding-bottom: 1.5em !important
}
@media (min-width: 480px) {
  .has-padding-bottom--small {
    padding-bottom: 2em !important
  }
}
@media (min-width: 768px) {
  .has-padding-bottom--small {
    padding-bottom: 2.5em !important
  }
}
@media (min-width: 992px) {
  .has-padding-bottom--small {
    padding-bottom: 3em !important
  }
}
.has-padding-bottom--medium {
  padding-bottom: 3em !important
}
@media (min-width: 480px) {
  .has-padding-bottom--medium {
    padding-bottom: 4em !important
  }
}
@media (min-width: 768px) {
  .has-padding-bottom--medium {
    padding-bottom: 5em !important
  }
}
@media (min-width: 992px) {
  .has-padding-bottom--medium {
    padding-bottom: 6em !important
  }
}
.has-padding-bottom--large {
  padding-bottom: 6em !important
}
@media (min-width: 480px) {
  .has-padding-bottom--large {
    padding-bottom: 7em !important
  }
}
@media (min-width: 768px) {
  .has-padding-bottom--large {
    padding-bottom: 9em !important
  }
}
@media (min-width: 992px) {
  .has-padding-bottom--large {
    padding-bottom: 12em !important
  }
}
/****************************** ****************************** 
Title Section CSS
****************************** *****************************/
.hy-new-title-section {
  display: block;
}
.hy-new-title-section h1 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
.hy-new-title-section h2 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.hy-new-title-section h3 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.hy-new-title-section h1 img, .hy-new-title-section h2 img, .hy-new-title-section h3 img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  max-width: 24px;
}
@media (min-width: 480px) {
  .hy-new-title-section h1 {
    font-size: 2.25rem;
  }
  .hy-new-title-section h2 {
    font-size: 2rem;
  }
  .hy-new-title-section h3 {
    font-size: 1.5rem;
  }
  .hy-new-title-section h1 img, .hy-new-title-section h2 img, .hy-new-title-section h3 img {
    max-width: 30px;
  }
}
@media (min-width: 768px) {
  .hy-new-title-section h1 {
    font-size: 2.5rem;
  }
  .hy-new-title-section h2 {
    font-size: 2.25rem;
  }
  .hy-new-title-section h3 {
    font-size: 1.75rem;
  }
  .hy-new-title-section h1 img, .hy-new-title-section h2 img, .hy-new-title-section h3 img {
    max-width: 35px;
  }
}
@media (min-width: 992px) {
  .hy-new-title-section h1 {
    font-size: 3rem;
  }
  .hy-new-title-section h2 {
    font-size: 2.5rem;
  }
  .hy-new-title-section h3 {
    font-size: 2rem;
  }
  .hy-new-title-section h1 img, .hy-new-title-section h2 img, .hy-new-title-section h3 img {
    max-width: 40px;
  }
}
@media (min-width: 1200px) {
  .hy-new-title-section h1 {
    font-size: 3.5rem;
  }
  .hy-new-title-section h2 {
    font-size: 2.75rem;
  }
  .hy-new-title-section h3 {
    font-size: 2.25rem;
  }
}
.hy-new-title-section p {
  font-family: var(--body-theme-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hy-neutral-100);
}
/****************************** ****************************** 
Pricing Plan Option CSS
****************************** *****************************/
.hy-plan-cycle-option-wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 599px) {
 .hy-plan-cycle-option-wrapper {
   flex-direction: column;
   margin-bottom: 0;
 }
 .hy-plan-cycle-option-wrapper .hy-form-radio {
  margin-bottom: 1.125rem;
 }
}
.hy-plan-cycle-option-wrapper label span {
  font-family: var(--body-theme-font);
  color: var(--hy-success);
}
.hy-plan-cycle-option-wrapper label span .rotating-annual {
  margin-left: 15px;
  color: var(--hy-secondary);
  position: relative;
}
.hy-plan-cycle-option-wrapper label span .rotating-annual .rotating-annual-span {
  color: var(--hy-secondary);
  display: none;
  position: absolute;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  transform-origin: center bottom;
  white-space: nowrap;
  top: 0;
  left: 0;
}
.flip-in {
  display: inline;
  animation-name: flipInFromBottom;
}
@keyframes flipInFromBottom {
  0% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.hy-plan-cycle-option-wrapper label span .rotating-annual .rotating-annual-span .rotating-annual-span-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  margin-top: -3px;
}
.hy-plan-cycle-option-wrapper label span .rotating-annual .rotating-annual-span .rotating-annual-span-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.hy-plan-cycle-option-wrapper label span .rotating-annual .rotating-annual-span .rotating-annual-span-text {
  color: var(--hy-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  vertical-align: top;
}
.hy-plan-cycle-option-wrapper label span .rotating-annual .rotating-annual-span .rotating-annual-span-text b {
  font-weight: 600;
}
/*Plan Main Box*/
.hy-plan-section {
  display: flex;
  font-family: var(--body-theme-font);
  flex-wrap: wrap;
}
.row.hy-plan-section {
  margin-right: -8px;
  margin-left: -8px;
}
.row.hy-plan-section .col-12 {
  padding-right: 8px;
  padding-left: 8px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .row.hy-plan-section .col-12 {
    width: 100%;
  }
  .row.hy-plan-section .order-sm-first {
    order: 1;
  }
  .row.hy-plan-section .order-sm-last {
    order: 2;
  }
}
/*Plan Wrapper CSS*/
.hy-plan-item-wrapper {
  background-color: var(--hy-gray);
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
@media (min-width: 992px) {
  .hy-plan-item-wrapper {
    padding: 35px 30px;
  }
}
@media (max-width: 767px) {
  .hy-plan-item-wrapper {
    padding: 35px 30px;
  }
}
.hy-bg-basic {
  background-color: var(--hy-gray);
}
.hy-bg-pro {
  background-color: var(--hy-gray-100);
}
.hy-bg-elite {
  background-color: var(--hy-gray-200);
}
.hy-bg-rookie {
  background-color: var(--hy-gray);
}
.hy-plan-item--info {
  display: flex;
  width: 100%;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.hy-plan-item--info .plan-name {
  font-family: var(--heading-theme-font);
  font-size: 1.5rem;
  color: var(--hy-secondary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.hy-plan-item--info .hy-badge {
  margin-left: 10px;
}
.hy-plan-item--info .plan-price {
  display: flex;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--hy-secondary);
  margin-bottom: 1rem;
}
.hy-plan-item--info .plan-price .billed {
  color: var(--hy-neutral-100);
}
.plan-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--hy-secondary);
  margin-bottom: 1.5rem;
}
.hy-plan-item--btn {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  align-items: center;
}
.hy-plan-item--btn .hype-btn {
  width: 100%;
}
.hy-plan-item--btn p {
  color: var(--hy-secondary);
  font-size: 1rem;
  font-weight: 500;
  margin: 1rem 0 0 0;
}
.hy-plan-item-features-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hy-plan-item--features {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  flex: 1;
}
.plan-features-header {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hy-secondary);
  margin-bottom: 0.25rem;
}
.hy-plan-item--features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hy-plan-item--features ul li {
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--hy-secondary);
}
.hy-plan-item--features ul li:last-child {
  margin-bottom: 0;
}
.hy-plan-item--features ul li .plan-feature {
  display: flex;
  align-items: flex-start;
}
.hy-plan-item--features ul li .plan-feature .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 0.5rem;
  align-self: baseline;
}
.hy-plan-item--features ul ul {
  margin-left: 2.5rem;
}
.hy-plan-item--features ul ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.hy-plan-item--features ul ul li::marker {
  color: var(--hy-neutral-200);
}
.hy-tooltip {
  cursor: pointer;
  margin-left: auto;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.hy-tooltip svg {
  display: block;
}
.hype-key-features-button {
  font-size: 0.875rem;
  color: var(--hy-secondary);
  font-weight: 500;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.hype-key-features-button:hover {
  color: var(--hy-secondary);
}
.hype-key-features-button::after {
  background: url(../images/key-features-up-arrow.svg) 0 0 no-repeat;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  top: 0;
}
.hype-key-features-button.collapsed:after {
  background: url(../images/key-features-down-arrow.svg) 0 0 no-repeat;
}
@media (min-width: 768px) {
  .hype-key-features-button {
    display: none;
  }
  .hy-plan-item-features-wrap .collapse {
    display: flex !important;
    flex-direction: column;
    height: 100% !important;
  }
}
.hype-view-all-link {
  font-size: 0.875rem;
  color: var(--hy-secondary);
  font-weight: 500;
  margin-top: 2.5rem;
  display: inline-block;
}
@media (min-width: 768px) {
  .hype-view-all-link {
    margin-top: 3rem;
  }
}
@media (min-width: 1200px) {
  .hype-view-all-link {
    margin-top: 4rem;
  }
}
.hype-view-all-link:hover {
  color: var(--hy-secondary);
  text-decoration: underline;
}
.hy-plan-item-wrapper.hy-bg-rookie {
  padding-bottom: 35px;
}
.hy-plan-item-wrapper.hy-bg-rookie .plan-desc {
  margin-bottom: 1.2rem;
}
.hy-plan-item-wrapper.hy-bg-rookie .hy-plan-item--info {
  text-align: left;
  align-items: flex-start;
}
.hy-plan-item-wrapper.hy-bg-rookie .hy-plan-item--info .plan-price {
  margin-bottom: 0;
}
/****************************** ****************************** 
FAQ Section CSS
****************************** *****************************/
.hy-faq-section {
  background-color: var(--hy-secondary);
  font-family: var(--body-theme-font);
}
.hy-faq-section h2 {
  color: var(--hy-shades-0);
  font-family: var(--heading-theme-font);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hy-faq-section h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .hy-faq-section h2 {
    font-size: 2rem;
  }
}
.hy-faq-section .panel-group {
  max-width: 875px;
  margin: 0 auto;
}
.hy-faq-section .panel {
  margin-bottom: 1rem;
  background-color: var(--hy-gray-300);
  border: none;
  border-radius: 16px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.hy-faq-section .panel.panel-default > .panel-heading {
  color: var(--hy-shades-0);
  background-color: var(--hy-gray-300);
  border-radius: 16px;
  border: none;
  padding: 0;
  position: relative;
}
.hy-faq-section .panel.panel-default > .panel-heading .accordion-toggle::after {
  background: url(../images/faq-minus-icon.svg) 0 0 no-repeat;
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  right: 32px;
  top: 15px;
}
.hy-faq-section .panel.panel-default > .panel-heading .accordion-toggle.collapsed:after {
  background: url(../images/faq-plus-icon.svg) 0 0 no-repeat;
}
.hy-faq-section .panel-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 24px;
}
.hy-faq-section .panel-title a {
  display: block;
  padding: 24px 60px 24px 32px;
}
.hy-faq-section .panel.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border: none;
  color: var(--hy-shades-0);
  padding: 0 32px 24px;
  font-size: 1rem;
  font-weight: 400;
}
.hy-faq-section .panel.panel-default > .panel-heading + .panel-collapse > .panel-body a {
  color: var(--hy-shades-0);
  text-decoration: underline;
}
.hy-faq-section .panel.panel-default > .panel-heading + .panel-collapse > .panel-body a:hover {
  color: var(--hy-shades-0);
  text-decoration: underline;
}
/****************************** ****************************** 
Compare Plan Section CSS
****************************** *****************************/
.hy-compare-plans-section {
  font-family: var(--body-theme-font);
}
.hy-compare-plans-section h2 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hy-compare-plans-section h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .hy-compare-plans-section h2 {
    font-size: 2rem;
  }
}
/*Pricing Table CSS*/
@media (max-width: 767px) {
  .hy-compare-plans-wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.hy-features-table {
  background: var(--hy-shades-0);
  cursor: default;
  margin: 0 auto;
  max-width: 100%;
  scrollbar-width: none;
  display: block;
  overflow-x: visible;
  border: 1px solid var(--hy-gray-400);
  border-radius: 16px;
}
@media (max-width: 767px) {
  .hy-features-table {
    border-left: 0;
    border-right: 0;
  }
}
.hy-table-headerRow {
  top: 65px;
  z-index: 2;
  padding: 0;
  position: sticky;
  border-radius: 16px 16px 0 0;
  width: 100%;
  background-color: var(--hy-shades-0);
}
.hy-table-headerRow__content {
  border-bottom: 1px solid var(--hy-gray-400);
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.hy-table-headerRow .hy-table-headerRow__content {
  border-radius: 16px 16px 0 0;
}
.hy-table-section {
  min-width: 100%;
  width: 100%;
}
.hy-table-sectionRow {
  transition: background-color .1s ease;
  margin: 0;
}
.hy-table-sectionRow:hover {
  background-color: var(--hy-gray);
}
.hy-table-section:last-child .hy-table-sectionRowWrap:last-child {
  border-radius: 0 0 16px 16px;
}
.hy-table-section:last-child .hy-table-sectionRowWrap:last-child .hy-table-sectionRow:hover {
  border-radius: 0 0 16px 16px;
}
.hy-table-section:last-child .hy-table-sectionRowWrap:last-child .hy-table-headerRow__content:last-child {
  border-bottom: none;
}
.hy-table-col {
  border-left: 1px solid var(--hy-gray-400);
  text-align: center;
  align-items: center;
  display: inline-flex;
  flex: 1;
  justify-content: center;
  box-sizing: border-box;
  padding: 35px 40px;
  max-width: 100%;
}
.hy-table-col:first-child {
  border-left: none;
  text-align: left;
  justify-content: flex-start;
  flex-basis: 100%;
  width: auto;
  max-width: 290px;
  padding-left: 25px;
}
.headerMainCol {
  text-align: left;
}
.headerCol {
  flex-direction: column;
}
.headerCol .hy-plan-item--info .plan-price {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.headerCol .hy-plan-item--btn p {
  font-size: 0.875rem;
}
.headerCol .hy-plan-item--btn {
  margin-bottom: 0;
  align-items: center;
  width: 100%;
}
.hy-table-sectionCol {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--hy-neutral-100);
  padding: 20px 40px;
}
.checkIcon {
  color: var(--hy-secondary);
  display: inline-flex;
  width: 25px;
}
.column_Active .checkIcon {
  color: var(--hy-primary);
}
@media (min-width: 992px) {
  .hy-table-col.column_Active {
    border-left: 2px solid var(--hy-secondary);
    border-right: 2px solid var(--hy-secondary);
    position: relative;
  }
  .hy-table-col.column_Active::after {
    background: var(--hy-secondary);
    content: "";
    height: 102%;
    width: 2px;
    left: -2px;
    position: absolute;
  }
  .hy-table-col.column_Active::before {
    background: var(--hy-secondary);
    content: "";
    height: 102%;
    width: 2px;
    right: -2px;
    position: absolute;
  }
  .hy-table-headerRow:first-child .hy-table-col.column_Active {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border-top: 2px solid var(--hy-secondary);
  }
  .hy-table-headerRow:first-child .hy-table-col.column_Active::after {
    display: none;
  }
  .hy-table-headerRow:first-child .hy-table-col.column_Active::before {
    display: none;
  }
  .hy-table-section:last-child .hy-table-sectionRowWrap:last-child .hy-table-col.column_Active {
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    border-bottom: 2px solid var(--hy-secondary);
  }
  .hy-table-section:last-child .hy-table-sectionRowWrap:last-child .hy-table-col.column_Active::after {
    display: none;
  }
  .hy-table-section:last-child .hy-table-sectionRowWrap:last-child .hy-table-col.column_Active::before {
    display: none;
  }
}
/**/
.hy-table-sticky {
  position: sticky;
  top: 277px;
  z-index: 1;
}
.hy-table-sticky-Row {
  background-color: var(--hy-secondary);
}
.hy-table-sticky__Content {
  box-sizing: border-box;
  min-height: 48px;
}
.hy-table-sticky__Content .hy-table-stickyCol {
  max-width: 100%;
}
.hy-table-stickyCol {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--hy-shades-0);
  padding: 12px 25px;
  width: 100%;
}
.hy-table-sectionName {
  display: block;
}
/*Pricing Table For Mobile*/
@media (max-width: 991px) {
  .hy-table-col:first-child {
    max-width: 200px;
  }
  .hy-table-sticky__Content .hy-table-stickyCol {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .hy-features-table {
    border-radius: 0;
  }
  .hy-table-headerRow {
    top: 0;
    border-radius: 0;
  }
  .hy-table-headerRow__content {
    border-bottom: none;
    flex-wrap: wrap;
  }
  .hy-table-headerRow .hy-table-headerRow__content {
    border-radius: 0;
  }
  .hy-table-section:last-child .hy-table-sectionRowWrap:last-child {
    border-radius: 0;
  }
  .hy-table-section:last-child .hy-table-sectionRowWrap:last-child .hy-table-sectionRow:hover {
    border-radius: 0;
  }
  .hy-table-col {
    border-left: 1px solid var(--hy-gray-400);
    border-bottom: 1px solid var(--hy-gray-400);
    padding: 20px 15px;
  }
  .hy-table-col:nth-child(2) {
    border-left: none;
  }
  .hy-table-col:first-child {
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
  }
  .headerMainCol {
    display: none;
  }
  .hy-features-table .hy-plan-item--info .plan-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .hy-features-table .hy-plan-item--info .hy-badge {
    display: none;
  }
  .headerCol .hy-plan-item--info .plan-price {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .headerCol .hy-plan-item--btn {
    display: none;
  }
  .hy-table-sectionCol {
    padding: 15px 15px;
  }
  .checkIcon {
    width: 16px;
  }
  .hy-table-sticky {
    top: 98px;
  }
  .hy-table-stickyCol {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
/****************************** ****************************** 
Welcome Section CSS
****************************** *****************************/
.hy-new-welcome-page {
  font-family: var(--body-theme-font);
  display: block;
  min-height: calc(100vh - 320px);
}
.hy-new-welcome-page .col-sm-7, .hy-new-welcome-page .col-sm-8 {
  margin-left: auto;
  margin-right: auto;
}
.hy-new-welcome-page h1 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
@media (min-width: 480px) {
  .hy-new-welcome-page h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .hy-new-welcome-page h1 {
    font-size: 2.5rem;
    margin: 0 0 2.5rem;
  }
}
@media (min-width: 992px) {
  .hy-new-welcome-page h1 {
    font-size: 3rem;
    margin: 0 0 3rem;
  }
}
@media (min-width: 1200px) {
  .hy-new-welcome-page h1 {
    font-size: 3.5rem;
    margin: 0 0 3.5rem;
  }
}
.hy-welcome-features-list {
  margin: 0 0 2rem;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
.hy-welcome-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .hy-welcome-features-list {
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: row;
  }
  .hy-welcome-features-list ul {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .hy-welcome-features-list {
    margin: 0 0 3rem;
  }
}
.hy-welcome-features-list ul li {
  font-size: 1rem;
  font-weight: 400;
  color: var(--hy-secondary);
  text-align: left;
  margin-bottom: 1rem;
}
.hy-welcome-features-list ul li .list__item {
  display: flex;
  align-items: flex-start;
}
.hy-welcome-features-list ul li .list__item .icon {
  width: 16px;
  flex-shrink: 0;
  margin-right: 0.5rem;
  align-self: flex-start;
}
.hy-welcome-features-list ul li .list__item .icon svg {
  width: 100%;
}
.hy-welcome-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hy-welcome-btn .hype-btn {
  width: 100%;
}
.hy-welcome-btn .hype-btn + .hype-btn {
  margin-top: 8px;
}
.hy-welcome-btn .hype-btn-link {
  color: var(--hy-neutral-100);
  font-weight: 400;
}
.hy-welcome-btn .hype-btn-link:hover {
  color: var(--hy-secondary);
}
.hy-welcome-btn .hype-btn-link:active {
  color: var(--hy-secondary);
}
.hy-welcome-btn p {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--hy-neutral-100);
  margin: 1rem 0 0 0;
}
/*Welcome Step Instruction*/
@media (max-width: 479px) {
  .hy-new-welcome-instruction {
    margin-top: 1.5rem;
  }
}
.hy-new-welcome-instruction .list__item {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--hy-neutral-100);
  text-align: left;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.hy-new-welcome-instruction .list__item .icon {
  width: 24px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-right: 1rem;
}
.hy-new-welcome-instruction .list__item .icon svg {
  width: 100%;
  color: var(--hy-neutral-200);
}
.hy-new-welcome-instruction .list__item .text strong {
  font-weight: 500;
}
@media (min-width: 992px) {
  .hy-new-welcome-instruction .row {
    display: flex;
    justify-content: center;
  }
  .hy-new-welcome-instruction .list__item {
    flex-direction: column;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  .hy-new-welcome-instruction .list__item .icon {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
/****************************** ****************************** 
One Time Offier Modal CSS
****************************** *****************************/
.one-time-offer .hy-new-title-section {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 480px) {
  .one-time-offer .hy-new-title-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px) {
  .one-time-offer .hy-new-title-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.one-time-offer .hy-new-title-section h2 {
  margin: 0 0 1rem;
}
.one-time-offer .hy-new-title-section p {
  color: var(--hy-secondary);
}
.one-time-offer .hy-new-title-section p small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hy-neutral-100);
}
.one-time-offer--price .hy-badge {
  font-size: 0.875rem;
  padding: 8px 15px;
}
.one-time-offer--price .plan-price {
  display: flex;
  font-weight: 700;
  font-size: 3rem;
  color: var(--hy-secondary);
  margin-top: 1.25rem;
  justify-content: center;
  align-items: baseline;
  letter-spacing: -1px;
}
.one-time-offer--price .plan-price del {
  font-size: 1.75rem;
  text-decoration-color: #F43010;
  text-decoration-thickness: 4px;
  margin-right: 10px;
}
.one-time-offer--price .plan-price .billed {
  color: var(--hy-neutral-100);
  font-size: 1.25rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .one-time-offer--price .plan-price {
    font-size: 3.5rem;
  }
  .one-time-offer--price .plan-price del {
    font-size: 2rem;
  }
  .one-time-offer--price .plan-price .billed {
    font-size: 1.5rem;
  }
}
.one-time-offer--btns .hype-btn {
  width: 100%;
  font-size: 1rem;
}
.one-time-offer--btns .hype-btn + .hype-btn {
  margin-top: 8px;
}
.one-time-offer--btns .hype-btn-link {
  color: var(--hy-gray-700);
  font-weight: 400;
}
/****************************** ****************************** 
One Time Offier Annaul Modal CSS HYPE-2413
****************************** *****************************/
.one-time-offer-annual-modal .hy-new-title-section-annual-modal {
  font-size: 15px;
}
.one-time-offer-annual-modal .hy-new-title-section-annual-modal h3 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
@media (max-width: 479px) {
 .one-time-offer-annual-modal .hy-new-title-section-annual-modal h3 br {
   display: none;
 } 
}
.one-time-offer-annual-modal .hy-new-title-section-annual-modal p {
  color: var(--hy-secondary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
.one-time-offer-annual-modal .hy-new-title-section-annual-modal p.lead {
  font-weight: 500;
  margin-bottom: 8px;
}
.one-time-offer-saving-annual-modal {
  margin-top: 1.5rem;
}
.one-time-offer-saving-annual-modal h4 {
  font-family: var(--heading-theme-font);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--hy-primary);
  text-transform: uppercase;
}
.one-time-offer-saving-annual-modal .one-time-offer-discount-annual-modal {
  font-size: 1rem;
  font-weight: 600;
  color: var(--hy-secondary);
}
.one-time-offer-saving-annual-modal p.one-time-offer-click-annual-modal {
  font-size: 1rem;
  font-weight: 400;
  color: var(--hy-secondary);
  margin: 1.5rem 0 2rem;
}
/****************************** ****************************** 
Music Win Modal CSS
****************************** *****************************/
.music-win-modal-wrapper {
  display: block;
  padding: 0 1rem;
}
@media (min-width: 480px) {
  .music-win-modal-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .music-win-modal-wrapper {
    padding: 0 2.5rem;
  }
}
.music-win-modal-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/**/
.music-win--track {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 4px solid rgba(255, 255, 255, 0.4);
  box-shadow: -11px 57px 16px 0px rgba(0, 0, 0, 0.00), -7px 36px 15px 0px rgba(0, 0, 0, 0.01), -4px 20px 12px 0px rgba(0, 0, 0, 0.05), -2px 9px 9px 0px rgba(0, 0, 0, 0.09), 0px 2px 5px 0px rgba(0, 0, 0, 0.10);
  width: 194px;
  height: 194px;
  position: relative;
  margin-top: 3rem;
}
.music-win--track img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
}
.music-win--track span.track-position {
  display: flex;
  min-width: 56px;
  height: 40px;
  padding: 0 10px;
  border-radius: 200px;
  border: 2px solid rgba(255, 255, 255, 0.30);
  position: absolute;
  right: -12px;
  top: -12px;
  font-family: var(--primary-theme-font);
  font-weight: 600;
  color: var(--hy-shades-0);
  font-size: 1.25rem;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.8px;
  box-shadow: 0px 4px 8px 0px rgba(37, 7, 7, 0.08), 0px 2px 4px 0px rgba(37, 7, 7, 0.32);
}
.tp_red {
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.20) 16.04%, rgba(255, 255, 255, 0.00) 80.15%), #F43010;
}
.tp_green {
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.20) 16.04%, rgba(255, 255, 255, 0.00) 80.15%), #12B96B;
}
.music-win--track span.track-position span {
  background: linear-gradient(160deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.1) 125%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08), 0px 2px 4px rgba(0, 0, 0, 0.25);
}
/**/
.music-win--playlist {
  margin-top: 3rem;
  display: flex;
}
.music-win--playlist .track-playlist {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 4px solid rgba(255, 255, 255, 0.4);
  box-shadow: -11px 57px 16px 0px rgba(0, 0, 0, 0.00), -7px 36px 15px 0px rgba(0, 0, 0, 0.01), -4px 20px 12px 0px rgba(0, 0, 0, 0.05), -2px 9px 9px 0px rgba(0, 0, 0, 0.09), 0px 2px 5px 0px rgba(0, 0, 0, 0.10);
  width: 168px;
  height: 168px;
  position: relative;
  overflow: hidden;
}
.music-win--playlist .track-playlist img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.music-win--playlist .track-playlist.playlist_1 {
  transform: rotate(-8deg);
  right: -11px;
}
.music-win--playlist .track-playlist.playlist_2 {
  transform: rotate(8deg);
  left: -11px;
}
.music-win--playlist .track-playlist.playlist_2 a:hover::after {
  background: rgba(14, 13, 13, 0.51);
  backdrop-filter: blur(4.5px);
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.music-win--playlist .track-playlist.playlist_2 a span {
  display: none;
}
.music-win--playlist .track-playlist.playlist_2 a:hover span {
  display: block;
  position: absolute;
  z-index: 1;
  top: calc(50% - 16px);
  left: calc(50% - 16px);
}
.music-win--content {
  margin-top: 2.5rem;
}
@media (min-width: 480px) {
  .music-win--content {
    margin-top: 3rem;
  }
}
@media (min-width: 768px) {
  .music-win--content {
    margin-top: 4rem;
  }
}
.music-win--content h2 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .music-win--content h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .music-win--content h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .music-win--content h2 {
    font-size: 2.75rem;
  }
}
.music-win--content p {
  font-family: var(--body-theme-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hy-neutral-100);
}
.music-win-share-option {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  gap: 25px;
}
.music-win-modal-artwork {
  background-color: #051718;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
@media (min-width: 480px) {
  .music-win-modal-artwork {
    height: 225px;
  }
}
@media (min-width: 768px) {
  .music-win-modal-artwork {
    height: 250px;
  }
}
.music-win-modal-artwork .close {
  position: absolute;
  right: 20px;
  width: 24px;
  height: 24px;
  top: 20px;
  z-index: 1;
  color: var(--hy-shades-0);
  opacity: 0.8;
}
.music-win-modal-artwork .music-track-artwork img {
  width: 100%;
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
  -ms-filter: blur(20px);
  -o-filter: blur(20px);
  filter: blur(20px);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.music-win-modal-artwork .curve {
  position: absolute;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.music-win-modal-artwork .curve svg {
  width: 100%;
  height: auto;
  display: block;
}
/****************************** ****************************** 
Music Win Comment Modal CSS
****************************** *****************************/
.music-track-comment-modal {
  display: block;
}
.music-track-comment-modal p.p-heading {
  text-align: center;
  font-size: 1rem;
  color: var(--hy-secondary);
  margin-bottom: 2.5rem;
}
.music-track-title-box {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: #EFEFEF;
  margin-bottom: 1rem;
}
.music-track-title-box figure {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-start;
}
.music-track-title-box figure img {
  width: 100%;
  height: 100%;
}
.music-track-title-box .content {
  margin-left: 1.5rem;
  width: 100%;
}
.music-track-title-box .content h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #231A1A;
  margin: 0;
}
.music-track-title-box .content h5 {
  font-size: 1rem;
  font-weight: 400;
  color: #231A1A;
  margin: 8px 0 0;
  letter-spacing: -0.5px;
  opacity: 0.8;
}
.music-track-comment-box {
  display: flex;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  border: 1px solid #DADADA;
  box-shadow: 0px 1px 3px 0px rgba(10, 11, 11, 0.10);
  margin-bottom: 2rem;
}
@media (min-width: 480px) {
  .music-track-comment-box {
    padding: 2rem;
  }
}
.music-track-comment-title-box {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.music-track-comment-title-box figure {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-self: flex-start;
  position: relative;
}
.music-track-comment-title-box figure img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}
.music-track-comment-title-box figure span.social-badge {
  position: absolute;
  right: -2px;
  top: -2px;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0px 2px 4px 0px rgba(27, 32, 44, 0.12), 0px 16px 24px 0px rgba(27, 32, 44, 0.08);
}
.music-track-comment-title-box figure span.social-badge img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.music-track-comment-title-box .content {
  margin-left: 1rem;
  width: 100%;
}
.music-track-comment-title-box .content h4 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--hy-neutral-300);
  margin: 0;
  letter-spacing: -0.5px;
}
.music-track-comment-title-box .content h5 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #7A7272;
  margin: 8px 0 0;
  letter-spacing: -0.5px;
}
.music-track-comment-main-box {
  display: block;
}
.music-track-comment-main-box p {
  color: #0A0A0A;
  font-family: var(--heading-theme-font);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.25px;
  margin-bottom: 0;
  line-height: 1.2;
}
/****************************** ****************************** 
Alert Top Bar CSS -- HYPE-2369
****************************** *****************************/
.alert-banner-info-section {
  background: var(--hy-primary);
  padding: 15px;
  position: relative;
  font-family: var(--primary-theme-font);
}
.alert-banner-info-section .alert_close {
  cursor: pointer;
  transition: all .15s ease;
  position: absolute;
  right: 15px;
  top: 25px;
  width: 16px;
  height: 16px;
}
.alert-banner-info-section .alert_close img {
  width: 100%;
  height: 100%;
  display: block;
}
.alert-banner-info-section .alert_close:hover {
  transform: rotate(90deg);
}
.alert-banner-info-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.alert-banner-info-section p {
  font-size: 12px;
  color: var(--hy-secondary);
  margin: 0;
}
.alert-banner-info-section p span {
  font-weight: 700;
}
.alert-banner-info-section .hype-btn-gray {
  margin-left: 15px;
}
@media (max-width: 991px) {
  .alert-banner-info-section .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .alert-banner-info-section .hype-btn-gray {
    margin-left: 0;
    margin-top: 15px;
  }
}
/****************************** ****************************** 
Subscription Step CSS -- HYPE-2369
****************************** *****************************/
.account-subscription-panel {
  font-family: var(--primary-theme-font);
}
.account-subscription-panel p.plan-hint {
  font-family: var(--secondary-theme-font);
  color: var(--hy-gray-800);
  margin: 0;
}
.account-subscription-panel .hy-badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
}
.subscription-current-plan {
  display: flex;
  margin-bottom: 1rem;
  flex-direction: column;
}
.subscription-current-plan p {
  font-family: var(--secondary-theme-font);
  font-size: 1rem;
  color: var(--hy-secondary);
  margin: 0;
}
.subscription-current-plan p a:not(.button) {
  color: var(--hy-success);
  font-weight: 600;
  font-size: 1rem;
}
.subscription-current-plan p a:not(.button):hover {
  text-decoration: underline;
  color: var(--hy-success);
}
.subscription-current-plan p strong {
  font-weight: 700;
}
.subscription-current-plan .btn-group {
  font-family: var(--secondary-theme-font);
  margin-top: 1.15rem;
}
.subscription-current-plan .btn-group .btn-link {
  color: var(--hy-success);
  font-weight: 600;
  font-size: 1rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.subscription-current-plan .btn-group .dropdown-menu::before, .subscription-current-plan .btn-group .dropdown-menu.navbar-right::before {
  left: 12px;
  right: auto;
}
.subscription-current-plan .btn-group .dropdown-menu::after, .subscription-current-plan .btn-group .dropdown-menu.navbar-right::after {
  left: 13px;
  right: auto;
}
.subscription-current-plan-detail {
  background-color: var(--hy-gray);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .subscription-current-plan-detail {
    flex-direction: column;
    padding: 1.5rem;
  }
}
.subscription-current-plan-detail .plan--content {
  width: 100%;
}
.subscription-current-plan-detail .plan--content h4 {
  font-family: var(--heading-theme-font);
  color: var(--hy-secondary);
  text-transform: uppercase;
  letter-spacing: -1px;
  font-weight: 400;
  margin: 0 0 1rem;
}
.subscription-current-plan-detail .plan--content .plan-price {
  display: flex;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--hy-secondary);
  margin-bottom: 1rem;
  justify-content: flex-start;
  align-items: baseline;
}
.subscription-current-plan-detail .plan--content .plan-price del {
  text-decoration-color: var(--hy-secondary);
  text-decoration-thickness: 2px;
  margin-right: 8px;
  color: var(--hy-neutral-100);
  font-weight: 400;
}
.subscription-current-plan-detail .plan--content .plan-price .billed {
  color: var(--hy-neutral-100);
  font-weight: 500;
  font-size: 0.875rem;
}
.subscription-current-plan-detail .plan--content .plan-features {
  display: block;
}
.subscription-current-plan-detail .plan--content .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.subscription-current-plan-detail .plan--content .plan-features ul li {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--hy-secondary);
  text-align: left;
  margin-right: 1.25rem;
  margin-top: 0.75rem;
}
.subscription-current-plan-detail .plan--content .plan-features ul li .list__item {
  display: flex;
  align-items: flex-start;
}
.subscription-current-plan-detail .plan--content .plan-features ul li .list__item .icon {
  width: 16px;
  flex-shrink: 0;
  margin-right: 0.5rem;
  align-self: flex-start;
}
.subscription-current-plan-detail .plan--content .plan-features ul li .list__item .icon svg {
  width: 100%;
}
.subscription-current-plan-detail .plan--btn {
  min-width: 230px;
}
@media (max-width: 767px) {
  .subscription-current-plan-detail .plan--btn {
    margin-top: 1.5rem;
    width: 100%;
    min-width: initial;
  }
}
.subscription-current-plan-detail .plan--btn .hype-btn-large {
  padding: 15px 20px;
  font-size: 1rem;
  width: 100%;
  text-wrap: auto;
}

/****************************** ******************************
Home Page CSS
****************************** *****************************/
/*Header CSS*/
header.site-header {
  font-family: var(--primary-theme-font);
  background-color: var(--hy-secondary);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
body.home header.site-header {
  background-color: transparent;
}
header.site-header.sticky, body.home header.site-header.sticky {
  background-color: var(--hy-secondary);
}
#headerNew.is-cookiebar {
  top: 60px;
}
header.site-header .container-fluid {
  padding: 0 15px;
  height: 100%;
}
header.site-header .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header.site-header .header-main .brand {
  margin-left: -15px;
}
header.site-header .header-main .brand img {
  width: auto;
  height: 65px;
}
/*Nav*/
header.site-header .header-main .nav-primary {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
@media (max-width: 1199px) {
  header.site-header .header-main .nav-primary {
    display: none;
  }
}
header.site-header .header-main .nav-primary .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  height: 100%;
  align-content: center;
}
header.site-header .header-main .nav-primary ul.nav li.nav-item {
  display: flex;
  height: 100%;
}
header.site-header .header-main .nav-primary ul.nav li.nav-item .nav-link {
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
  background: transparent;
  color: var(--hy-shades-0);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
@media (min-width: 1250px) {
 header.site-header .header-main .nav-primary ul.nav li.nav-item .nav-link {
   padding: 0 0.8rem;
 }
}
@media (min-width: 1400px) {
 header.site-header .header-main .nav-primary ul.nav li.nav-item .nav-link {
   padding: 0 1rem;
 }
}
header.site-header .header-main .nav-primary ul.nav li.nav-item .nav-link:hover, header.site-header .header-main .nav-primary ul.nav li.nav-item .nav-link:active, header.site-header .header-main .nav-primary ul.nav li.nav-item.active .nav-link {
  color: var(--hy-primary);
  background: none;
}
header.site-header .header-main .nav-primary ul.nav li.nav-item .menu-arrow {
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  margin-top: -6px;
  line-height: 0;
  transform: rotate3d(0, 0, 0, 0deg);
  transform-origin: 50% 75%;
  transition: transform .1s ease-out .1s;
}
header.site-header .header-main .nav-primary ul.nav li.nav-item.open .menu-arrow {
  transform: rotate(-180deg);
  transform-origin: 50% 75%;
}
header.site-header .header-main .nav-primary ul.nav li.nav-item.dropdown .dropdown-menu {
  left: calc(50% - 100px) !important;
  width: 100%;
  max-width: 100%;
  min-width: 200px;
}
header.site-header .header-main .nav-primary ul.nav li.nav-item.dropdown .dropdown-menu::before {
  left: calc(50% - 5px);
  right: auto;
}
header.site-header .header-main .nav-primary ul.nav li.nav-item.dropdown .dropdown-menu::after {
  left: calc(50% - 5px);
  right: auto;
  border-bottom: 7px solid #ffffff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
header.site-header .header-main .nav-primary ul.nav li.nav-item.dropdown .dropdown-menu > li > a {
  width: 100%;
}
/*Nav Utility*/
header.site-header .nav-utilities {
  display: flex;
  margin-right: 1rem;
}
@media (max-width: 1199px) {
  header.site-header .nav-utilities {
    margin-right: 0;
  }
}
header.site-header .nav-utilities .nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1199px) {
  header.site-header .nav-utilities .nav__cta {
    display: none;
  }
}
header.site-header .nav-utilities .nav__cta a img {
  display: block;
}
header.site-header .nav-utilities .nav__cta .hype-btn.hype-btn-green {
  min-width: 110px;
}
header.site-header .nav-utilities .nav__cta .hype-btn-link {
  color: var(--hy-shades-0);
}
header.site-header .nav-utilities .nav__cta .hype-btn-link:hover, header.site-header .nav-utilities .nav__cta .hype-btn-link.active {
  color: var(--hy-primary);
  text-decoration: none;
}
header.site-header .nav-utilities .nav__cta .hype-btn-link:active {
  color: var(--hy-primary);
}
/**/
header.site-header .nav-utilities.account-nav .nav__cta {
  gap: 30px;
}
header.site-header .nav-utilities.account-nav .nav__cta a {
  position: relative;
}
header.site-header .nav-utilities.account-nav .nav__cta .hy-badge {
  position: absolute;
  font-size: 0.625rem;
  left: 12px;
  top: -4px;
  border-radius: 2px;
  padding: 2px 2px;
  line-height: 1;
}
header.site-header .nav-utilities.account-nav .nav__cta .dropdown-menu {
  top: 210%;
}
/**/
header.site-header .hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  transform: scale(0.8)
}
header.site-header .hamburger.is-active:hover, header.site-header .hamburger:hover {
  opacity: .7
}
header.site-header .hamburger.is-active .hamburger-inner, header.site-header .hamburger.is-active .hamburger-inner:after, header.site-header .hamburger.is-active .hamburger-inner:before {
  background-color: var(--hy-shades-0);
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px
}
.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: var(--hy-shades-0);
}
.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: ""
}
.hamburger-inner:before {
  top: -10px
}
.hamburger-inner:after {
  bottom: -10px
}
.hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(.55, .055, .675, .19);
  transition-duration: .22s
}
.hamburger--spin .hamburger-inner:before {
  transition: top .1s ease-in .25s, opacity .1s ease-in
}
.hamburger--spin .hamburger-inner:after {
  transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19)
}
.hamburger--spin.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1);
  transform: rotate(225deg)
}
.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  transition: top .1s ease-out, opacity .1s ease-out .12s;
  opacity: 0
}
.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
  transform: rotate(-90deg)
}
/*Humburger Menu*/
@media (min-width: 1200px) {
  header .mobile-menu {
    display: none;
  }
}
header .mobile-menu button {
  line-height: 1;
}
header nav.mobile {
  position: absolute;
  top: 65px;
  right: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 65px);
  padding-top: 1em;
  background: var(--hy-secondary);
  overflow-y: scroll;
  transform: translate3d(100%, 0, 0);
  transition: opacity 0.3s, transform 0s ease-out 0.5s;
}
header nav.mobile.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity 0.3s, transform 0s ease-out 0s;
}
header nav.mobile .nav__cta {
  text-align: center;
  padding: 1.5rem 0;
}
header nav.mobile .nav__cta .hype-btn-green {
  width: 100%;
}
header nav.mobile .mobile__menu {
  padding-bottom: 6.5rem;
}
header nav.mobile .mobile__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}
header nav.mobile .mobile__menu ul a:link, header nav.mobile .mobile__menu ul a:visited {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  width: 100%;
  padding: 0.75em 0.5em;
  color: var(--hy-shades-0);
  font-size: 1rem;
  font-weight: 500;
}
header nav.mobile .mobile__menu ul a:link:hover, header nav.mobile .mobile__menu ul a:visited:hover, header nav.mobile .mobile__menu ul li.active a {
  text-decoration: none;
  color: var(--hy-primary);
}
header nav.mobile .mobile__menu ul > li ul > li a:link, header nav.mobile .mobile__menu ul > li ul > li a:visited {
  padding-left: 1.5em;
}
header nav.mobile .mobile__menu ul li ul {
  display: none;
}
header nav.mobile .mobile__menu ul li.menu-item-has-children > a {
  justify-content: space-between;
}
header nav.mobile .mobile__menu ul li.menu-item-has-children > a::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/mobile-nav-arrow.svg) 50% 50%/contain no-repeat;
  transform: rotate3d(0, 0, 1, 180deg);
  transition: transform 0.3s ease-out;
}
header nav.mobile .mobile__menu ul li.menu-item-has-children > a.active::after {
  transform: rotate3d(0, 0, 1, 270deg);
}
header nav.mobile .mobile__menu ul li.menu-item-has-children .sub-menu a::before {
  content: '→';
  margin-right: 0.75em;
}
/*New Header Classes for Mobile Header*/
body.hype-header-scroll .for-scroll-header {
  margin-top: 65px!important;
}
body.hype-header-scroll .has-preview-campaign {
  padding-top: 65px !important;
}
body.hype-header-scroll .for-top100-banner {
  margin-top: 65px !important;
}
body.hype-header-scroll .signup-container-section {
  margin-top: 65px !important;
}
/*Footer CSS*/
footer.site-footer {
  background-color: var(--hy-secondary);
  border-top: 1px solid #3d3d3d;
  padding: 6rem 0;
  font-family: var(--primary-theme-font);
  text-align: left;
}
@media (max-width: 767px) {
  footer.site-footer {
    padding: 2rem 0;
  }
}
.footer-top {
  display: block;
}
.footer-top .footer-logo {
  display: block;
}
@media (max-width: 767px) {
  .footer-top .footer-logo {
    margin-bottom: 2.5rem;
  }
}
.footer-top .footer-logo img {
  width: 100%;
  height: auto;
  max-width: 168px;
}
.footer-top .footer-nav {
  display: block;
}
@media (max-width: 767px) {
  .footer-top .footer-nav {
    margin-bottom: 3rem;
  }
}
.footer-top .footer-nav h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hy-neutral-200);
  margin: 0 0 1rem;
}
.footer-top .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-top .footer-nav ul li {
  margin: 1.5rem 0;
}
.footer-top .footer-nav ul li a {
  color: var(--hy-shades-0);
  transition: color 0.25s ease;
}
.footer-top .footer-nav ul li a:hover {
  color: var(--hy-primary);
  text-decoration: underline;
}
.footer-bot {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hy-neutral-200);
  line-height: 24px;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .footer-bot {
    margin-top: 0;
  }
  .footer-bot .hy-flex-row {
    flex-direction: column;
  }
}
.footer-bot ul.social {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .footer-bot ul.social {
    justify-content: flex-start;
    margin-bottom: 3rem;
  }
}
.footer-bot ul.social li {
  list-style: none;
  margin-right: 1rem;
}
.footer-bot ul.social li a {
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}
.footer-bot ul.social li a img {
  width: 24px;
  height: 24px;
  display: block;
  transition: color 0.25s ease;
}
.footer-bot ul.social li a:hover img {
  filter: brightness(100);
}
/*Main Wrap*/
.main-wrap {
  display: block;
  font-family: var(--primary-theme-font);
}
main.content > section {
  position: relative;
}
/*Main Hero Section*/
.hype-hero-block {
  background-color: var(--hy-secondary);
}
.hype-hero-inner {
  background-color: var(--hy-secondary);
  background-image: url(../images/main-banner-bg.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  overflow: hidden;
  flex-flow: column;
  justify-content: center;
  position: relative;
  height: 100vh;
  min-height: 950px;
}
@media (max-width: 767px) {
  .hype-hero-block .hype-hero-inner > .container {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .hype-hero-block .hype-hero-inner .col-xs-10 {
    width: 100%;
  }
}
.hype-hero-block .hype-hero-inner > .container > .row {
  margin-top: -75px;
}
.hype-hero-block .content .hero-star {
  background-color: rgba(var(--hy-shades-0-rgb), 0.15);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--hy-shades-0);
  margin: 0 0 2rem;
}
.hype-hero-block .content .hero-star img {
  display: block;
}
@media (max-width: 479px) {
  .hype-hero-block .content .hero-star img {
    max-width: 68px;
  }
}
.hype-hero-block .content h1 {
  font-family: var(--heading-theme-font);
  color: var(--hy-shades-0);
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0 0 1.75rem;
}
@media (min-width: 375px) {
  .hype-hero-block .content h1 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .hype-hero-block .content h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 992px) {
  .hype-hero-block .content h1 {
    font-size: 3.5rem;
  }
}
.hype-hero-block .content h1 span {
  color: var(--hy-primary);
}
.hype-hero-block .content p {
  color: var(--hy-shades-0);
  font-size: 1rem;
  font-weight: 400;
}
.hype-hero-block .content .hype-btn {
  min-width: 250px;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .hype-hero-block .content .hype-btn {
    width: 100%;
  }
}
.hype-hero-block .image {
  text-align: right;
}
@media (max-width: 767px) {
  .hype-hero-block .image {
    display: none;
  }
}
.hype-hero-block .image > img {
  display: inline-block;
  max-width: 235px;
}
@media (min-width: 992px) {
  .hype-hero-block .image > img {
    max-width: 267px;
  }
}
/*Feature Logo Section*/
.hype-feature-logo-section {
  --size: clamp(10rem, 1rem + 8vmin, 30rem);
  --gap: calc(var(--size) / 15);
  --scroll-end: calc(-100% - var(--gap));
  background: linear-gradient(to bottom, rgba(13, 12, 12, 0) 0%, rgba(13, 12, 12, 0.57) 21%, rgba(13, 12, 12, 0.8) 46%, rgba(13, 12, 12, 1) 100%);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}
@media (min-width: 375px) {
  .hype-feature-logo-section {
    --gap: calc(var(--size) / 8);
  }
}
@media (min-width: 992px) {
  .hype-feature-logo-section {
    --gap: calc(var(--size) / 2);
  }
}
.hype-feature-marquee {
  position: relative;
  margin-bottom: 2rem;
}
.hype-feature-marquee::before, .hype-feature-marquee::after {
  background: url(../images/leaf-graphic.svg) 0 0 /cover no-repeat;
  position: absolute;
  content: '';
  width: 40px;
  height: 73px;
  bottom: 10px;
}
.hype-feature-marquee::before {
  left: 0;
}
.hype-feature-marquee::after {
  right: 0;
  transform: scaleX(-100%);
  -webkit-transform: scaleX(-100%);
}
@media (max-width: 767px) {
  .hype-feature-marquee::before, .hype-feature-marquee::after {
    width: 30px;
    height: 55px;
    bottom: 18px;
  }
}
.hype-feature-logo-section h6 {
  text-align: center;
  font-size: 0.875rem;
  color: var(--hy-shades-0);
  font-weight: 500;
  margin: 0 0 1rem;
}
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
  margin: 0 40px;
}
@media (max-width: 767px) {
 .marquee {
   margin: 0 30px;
 } 
}
.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x 50s linear infinite;
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.marquee img {
  display: grid;
  place-items: center;
  width: var(--size);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 5.5);
  max-height: 90px;
}
/*Features Section*/
.hype-feature-block {
  display: block;
  background-color: var(--hy-shades-0);
}
.hype-feature-box {
  display: flex;
  flex-direction: column;
  background-color: var(--hy-gray-900);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 24px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .hype-feature-box {
    flex-direction: row;
    padding: 3rem;
    margin-bottom: 30px;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .hype-feature-box {
    padding: 4rem;
  }
}
.hype-feature-box .feature--content {
  display: flex;
  flex-direction: column;
}
.hype-feature-box .feature--content .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 2rem;
}
.hype-feature-box .feature--content .icon > img {
  width: 100%;
}
.hype-feature-box .feature--content h2 {
  font-family: var(--heading-theme-font);
  color: var(--hy-secondary);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0;
}
.hype-feature-box .feature--content p {
  font-size: 1rem;
  color: var(--hy-secondary-600);
  font-weight: 400;
  margin: 1rem 0 0;
}
.hype-feature-box .feature--social {
  display: flex;
  max-width: 258px;
}
@media (min-width: 992px) {
 .hype-feature-box .feature--social {
   max-width: 330px;
 } 
}
@media (max-width: 767px) {
  .hype-feature-box .feature--social {
    margin-top: 2.5rem;
    max-width: 330px;
  }
}
.hype-feature-box .feature--social ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 575px) {
  .hype-feature-box .feature--social ul {
    gap: 32px;
  }
}
.hype-feature-box .feature--social ul li {
  background-color: rgba(var(--hy-shades-100-rgb), 0.08);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hype-feature-box .feature--social ul li span {
  width: 24px;
  height: 24px;
}
.hype-feature-box .feature--social ul li span > img {
  width: 100%;
  height: 100%;
}
.hy-try-btn {
  text-align: center;
  margin-top: 2.5rem;
}
.hy-try-btn .hype-btn {
  min-width: 250px;
}
@media (max-width: 767px) {
  .hy-try-btn {
    margin-top: 1rem;
  }
  .hy-try-btn .hype-btn {
    width: 100%;
  }
}
/*Fan Count Section*/
.hype-fans-count-section {
  display: block;
  background-color: var(--hy-secondary);
  text-align: center;
}
.hype-fans-count-section img {
  max-width: 120px;
  margin-bottom: 2rem;
}
.hype-fans-count-section p {
  color: var(--hy-shades-0);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.hype-fans-count-section h5 {
  font-family: var(--heading-theme-font);
  color: var(--hy-shades-0);
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 1rem 0 1.25rem 0;
}
@media (min-width: 375px) {
  .hype-fans-count-section h5 {
    font-size: 4rem;
  }
}
@media (min-width: 480px) {
  .hype-fans-count-section h5 {
    font-size: 5rem;
  }
}
@media (min-width: 768px) {
  .hype-fans-count-section h5 {
    font-size: 6.5rem;
  }
}
/*What You Get Section*/
.hype-what-get-section {
  display: block;
  background-color: var(--hy-shades-0);
}
.hype-what-get-section > .container {
  max-width: 970px;
}
.hype-what-get-section h2 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .hype-what-get-section h2 {
    font-size: 2.25rem;
    margin: 0 0 4rem;
  }
}
@media (max-width: 374px) {
  .hype-what-get-section h2 {
    font-size: 2rem;
    margin: 0 0 3rem;
  }
}
.hype-what-get-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 35px 0;
}
.hype-what-get-section ul li {
  width: calc(50% - 50px);
  display: flex;
  margin: 0 25px;
}
@media (max-width: 767px) {
  .hype-what-get-section ul {
    gap: 25px 0;
  }
  .hype-what-get-section ul li {
    width: 100%;
    margin: 0;
  }
}
.hype-what-get-section ul li .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 1.5rem;
}
@media (max-width: 479px) {
  .hype-what-get-section ul li .icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
  }
}
.hype-what-get-section ul li .icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.hype-what-get-section ul li .content {
  display: flex;
  flex-direction: column;
}
.hype-what-get-section ul li .content h3 {
  font-family: var(--heading-theme-font);
  color: var(--hy-secondary);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0 0 1rem;
  line-height: 32px;
}
@media (max-width: 479px) {
  .hype-what-get-section ul li .content h3 {
    font-size: 1.25rem;
    line-height: 24px;
  }
}
.hype-what-get-section ul li .content p {
  font-size: 1rem;
  color: var(--hy-secondary-600);
  font-weight: 400;
}
.hype-what-get-section .hy-try-btn {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .hype-what-get-section .hy-try-btn {
    margin-top: 2rem;
  }
}
/*App Section*/
.hype-app-section {
  display: block;
  background-color: var(--hy-shades-0);
}
.hype-app-section > .container {
  position: relative;
  z-index: 1;
}
.hype-app-section > hr {
  z-index: 0;
  background-color: var(--hy-secondary);
  border: 0;
  height: 55%;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
}
@media (min-width: 768px) {
  .hype-app-section > hr {
    height: 65%;
  }
}
.hype-app-section img {
  max-width: 100%;
  display: block;
}
/*Testiomnials Section*/
.hype-testimonial-section {
  display: block;
  background-color: var(--hy-gray-900);
}
.hype-testimonial-section .hype-testimonial-heading {
  max-width: 600px;
  margin: 0 auto;
  float: none;
  margin-bottom: 4rem;
}
.hype-testimonial-section .hype-testimonial-heading h2 {
  color: var(--hy-secondary);
  font-family: var(--heading-theme-font);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .hype-testimonial-section .hype-testimonial-heading h2 {
    font-size: 2.25rem;
    margin: 0 0 3rem;
  }
}
@media (max-width: 374px) {
  .hype-testimonial-section .hype-testimonial-heading h2 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
.hype-testimonials {
  display: block;
}
.hype-testimonials ul {
  list-style: none;
  margin: 0;
  padding: 0;
  mask: linear-gradient(rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0) 99%);
}
@media (max-width: 479px) {
  .hype-testimonials ul {
    mask: linear-gradient(rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0) 100%);
  }
}
.hype-testimonials ul li.testimonials_grid-item { 
  width: 100%; 
  margin-bottom: 16px;
}
@media (min-width: 480px) {
 .hype-testimonials ul li.testimonials_grid-item { 
   width: calc(50% - 12px); 
 } 
}
@media (min-width: 992px) {
 .hype-testimonials ul li.testimonials_grid-item { 
   width: calc(33.33% - 12px); 
 } 
}
.hype-testimonial-card {
  display: flex;
  flex-direction: column;
  background-color: var(--hy-shades-0);
  border: 1px solid var(--hy-gray-400);
  border-radius: 16px;
  padding: 1.5rem;
}
.hype-testimonial-card .card--user {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hype-testimonial-card .card--user .user {
  display: flex;
  align-items: center;
}
.hype-testimonial-card .card--user .user img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 100px;
  flex-shrink: 0;
  margin-right: 16px;
}
.hype-testimonial-card .card--user .user strong {
  font-size: 1rem;
  font-weight: 600;
  color: #646060;
}
.hype-testimonial-card .card--user i img {
  display: block;
}
.hype-testimonial-card .card--content {
  margin-top: 1.5rem;
}
.hype-testimonial-card .card--content p {
  font-size: 1rem;
  color: var(--hy-secondary);
  font-weight: 400;
}
.hype-testimonial-card .card--content p:first-child {
  margin-bottom: 0;
}
.hype-testimonial-card .card--content p strong {
  font-weight: 700;
}
.hype-testimonial-card .card--content p strong.red {
  color: #F43010;
}
.hype-testimonial-card .card--img {
  margin-top: 1.5rem;
}
.hype-testimonial-card .card--img img {
  width: 100%;
  height: auto;
  display: block;
}
.hype-testimonial-section .hy-try-btn {
  margin-top: -2rem;
}
.hype-testimonial-section .hy-try-btn p {
  margin-bottom: 4.5rem;
  color: #646060;
  font-weight: 500;
}

/****************************** ******************************
Fan Opts Out Of Lifetime Pre-Save CSS -- HYPE-2340
****************************** *****************************/
.for-fanopts-container-section {
  background-color: var(--hy-shades-0);
}
.fan-opts-out-section {
  font-family: var(--secondary-theme-font);
  background-color: var(--hy-shades-0);
  padding: 50px 0;
}
.fan-opts-btn {
  display: flex;
  align-items: center;
}
.fan-opts-btn p {
  font-family: var(--secondary-theme-font);
  font-size: 0.75rem;
  color: var(--hy-neutral-300);
  margin: 0;
  padding-left: 1.5rem;
}
.fan-opts-out-section .hype-form-label .fanlabel-icons span {
  color: var(--hy-neutral-300);
}
.fanopts-confirmation-content {
  font-family: var(--secondary-theme-font);
}
.fanopts-confirmation-content .hype-btn.hype-btn-gray {
  font-family: var(--secondary-theme-font);
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1.5rem;
}
/****************************** ******************************
Lifetime Fans Step CSS -- HYPE-2340
****************************** *****************************/
.core-audience-panel {
  font-family: var(--secondary-theme-font);
}
.core-audience-panel h4 {
  color: var(--hy-neutral-300);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.core-audience-panel p {
  color: var(--hy-neutral-300);
  font-size: 0.875rem;
  font-weight: 400;
}
.core-audience-panel p strong {
  font-weight: 600;
}
.core-audience-panel p.green-text {
  color: var(--hy-success);
  font-size: 0.75rem;
  font-weight: 500;
}
.core-audience-panel p.hint {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hy-neutral-300);
  margin-top: 1.5rem;
}
.core-audience-panel p.hint a {
  color: var(--hy-neutral-300);
  text-decoration: underline;
}
.core-audience-panel p.hint a:hover {
  color: var(--hy-secondary);
  text-decoration: underline;
}
.core-audience-panel ul:not(.tooltip-list) {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.core-audience-panel ul:not(.tooltip-list) li {
  background: var(--hy-gray);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: flex;
}
.core-audience-panel ul:not(.tooltip-list) li i.icon {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}
.core-audience-panel ul:not(.tooltip-list) li i.icon img {
  width: 100%;
  display: block;
}
.core-audience-panel ul:not(.tooltip-list) li div h5 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--hy-neutral-500);
}
.core-audience-panel ul:not(.tooltip-list) li div p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--hy-neutral-300);
}
.core-audience-panel .hype-btn {
  min-width: 150px;
}
@media (max-width: 479px) {
  .core-audience-panel .hype-btn {
    min-width: 100%;
  }
}
.core-audience-switch {
  display: flex;
  margin-top: 2rem;
  font-family: var(--secondary-theme-font);
  align-items: center;
  gap: 16px;
}
.core-audience-switch .switch {
  margin-top: 0;
}
.core-audience-switch .switch input.cmn-toggle-round + label {
  height: 20px;
  width: 40px;
}
.core-audience-switch .switch input.cmn-toggle-round + label::after {
  content: "";
  height: 16px;
  left: 2px;
  line-height: 16px;
  top: 2px;
  width: 16px;
}
.core-audience-switch .switch input.cmn-toggle-round:checked + label::after {
  margin-left: 20px;
}
.core-audience-switch .switch + label {
  font-family: var(--secondary-theme-font);
  color: var(--hy-gray-700);
  font-size: 0.875rem;
}
/**/
.core-audience-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 599px) {
  .core-audience-item {
    flex-direction: column;
  }
}
.core-audience-item--image {
  display: flex;
  align-items: center;
  width: 100%;
}
.core-audience-item--image > img {
  border-radius: 4px;
  width: 104px;
  height: 104px;
  object-fit: cover;
  flex-shrink: 0;
}
.core-audience-item--image > h3 {
  font-weight: 600;
  margin: 0 0 0 1.5rem;
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
}
.core-audience-item--button {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-left: 2rem;
}
.core-audience-item--button > .hype-btn {
  min-width: 60px;
  font-size: 0.875rem;
}
@media (max-width: 599px) {
  .core-audience-item--button {
    margin-top: 2rem;
    width: 100%;
    margin-left: 0;
  }
  .core-audience-item--button > .hype-btn {
    width: 50%;
  }
}
/*User Activity Box Link for HYPE-2340*/
.user-activity-box-links {
  display: flex;
  justify-content: space-around;
}
.user-activity-box-links a {
  font-family: var(--secondary-theme-font);
  color: var(--hy-neutral-500);
  display: inline-block;
}
.user-activity-box-links a:hover {
  color: var(--hy-secondary);
  text-decoration: underline;
}