/*! Copyright 2021 - Flat / Tutteo Ltd. */
.fcards-sq {
  display: flex;
  margin-right: -24px;
}
.fcards-horizontal-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -24px -24px 0;
}
.fcard-horizontal {
  background: #fff;
  border: 0;
  border-radius: 8px;
  padding: 24px;
  margin: 0 24px 24px 0;
  flex: 0 0 calc(50% - 24px);
  display: flex;
  align-items: center;
  text-align: left;
}
.fcard-horizontal .i {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  margin-right: 16px;
}
.fcard-horizontal .i.ph {
  background: var(--f-ink-10);
  border-radius: 50%;
  display: inline-flex;
}
.fcard-horizontal .i24 {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  fill: var(--f-subdue);
}
.fcard-horizontal.w100 {
  flex: 1 1 100%;
  width: 100%;
}
.fcard-horizontal .t {
  font-size: 16px;
  line-height: 24px;
}
.fcard-horizontal .title {
  font-weight: bold;
  color: var(--f-ink);
}
.fcard-horizontal .desc {
  color: var(--f-subdue);
  margin-top: 4px;
}
@media (max-width: 767px) {
  .fcards-horizontal-list {
    flex-wrap: wrap;
  }
  .fcard-horizontal {
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .fcards-sq {
    flex-direction: column;
    margin-right: 0;
  }
}
.felev-small {
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
}
.felev-small.h:hover {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), inset 0px 0px 0px 2px var(--f-grey-2);
}
.felev-small.selected {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), inset 0px 0px 0px 2px var(--f-primary);
}
.felev-small:focus:not(:active) {
  box-shadow: 0 0 4px 0 rgba(27, 121, 210, 0.72), inset 0px 0px 0px 4px #1B79D2;
}
.felev-static {
  box-shadow: 0 0 0 1px rgba(54, 60, 80, 0.04), 0 1px 4px 0 rgba(54, 60, 80, 0.14);
}
.fbanner {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 24px 24px 24px 20px;
}
.fbanner.info,
.fbanner.warn,
.fbanner.error {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.fbanner.info {
  border-left: 4px solid var(--f-primary);
}
.fbanner.warn {
  border-left: 4px solid var(--f-yellow);
}
.fbanner.error {
  border-left: 4px solid #FF1C3C;
}
.fbanner > img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.fbanner .title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--f-ink);
}
.fbanner .error {
  background: rgba(255, 28, 60, 0.08);
  font-size: 16px;
  line-height: 24px;
  color: #FF1C3C;
  margin-top: 8px;
}
.fbanner .description {
  font-size: 16px;
  line-height: 24px;
  color: var(--f-ink);
  margin-top: 8px;
}
.fbanner .description a {
  color: var(--f-primary);
  text-decoration: underline;
}
.fbanner .description p {
  line-height: inherit;
}
.fbanner .btn {
  margin-top: 24px;
  display: inline-flex;
  width: auto;
}
.fbanner .btns {
  display: flex;
}
.fbanner .btns .btn:nth-child(2) {
  margin-left: 8px;
}
.score-banner-error {
  margin-top: 100px;
}
.fbanner-warning {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  border-radius: 4px;
  border: solid 1px var(--f-yellow);
  background-color: #fff8eb;
  color: var(--f-ink);
  margin-bottom: 16px;
  height: fit-content;
  width: 100%;
}
.fbanner-warning .icon-message {
  display: flex;
  align-items: flex-start;
}
.fbanner-warning svg {
  margin-right: 8px;
  min-width: 24px;
  min-height: 24px;
}
.fbanner-warning svg path {
  fill: var(--f-yellow);
}
.fbanner-warning .warning-message {
  font-size: 14px;
  line-height: 1.57;
}
.form-control.link {
  display: flex;
  padding: 0;
  border: 0;
}
.form-control.link .text {
  flex: 1 1;
  padding: 13px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border: 1px solid #c0ccd1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: calc(100% - 115px);
  text-align: left;
}
.form-control.link .copy {
  flex: 1 0;
  padding: 17px 24px!important;
  display: block;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  line-height: 14px;
  white-space: nowrap;
  margin-left: -1px;
  max-width: 116px;
  text-align: center;
}
.form-control.link .copy::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.form-control.link .copy.done {
  background: var(--f-happy-green);
}
.form-control.link .copy.done:hover,
.form-control.link .copy.done:active,
.form-control.link .copy.done:focus {
  box-shadow: none;
}
@media (max-width: 510px) {
  .form-control.link .text {
    display: none;
  }
  .form-control.link .copy {
    flex: 1;
    text-align: center;
    border-radius: 3px;
  }
}
.ddn-dt {
  z-index: 1050;
  padding: 0;
}
.ddn-dt .dtp-head {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 5px 10px 0;
}
.ddn-dt table th:first-child,
.ddn-dt table td:first-child {
  padding-left: 10px;
}
.ddn-dt table th:last-child,
.ddn-dt table td:last-child {
  padding-right: 10px;
}
.ddn-dt .dtp-time {
  background: var(--f-grey-bg);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  display: flex;
  align-items: center;
  padding: 15px;
}
.ddn-dt .dtp-time span {
  padding-right: 12px;
  color: var(--f-subdue);
  font-weight: 500;
}
.dt-picker .dtp-head {
  display: flex;
  width: 100%;
  background: var(--f-grey-bg);
}
.dt-picker .dtp-mo-incr {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  width: 35px;
  height: 35px;
}
.dt-picker .dtp-mo-incr svg {
  height: 8px;
  width: 8px;
}
.dt-picker .dtp-mo-incr path {
  fill: var(--f-subdue);
}
.dt-picker .dtp-period-ctrl {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dt-picker .dtp-select-wrap {
  position: relative;
}
.dt-picker .dtp-select-wrap button {
  background: transparent;
  border: 0;
  padding: 0 3px;
  cursor: pointer;
  color: var(--f-subdue);
  height: 100%;
  line-height: 20px;
  font-weight: 500;
}
.dt-picker .dtp-select-wrap select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.dt-picker table {
  margin-bottom: 0;
}
.dt-picker th {
  background: var(--f-grey-bg);
  color: var(--f-subdue);
  padding: 8px 0 12px 0px;
  font-weight: 500;
}
.dt-picker td {
  margin: 0;
  padding: 0;
}
.dt-picker td button {
  border: 0;
  background: none;
  height: 40px;
  width: 40px;
  text-align: center;
  padding: 10px;
  color: var(--f-ink);
}
.dt-picker td button.outOfRange {
  color: var(--f-grey-2);
}
.dt-picker td button.today {
  color: var(--f-primary);
}
.dt-picker td button.selected {
  background: var(--f-primary);
  color: #fff;
  border-radius: 22px;
}
.tag-beta {
  display: inline-flex;
  background: var(--f-ink);
  border-radius: 4px;
  padding: 4px;
  font-weight: 600;
  font-size: 11px;
  line-height: 11px;
  text-transform: uppercase;
  color: #fff;
}
.tag-premium {
  display: inline-flex;
  background: #FFEFD6;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--f-yellow);
}
.f-empty-state {
  max-width: 448px;
  margin: 120px auto 48px;
  text-align: center;
}
.f-empty-state > img {
  max-height: 240px;
  max-width: 240px;
}
.f-empty-state .etitle {
  margin-top: 40px;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  color: var(--f-grey-3);
}
.f-empty-state .edesc {
  margin: 8px 0 24px;
  font-size: 16px;
  line-height: 26px;
  color: var(--f-grey-3);
}
.list-wrb {
  border: 1px solid var(--f-grey-2);
  border-radius: 4px;
  background: #fff;
}
.list-wrb > * {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--f-grey-2);
  margin-bottom: -1px;
}
.list-wrb > * > .checkbox-morph {
  flex: 0 0 18px;
}
.list-wrb > * > .t {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  color: var(--f-ink);
}
.side-tray-bd {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #0b233e;
  opacity: .86;
  z-index: 10;
}
.side-tray {
  box-shadow: -15px 0 15px 1px rgba(40, 48, 79, 0.08);
  border: solid 1px #e7e8ec;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
  background-color: #fff;
  opacity: 1;
}
.side-tray .close-tray {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  display: flex;
  padding: 0;
}
.side-tray .close-tray img {
  border: 0;
}
.side-tray .tray-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.33;
  color: var(--f-ink);
  margin-bottom: 28px;
}
.d-libpicker {
  border-radius: 0;
  padding: 0;
  height: 560px;
  width: 570px;
}
.d-libpicker iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 650px) {
  .d-resp > .d-libpicker.d-center {
    padding: 0;
  }
}
.d-del p,
.d-del li {
  color: var(--f-subdue);
  font-size: 14px;
  line-height: 22px;
}
.d-del .resources-list {
  max-width: 600px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-trigger {
  margin-left: 10px;
  margin-right: 0 !important;
}
.profile-trigger > .ddn-trigger {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
}
.profile-trigger > .ddn-trigger .user + svg.circle-new-pu {
  top: 6px;
  right: 32px;
}
.profile-trigger .avatar-container {
  display: flex;
}
.profile-trigger .user-avatar img {
  width: 36px;
  height: 36px;
}
.profile-trigger .icon-dropdown {
  display: flex;
  align-items: center;
  height: 32px;
  margin-left: 6px;
}
.profile-trigger svg.circle-new-pu {
  position: absolute;
  top: -5px;
  right: -6px;
  width: 11px;
  height: 11px;
}
.profile-trigger svg.circle-new-pu circle {
  fill: #FF43AD;
  stroke: #fff;
  stroke-width: 2px;
}
.profile-trigger .ddn-content {
  z-index: 50;
  padding: 0;
}
.profile-trigger .ddn-content ul {
  padding-top: 8px;
  padding-bottom: 8px;
}
.profile-trigger .ddn-content .product-update {
  position: relative;
}
.profile-trigger .ddn-content .product-update .icon .filld,
.profile-trigger .ddn-content .product-update .icon .stroked {
  fill: var(--f-subdue);
}
.profile-trigger .ddn-content .product-update .circle-new-pu {
  left: 12px;
  top: 2px;
}
.profile-trigger .ddn-content .product-update.news .text {
  border-bottom: 1px solid #FF43AD;
}
@media (max-width: 768px) {
  .profile-trigger .user-name {
    display: none;
  }
}
.dashboard-header-nav {
  display: flex;
  align-items: center;
  z-index: 12;
  min-height: 68px;
  padding: 16px 24px;
  max-width: 100%;
}
.dashboard-header-nav.reduced-padding {
  padding: 16px 16px;
}
.dashboard-header-nav .nav-left {
  flex: 1 1 auto;
  display: flex;
  z-index: 1;
}
.dashboard-header-nav .nav-left > ul {
  padding-left: 10px;
}
.dashboard-header-nav .nav-right {
  flex: 0 1 auto;
}
.dashboard-header-nav .nav-right > ul {
  padding-left: 0;
}
.dashboard-header-nav .nav-right > ul > li {
  margin-right: 10px;
}
.dashboard-header-nav .logo {
  height: 36px;
  display: flex;
  line-height: 36px;
  align-items: center;
}
.dashboard-header-nav .logo a {
  display: flex;
}
.dashboard-header-nav .logo svg.f-2021 {
  height: 36px;
  width: 89px;
}
.dashboard-header-nav .logo .logo-only {
  display: none;
}
.dashboard-header-nav .logo .help-center {
  display: inline-flex;
  height: 36px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  align-items: baseline;
}
.dashboard-header-nav .nav-search-text {
  display: none;
}
.dashboard-header-nav ul.navbar {
  align-items: center;
  line-height: 36px;
  height: 36px;
}
.dashboard-header-nav ul.navbar > li > a:not(.icon) {
  line-height: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.dashboard-header-nav ul.navbar > li > a:not(.icon) .fi {
  color: white;
}
.dashboard-header-nav ul.navbar > li > a:not(.icon).active,
.dashboard-header-nav ul.navbar > li > a:not(.icon):hover {
  color: #fff;
}
.dashboard-header-nav ul.navbar > li.disabled,
.dashboard-header-nav ul.navbar > li > a.disabled {
  opacity: 0.4;
  color: rgba(255, 255, 255, 0.4) !important;
  cursor: not-allowed;
}
.dashboard-header-nav ul.navbar > li.disabled a,
.dashboard-header-nav ul.navbar > li > a.disabled a {
  cursor: not-allowed;
}
.dashboard-header-nav ul.navbar > li > a.icon {
  display: flex;
  height: 36px;
  align-items: center;
  padding: 2px 10px 3px 10px;
}
.dashboard-header-nav .notification-trigger {
  background: transparent;
  display: inline-flex;
  padding: 6px 10px;
}
.dashboard-header-nav .notification-trigger > svg .fill {
  fill: #fff;
}
.dashboard-header-nav .notification-trigger > svg circle {
  stroke: none;
}
.dashboard-header-nav .inactive a {
  color: rgba(255, 255, 255, 0.6);
}
.dashboard-header-nav .inactive a:hover {
  color: #fff;
}
.dashboard-header-nav .dropdown-menu {
  font-size: 13px;
  padding: 8px 0;
}
@media (max-width: 1123px) {
  .dashboard-header-nav .global-search {
    display: none;
  }
}
@media (max-width: 1123px) and (min-width: 800px) {
  .dashboard-header-nav .nav-search-text {
    display: initial;
  }
}
@media (max-width: 1050px) {
  .dashboard-header-nav {
    padding: 16px;
  }
}
@media (max-width: 930px) {
  .dashboard-header-nav .nav-upgrade {
    display: none;
  }
}
@media (max-width: 730px) {
  .dashboard-header-nav .nav-newscore,
  .dashboard-header-nav .nav-import,
  .dashboard-header-nav .nav-stats {
    display: none;
  }
}
.dashboard-header-nav .ddn-content .link-support {
  display: none!important;
}
@media (max-width: 635px) {
  .dashboard-header-nav .ddn-content .link-support {
    display: flex!important;
  }
  .dashboard-header-nav .nav-support {
    display: none;
  }
}
@media (max-width: 400px) {
  .dashboard-header-nav .logo-only {
    display: block;
  }
  .dashboard-header-nav .logo-edu {
    display: none;
  }
}
@media (max-width: 375px) {
  .dashboard-header-nav .nav-popular-text {
    display: none;
  }
}
@media (max-width: 480px) {
  .dashboard-header-nav .notification-center-icon {
    display: none;
  }
}
@media (max-width: 325px) {
  .dashboard-header-nav .logo {
    display: none;
  }
  .dashboard-header-nav .nav-left ul {
    padding-left: 0;
  }
}
.dashboard-header-generic {
  margin-bottom: 40px;
  overflow: auto;
}
.dashboard-header-generic h1 {
  margin: 30px 0 50px 0;
  max-width: 100%;
}
.dashboard-header .actions {
  float: right;
}
.dashboard-header .actions .btn {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 9px 14px 8px 14px;
}
.dashboard-header .actions .btn svg {
  width: 16px;
  height: 16px;
}
.dashboard-header .actions .btn .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .3px;
  margin-left: 8px;
}
.dashboard-header .btn-auto {
  width: auto!important;
}
.dashboard-header .btn-header-cta {
  position: relative;
  display: inline-block;
  height: 39px;
  font-size: 10px;
  font-weight: 500;
  line-height: 11px;
  padding: 7px 14px 12px 14px;
  overflow: hidden;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
}
.dashboard-header .btn-header-combo {
  width: 142px;
}
.dashboard-header .btn-header-combo span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-top: 7px;
}
.dashboard-header .btn-header-combo svg {
  position: relative;
  margin-right: 3px;
}
@media (max-width: 768px) {
  .dashboard-header .btn-header-combo {
    width: 39px;
  }
  .dashboard-header .btn-header-combo span {
    display: none;
  }
  .dashboard-header .btn-header-combo .fill {
    fill: #fff!important;
  }
  .dashboard-header .btn-header-combo .fi {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .dashboard-header .btn-header-combo.btn-active {
    width: 142px;
    background: #fff;
  }
  .dashboard-header .btn-header-combo:not(.btn-active) {
    width: 39px;
  }
  .dashboard-header .btn-header-combo:not(.btn-active):not(:hover) svg .fill {
    fill: #fff;
  }
  .dashboard-header .btn-header-combo:hover {
    width: 142px;
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease-in-out;
  }
  .dashboard-header .btn-header-combo:hover ~ a {
    width: 39px;
    background: transparent;
  }
  .dashboard-header .btn-header-combo:hover ~ a span {
    display: none;
  }
  .dashboard-header .btn-header-combo:hover ~ a svg .fill {
    fill: #fff!important;
  }
}
.dashboard-header .btn-import-score svg {
  left: -6px;
  top: 2px;
}
.dashboard-header .btn-add-score {
  margin-left: 6px;
}
.dashboard-header .btn-add-score svg {
  top: 3px;
}
.dashboard-header .btn-invite-teacher,
.dashboard-header .btn-invite-admin,
.dashboard-header .btn-oganization-settings,
.dashboard-header .btn-invite-students,
.dashboard-header .btn-add-assignment {
  display: block;
}
.dashboard-header .btn-invite-teacher svg,
.dashboard-header .btn-invite-admin svg,
.dashboard-header .btn-oganization-settings svg,
.dashboard-header .btn-invite-students svg,
.dashboard-header .btn-add-assignment svg,
.dashboard-header .btn-invite-teacher .text,
.dashboard-header .btn-invite-admin .text,
.dashboard-header .btn-oganization-settings .text,
.dashboard-header .btn-invite-students .text,
.dashboard-header .btn-add-assignment .text {
  display: inline-block;
  vertical-align: middle;
}
.dashboard-header .btn-invite-teacher svg path {
  fill: #B8E986;
}
.dashboard-header .btn-invite-admin svg path {
  fill: #A0C4FC;
}
.dashboard-header .btn-oganization-settings svg path {
  fill: var(--f-grey-2);
}
.dashboard-header .btn-invite-students svg {
  left: -3px;
  top: 4px;
}
.dashboard-header .btn-invite-students svg path {
  fill: #A0C4FC;
}
.dashboard-header .btn-add-assignment svg {
  top: 5px;
  left: -2px;
  height: 15px;
  width: 16px;
}
.dashboard-header .btn-add-assignment svg path {
  fill: #F6BB03;
}
.dashboard-header .btn-profile-settings {
  width: 39px;
  color: #fff!important;
  font-size: 16px;
  line-height: 12px;
}
.dashboard-header .btn-profile-settings .fi {
  position: relative;
  left: -3px;
  top: 3px;
}
.dashboard-header .btn-profile-settings:hover {
  color: var(--f-primary-dark) !important;
  background: #fff;
}
.dashboard-header .btn-contact,
.dashboard-header .btn-default-cta,
.dashboard-header .btn-add {
  background: #fff;
}
.dashboard-header .btn-contact img,
.dashboard-header .btn-default-cta img,
.dashboard-header .btn-add img,
.dashboard-header .btn-contact svg,
.dashboard-header .btn-default-cta svg,
.dashboard-header .btn-add svg {
  margin-right: 12px;
  position: relative;
  top: 4px;
}
.dashboard-header .btn-contact .fi,
.dashboard-header .btn-default-cta .fi,
.dashboard-header .btn-add .fi {
  line-height: 17px;
  position: relative;
  top: 3px;
}
@media (min-width: 768px) {
  .dashboard-header .btn-contact .fi,
  .dashboard-header .btn-default-cta .fi,
  .dashboard-header .btn-add .fi {
    margin-right: 8px;
  }
}
.dashboard-header .btn-contact span,
.dashboard-header .btn-default-cta span,
.dashboard-header .btn-add span {
  position: relative;
  top: 4px;
}
.dashboard-header .btn-contact span {
  top: -1px;
}
.dashboard-header .btn-contact svg {
  top: 0px !important;
}
.dashboard-header-sub.with-submenu h1 {
  margin-bottom: 21px;
}
.dashboard-header-sub ul.submenu {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  height: 11px;
  line-height: 11px;
  font-size: 10px;
  letter-spacing: 0.4px;
}
.dashboard-header-sub ul.submenu li {
  float: left;
  margin-right: 40px;
  text-transform: uppercase;
}
.dashboard-header-sub ul.submenu li:not(.active) a {
  color: rgba(255, 255, 255, 0.6);
}
.header-upgrade-button {
  margin-right: 8px;
  background: rgba(47, 52, 70, 0.2);
  border-radius: 40px;
  color: #fff!important;
  font-size: 14px;
  padding: 10px 16px!important;
  white-space: nowrap;
}
.score-collaboration .header-upgrade-button {
  display: inline-block;
  padding: 11px 20px;
}
.dashboard-header {
  width: 100%;
  position: relative;
  z-index: 10;
  color: #fff;
  overflow: initial;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.04);
}
.dashboard-header h1,
.dashboard-header .dashboard-header-sub-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 38px;
}
.dashboard-header-scores-list {
  margin-bottom: 30px;
}
.dashboard-header-sub {
  margin-top: 13px;
  padding: 0px 40px;
  max-width: 100%;
}
.dashboard-header-sub .content-dashboard-class {
  display: flex;
  align-items: center;
  margin: 0 0 40px 0;
}
.dashboard-header-sub .content-dashboard-class h1,
.dashboard-header-sub .content-dashboard-class .dashboard-header-sub-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: .3px;
  margin: 0 14px 0 0;
}
.dashboard-header-sub .content-dashboard-class .actions {
  display: flex;
}
.dashboard-header-sub .content-dashboard-class a {
  margin: auto 6px;
}
.dashboard-header-sub .content-dashboard-class .section {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  padding-right: 4px;
}
.dashboard-header-fixed {
  position: fixed;
  will-change: transform;
  top: 0;
  z-index: 200;
}
.clearfix-header {
  height: 66px;
  margin-bottom: 40px;
}
.clearfix-header.profile {
  margin-bottom: 0;
}
.clearfix-header-sub {
  height: 184px;
  margin-bottom: 40px;
}
@keyframes notification-appear {
  0% {
    opacity: 0;
    margin-top: 80px;
  }
  10% {
    opacity: 1;
    margin-top: 5px;
  }
  90% {
    opacity: 1;
    margin-top: 5px;
  }
  100% {
    opacity: 0;
    margin-top: -60px;
  }
}
.notification-center.ddn-content {
  width: 295px;
  padding: 0;
  z-index: 10000;
}
.notification-center.open {
  animation: notification-appear 4s forwards;
}
.notification-center a.icon {
  display: flex;
  height: 37px;
  align-items: center;
}
.notification-center a.icon svg path {
  fill: rgba(255, 255, 255, 0.6);
}
.notification-center a.icon.active svg path {
  fill: white;
}
.notification-center a.icon .icon {
  display: flex;
}
.notification-center .dropdown-notification {
  color: var(--f-subdue);
  padding: 16px 16px 0;
}
.notification-center .dropdown-notification .notification-widget {
  font-weight: 400;
  border-bottom: 1px solid var(--f-ink-10);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.notification-center .dropdown-notification .notification-widget:last-child {
  margin-bottom: 0;
}
.notification-center .empty,
.notification-center .see-more {
  text-align: center;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--f-subdue);
  font-size: 14px;
  line-height: 20px;
}
.notification-center .see-more a {
  display: block;
  padding: 16px 0;
  color: var(--f-primary);
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400!important;
}
.notification-widget.dropdown {
  display: flex;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0;
  color: var(--f-subdue);
  padding: 0;
}
.notification-widget.dropdown > div,
.notification-widget.dropdown > a {
  display: flex;
}
.notification-widget.dropdown .notification-icon {
  flex: 0 0 16px;
  margin-right: 8px;
}
.notification-widget.dropdown .notification-icon svg {
  width: 16px;
  height: 16px;
}
.notification-widget.dropdown .notification-icon path {
  fill: var(--f-subdue);
}
.notification-widget.dropdown.unseen {
  color: var(--f-ink);
}
.notification-widget.dropdown.unseen .notification-icon.scoreInvitation path,
.notification-widget.dropdown.unseen .notification-icon.classroomSubmission path,
.notification-widget.dropdown.unseen .notification-icon.userFollow path,
.notification-widget.dropdown.unseen .notification-icon.scorePublication path {
  fill: var(--f-primary-dark);
}
.notification-widget.dropdown.unseen .notification-icon.scoreStar path {
  fill: #FA4A77;
}
.notification-widget.dropdown.unseen .notification-icon.classroomSubmission path {
  fill: var(--f-primary);
}
.notification-widget.dropdown.unseen .notification-icon.scoreComment path,
.notification-widget.dropdown.unseen .notification-icon.classroomSubmissionReturned path {
  fill: var(--f-happy-green);
}
.notification-widget.dropdown .notification-content p {
  white-space: normal;
  word-break: break-word;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  padding: 0;
}
.notification-widget.dropdown .notification-content p .picture {
  display: none;
}
.notification-widget.dropdown .notification-content .date {
  font-size: 14px;
  line-height: 14px;
  margin-top: 3px;
}
.notification-widget.dropdown .notification-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  width: 100%;
}
.notification-widget.dropdown .notification-actions .btn {
  flex: 0 0 calc(50% - 4px);
}
.nav-mobile-wrap {
  position: relative;
  z-index: 500;
}
.nav-mobile {
  position: fixed;
  bottom: 0;
  height: calc(var(--f-mob-nav-height) + var(--sab));
  width: 100vw;
  background: var(--f-primary);
  box-shadow: 0px -3px 4px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 0;
}
.nav-mobile > a {
  flex: 0 1 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-overflow: ellipsis;
  padding: 13px 0;
  box-sizing: content-box;
}
.nav-mobile .t {
  font-size: 12px;
  line-height: 13px;
  letter-spacing: .5px;
  font-weight: 500;
  color: #fff;
  margin: 5px 0 0 0;
  white-space: nowrap;
}
.nav-mobile .i {
  flex: 0 0 auto;
  display: flex;
}
.nav-mobile .i.notifications {
  overflow: visible;
  position: relative;
}
.nav-mobile .i.notifications svg {
  height: auto;
}
.nav-mobile .i svg {
  height: 24px;
  position: relative;
  top: 2px;
  fill: var(--f-white);
}
.nav-mobile svg {
  max-width: inherit;
}
.nav-mobile .icon-close svg {
  width: 20px;
  height: 20px;
}
.nav-mobile .fill {
  fill: #fff!important;
}
.nav-mobile-fs {
  background: #fff;
  position: fixed;
  top: 0;
  bottom: calc(var(--f-mob-nav-height) + var(--sab));
  left: 0;
  right: 0;
}
.nav-mobile-fs .h {
  background: var(--f-primary);
  box-shadow: 0 1px 2px 0 rgba(40, 48, 79, 0.16);
  display: flex;
  padding: 20px;
  color: #fff;
}
.nav-mobile-fs .h > a {
  display: flex;
}
.nav-mobile-fs .h .logo {
  width: auto;
  height: 32px;
}
.nav-mobile-fs .h .user-avatar {
  flex: 0 0 64px;
  margin-right: 20px;
}
.nav-mobile-fs .h .user-avatar img {
  border: 4px solid #fff;
}
.nav-mobile-fs .h .t {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 40px;
}
.nav-mobile-fs .h .name {
  white-space: nowrap;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 30px;
}
.nav-mobile-fs .h .settings {
  display: flex;
  align-items: center;
  background: rgba(28, 38, 88, 0.24);
  border: 2px solid rgba(255, 255, 255, 0);
  border-radius: 120px;
  padding: 0 7px;
}
.nav-mobile-fs .h .settings span {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 24px;
}
.nav-mobile-fs .h .settings svg {
  margin-right: 7px;
  width: 16px;
  height: 16px;
}
.nav-mobile-fs .items {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
}
.nav-mobile-fs .items svg {
  flex: 0 1 24px;
  max-height: 24px;
  margin-right: 20px;
}
.nav-mobile-fs .items a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.41px;
  color: var(--f-subdue);
  height: 24px;
  margin-bottom: 30px;
}
.nav-mobile-fs .items .fill {
  fill: var(--f-subdue);
}
.nav-mobile-fs-close {
  position: fixed;
  top: 16px;
  right: 16px;
}
.nav-mobile-fs-close svg {
  color: var(--f-white);
}
@media (max-width: 1023px) {
  .dashboard-header-sub,
  .fixed-help-button {
    display: none!important;
  }
  body > .main {
    padding-bottom: 50px;
  }
  .clearfix-header {
    height: 0;
    margin-bottom: 20px;
  }
  .dashboard-header-generic {
    margin-bottom: 20px;
  }
  .dashboard-header-fixed {
    position: unset!important;
    top: unset!important;
    will-change: initial;
  }
}
.fnavleft-wrap {
  z-index: 3;
  flex: 0 0 240px;
  width: 240px;
  transition: all 0.2s ease-in-out;
}
.fnavleft {
  background: #fff;
  box-shadow: 4px 0px 8px rgba(0, 0, 0, 0.05), 1px 0px 0px #EEEFF2;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: auto;
  transition: all 0.2s ease-in-out;
}
.fnavleft .logo-wrapper {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  height: 40px;
  width: 208px;
  overflow: hidden;
  margin: 16px 16px 0 16px;
  transition: all 0.1s ease-in-out;
}
.fnavleft .logo-wrapper .r {
  display: flex;
  height: 32px;
}
.fnavleft .logo-wrapper .btn-nav-grey {
  margin-left: 8px;
}
.fnavleft .logo-wrapper .logo-full-edu {
  height: 40px;
  width: auto;
}
.fnavleft .logo-wrapper .logo-b2c {
  height: 32px;
  width: auto;
}
.fnavleft .logo-wrapper .logo-sq {
  width: 40px;
  height: 40px;
}
.fnavleft .acct {
  display: flex;
  margin: 24px 16px 0;
}
.fnavleft .acct .user-avatar {
  margin-right: 8px;
  flex: 0 0 48px;
}
.fnavleft .acct .user-avatar img {
  border: 2px solid var(--f-ink-10);
}
.fnavleft .acct .t {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.fnavleft .acct .name {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: var(--f-ink);
}
.fnavleft .acct .ft {
  font-family: Helvetica;
  font-size: 12px;
  line-height: 16px;
  color: var(--f-subdue);
}
.fnavleft .acct .ft span {
  text-decoration: underline;
  color: var(--f-primary);
}
.fnavleft .menu {
  flex: 1 0 auto;
  width: 240px;
  overflow: hidden;
  margin-top: 24px;
}
@media (min-width: 767px) {
  .fnavleft .menu {
    margin-top: 64px;
  }
}
.fnavleft .menu .m-item {
  margin: 0 12px 0;
}
.fnavleft .menu .m-toggle {
  display: flex;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0 16px 0 0;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.fnavleft .menu .m-toggle.collapsed svg {
  transform: rotate(-90deg);
}
.fnavleft .menu .m-toggle path {
  fill: var(--f-subdue);
}
.fnavleft .menu .m-label {
  display: flex;
  min-height: 48px;
  height: fit-content;
  width: 100%;
  position: relative;
}
.fnavleft .menu .m-label.highlight::before {
  content: '';
  position: absolute;
  background: var(--f-primary-10);
  border-radius: 8px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.2s ease-in-out;
}
.fnavleft .menu .m-label .t {
  z-index: 1;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  background: transparent;
  border: 0;
  padding: 0 0 0 8px;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: var(--f-subdue);
}
.fnavleft .menu .m-label .t svg {
  margin-right: 12px;
  flex: 0 0 24px;
}
.fnavleft .menu .m-label .t path {
  fill: var(--f-subdue);
}
.fnavleft .menu .m-label.active .t {
  color: var(--f-ink);
}
.fnavleft .menu .m-label.active .t path {
  fill: var(--f-ink);
}
.fnavleft .menu .m-label.active .m-toggle path {
  fill: var(--f-ink);
}
.fnavleft .menu .m-submenu {
  margin-bottom: 32px;
}
.fnavleft .menu .m-submenu.collapsed {
  display: none;
}
.fnavleft .menu .m-submenu > * {
  display: flex;
  align-items: center;
  color: var(--f-subdue);
  font-size: 14px;
  line-height: 20px;
  height: 36px;
  padding: 0 16px;
}
.fnavleft .menu .m-submenu > *.active {
  background: var(--f-primary-10);
  border-radius: 8px;
  color: var(--f-ink);
}
.fnavleft .menu .m-submenu > * .t {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.fnavleft .menu .m-submenu .class-bullet {
  margin-right: 8px;
  flex: 0 0 8px;
}
.fnavleft .menu .m-submenu .tree-item svg {
  margin-right: 10px;
}
.fnavleft .logout {
  padding: 16px;
  text-transform: uppercase;
  color: var(--f-subdue);
  font-size: 12px;
  line-height: 17px;
  letter-spacing: .2px;
  font-weight: 600;
}
.nav-left-upgrade,
.nav-left-unlock-trial {
  margin: 16px;
}
.nav-left-upgrade .b {
  height: 4px;
  background: var(--f-ink-10);
  border-radius: 2px;
  position: relative;
  margin-top: 12px;
}
.nav-left-upgrade .b .f {
  position: relative;
  background: var(--f-ink);
  height: 100%;
  border-radius: 2px;
}
.nav-left-unlock-trial {
  border: none;
  border-radius: 4px;
  padding: unset;
}
.nav-left-unlock-trial .ft {
  margin-bottom: 12px;
}
.nav-left-unlock-trial .d {
  margin-bottom: unset;
}
.nav-left-unlock-trial .btn-unlock {
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--f-primary);
  background: var(--f-primary);
}
@media (max-width: 1023px) {
  .fnavleft-wrap {
    z-index: 500;
    height: 100%;
  }
  .fnavleft-bd {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 499;
    background-color: rgba(11, 35, 62, 0.86);
    border: 0;
    padding: 0;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .fnavleft-wrap {
    position: relative;
    width: 64px;
    flex: 0 0 64px;
  }
  .fnavleft-wrap.md-preview .logo-wrapper {
    margin: 16px 0 0 12px;
  }
  .fnavleft-wrap.md-preview .m-submenu,
  .fnavleft-wrap.md-preview .collec-leftmenu,
  .fnavleft-wrap.md-preview .m-label .t span,
  .fnavleft-wrap.md-preview .nav-left-upgrade {
    display: none;
  }
  .fnavleft-wrap.md-preview .fnavleft {
    overflow: hidden;
  }
  .fnavleft-wrap.md-preview .m-label.highlight::before {
    width: 42px;
    height: 42px;
    top: 3px;
  }
  .fnavleft-wrap:not(.md-preview) .fnavleft {
    width: 240px;
    position: absolute;
    z-index: 500;
  }
  .fnav-preview-target {
    position: absolute;
    top: 64px;
    left: 0;
    width: 64px;
    height: 100%;
    z-index: 10000;
    background: transparent;
    border: 0;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .fnavleft-wrap {
    position: fixed;
    flex: none;
    left: -505px;
  }
  .fnavleft-wrap.displayed {
    left: 0;
  }
  .fnavleft {
    position: relative;
    z-index: 500;
  }
}
.fnav-acct {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  flex: 0 0 auto;
}
.fnav-acct > * {
  display: flex;
  align-items: center;
}
.fnav-acct .left .logo,
.fnav-acct .left .logo img,
.fnav-acct .left .logo svg {
  height: 32px;
  width: auto;
}
.fnav-acct .left .burger {
  margin-right: 16px;
}
.fnav-acct .close-overlay {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 10px 0 0 8px;
}
.fnav-acct .close-overlay .fill {
  fill: var(--f-subdue);
}
@media (max-width: 767px) {
  .fnav-acct .close-overlay {
    margin: 0;
  }
}
.fnav-acct .right .btn-nav-grey {
  margin-right: 8px;
}
.fnav-acct .fnav-help svg,
.fnav-acct .fnav-newscore svg {
  margin-right: 4px;
}
@media (max-width: 500px) {
  .fnav-acct .fnav-newscore {
    display: none;
  }
}
.fnav-acct .user-avatar img {
  border: 2px solid var(--f-ink-10);
}
.fnav-acct svg.circle-new-pu {
  position: absolute;
  right: 22px;
  height: 11px;
  width: 11px;
  align-self: flex-start;
}
.fnav-acct svg.circle-new-pu circle {
  fill: #FA4A77;
  stroke: var(--f-ink-10);
  stroke-width: 2px;
}
.fnav-acct .ddn-account .ddn-trigger {
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
}
.fnav-acct .ddn-account .ddn-trigger .c {
  margin-left: 4px;
}
.fnav-acct .ddn-account .ddn-content {
  margin-top: 24px;
  z-index: 1060;
}
.fnav-acct .ddn-account .ddn-content li {
  display: flex;
}
.fnav-acct .ddn-account .ddn-content li > a {
  display: flex;
  align-items: center;
  line-height: 15px;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: normal;
  flex: 1 1 auto;
}
.fnav-acct .ddn-account .ddn-content li > a span {
  vertical-align: middle;
}
.fnav-acct .ddn-account .ddn-content li > a svg,
.fnav-acct .ddn-account .ddn-content li > a img {
  height: 16px;
  width: 16px;
  margin-right: 15px;
}
.fnav-acct .ddn-account .ddn-content .circle-pu {
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #FF43AD;
  margin-left: 8px;
}
.nav-tabs {
  display: flex;
  border-bottom: 1px solid var(--f-subdue-40);
  font-size: 16px;
  line-height: 24px;
  overflow-x: auto;
  overflow-y: hidden;
}
.nav-tabs .tab {
  color: var(--f-subdue);
  margin-right: 24px;
  padding-bottom: 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-tabs .tab.active {
  color: var(--f-ink);
  border-bottom: 2px solid var(--f-ink);
  padding-bottom: 14px;
}
.class-bullet {
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}
.phone-number-input .description {
  width: fit-content;
  height: fit-content;
  font-size: 14px;
  color: var(--f-ink);
  margin-bottom: 8px;
}
.phone-number-input .select-input-wrap {
  display: flex;
  width: 100%;
  position: relative;
  height: 48px;
  border: 1px solid var(--f-grey-2);
  border-radius: 4px;
}
.phone-number-input .select-input-wrap img {
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.phone-number-input label {
  margin-bottom: unset;
}
.phone-number-input .select-country {
  min-width: 110px;
  max-width: fit-content;
  appearance: none;
  padding-left: 16px;
  border-radius: 4px;
  background-color: #ffffff;
}
.phone-number-input .pnb-input {
  margin-left: -1px;
  border: unset;
  font-size: 16px;
  padding: 10px 48px 10px 8px;
}
.phone-number-input .highlight-input {
  border-color: var(--f-primary-dark);
}
.phone-number-input .select-input-wrap:hover,
.phone-number-input .select-input-wrap:active {
  border-color: var(--f-primary-dark);
}
.phone-number-input .icon {
  position: absolute;
  top: 10px;
  right: 16px;
  fill: var(--f-primary);
}
.phone-number-input .select-country {
  text-align: left;
}
.phone-number-input .btn-select-country {
  border: unset;
  background-color: inherit;
  height: 100%;
  width: fit-content;
  font-size: 16px;
  line-height: 1.5;
  color: var(--f-ink);
  box-shadow: unset;
  padding: unset;
  font-weight: normal;
  letter-spacing: normal;
}
.phone-number-input .btn-select-country:active,
.phone-number-input .btn-select-country:focus {
  background: unset;
}
.phone-number-input .btn-select-country:focus {
  color: unset;
  background: unset;
  box-shadow: unset;
}
.phone-number-input .select-country-ddn {
  z-index: 1;
  overflow: scroll;
  height: 100%;
  width: fit-content;
  padding: 8px 0px;
  max-height: calc(76vh);
}
.phone-number-input .select-country-ddn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: -6px 0;
}
.phone-number-input .select-country-ddn-content button {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--f-ink);
  background: none;
  border: 0;
  padding: 6px 16px;
}
.phone-number-input .selected-country {
  background-color: #DBEDFC !important;
}
.d-account-sms-validation {
  padding: 0;
  display: flex;
  max-width: 389px;
  width: 100%;
  height: fit-content;
  margin: 0 16px;
}
.d-account-sms-validation.d-center {
  transform: translate(-55%, -50%);
}
.d-account-sms-validation .modal-main-content {
  display: flex;
  flex-direction: column;
}
.d-account-sms-validation .input-btn-wrap {
  display: flex;
}
.d-account-sms-validation .title {
  font-size: 28px;
  line-height: 1.43;
  color: var(--f-ink);
  margin-bottom: 16px;
}
.d-account-sms-validation .d-illu {
  display: none;
}
.d-account-sms-validation .d-illu img {
  height: 100%;
  object-fit: cover;
}
.d-account-sms-validation .d-illu .vertical {
  display: none;
}
.d-account-sms-validation .d-content {
  padding: 0;
}
.d-account-sms-validation .messages-wrap {
  display: flex;
  flex-direction: column;
  font-size: 16px;
}
.d-account-sms-validation .l1 {
  min-height: 22px;
  height: fit-content;
  font-weight: bold;
  color: var(--f-ink);
}
.d-account-sms-validation .l2 {
  color: var(--f-subdue);
  text-decoration: underline;
}
.d-account-sms-validation .separator {
  display: none;
  width: 100%;
  height: 1px;
  border: solid 1px var(--f-ink-10);
}
.d-account-sms-validation .upgrade {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: rgba(255, 159, 0, 0.1);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.d-account-sms-validation .upgrade img {
  display: none;
}
.d-account-sms-validation .upgrade-left-wrap {
  display: flex;
  align-items: center;
}
.d-account-sms-validation .upgrade-left-wrap img {
  height: 40px;
  width: 40px;
  margin-right: 16px;
}
.d-account-sms-validation .messages-wrap {
  text-align: left;
}
.d-account-sms-validation .l2 {
  margin-top: unset;
}
@media screen and (min-width: 768px) {
  .d-account-sms-validation {
    max-width: 556px;
    flex-direction: column;
  }
  .d-account-sms-validation .title {
    margin-bottom: 24px;
  }
  .d-account-sms-validation .d-illu {
    display: flex;
  }
  .d-account-sms-validation .d-illu img {
    height: 320px;
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .d-account-sms-validation .separator {
    display: flex;
  }
  .d-account-sms-validation .upgrade {
    border: solid 1px rgba(255, 159, 0, 0.1);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 24px 40px;
  }
  .d-account-sms-validation .upgrade img {
    display: unset;
  }
  .d-account-sms-validation .upgrade .upgrade-left-wrap img {
    width: 16px;
    height: 16px;
  }
  .d-account-sms-validation .upgrade .upgrade-left-wrap .l2 {
    text-decoration: none;
  }
}
@media screen and (min-width: 1024px) {
  .d-account-sms-validation {
    max-width: 928px;
    flex-direction: row;
  }
  .d-account-sms-validation .d-illu {
    display: flex;
  }
  .d-account-sms-validation .d-illu .horizontal {
    display: none;
  }
  .d-account-sms-validation .d-illu .vertical {
    display: flex;
  }
  .d-account-sms-validation .d-illu img {
    height: 100%;
    width: 356px;
    border-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .d-account-sms-validation .upgrade .upgrade-left-wrap img {
    width: 40px;
    height: 40px;
  }
}
.sms-code-validation .wrap-form {
  margin-bottom: unset;
}
.sms-code-validation .title {
  margin-top: 60px;
  margin-bottom: 48px;
}
.sms-code-validation .btn-back {
  border: unset;
  background-color: inherit;
  display: flex;
  align-items: center;
  padding: unset;
  position: absolute;
  left: 16px;
  top: 16px;
}
.sms-code-validation .btn-back .img-back {
  margin-right: 12px;
}
.sms-code-validation .des-back {
  font-size: 14px;
  color: var(--f-subdue);
}
.sms-code-validation .sms-sent {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: var(--f-subdue);
  margin-bottom: 32px;
}
.sms-code-validation .validation-code-input input::-webkit-outer-spin-button,
.sms-code-validation .validation-code-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sms-code-validation .btn-send,
.sms-code-validation .btn-start-trial {
  width: 100%;
  margin-top: 16px;
}
.sms-code-validation .code-input-wrap {
  position: relative;
}
.sms-code-validation .btn-resend {
  position: absolute;
  top: 16px;
  right: 16px;
  width: fit-content;
  height: 17px;
  font-size: 12px;
  text-align: right;
  color: var(--f-grey-3);
  background-color: inherit;
  border: unset;
}
.sms-code-validation-dialog-view {
  padding: 16px 16px 24px;
}
.sms-code-validation-dialog-view .title {
  margin-top: 0;
  margin-bottom: 16px;
  width: 85%;
}
.sms-code-validation-dialog-view .number-input {
  display: flex;
  flex-direction: column;
}
.sms-code-validation-dialog-view .btn-content {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}
.sms-code-validation-dialog-view .validation-code-input {
  display: flex;
  align-items: flex-end;
}
.sms-code-validation-dialog-view .code-input-wrap {
  width: 300px;
  margin-right: 8px;
}
.sms-code-validation-dialog-view .code-input {
  height: 48px;
}
.sms-code-validation-dialog-view .btn-start-trial {
  width: unset;
  height: 48px;
  margin-top: unset;
  max-width: 37%;
}
.sms-code-validation-dialog-view .btn-resend {
  top: 14px;
}
@media screen and (min-width: 768px) {
  .sms-code-validation-dialog-view {
    padding: 24px 40px;
  }
  .sms-code-validation-dialog-view .title {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .sms-code-validation-dialog-view {
    padding: 40px;
  }
  .sms-code-validation-dialog-view .number-input {
    flex-direction: row;
    align-items: flex-end;
  }
  .sms-code-validation-dialog-view .phone-number-input {
    width: 77%;
    margin-right: 8px;
  }
  .sms-code-validation-dialog-view .btn-send {
    width: unset;
    max-width: 23%;
  }
}
