@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

input:focus {
  outline: none;
}

.wrapper {
  max-width: 1232px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

img {
  max-width: 100%;
}

.disable_scroll--everywhere {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
}

@media (max-width: 1000px) {
  .disable_scroll {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
  }
}
.margin-20 {
  margin-top: 20px;
}

.margin-15 {
  margin-top: 15px;
}

.margin-12 {
  margin-top: 12px;
}

.margin-6 {
  margin-top: 6px;
}

.margin-4 {
  margin-top: 4px;
}

.margin-b-24 {
  margin-bottom: 24px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}

.primary-variant-3-btn{
  background-color: #023fb2 !important;
  border: 1px solid #023fb2 !important;
}

.primary-variant-3-btn:hover{
  color: #023fb2 !important;
  background-color: #FFFFFF!important;
  border: 1px solid #023fb2!important;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  border: 1px solid #397cff;
  background: #397cff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 5px 15.5px;
  color: #fff;
  text-decoration: unset;
  gap: 8px;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  transition: all ease 0.5s;
}
.primary-button svg {
  max-height: 20px;
}
.primary-button svg path {
  transition: all ease 0.5s;
}

.primary-button:hover {
  background-color: #001847;
  border-color: #001847;
  color: #fff;
}

.primary-button-transparent {
  background-color: #fff;
  color: var(--gray-700, #344054);
  border: 1px solid var(--gray-300, #d0d5dd);
}
.primary-button--transparent {
  border-radius: 8px;
  border: 1px solid var(--gray-300, #d0d5dd);
  background: var(--base-white, #fff);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: var(--gray-700, #344054);
}

.primary-button-transparent:hover,
.primary-button--transparent:hover {
  background-color: #fff;
  border-color: #397cff;
  color: #397cff;
}
.primary-button-transparent:hover svg path {
  stroke: #397cff;
}

.ss-button {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px 15.5px;
  color: #fff;
  text-decoration: unset;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  text-decoration: none;
}
.btn-light a {
  color: #212529;
}
/* btn-light disable */
.btn-light.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
  opacity: 0.65;
}

.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid #dc3545; /* Bootstrap danger color */
  background: #dc3545; /* Bootstrap danger color */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px 15.5px;
  color: #fff;
  text-decoration: unset;
  gap: 8px;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  transition: all ease 0.5s;
}

.danger-button svg path {
  transition: all ease 0.5s;
}

.danger-button:hover {
  background-color: #9c1f2e; /* Darker shade of danger color */
  border-color: #9c1f2e; /* Darker shade of danger color */
  color: #fff;
}

.button-type2 {
  border-radius: 8px;
  border: 1px solid #001847;
  padding: 3px 10px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 28px;
  color: #001847;
  text-align: center;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: unset;
  transition: all ease 0.5s;
}
.button-type2 svg path {
  transition: all ease 0.5s;
}

.button-type2:hover {
  background-color: #fff;
  color: #397cff;
  border-color: #397cff;
}
.button-type2:hover svg .stroke {
  fill: none;
  stroke: #397cff;
}

nav {
  background: #fff;
  /* box-shadow: 0px 0px 40px 0px rgba(42, 47, 65, 0.07); */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
nav .bottomLayout,
nav .menuTrigger {
  display: none;
}
nav .wrapper {
  min-height: 101px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}
nav .brand {
  position: relative;
  z-index: 2;
}
nav .brand img {
  display: block;
  max-width: 216px;
}
nav .middle {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
nav .middle ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
nav .middle ul li {
  display: inline-block;
}
nav .middle ul li a {
  text-decoration: unset;
  color: #001847;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all ease 0.5s;
}
nav .middle ul li a svg {
  transition: all ease 0.5s;
}
nav .middle ul li a svg path {
  transition: all ease 0.5s;
}
nav .middle ul li a:hover {
  color: #397cff;
}
nav .middle ul li a:hover svg path {
  fill: #397cff;
}
nav .middle ul li a:hover svg .stroke {
  stroke: #397cff;
  fill: none;
}
nav .middle ul li a:hover .arrow {
  transform: rotate(180deg) translateY(-2px);
}
nav .rightButtnos {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}
nav .rightButtnos .myAcc,
nav .rightButtnos .getPremium {
  text-decoration: unset;
  min-height: 46px;
  border: 2px solid #001847;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 163px;
  gap: 10px;
  color: #001847;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all ease 0.5s;
}
nav .rightButtnos .myAcc svg,
nav .rightButtnos .getPremium svg {
  transition: all ease 0.5s;
}
nav .rightButtnos .myAcc svg path,
nav .rightButtnos .getPremium svg path {
  transition: all ease 0.5s;
}
nav .rightButtnos .myAcc:hover {
  border-color: #397cff;
}
nav .rightButtnos .getPremium {
  background-color: #397cff;
  border-color: #397cff;
  color: #fff;
  gap: 5.5px;
}
nav .rightButtnos .getPremium:hover {
  background-color: #001847;
  border-color: #001847;
}
nav .rightButtnos .getPremium:hover svg {
  transform: scale(1.1);
}
nav .rightButtnos .dropDown .dropDownList ul {
  margin-top: 10px;
}
nav .dropDown {
  position: relative;
}
nav .dropDown .dropDownList {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.25s;
}
nav .dropDown .dropDownList ul {
  display: block;
  border-radius: 10px;
  border: 2px solid #397cff;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(42, 47, 65, 0.07);
  border-radius: 10px;
  width: 163px;
  padding: 0;
  list-style-type: none;
  margin: 0;
}
nav .dropDown .dropDownList ul li {
  border-bottom: 2px solid #397cff;
  width: 100%;
}
nav .dropDown .dropDownList ul li a {
  height: 52px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #397cff;
  width: 100%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: unset;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  margin-top: -1px;
  margin-bottom: -1px;
  transition: all ease 0.5s;
}
nav .dropDown .dropDownList ul li a svg {
  transition: all ease 0.5s;
}
nav .dropDown .dropDownList ul li a svg path {
  transition: all ease 0.5s;
}
nav .dropDown .dropDownList ul li a:hover {
  background-color: #397cff;
  color: #fff;
  width: 178px;
}
nav .dropDown .dropDownList ul li a:hover svg path {
  fill: #fff;
}
nav .dropDown .dropDownList ul li a:hover svg .stroke {
  stroke: #fff;
  fill: none;
}
nav .dropDown .dropDownList ul li:first-child {
  margin-top: -2px;
}
nav .dropDown .dropDownList ul li:last-child {
  border-bottom: 0;
  margin-bottom: -2px;
}
nav .dropDown:hover a {
  color: #397cff;
}
nav .dropDown:hover a svg path {
  fill: #397cff;
}
nav .dropDown:hover a svg .stroke {
  stroke: #397cff;
  fill: none;
}
nav .dropDown:hover a .arrow {
  transform: rotate(180deg) translateY(-2px);
}
nav .dropDown:hover .myAcc {
  border-color: #397cff;
}
nav .dropDown:hover .dropDownList {
  visibility: visible;
  opacity: 1;
}

.standard-nav .wrapper {
  max-width: 1246px;
  min-height: 81px;
}
.standard-nav .brand img {
  max-width: 222px;
}
.standard-nav .rightButtnos .getPremium {
  min-width: 95px;
}
.standard-nav .rightButtnos .getPremium:hover {
  color: #fff;
}
.standard-nav .rightButtnos .getPremium-login {
  background: transparent;
  color: #001847;
  border-color: #001847;
}

@media (max-width: 1350px) {
  .onlyDesktop {
    display: none !important;
  }
  nav .middle {
    right: 120px;
  }
  .standard-nav .middle {
    right: 0;
  }
}
@media (min-width: 1350px) {
  .onlyPhone {
    display: none;
  }
}
@media (max-width: 1100px) {
  nav .middle ul {
    gap: 5px;
  }
  nav .middle {
    right: 130px;
  }
  .standard-nav .middle {
    right: 0;
  }
  nav .middle ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  nav.navBar-active .forMobile {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  nav.navBar-active .menuTrigger .line:nth-child(2) {
    width: 20px;
    transform: rotate(-50deg);
    margin-top: -6px;
    margin-bottom: -6px;
  }
  nav.navBar-active .menuTrigger .line:nth-child(1) {
    transform: rotate(50deg);
  }
  nav.navBar-active .menuTrigger .line:nth-child(3) {
    transform: rotate(50deg);
    opacity: 0;
  }
  nav.standard-nav .bottomLayout {
    min-height: unset;
    margin-top: 50px;
  }
  nav {
    border-bottom: 1px solid #eaecf0;
    box-shadow: none;
    position: fixed;
  }
  nav .rightButtnos {
    position: absolute;
    right: 60px;
  }
  nav .rightButtnos .getPremium {
    min-height: 40px;
    font-size: 14px;
    padding: 5px 15.5px;
    min-width: unset;
    gap: 4px;
  }
  nav .rightButtnos .dropDown {
    display: none;
  }
  nav .bottomLayout,
  nav .menuTrigger {
    display: block;
  }
  nav .bottomLayout .line,
  nav .menuTrigger .line {
    width: 20px;
    border-radius: 2px;
    height: 2px;
    background-color: #001847;
    margin-top: 4px;
    margin-bottom: 4px;
    transition: all ease 0.5s;
  }
  nav .bottomLayout .line:nth-child(2),
  nav .menuTrigger .line:nth-child(2) {
    width: 14px;
  }
  nav .menuTrigger {
    padding: 8px;
  }
  nav .menuTrigger svg {
    display: block;
  }
  nav .bottomLayout {
    display: block;
    max-width: 1100px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 50px;
  }
  nav .bottomLayout ul {
    display: block;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-bottom: 24px;
  }
  nav .bottomLayout ul li {
    display: block;
  }
  nav .bottomLayout ul li a {
    text-decoration: unset;
    color: #001847;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all ease 0.5s;
  }
  nav .bottomLayout ul li a svg {
    transition: all ease 0.5s;
  }
  nav .bottomLayout ul li a svg path {
    transition: all ease 0.5s;
  }
  nav .bottomLayout .getFullAcc {
    text-decoration: unset;
    display: block;
    border-radius: 8px;
    background: var(--gray-50, #f9fafb);
    padding: 20px 16px;
    margin-bottom: 24px;
  }
  nav .bottomLayout .getFullAcc h2 {
    color: var(--gray-900, #001847);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
  }
  nav .bottomLayout .getFullAcc p {
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    margin-top: 4px;
  }
  nav .bottomLayout .getFullAcc h3 {
    color: #001847;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    margin-top: 16px;
  }
  nav .bottomLayout .getFullAcc .lineScore {
    min-height: 8px;
    border-radius: 4px;
    background: var(--gray-200, #eaecf0);
    margin-top: 16px;
    position: relative;
    overflow: hidden;
  }
  nav .bottomLayout .getFullAcc .lineScore .finished {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 8px;
    background-color: #2ca851;
  }
  nav .bottomLayout .name {
    display: flex;
    border-top: #eaecf0 1px solid;
    padding-top: 24px;
    padding-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
  }
  nav .bottomLayout .name .avatar {
    max-width: 40px;
  }
  nav .bottomLayout .name .logOut {
    padding: 8px;
    position: absolute;
    right: 0;
    top: 16px;
  }
  nav .bottomLayout .name .info h2 {
    color: var(--gray-700, #344054);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    margin: 0;
  }
  nav .bottomLayout .name .info p {
    color: var(--gray-600, #475467);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    margin: 0;
  }
  nav .forMobile {
    position: fixed;
    top: 64px;
    bottom: 0;
    left: -100%;
    width: 100%;
    max-height: 100vh;
    overflow: auto;
    transition: all ease 0.5s;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
  }
  nav .forMobile .middle {
    padding-top: 32px;
    position: relative;
    min-height: calc(100vh - 505px);
    top: unset;
    transform: unset;
  }
  nav .forMobile .middle ul {
    display: block;
    max-width: 1100px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  nav .forMobile .middle ul li {
    display: block;
  }
  nav .forMobile .middle ul li a {
    font-size: 16px;
    gap: 7px;
    padding: 8px 10px;
  }
  nav .brand img {
    max-height: 35px;
  }
  nav .wrapper {
    min-height: 63px;
  }
  nav .forMobile .middle ul .dropDown.dropDown-active a {
    color: #397cff;
  }
  nav .forMobile .middle ul .dropDown.dropDown-active a svg path {
    fill: #397cff;
  }
  nav .forMobile .middle ul .dropDown.dropDown-active a svg .stroke {
    stroke: #397cff;
    fill: none;
  }
  nav .forMobile .middle ul .dropDown.dropDown-active a .arrow {
    transform: rotate(180deg) translateY(-2px);
  }
  nav .forMobile .middle ul li a:hover {
    color: #001847;
  }
  nav .forMobile .middle ul li a:hover svg path {
    fill: #001847;
  }
  nav .forMobile .middle ul li a:hover svg .stroke {
    stroke: #001847;
    fill: none;
  }
  nav .forMobile .middle ul li a:hover .arrow {
    transform: unset;
  }
  nav .dropDown .dropDownList {
    position: relative;
    visibility: visible;
    opacity: 1;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    left: unset;
    transform: unset;
    padding-left: 40px;
  }
  nav .dropDown .dropDownList ul {
    padding: 0;
    max-width: 200px;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  nav .middle ul li a svg,
  nav .bottomLayout ul li a svg {
    width: 25px;
  }
  nav .dropDown .dropDownList ul li a:hover {
    width: 100%;
    background-color: unset;
  }
}
@media (min-width: 420px) {
  .onlyMobile-sm {
    display: none !important;
  }
}
@media (max-width: 460px) {
  nav .rightButtnos .getPremium {
    display: none;
  }
  /* show second a */
  nav .rightButtnos .getPremium:nth-child(2) {
    display: block!important;
    min-width: auto!important;
  }

  nav .onlyMobile-sm {
    display: block!important;
  }

  nav .onlyMobile-sm .rightButtnos .getPremium{
    display: block!important;
    min-width: auto!important;
  }
  nav .onlyMobile-sm .rightButtnos {
    display: flex;
    right: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    position: relative;
    top: unset;
    left: unset;
    bottom: unset;
    padding: 8px 10px;
  }
  nav .onlyMobile-sm .rightButtnos a {
    background-color: #397cff !important;
    border-color: #397cff !important;
    color: #fff !important;
    width: calc(50% - 6px);
  }
  nav .bottomLayout ul li .primary-button {
    color: #fff;
    margin-top: 15px;
  }
  nav .bottomLayout {
    display: flex;
    flex-direction: column;
    min-height: 20px;
    justify-content: end;
    margin-top: 0;
  }
  nav .bottomLayout ul {
    margin-bottom: 15px;
  }
  nav .forMobile .middle {
    min-height: calc(100vh - 532px);
  }
  .buttons .delete-account-button {
    margin-bottom: 50px;
  }
  .user-settings-buttons {
    text-align: right;
  }
}
.text-xs {
  color: var(--gray-700, #344054);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
}

.text-sm {
  color: var(--gray-600, #475467);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.text-lg {
  color: var(--gray-900, #001847);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
}

.text-md {
  color: var(--gray-900, #001847);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.h-type-1 {
  color: #001847;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.h-type-2 {
  color: #001847;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.h-type-3 {
  color: #001847;
  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
} /*# sourceMappingURL=general.css.map */

#contact-intercom:hover {
  cursor: pointer;
}

.complited-line {
  min-height: 15vh;
  padding: 0 15px;
  display: flex;
  width: 100%;
  align-items: center;
  background-color: white;
  /* border-bottom: 1px solid #EAECF0; */
  justify-content: center;
  /* position: fixed; */
  gap: 25px;
  z-index: 0;
}

.complited-line .line {
  max-width: 1000px;
  width: 100%;
  border-radius: 100px;
  background: #eaecf0;
  min-height: 19px;
  position: relative;
}
.complited-line .line .finished {
  border-radius: 100px;
  background: #2ca851;
  position: relative;
  min-height: 19px;
  left: 0;
  top: 0;
  bottom: 0;
}

.complited-line .line .finished #highlightBar {
  background-color: white;
  opacity: 15%;
  height: 30%;
  width: 96%; /* Set to 90% of the parent's width */
  position: absolute;
  left: 2%; /* Center the highlight bar */
  top: 20%; /* Position above the center of the inner progress bar */
  border-radius: 10px;
}
.complited-line svg {
  display: block;
}

@media (max-width: 768px) {
  .complited-line {
    min-height: unset;
    /* position: fixed; */
    padding-top: 4vh;
    left: 0;
    right: 0;
    top: 0;
    min-height: 50px;
    gap: 10px;
  }

  .complited-line svg {
    max-width: 15px;
  }
}

.ss-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ss-popup .overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 24, 71, 0.8);
}
.ss-popup .popup-cont {
  max-width: 375px;
  width: 100%;
  border-radius: 15px;
  background: #fff;
  z-index: 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 15px;
}
.ss-popup .popup-cont .popup-img {
  max-width: 300px;
}
.ss-popup .popup-cont .imporve-quiz {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.ss-popup .popup-cont .imporve-quiz .quiz-radio {
  padding: 5px;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  min-height: 48px;
  color: #d0d5dd;
}
.ss-popup .popup-cont .imporve-quiz a {
  margin: 0;
}
.ss-popup .popup-cont h2 {
  color: #001847;
  text-align: center;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 5px;
  margin-bottom: 11px;
}
.ss-popup .popup-cont h3 {
  color: #001847;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.ss-popup .popup-cont p {
  color: #001847;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.ss-popup .primary-button-popup {
  border-radius: 8px;
  border: 1px solid #397cff;
  background: #397cff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  width: 100%;
  padding: 12px 20px;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-align: center;
  margin-top: 25px;
  text-decoration: unset;
  cursor: pointer;
}
.ss-popup .end-session {
  color: #ef6f5e;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: unset;
  margin-top: 19px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .ss-popup {
    justify-content: end;
  }
  .ss-popup .popup-cont {
    border-radius: 0;
    max-width: 100%;
    position: fixed;
    bottom: env(safe-area-inset-bottom);
  }
}
