﻿/*This is Main style sheet*/
/*Variables*/
/*new colours*/
/*Fonts*/
@font-face {
  font-family: "Aktiv-Grostek";
  src: url("/fonts/aktiv_grotesk-webfont.woff") format("woff"), url("/fonts/aktiv_grotesk-webfont.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Aktiv-Grostek";
  src: url("/fonts/aktiv_grotesk_italic-webfont.woff") format("woff"), url("/fonts/aktiv_grotesk_italic-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Aktiv-Grostek";
  src: url("/fonts/aktiv_grotesk_bold-webfont.woff") format("woff"), url("/fonts/aktiv_grotesk_bold-webfont.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Publico Headline";
  font-weight: 500;
  font-style: normal;
  src: url("/fonts/PublicoHeadline-Medium.woff2") format("woff2"), url(/fonts/PublicoHeadline-Medium.woff) format("woff");
}
@font-face {
  font-family: "Publico Headline";
  font-weight: bold;
  font-style: italic;
  src: url("/fonts/PublicoHeadline-BoldItalic.woff2") format("woff2"), url("/fonts/PublicoHeadline-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Publico Headline";
  font-weight: 300;
  font-style: normal;
  src: url("/fonts/PublicoHeadline-Light.woff2") format("woff2"), url("/fonts/PublicoHeadline-Light.woff") format("woff");
}
@font-face {
  font-family: "Publico Headline";
  font-weight: 300;
  font-style: italic;
  src: url("/fonts/PublicoHeadline-LightItalic.woff2") format("woff2"), url("/fonts/PublicoHeadline-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Publico Headline";
  font-weight: bold;
  font-style: normal;
  src: url("/fonts/PublicoHeadline-Bold.woff2") format("woff2"), url("/fonts/PublicoHeadline-Bold.woff") format("woff");
}
p, ul, li, a, span, table, label {
  font-family: "Aktiv-Grostek", arial, sans-serif;
  color: #36384B;
  font-size: 1em;
}

a:hover {
  color: #434DA0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Publico Headline", sans-serif;
  line-height: 1.5;
}

h1 {
  font-size: 2.9em;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.25em;
}

h6 {
  font-size: 1.15em;
}

.fs-14 {
  font-size: 0.875em;
}

.fs-12 {
  font-size: 0.75em;
}

.fs-18 {
  font-size: 1.15em;
}

.fs-20 {
  font-size: 1.25em;
}

/*Text classes*/
.paragraph-font {
  font-family: "Aktiv-Grostek", arial, sans-serif;
}

.header-font {
  font-family: "Publico Headline", sans-serif;
}

.purple-text {
  color: #434DA0;
}

.darkGrey-text {
  color: #36384B;
}

.lightGrey-text {
  color: #898A8D;
}

.white-text {
  color: white !important;
}

.customGrey-text {
  color: #828A8F;
}

.custom-redText {
  color: #FF9393;
}

.lillacPurple-text {
  color: #a3acff;
}

.text-right {
  text-align: right;
}

/*Background classes*/
.purple-background {
  background-color: #434DA0;
}

.white-background {
  background-color: white;
}

.login-background {
  background-color: #F8FBFD;
}

.newLightPurple-background {
  background-color: #E7EBFD;
}

.newLightGreen-background {
  background-color: #EAFCFF;
}

.darkGrey-background {
  background-color: #36384B;
}

/*-------------------------------------------------------------------Navigation styling--------------------------------------------------------------*/
/*Navigation*/
/*Zucora Navigation*/
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  width: 2em;
  height: 2em;
}

.custom-toggler .navbar-toggler {
  border-color: rgba(255, 255, 255, 0);
  border: unset;
}

@media screen and (max-width: 768px) {
  .navbar-brand {
    width: 75%;
  }
  .footer-logo {
    width: 40%;
  }
  .custom-dropdown-menu.dropdown-menu {
    width: auto;
  }
}
.custom-navLink:hover {
  background-color: white;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  padding: 5px 10px;
}
.custom-navLink:hover a {
  color: #434DA0 !important;
}
.custom-navLink a {
  /*padding: 10px 10px 5px 10px;*/
  font-size: 1em;
}

.custom-dropdown-menu.dropdown-menu {
  position: absolute;
  width: 30vw;
  right: 0;
  top: 105%;
  background: white;
  border-bottom: 4px solid #434da0;
  z-index: 100;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  padding: 20px 15px;
  /*display: grid;*/
  grid-template-columns: 50% 50%;
}

.dropdown-menu {
  border-radius: 0px !important;
  border-bottom: 4px solid #434DA0;
  min-width: auto !important;
}
.dropdown-menu:hover {
  color: #434DA0;
  background-color: #ebecf7 !important;
}

.custom-dropdown-menu .dropdown-item:hover, .custom-dropdown-menu .dropdown-item:focus, .customTop-nav-dropdown .dropdown-item:hover, .customTop-nav-dropdown .dropdown-item:focus, .dropdown-item:hover, .dropdown-item:focus {
  color: #434DA0;
  background-color: #ebecf7 !important;
}

/*-----------------------------------------------Footer styling-----------------------------------------------------------------*/
.white-hr {
  border-top: 2px solid white;
}

@media screen and (max-width: 768px) {
  .footer-logo {
    width: 35%;
  }
}
@media screen and (min-width: 769px) {
  .footer-logo {
    width: 12%;
  }
}
@media screen and (max-width: 1023px) {
  .smartOnePlan-logo {
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .smartOnePlan-logo {
    width: 25%;
  }
}
/*-----------------------------------BUTTONS---------------------------------------------------------*/
.greenButton {
  background-color: transparent;
  border: 3px solid #70E9B2;
  color: #70E9B2 !important;
  border-radius: 2em;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  padding: 15px 15px 10px 15px;
}
.greenButton:hover {
  background-color: #70E9B2;
  color: white !important;
}

.btn-primary {
  background-color: #434DA0;
  border-color: #434DA0;
}
.btn-primary:hover {
  background-color: #a3acff;
  border-color: #a3acff;
}

/* disbaled button*/
.btn-primary.disabled, .btn-primary:disabled {
  background-color: #C8C8C8;
  border-color: #C8C8C8;
}

/*-------------------------------------------------- custom tooltip styling---------------------------------------*/
.tooltip-inner {
  background-color: #434DA0;
  font-size: 16px;
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before {
  border-right-color: #434DA0;
  border-left-color: #434DA0;
}

/*Activation page styling*/
.dotted-border {
  border: 2px dashed #36384B;
}

/* ---------------------------New Success screen styling--------------------------------*/
.plan__activated {
  padding-top: 70px;
  padding-bottom: 120px;
}
.plan__activated .plan__main {
  width: 100%;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 30px;
}
.plan__activated .plan__main .discover__plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(54, 56, 75, 0.1);
  margin-bottom: 30px;
  padding-bottom: 40px;
}
.plan__activated .plan__main .discover__plan .discover__info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.plan__activated .plan__main .discover__plan .discover__info .discover__text > p {
  margin: 0px;
  color: rgb(54, 56, 75);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.plan__activated .plan__main .discover__plan .discover__info .discover__title {
  min-width: 230px;
  margin-right: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.plan__activated .plan__main .discover__plan .discover__info .discover__title > p {
  color: rgb(54, 56, 75);
  font-size: 24px;
  line-height: 28px;
  font-family: "Aktiv-Grostek", arial, sans-serif;
  font-weight: 500;
  margin: 0px;
}
.plan__activated .plan__main .discover__plan .discover__info .discover__title > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.plan__activated .plan__main .discover__plan .discover__info .discover__title > span > img {
  min-width: 65px;
  max-width: 65px;
}
.plan__activated .plan__main .discover__plan .discover__button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 120px;
}
.plan__activated .plan__main .discover__plan .discover__button > a {
  white-space: nowrap;
}
.plan__activated .plan__main .discover__plan .discover__button > a.discover__accept {
  min-width: 170px;
  min-height: 50px;
  background-color: #434DA0;
  transition: 0.4s ease all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  line-height: 16px;
  font-family: "Aktiv-Grostek", arial, sans-serif;
  font-weight: bold;
  text-decoration: none;
  padding: 0 15px;
}
.plan__activated .plan__main .discover__plan .discover__button > a.discover__accept:hover {
  opacity: 0.7;
}
.plan__activated .plan__main .discover__plan .discover__button > a.discover__cancel {
  margin-left: 30px;
  text-decoration: none;
  color: #434DA0;
  font-family: "Aktiv-Grostek", arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.4s ease all;
}
.plan__activated .plan__main .discover__plan .discover__button > a.discover__cancel:hover {
  opacity: 0.7;
}
.plan__activated .plan__main .conditions__plan {
  text-align: right;
}
.plan__activated .plan__main .conditions__plan > p {
  margin-top: 0px;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Aktiv-Grostek", arial, sans-serif;
  font-style: italic;
}
.plan__activated .plan__main .conditions__plan > p > a {
  color: rgb(67, 77, 160);
  font-style: normal;
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
}
.plan__activated .plan__main .plan__info--receieve {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #F7F8FC;
  border-radius: 5px;
}
.plan__activated .plan__main .plan__info--receieve > h2 {
  margin: 0px;
  color: rgb(67, 77, 160);
  font-size: 30px;
  line-height: 60px;
  font-family: "Publico Headline", sans-serif;
  font-weight: 400;
}
.plan__activated .plan__main .plan__info--receieve > p {
  margin: 0px;
  color: rgb(54, 56, 75);
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  font-family: "Aktiv-Grostek", arial, sans-serif;
}
.plan__activated .plan__head {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.plan__activated .plan__head .plan__left {
  margin-right: 40px;
}
.plan__activated .plan__head .plan__left .plan__email > p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 22px;
  line-height: 32px;
  font-family: "Aktiv-Grostek", arial, sans-serif;
  font-weight: 500;
  color: rgb(67, 77, 160);
}
.plan__activated .plan__head .plan__left .plan__email > p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.plan__activated .plan__head .plan__left .plan__email > p span > img {
  min-width: 40px;
  max-width: 40px;
}
.plan__activated .plan__head .plan__left > h2 {
  color: rgb(67, 77, 160);
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 2px;
  font-family: "Publico Headline", sans-serif;
}
.plan__activated .plan__head .plan__left > p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Aktiv-Grostek", arial, sans-serif;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .plan__activated .plan__main .discover__plan > .discover__button {
    flex-direction: column;
  }
  .plan__activated .plan__main .discover__plan > .discover__button > .discover__accept {
    margin-bottom: 15px;
  }
  .plan__activated .plan__main .discover__plan > .discover__button > a.discover__cancel {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .plan__activated .plan__main {
    padding: 20px;
  }
  .plan__activated .plan__main .plan__info--receieve > h2 {
    font-size: 21px;
    line-height: 42px;
  }
  .plan__activated .plan__main .plan__info--receieve > p {
    font-size: 14px;
    line-height: 16px;
  }
  .plan__activated .plan__main .discover__plan > .discover__info {
    flex-direction: column;
  }
  .plan__activated .plan__main .discover__plan > .discover__info > .discover__title {
    min-width: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .plan__activated .plan__main .discover__plan > .discover__info > .discover__title > p {
    font-size: 18px;
    line-height: 22px;
  }
  .plan__activated .plan__head {
    margin-bottom: 20px;
  }
  .plan__activated .plan__head > .plan__left .plan__email > p {
    font-size: 16px;
    line-height: 24px;
  }
  .plan__activated .plan__head > .plan__left > h2 {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 991px) {
  .plan__activated {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .plan__activated .plan__main .discover__plan {
    flex-direction: column;
  }
  .plan__activated .plan__main .discover__plan > .discover__info {
    margin-bottom: 30px;
  }
  .plan__activated .plan__main .discover__plan > .discover__info .discover__title {
    margin-right: 25px;
  }
  .plan__activated .plan__main .discover__plan > .discover__info .discover__title > span {
    margin-right: 15px;
  }
  .plan__activated .plan__main .discover__plan > .discover__info .discover__title > span > img {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
  }
  .plan__activated .plan__main .discover__plan > .discover__info .discover__title > p {
    font-size: 20px;
    line-height: 24px;
  }
  .plan__activated .plan__main .discover__plan > .discover__button {
    margin-left: 0px;
  }
  .plan__activated .plan__head {
    margin-bottom: 35px;
    flex-direction: column-reverse;
  }
  .plan__activated .plan__head > .plan__image > img {
    max-width: 100%;
  }
  .plan__activated .plan__head > .plan__left {
    margin-right: 0px;
  }
  .plan__activated .plan__head > .plan__left .plan__email > p {
    font-size: 18px;
    line-height: 26px;
  }
  .plan__activated .plan__head > .plan__left > h2 {
    font-size: 26px;
    line-height: 42px;
  }
  .plan__activated .plan__head > .plan__image {
    margin-bottom: 40px;
  }
}
/*-----------------------------------------------------------------New Activation style-------------------------------------------------------------------------*/
.profile-icon-container {
  background-color: rgba(163, 172, 255, 0.2);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
}
.profile-icon-container p > i {
  font-size: 2em;
  margin: 0.25 0 0 0;
  color: #a3acff;
}

.home-icon-container {
  background-color: rgb(221, 245, 252);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
}
.home-icon-container p > i {
  font-size: 2em;
  margin: 0.25 0 0 0;
  color: #56CCF2;
}

/*-----------------------------------------------------------------------------INCENTIVE SCREENS ------------------------------------------------------------------*/
.video-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  line-height: 1;
  border: none;
}

.giftCard-border {
  border: 2px solid #36384B;
  border-radius: 20px;
  min-height: 300px;
}

/*-------------------------------------------------------------------------------Loader-------------------------------------------------------------------*/
.loader {
  display: block;
  margin: 2em auto;
  z-index: 1;
  border-radius: 50%;
  border-top: 16px solid #434dA0;
  /*border-bottom: 16px solid #434dA0;*/
  width: 100px;
  height: 100px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
}

.opacity-2 {
  opacity: 0.2;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*Dropzone styling*/
.dropzone {
  padding: 10px !important;
  min-height: 100px !important;
}
.dropzone .dz-preview {
  margin: 10px !important;
}
.dropzone .dz-preview .dz-remove {
  margin-top: 15px;
  color: #434DA0;
}
.dropzone .dz-preview .dz-error-message {
  top: 150px !important;
}
.dropzone .dz-preview .dz-image {
  width: 80px !important;
  height: 80px !important;
}
.dropzone .dz-preview .dz-details .dz-filename {
  display: none;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 0px !important;
  font-size: 12px !important;
}
.dropzone .dz-preview .dz-details .dz-size span {
  padding: 5px !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

#FileNameList li {
  font-size: 1.25rem;
}
