﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0; }

html, body {
  background-color: #f2f2f2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
  text-rendering: optimizelegibility;
  height: 100%; }

ul, ol {
  list-style: none; }

a, img {
  text-decoration: none;
  outline: none; }

/* Fixing */
:root {
  --blue: #1c6be1;
  --indigo: #6610f2;
  --purple: #796eff;
  --pink: #e83e8c;
  --red: #FF0000;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #8c98a4;
  --gray-dark: #343a40;
  --primary: #21c87a;
  --secondary: #646f79;
  --success: #21c87a;
  --info: #00dffc;
  --warning: #ffbc42;
  --danger: #da4b48;
  --light: #f5f8fb;
  --dark: #151b26;
  --purple: #796eff;
  --blue: #1c6be1;
  --primary-soft: rgba(33, 200, 122, 0.1);
  --white-soft: rgba(255, 255, 255, 0.1);
  --dark-soft: rgba(21, 27, 38, 0.4);
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px; }

/* Media Queries */
/* Font */
input[type=text],
input[type=password],
input[type=email],
input[type=submit],
input[type=button],
select,
a {
  outline: none;
  font: 400 14px "Inter", sans-serif; }

input[type=submit],
input[type=checkbox],
select {
  appearance: none; }

input[type=text],
input[type=password],
input[type=email] {
  height: 40px;
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid #d0d0d0;
  font: 400 14px "Inter", sans-serif;
  padding: 6px;
  box-sizing: border-box;
  color: var(--dark);
  box-shadow: none; }

select {
  height: 40px;
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid #d0d0d0;
  font: 400 14px "Inter", sans-serif;
  padding: 6px;
  box-sizing: border-box;
  color: var(--dark);
  background: url(../icons/arrow_drop_down.svg) no-repeat right 8px center;
  background-size: 22px; }

label {
  display: block;
  text-align: left;
  font: 400 13px "Inter", sans-serif;
  color: var(--secondary);
  margin-bottom: 6px; }

input[type=submit],
input[type=button] {
  height: 48px;
  width: 100%;
  border-radius: 6px;
  text-align: center;
  font: 500 13px "Inter", sans-serif;
  color: white;
  background-color: var(--indigo);
  cursor: pointer;
  border: none; }
  input[type=submit]:hover,
  input[type=button]:hover {
    background-color: #6220AE; }

.error {
  display: block;
  width: 100%;
  font: 400 12px/20px "Inter", sans-serif;
  color: var(--red);
  background: url(../icons/error.svg) no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  box-sizing: border-box; }

/* Login  */
.loginWrapper {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: white; }
  .loginWrapper ul {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center; }
    @media (max-width: 1024px) {
      .loginWrapper ul {
        grid-template-columns: 50% 50%; } }
    @media (max-width: 768px) {
      .loginWrapper ul {
        grid-template-columns: 100%; } }
    .loginWrapper ul li {
      height: 100%;
      width: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url(../images/loginBg.jpg) no-repeat center;
      background-size: cover;
      object-fit: cover; }
      @media (max-width: 768px) {
        .loginWrapper ul li {
          display: none; } }
      .loginWrapper ul li:last-child {
        background: white;
        display: flex;
        align-items: center;
        justify-content: center; }
      .loginWrapper ul li .login_form {
        height: auto;
        width: 100%;
        max-width: 420px;
        padding: 24px;
        box-sizing: border-box;
        background-color: white; }
        .loginWrapper ul li .login_form .logo {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center; }
          .loginWrapper ul li .login_form .logo img {
            display: block;
            height: 54px; }
        .loginWrapper ul li .login_form h1 {
          text-align: left;
          font: 600 20px "Inter", sans-serif;
          color: var(--dark);
          margin-top: 32px; }
        .loginWrapper ul li .login_form p {
          margin-top: 24px; }
        .loginWrapper ul li .login_form .otp {
          height: 40px;
          width: 100%;
          margin-top: 16px;
          background: url(../icons/warning.svg) no-repeat left 12px center #FFF8CC;
          background-size: 24px;
          padding: 0 12px 0 44px;
          font: 400 14px/40px "Inter", sans-serif;
          color: rgba(0, 0, 0, 0.78);
          border-radius: 6px;
          box-sizing: border-box; }
          .loginWrapper ul li .login_form .otp span {
            color: #1d1d1d;
            font-weight: 500; }
        .loginWrapper ul li .login_form dl {
          margin-top: 24px;
          width: 100%;
          display: grid;
          grid-gap: 16px;
          grid-template-columns: repeat(1, 1fr); }
          .loginWrapper ul li .login_form dl dt {
            width: 100%;
            position: relative; }
            .loginWrapper ul li .login_form dl dt .fillOTP {
              width: 100%;
              display: grid;
              grid-gap: 6px;
              grid-template-columns: repeat(6, 1fr); }
              .loginWrapper ul li .login_form dl dt .fillOTP input[type=text], .loginWrapper ul li .login_form dl dt .fillOTP input[type=password] {
                text-align: center;
                font: 600 16px "Inter", sans-serif; }
            .loginWrapper ul li .login_form dl dt input[type=checkbox] {
              display: block;
              height: 24px;
              width: 24px;
              background: url(../icons/visibility_off.svg) no-repeat center;
              background-size: 20px;
              position: absolute;
              right: 8px;
              bottom: 8px;
              cursor: pointer; }
              .loginWrapper ul li .login_form dl dt input[type=checkbox]:checked {
                background: url(../icons/visibility.svg) no-repeat center;
                background-size: 20px; }
            .loginWrapper ul li .login_form dl dt input[type=submit].reg_google {
              width: 100%;
              border: 1px solid #ddd;
              text-align: center;
              font: 500 14px "Inter", sans-serif;
              color: #333;
              background: url(../icons/google.svg) no-repeat left 16px center #fafafa;
              background-size: 24px;
              box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); }
              .loginWrapper ul li .login_form dl dt input[type=submit].reg_google:hover {
                background-color: #f2f2f2; }
            .loginWrapper ul li .login_form dl dt input[type=submit].reg_fb {
              width: 100%;
              border: 1px solid #ddd;
              text-align: center;
              font: 500 14px "Inter", sans-serif;
              color: #fff;
              background: url(../icons/facebook.svg) no-repeat left 16px center #4267b2;
              background-size: 24px; }
              .loginWrapper ul li .login_form dl dt input[type=submit].reg_fb:hover {
                background-color: #2d4f95; }
        .loginWrapper ul li .login_form .registPass {
          height: auto;
          width: 100%;
          margin-top: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-flow: row nowrap;
          color: var(--secondary);
          font: 400 13px/14px "Inter", sans-serif; }
          .loginWrapper ul li .login_form .registPass a {
            display: inline-block;
            font: 500 13px/14px "Inter", sans-serif;
            color: var(--secondary);
            margin: 0 12px; }
            .loginWrapper ul li .login_form .registPass a:hover {
              color: var(--dark); }
        .loginWrapper ul li .login_form .uploadPhoto {
          width: 100%;
          display: grid;
          grid-gap: 8px;
          grid-template-columns: auto 40px;
          align-items: center; }
          .loginWrapper ul li .login_form .uploadPhoto input[type=button] {
            height: 40px;
            box-sizing: border-box;
            border: 1px dashed #6610f2;
            background: url(../icons/camera.svg) no-repeat left 12px center #F5ECFF;
            background-size: 22px;
            font: 500 14px "Inter", sans-serif;
            color: var(--indigo); }
            .loginWrapper ul li .login_form .uploadPhoto input[type=button]:hover {
              background-color: #DACCE9; }
          .loginWrapper ul li .login_form .uploadPhoto .photo {
            height: 40px;
            width: 100%;
            overflow: hidden;
            border-radius: 6px; }
            .loginWrapper ul li .login_form .uploadPhoto .photo img {
              display: block;
              width: 100%; }

/* header */
header {
  height: auto;
  width: 100%;
  background-color: white; }
  header ul {
    width: 100%;
    max-width: 1140px;
    padding: 12px 24px;
    box-sizing: border-box;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px auto 200px;
    align-items: center; }
    @media (max-width: 768px) {
      header ul {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between; } }
    header ul li {
      text-align: left;
      width: 100%; }
      @media (max-width: 768px) {
        header ul li {
          width: 45%; } }
      header ul li:nth-child(2) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%; }
        @media (max-width: 768px) {
          header ul li:nth-child(2) {
            display: none; } }
      header ul li .search {
        width: 100%;
        max-width: 400px;
        position: relative; }
        header ul li .search input[type=text] {
          padding: 6px 16px;
          height: 40px;
          width: 100%;
          border-radius: 25px;
          background-color: #f2f2f2;
          text-align: left;
          font: 400 14px "Inter", sans-serif;
          color: var(--dark);
          box-sizing: border-box;
          border: none; }
          header ul li .search input[type=text]::placeholder {
            color: #878787; }
        header ul li .search input[type=submit] {
          height: 40px;
          width: 48px;
          background: url(../icons/search.svg) no-repeat center;
          background-size: 20px;
          position: absolute;
          right: 0px;
          top: 0px;
          opacity: .5;
          transition: .5 ease; }
          header ul li .search input[type=submit]:hover {
            opacity: 1;
            transition: .5 ease; }
      header ul li img {
        display: block;
        height: 48px; }
        @media (max-width: 560px) {
          header ul li img {
            height: auto;
            width: 100%; } }
      header ul li dl {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-flow: row wrap;
        align-items: center; }
        header ul li dl dt {
          width: auto;
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          position: relative;
          margin-left: 16px; }
          header ul li dl dt:first-child {
            margin: 0; }
          header ul li dl dt .material-icons {
            color: var(--gray); }
          header ul li dl dt .mdl-menu__container {
            width: 240px !important; }
          header ul li dl dt .mdl-menu {
            width: 100%; }
            header ul li dl dt .mdl-menu .lnk {
              display: flex;
              flex-flow: row nowrap;
              align-items: center;
              color: #575757;
              padding: 0 20px;
              box-sizing: border-box; }
              header ul li dl dt .mdl-menu .lnk span {
                display: inline-block;
                margin-right: 16px;
                color: #878787; }
          header ul li dl dt .photo {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            overflow: hidden; }
            header ul li dl dt .photo img {
              display: block;
              width: 100%;
              object-fit: cover; }
          header ul li dl dt b {
            display: inline-block;
            font: 400 14px "Inter", sans-serif;
            color: var(--secondary);
            margin-left: 16px; }
            @media (max-width: 560px) {
              header ul li dl dt b {
                display: none; } }
  header ol {
    width: 100%;
    max-width: 1140px;
    padding: 12px 24px;
    box-sizing: border-box;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center; }
    header ol li {
      text-align: left;
      width: 100%; }
      header ol li img {
        display: block;
        height: 48px; }
      header ol li dl {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-flow: row wrap;
        align-items: center; }
        header ol li dl dt {
          width: auto;
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          position: relative;
          margin-left: 16px; }
          header ol li dl dt:first-child {
            margin: 0; }
          header ol li dl dt .material-icons {
            color: var(--gray); }
          header ol li dl dt .mdl-menu__container {
            width: 180px; }
          header ol li dl dt .mdl-menu {
            width: 100%; }
            header ol li dl dt .mdl-menu .lnk {
              display: flex;
              flex-flow: row nowrap;
              align-items: center;
              color: #575757; }
              header ol li dl dt .mdl-menu .lnk span {
                display: inline-block;
                margin-right: 16px;
                color: #878787; }
          header ol li dl dt .photo {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            overflow: hidden; }
            header ol li dl dt .photo img {
              display: block;
              width: 100%;
              object-fit: cover; }
          header ol li dl dt b {
            display: inline-block;
            font: 400 14px "Inter", sans-serif;
            color: var(--secondary);
            margin-left: 16px; }
            @media (max-width: 560px) {
              header ol li dl dt b {
                display: none; } }

.timeline {
  width: 100%;
  max-width: 1140px;
  padding: 16px 24px;
  box-sizing: border-box;
  margin: 0 auto;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 260px auto 350px; }
  @media (max-width: 1024px) {
    .timeline {
      grid-template-columns: auto 350px; } }
  @media (max-width: 768px) {
    .timeline {
      grid-template-columns: 100%; } }
  .timeline li {
    width: 100%; }
    @media (max-width: 1024px) {
      .timeline li.uui {
        display: none; } }
    @media (max-width: 768px) {
      .timeline li.uui, .timeline li.rrp {
        display: none; } }
    .timeline li .userInfo {
      width: 100%;
      padding: 24px;
      box-sizing: border-box;
      border-radius: 6px;
      background-color: white;
      display: flex;
      flex-flow: column;
      align-items: center; }
      .timeline li .userInfo .photo {
        height: 96px;
        width: 96px;
        border-radius: 50%;
        overflow: hidden; }
        .timeline li .userInfo .photo img {
          display: block;
          width: 100%; }
      .timeline li .userInfo h1 {
        text-align: center;
        font: 500 16px "Inter", sans-serif;
        color: var(--dark);
        margin: 16px 0 2px 0; }
      .timeline li .userInfo p {
        text-align: center;
        font: 400 13px "Inter", sans-serif;
        color: var(--secondary);
        margin: 0; }
      .timeline li .userInfo .spacer {
        height: 1px;
        width: 100%;
        background-color: #dfdfdf;
        margin: 24px 0; }
      .timeline li .userInfo .nav {
        width: 100%; }
        .timeline li .userInfo .nav li {
          width: 100%; }
          .timeline li .userInfo .nav li a {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            font: 400 14px/40px "Inter", sans-serif;
            color: var(--secondary); }
            .timeline li .userInfo .nav li a:hover {
              color: var(--dark); }
            .timeline li .userInfo .nav li a span {
              margin-right: 8px;
              width: 24px;
              font-size: 22px;
              line-height: 40px;
              text-align: center; }
      .timeline li .userInfo #menu {
        width: 100%; }
      .timeline li .userInfo .sidenav {
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%; }
      .timeline li .userInfo .sidenav li {
        list-style: none;
        width: 100%;
        text-align: left; }
      .timeline li .userInfo .sidenav li a {
        color: #59575a;
        display: block;
        padding: 10px 0;
        font-size: .9rem;
        position: relative;
        -webkit-transition: all .4s;
        transition: all .4s;
        line-height: 1.5;
        box-sizing: border-box;
        border-radius: 8px; }
      .timeline li .userInfo .sidenav li a i {
        display: inline-block;
        line-height: 1.0625rem;
        margin: -2px 12px 0 0;
        font-size: 1.15rem;
        vertical-align: middle;
        width: 20px; }
      .timeline li .userInfo .sidenav li a span {
        vertical-align: middle; }
      .timeline li .userInfo .sidenav li a:active,
      .timeline li .userInfo .sidenav li a:focus,
      .timeline li .userInfo .sidenav li a:hover {
        color: #1d1d1d;
        text-decoration: none; }
      .timeline li .userInfo .sidenav li.side-nav-title {
        padding: 12px 30px;
        letter-spacing: .05em;
        pointer-events: none;
        cursor: default;
        text-transform: uppercase;
        color: #cedce4;
        font: 400 0.6875rem "Inter", sans-serif;
        box-sizing: border-box; }
      .timeline li .userInfo .sidenav li .menu-arrow {
        -webkit-transition: -webkit-transform .15s;
        transition: -webkit-transform .15s;
        transition: transform .15s;
        transition: transform .15s,-webkit-transform .15s;
        position: absolute;
        right: 0;
        display: inline-block;
        font-family: 'Material Icons';
        text-rendering: auto;
        line-height: 1.5rem;
        font-size: 1.1rem;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0); }
      .timeline li .userInfo .sidenav li .menu-arrow:before {
        content: "\e315"; }
      .timeline li .userInfo .sidenav {
        padding: 0; }
      .timeline li .userInfo .sidenav li {
        list-style: none; }
      .timeline li .userInfo .sidenav li .submenu li a {
        padding: 8px 0 8px 32px;
        display: block;
        position: relative;
        -webkit-transition: all .4s;
        transition: all .4s;
        font-size: .825rem;
        color: #8c8d8f; }
      .timeline li .userInfo .submenu-indicator {
        display: none; }
      .timeline li .userInfo .sidenav li .submenu li a:focus,
      .timeline li .userInfo .sidenav li .submenu li a:hover {
        color: #373737;
        background-color: transparent; }
      .timeline li .userInfo .sidenav li a.submenu-indicator-minus > .menu-arrow {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg); }
      .timeline li .userInfo .sidenav li .submenu {
        display: none;
        position: static;
        width: 100%; }
    .timeline li .posts {
      width: 100%;
      display: grid;
      grid-gap: 16px;
      grid-template-columns: repeat(1, 1fr); }
      .timeline li .posts .post {
        height: auto;
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
        border-radius: 6px;
        background-color: white; }
        .timeline li .posts .post .postby {
          width: 100%;
          display: grid;
          grid-gap: 8px;
          grid-template-columns: 48px auto 32px;
          align-items: center;
          padding-bottom: 6px; }
          .timeline li .posts .post .postby li {
            width: 100%;
            position: relative; }
            .timeline li .posts .post .postby li .mdl-button i {
              color: #878787; }
            .timeline li .posts .post .postby li .photo {
              width: 100%;
              height: 48px;
              border-radius: 50%;
              overflow: hidden; }
              .timeline li .posts .post .postby li .photo img {
                display: block;
                width: 100%;
                object-fit: cover; }
            .timeline li .posts .post .postby li h3 {
              text-align: left;
              font: 600 14px "Inter", sans-serif;
              color: var(--dark);
              margin: 0; }
            .timeline li .posts .post .postby li p {
              width: 100%;
              display: flex;
              flex-flow: row wrap;
              align-items: center;
              font: 400 12px/14px "Inter", sans-serif;
              color: var(--gray);
              margin: 2px 0 0 0; }
              .timeline li .posts .post .postby li p b {
                display: inline-block;
                font: 400 12px "Inter", sans-serif; }
              .timeline li .posts .post .postby li p i {
                display: inline-block;
                height: 3px;
                width: 3px;
                border-radius: 50%;
                margin: 0 8px;
                background-color: #d0d0d0;
                margin-top: 2px; }
              .timeline li .posts .post .postby li p a {
                display: inline-block;
                font: 400 12px "Inter", sans-serif;
                color: var(--gray); }
                .timeline li .posts .post .postby li p a:hover {
                  color: var(--gray-dark); }
                .timeline li .posts .post .postby li p a span {
                  font-size: 18px; }
        .timeline li .posts .post h4 {
          text-align: left;
          font: 600 14px "Inter", sans-serif;
          color: var(--gray-dark);
          margin: 10px 0 0 0; }
        .timeline li .posts .post p {
          text-align: left;
          margin: 10px 0 0 0;
          font: 400 12px/16px "Inter", sans-serif;
          color: var(--gray-dark); }
        .timeline li .posts .post .postimage {
          width: 100%;
          margin-top: 10px;
          border-radius: 6px;
          overflow: hidden; }
          .timeline li .posts .post .postimage img {
            display: block;
            width: 100%; }
    .timeline li .postsright {
      width: 100%;
      display: grid;
      grid-gap: 16px;
      grid-template-columns: repeat(1, 1fr); }
      .timeline li .postsright .events {
        height: auto;
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
        border-radius: 6px;
        background-color: white; }
        .timeline li .postsright .events .eventheading {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          align-items: center; }
          .timeline li .postsright .events .eventheading li {
            width: 100%; }
            .timeline li .postsright .events .eventheading li:last-child {
              text-align: right; }
            .timeline li .postsright .events .eventheading li h3 {
              text-align: left;
              font: 600 16px "Inter", sans-serif;
              color: var(--dark);
              margin: 0; }
            .timeline li .postsright .events .eventheading li a {
              display: inline-block;
              font: 600 14px "Inter", sans-serif;
              color: #0E5FFF; }
              .timeline li .postsright .events .eventheading li a:hover {
                color: var(--danger); }
        .timeline li .postsright .events .event {
          height: auto;
          width: 100%;
          min-height: 150px;
          border-radius: 4px;
          overflow: hidden;
          margin-top: 12px;
          position: relative; }
          .timeline li .postsright .events .event img {
            display: block;
            width: 100%; }
          .timeline li .postsright .events .event .eventDetail {
            background-color: rgba(0, 0, 0, 0.68);
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            position: absolute;
            z-index: 10; }
            .timeline li .postsright .events .event .eventDetail ul {
              height: 100%;
              width: 100%;
              display: grid;
              grid-template-columns: repeat(1, 1fr); }
              .timeline li .postsright .events .event .eventDetail ul li {
                height: 100%;
                width: 100%;
                padding: 16px;
                box-sizing: border-box; }
                .timeline li .postsright .events .event .eventDetail ul li:last-child {
                  display: flex;
                  align-items: flex-start;
                  flex-flow: column;
                  justify-content: flex-end; }
                .timeline li .postsright .events .event .eventDetail ul li dl {
                  width: 100%;
                  display: grid;
                  grid-template-columns: auto 80px; }
                  .timeline li .postsright .events .event .eventDetail ul li dl dt {
                    width: 100%; }
                    .timeline li .postsright .events .event .eventDetail ul li dl dt b {
                      display: block;
                      text-align: left;
                      font: 600 16px "Inter", sans-serif;
                      color: #fff; }
                    .timeline li .postsright .events .event .eventDetail ul li dl dt i {
                      font-style: normal;
                      display: block;
                      text-align: left;
                      font: 400 12px "Inter", sans-serif;
                      color: rgba(255, 255, 255, 0.8);
                      margin-top: 2px; }
                    .timeline li .postsright .events .event .eventDetail ul li dl dt input {
                      height: 32px;
                      border-radius: 4px;
                      background: url(../icons/checkmarkgreen.svg) no-repeat right 8px center white;
                      background-size: 13px;
                      font: 600 13px "Inter", sans-serif;
                      color: #1d1d1d;
                      text-align: left;
                      padding: 0 12px;
                      box-sizing: border-box; }
                      .timeline li .postsright .events .event .eventDetail ul li dl dt input:hover {
                        background: url(../icons/checkmark.svg) no-repeat right 8px center #0E5FFF;
                        background-size: 13px;
                        color: white; }
                .timeline li .postsright .events .event .eventDetail ul li p {
                  text-align: left;
                  font: 500 12px "Inter", sans-serif;
                  color: #fff;
                  margin-bottom: 8px; }
                .timeline li .postsright .events .event .eventDetail ul li .going {
                  width: 100%;
                  display: flex;
                  flex-flow: row wrap;
                  align-items: center; }
                  .timeline li .postsright .events .event .eventDetail ul li .going .gphoto {
                    display: flex;
                    flex-flow: row nowrap;
                    align-items: center; }
                    .timeline li .postsright .events .event .eventDetail ul li .going .gphoto .photo {
                      height: 32px;
                      width: 32px;
                      border-radius: 50%;
                      display: block;
                      overflow: hidden;
                      border: 2px solid white;
                      box-sizing: border-box;
                      position: relative;
                      z-index: 10; }
                      .timeline li .postsright .events .event .eventDetail ul li .going .gphoto .photo.ph2 {
                        margin-left: -10px;
                        z-index: 0; }
                      .timeline li .postsright .events .event .eventDetail ul li .going .gphoto .photo img {
                        display: block;
                        width: 100%;
                        object-fit: cover; }
                    .timeline li .postsright .events .event .eventDetail ul li .going .gphoto p {
                      text-align: left;
                      font: 500 12px "Inter", sans-serif;
                      color: rgba(255, 255, 255, 0.7);
                      margin: 0 0 0 8px; }
                      .timeline li .postsright .events .event .eventDetail ul li .going .gphoto p span {
                        display: inline-block;
                        color: white; }
      .timeline li .postsright .yourbatchmates {
        height: auto;
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
        border-radius: 6px;
        background-color: white; }
        .timeline li .postsright .yourbatchmates .batchmateheading {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          align-items: center; }
          .timeline li .postsright .yourbatchmates .batchmateheading li {
            width: 100%; }
            .timeline li .postsright .yourbatchmates .batchmateheading li:last-child {
              text-align: right; }
            .timeline li .postsright .yourbatchmates .batchmateheading li h3 {
              text-align: left;
              font: 600 16px "Inter", sans-serif;
              color: var(--dark);
              margin: 0; }
            .timeline li .postsright .yourbatchmates .batchmateheading li a {
              display: inline-block;
              font: 600 14px "Inter", sans-serif;
              color: #0E5FFF; }
              .timeline li .postsright .yourbatchmates .batchmateheading li a:hover {
                color: var(--danger); }
        .timeline li .postsright .yourbatchmates .batchMates {
          width: 100%;
          display: grid;
          grid-gap: 8px;
          grid-template-columns: repeat(2, 1fr);
          margin-top: 16px; }
          @media (max-width: 1024px) {
            .timeline li .postsright .yourbatchmates .batchMates {
              grid-template-columns: repeat(2, 1fr); } }
          @media (max-width: 768px) {
            .timeline li .postsright .yourbatchmates .batchMates {
              grid-template-columns: repeat(3, 1fr); } }
          @media (max-width: 560px) {
            .timeline li .postsright .yourbatchmates .batchMates {
              grid-template-columns: repeat(2, 1fr); } }
          @media (max-width: 360px) {
            .timeline li .postsright .yourbatchmates .batchMates {
              grid-template-columns: repeat(1, 1fr); } }
          .timeline li .postsright .yourbatchmates .batchMates li {
            width: 100%;
            background-color: #f6f6f6;
            border-radius: 6px;
            padding: 0;
            overflow: hidden; }
            .timeline li .postsright .yourbatchmates .batchMates li .photo {
              width: 100%; }
              .timeline li .postsright .yourbatchmates .batchMates li .photo img {
                display: block;
                width: 100%; }
            .timeline li .postsright .yourbatchmates .batchMates li h2 {
              text-align: center;
              font: 500 14px "Inter", sans-serif;
              color: var(--dark);
              padding: 12px;
              box-sizing: border-box;
              overflow: hidden;
              white-space: nowrap;
              text-overflow: ellipsis;
              margin: 0; }

.wrapper {
  width: 100%;
  max-width: 1140px;
  padding: 24px;
  box-sizing: border-box;
  margin: 0 auto; }
  .wrapper .heading {
    height: auto;
    width: 100%;
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 40px auto;
    align-items: center; }
    .wrapper .heading li {
      width: 100%;
      font: 600 20px "Inter", sans-serif;
      color: var(--dark);
      text-align: left; }
      .wrapper .heading li .h_icon {
        height: 40px;
        width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--success); }
        .wrapper .heading li .h_icon span {
          color: #fff;
          font-size: 22px; }
  .wrapper .qua-n-bmates {
    width: 100%;
    margin-top: 24px;
    background-color: white;
    border-radius: 6px; }
    .wrapper .qua-n-bmates ul {
      width: 100%;
      display: grid;
      grid-gap: 24px;
      grid-template-columns: 50% 1px auto; }
      @media (max-width: 768px) {
        .wrapper .qua-n-bmates ul {
          grid-template-columns: 100%;
          grid-gap: 8px; } }
      .wrapper .qua-n-bmates ul li {
        width: 100%;
        padding: 24px;
        box-sizing: border-box; }
        .wrapper .qua-n-bmates ul li.border {
          padding: 0px;
          border-left: 1px dashed #ddd; }
          @media (max-width: 768px) {
            .wrapper .qua-n-bmates ul li.border {
              border: none;
              border-top: 1px dashed #ddd; } }
        .wrapper .qua-n-bmates ul li h2 {
          text-align: left;
          font: 600 18px "Inter", sans-serif;
          color: var(--dark);
          margin: 0;
          padding: 0; }
        .wrapper .qua-n-bmates ul li .occupation {
          height: auto;
          width: 100%;
          margin-top: 24px;
          border-top: 2px solid #ddd;
          padding-top: 24px; }
          .wrapper .qua-n-bmates ul li .occupation .del_prevEducation {
            width: 100%;
            box-sizing: border-box;
            position: relative; }
            .wrapper .qua-n-bmates ul li .occupation .del_prevEducation a {
              height: 24px;
              width: 24px;
              display: block;
              border-radius: 50%;
              background: url(../icons/x.svg) no-repeat center #f00;
              background-size: 16px;
              border: none;
              position: absolute;
              top: -8px;
              right: 0px;
              font-size: 0px; }
              .wrapper .qua-n-bmates ul li .occupation .del_prevEducation a:hover {
                background-color: #b50000;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); }
        .wrapper .qua-n-bmates ul li .reg_fields {
          width: 100%;
          display: grid;
          grid-gap: 16px;
          margin-top: 16px;
          grid-template-columns: repeat(1, 1fr); }
          .wrapper .qua-n-bmates ul li .reg_fields dt {
            width: 100%; }
            .wrapper .qua-n-bmates ul li .reg_fields dt .fromto {
              width: 100%;
              display: grid;
              grid-gap: 16px;
              grid-template-columns: repeat(2, 1fr); }
              @media (max-width: 560px) {
                .wrapper .qua-n-bmates ul li .reg_fields dt .fromto {
                  grid-template-columns: repeat(1, 1fr); } }
              .wrapper .qua-n-bmates ul li .reg_fields dt .fromto li {
                width: 100%;
                padding: 0; }
            .wrapper .qua-n-bmates ul li .reg_fields dt .addnew {
              width: 100%;
              display: flex;
              flex-flow: row wrap;
              align-items: center;
              justify-content: flex-end; }
              .wrapper .qua-n-bmates ul li .reg_fields dt .addnew input[type=submit] {
                height: 40px;
                width: 100%;
                max-width: 170px;
                background: url(../icons/add.svg) no-repeat left 12px center #F2FAFF;
                background-size: 22px;
                color: #0055FF;
                border: 1px dashed #0055FF; }
                @media (max-width: 560px) {
                  .wrapper .qua-n-bmates ul li .reg_fields dt .addnew input[type=submit] {
                    max-width: 100%; } }
                .wrapper .qua-n-bmates ul li .reg_fields dt .addnew input[type=submit]:hover {
                  background-color: #D1E4F1; }
              .wrapper .qua-n-bmates ul li .reg_fields dt .addnew a {
                height: 40px;
                width: 100%;
                max-width: 170px;
                background: #d84141;
                background-size: 22px;
                color: #fff;
                font: 500 13px/40px "Inter", sans-serif;
                text-align: center;
                margin-left: 6px;
                border-radius: 4px; }
                @media (max-width: 560px) {
                  .wrapper .qua-n-bmates ul li .reg_fields dt .addnew a {
                    max-width: 100%;
                    margin: 6px 0 0 0; } }
                .wrapper .qua-n-bmates ul li .reg_fields dt .addnew a:hover {
                  background-color: #ee1f1f; }
            .wrapper .qua-n-bmates ul li .reg_fields dt .passing {
              max-width: 180px; }
              @media (max-width: 560px) {
                .wrapper .qua-n-bmates ul li .reg_fields dt .passing {
                  max-width: 100%; } }
            .wrapper .qua-n-bmates ul li .reg_fields dt .studying {
              display: flex;
              flex-flow: row nowrap;
              align-items: center; }
              .wrapper .qua-n-bmates ul li .reg_fields dt .studying input[type=checkbox] {
                display: inline-block;
                height: 24px;
                width: 24px;
                background: url(../icons/uncheck.svg) no-repeat center;
                background-size: 24px;
                margin-right: 8px;
                cursor: pointer; }
                .wrapper .qua-n-bmates ul li .reg_fields dt .studying input[type=checkbox]:checked {
                  background: url(../icons/check.svg) no-repeat center;
                  background-size: 24px; }
              .wrapper .qua-n-bmates ul li .reg_fields dt .studying label {
                margin: 0;
                font: 500 14px/24px "Inter", sans-serif;
                color: var(--dark);
                cursor: pointer; }
        .wrapper .qua-n-bmates ul li table {
          width: 100%;
          border-collapse: collapse;
          margin-top: 16px; }
          .wrapper .qua-n-bmates ul li table tbody {
            width: 100%;
            display: grid;
            grid-gap: 32px;
            grid-template-columns: repeat(1, 1fr); }
            .wrapper .qua-n-bmates ul li table tbody tr {
              display: block;
              width: 100%; }
              .wrapper .qua-n-bmates ul li table tbody tr td {
                width: 100%;
                display: block; }
                .wrapper .qua-n-bmates ul li table tbody tr td .del_prevEducation {
                  width: 100%;
                  box-sizing: border-box;
                  position: relative; }
                  .wrapper .qua-n-bmates ul li table tbody tr td .del_prevEducation a {
                    height: 24px;
                    width: 24px;
                    display: block;
                    border-radius: 50%;
                    background: url(../icons/x.svg) no-repeat center #f00;
                    background-size: 16px;
                    border: none;
                    position: absolute;
                    top: -8px;
                    right: 0px;
                    font-size: 0px; }
                    .wrapper .qua-n-bmates ul li table tbody tr td .del_prevEducation a:hover {
                      background-color: #b50000;
                      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); }
                .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields {
                  width: 100%;
                  display: grid;
                  grid-gap: 16px;
                  grid-template-columns: repeat(1, 1fr);
                  margin: 0; }
                  .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt {
                    width: 100%; }
                    .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .fromto {
                      width: 100%;
                      display: grid;
                      grid-gap: 16px;
                      grid-template-columns: repeat(2, 1fr); }
                      @media (max-width: 560px) {
                        .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .fromto {
                          grid-template-columns: repeat(1, 1fr); } }
                      .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .fromto li {
                        width: 100%;
                        padding: 0; }
                    .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .addnew {
                      width: 100%;
                      display: flex;
                      align-items: center;
                      justify-content: flex-end; }
                      .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .addnew input[type=submit] {
                        height: 40px;
                        width: 100%;
                        max-width: 170px;
                        background: url(../icons/add.svg) no-repeat left 12px center #F2FAFF;
                        background-size: 22px;
                        color: #0055FF;
                        border: 1px dashed #0055FF; }
                        @media (max-width: 560px) {
                          .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .addnew input[type=submit] {
                            max-width: 100%; } }
                        .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .addnew input[type=submit]:hover {
                          background-color: #D1E4F1; }
                    .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .passing {
                      max-width: 180px; }
                      @media (max-width: 560px) {
                        .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .passing {
                          max-width: 100%; } }
                    .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .studying {
                      display: flex;
                      flex-flow: row nowrap;
                      align-items: center; }
                      .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .studying input[type=checkbox] {
                        display: inline-block;
                        height: 24px;
                        width: 24px;
                        background: url(../icons/uncheck.svg) no-repeat center;
                        background-size: 24px;
                        margin-right: 8px;
                        cursor: pointer; }
                        .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .studying input[type=checkbox]:checked {
                          background: url(../icons/check.svg) no-repeat center;
                          background-size: 24px; }
                      .wrapper .qua-n-bmates ul li table tbody tr td .reg_fields btns dt .studying label {
                        margin: 0;
                        font: 500 14px/24px "Inter", sans-serif;
                        color: var(--dark);
                        cursor: pointer; }
        .wrapper .qua-n-bmates ul li .btns {
          width: 100%;
          display: flex;
          align-items: center;
          flex-flow: row nowrap;
          justify-content: space-between;
          margin-top: 24px; }
          @media (max-width: 560px) {
            .wrapper .qua-n-bmates ul li .btns {
              display: flex;
              align-items: center;
              flex-flow: column; } }
          .wrapper .qua-n-bmates ul li .btns input {
            width: 32%; }
            @media (max-width: 560px) {
              .wrapper .qua-n-bmates ul li .btns input {
                width: 100%;
                margin-top: 8px; } }
            .wrapper .qua-n-bmates ul li .btns input.cancel {
              background-color: var(--secondary); }
          .wrapper .qua-n-bmates ul li .btns a {
            height: 48px;
            width: 32%;
            border-radius: 6px;
            text-align: center;
            font: 500 13px/48px "Inter", sans-serif;
            color: #333;
            background-color: #ddd;
            cursor: pointer;
            border: none; }
            @media (max-width: 560px) {
              .wrapper .qua-n-bmates ul li .btns a {
                width: 100%;
                margin-top: 8px; } }
            .wrapper .qua-n-bmates ul li .btns a:hover {
              background-color: #aaa; }
        .wrapper .qua-n-bmates ul li .batchMates {
          width: 100%;
          display: grid;
          grid-gap: 8px;
          grid-template-columns: repeat(3, 1fr);
          margin-top: 24px; }
          @media (max-width: 1024px) {
            .wrapper .qua-n-bmates ul li .batchMates {
              grid-template-columns: repeat(2, 1fr); } }
          @media (max-width: 768px) {
            .wrapper .qua-n-bmates ul li .batchMates {
              grid-template-columns: repeat(3, 1fr); } }
          @media (max-width: 560px) {
            .wrapper .qua-n-bmates ul li .batchMates {
              grid-template-columns: repeat(2, 1fr); } }
          @media (max-width: 360px) {
            .wrapper .qua-n-bmates ul li .batchMates {
              grid-template-columns: repeat(1, 1fr); } }
          .wrapper .qua-n-bmates ul li .batchMates li {
            width: 100%;
            background-color: #f6f6f6;
            border-radius: 6px;
            padding: 0;
            overflow: hidden; }
            .wrapper .qua-n-bmates ul li .batchMates li .photo {
              width: 100%; }
              .wrapper .qua-n-bmates ul li .batchMates li .photo img {
                display: block;
                width: 100%; }
            .wrapper .qua-n-bmates ul li .batchMates li h2 {
              text-align: center;
              font: 500 14px "Inter", sans-serif;
              color: var(--dark);
              padding: 12px;
              box-sizing: border-box;
              overflow: hidden;
              white-space: nowrap;
              text-overflow: ellipsis; }

.CompletionListCssClass {
  height: auto;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10000 !important;
  max-height: 200px !important;
  overflow-y: auto; }

.CompletionListItemCssClass {
  height: auto;
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  font: 400 .925em 'sf_ui_textmedium', sans-serif;
  color: #474747; }

.itemHighlighted {
  background-color: #e8e8e8 !important;
  height: auto;
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  font: 400 .925em 'sf_ui_textmedium', sans-serif;
  color: #000;
  cursor: pointer; }

/**** New Login and Register ***/
.alumniNewLoginWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F0F7FD;
  padding: 16px;
  box-sizing: border-box; }
  .alumniNewLoginWrapper .alumniNewLoginWrapp {
    width: 100%;
    max-width: 442px;
    display: flex;
    flex-flow: column;
    gap: 24px; }
    .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 32px;
      padding: 40px;
      border-radius: 16px;
      background-color: #fff;
      box-sizing: border-box; }
      @media (max-width: 560px) {
        .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon {
          padding: 24px; } }
      .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
        .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .logo img {
          display: block;
          width: 100%;
          max-width: 160px; }
      .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin {
        width: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        gap: 24px; }
        .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniNewWrapp {
          width: 100%;
          display: flex;
          flex-flow: column;
          align-items: center;
          gap: 16px; }
          .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniNewWrapp h2 {
            text-align: center;
            font: 600 24px "Inter", sans-serif;
            color: #21273C; }
          .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniNewWrapp p {
            text-align: center;
            font: 500 13px "Inter", sans-serif;
            color: #677090; }
        .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 16px; }
          .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li {
            width: 100%;
            display: flex;
            flex-flow: column;
            gap: 8px; }
            .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN {
              width: 100%;
              position: relative; }
              .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN input[type=text] {
                height: 48px;
                width: 100%;
                padding: 8px 12px 8px 42px;
                box-sizing: border-box;
                border-radius: 8px;
                text-align: left;
                font: 500 14px "Inter", sans-serif;
                color: #21273C;
                border: 1px solid #BBC1D6; }
                .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN input[type=text]:focus {
                  outline: none;
                  border-color: #3C65F4; }
              .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN input[type=password] {
                height: 48px;
                width: 100%;
                padding: 8px 42px;
                box-sizing: border-box;
                border-radius: 8px;
                text-align: left;
                font: 500 14px "Inter", sans-serif;
                color: #21273C;
                border: 1px solid #BBC1D6; }
                .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN input[type=password]:focus {
                  outline: none;
                  border-color: #3C65F4; }
              .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN .icon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 48px;
                aspect-ratio: 1 / 1;
                position: absolute;
                left: 0;
                top: 0; }
                .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN .icon img {
                  display: block;
                  width: 100%;
                  max-width: 22px; }
              .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN small {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 48px;
                aspect-ratio: 1 / 1;
                position: absolute;
                right: 0;
                top: 0; }
                .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN small input[type=checkbox] {
                  appearance: none;
                  background: url(../icons/mdi_eye-off.svg) no-repeat center;
                  background-size: 22px;
                  width: 24px;
                  aspect-ratio: 1 / 1; }
                  .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .userFieldsN small input[type=checkbox]:checked {
                    background: url(../icons/mdi_eye.svg) no-repeat center;
                    background-size: 22px; }
            .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin ul li .errorAlMsg {
              display: block;
              width: 100%;
              text-align: left;
              font: 500 12px "Inter", sans-serif;
              color: #E13D3D; }
        .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniLoginSubmit {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 12px; }
          .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniLoginSubmit input[type=submit] {
            appearance: none;
            height: 48px;
            width: 100%;
            border-radius: 8px;
            background-color: #3C65F4;
            text-align: center;
            border: none;
            cursor: pointer;
            font: 500 14px "Inter", sans-serif;
            color: #fff; }
            .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniLoginSubmit input[type=submit]:focus, .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniLoginSubmit input[type=submit]:hover {
              outline: none;
              background-color: #3354C8; }
          .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniLoginSubmit a {
            height: 48px;
            width: 100%;
            border-radius: 8px;
            background-color: #FAFBFF;
            text-align: center;
            border: 1px solid #3C65F4;
            font: 500 14px/48px "Inter", sans-serif;
            color: #3C65F4; }
            .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniLoginSubmit a:focus, .alumniNewLoginWrapper .alumniNewLoginWrapp .alumniNewLoginCon .alumniNewLogin .alumniLoginSubmit a:hover {
              outline: none;
              background-color: #dfe6ff; }
    .alumniNewLoginWrapper .alumniNewLoginWrapp p {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font: 500 13px "Inter", sans-serif;
      color: #677090; }
      .alumniNewLoginWrapper .alumniNewLoginWrapp p a {
        color: #3C65F4;
        margin: 0 0 0 8px; }
        .alumniNewLoginWrapper .alumniNewLoginWrapp p a:hover {
          text-decoration: underline; }

.alumniNewRegWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0;
  top: 0;
  background-color: #F0F7FD;
  padding: 24px 16px;
  box-sizing: border-box; }
  .alumniNewRegWrapper .alumniNewRegWrapp {
    width: 100%;
    max-width: 662px;
    display: flex;
    flex-flow: column;
    gap: 24px; }
    .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 48px;
      padding: 40px;
      border-radius: 16px;
      background-color: #fff;
      box-sizing: border-box; }
      @media (max-width: 560px) {
        .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon {
          padding: 24px; } }
      .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
        .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .logo img {
          display: block;
          width: 100%;
          max-width: 160px; }
      .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg {
        width: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        gap: 24px; }
        .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .alumniNewWrapp {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 8px; }
          .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .alumniNewWrapp h2 {
            text-align: left;
            font: 600 24px "Inter", sans-serif;
            color: #21273C; }
          .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .alumniNewWrapp a {
            display: inline-block;
            width: auto;
            font: 600 12px "Inter", sans-serif;
            color: #3C65F4;
            padding: 10px 16px 10px 40px;
            background: url(../icons/material_arrow-back.svg) no-repeat left 12px center #F0F7FD;
            background-size: 18px;
            border-radius: 50px;
            box-sizing: border-box; }
            @media (max-width: 560px) {
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .alumniNewWrapp a {
                display: block;
                aspect-ratio: 1 / 1;
                background: url(../icons/material_arrow-back.svg) no-repeat center #F0F7FD;
                background-size: 18px;
                font-size: 0;
                width: 36px;
                padding: 0;
                flex-shrink: 0; } }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .alumniNewWrapp a:hover {
              background-color: #E1F1FF; }
        .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate {
          width: 100%; }
        .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul {
          width: 100%;
          display: grid;
          grid-gap: 20px;
          grid-template-columns: repeat(2, 1fr); }
          @media (max-width: 768px) {
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul {
              grid-template-columns: repeat(1, 1fr); } }
          .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li {
            width: 100%;
            display: flex;
            flex-flow: column;
            gap: 8px; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li p, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li p {
              width: 100%;
              text-align: left;
              font: 400 14px "Inter", sans-serif;
              color: #808080; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li label, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li label {
              display: block;
              width: 100%;
              text-align: left;
              font: 500 13px "Inter", sans-serif;
              color: #21273C; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li input[type=text], .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li input[type=text] {
              height: 48px;
              width: 100%;
              padding: 8px 12px;
              box-sizing: border-box;
              border-radius: 8px;
              text-align: left;
              font: 500 14px "Inter", sans-serif;
              color: #21273C;
              border: 1px solid #BBC1D6; }
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li input[type=text]:focus, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li input[type=text]:focus {
                outline: none;
                border-color: #3C65F4; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li select, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li select {
              appearance: none;
              height: 48px;
              width: 100%;
              padding: 8px 12px;
              box-sizing: border-box;
              border-radius: 8px;
              text-align: left;
              font: 500 14px "Inter", sans-serif;
              color: #21273C;
              border: 1px solid #BBC1D6;
              background: url(../icons/drop-down.svg) no-repeat right 8px center #fff;
              background-size: 24px; }
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li select:focus, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li select:focus {
                outline: none;
                border-color: #3C65F4; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li input[type=password], .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li input[type=password] {
              height: 48px;
              width: 100%;
              padding: 8px 12px;
              box-sizing: border-box;
              border-radius: 8px;
              text-align: left;
              font: 500 14px "Inter", sans-serif;
              color: #21273C;
              border: 1px solid #BBC1D6; }
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li input[type=password]:focus, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li input[type=password]:focus {
                outline: none;
                border-color: #3C65F4; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li input[type=submit], .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li input[type=submit] {
              appearance: none;
              height: 48px;
              width: 100%;
              border-radius: 8px;
              background-color: #3C65F4;
              text-align: center;
              border: none;
              cursor: pointer;
              font: 500 14px "Inter", sans-serif;
              color: #fff; }
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li input[type=submit]:focus, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li input[type=submit]:hover, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li input[type=submit]:focus, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li input[type=submit]:hover {
                outline: none;
                background-color: #3354C8; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li .errorAlMsg, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li .errorAlMsg {
              display: block;
              width: 100%;
              text-align: left;
              font: 500 12px "Inter", sans-serif;
              color: #E13D3D; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li .uploadRegPhoto, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li .uploadRegPhoto {
              width: 100%;
              display: flex;
              align-items: center;
              gap: 8px; }
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li .uploadRegPhoto .uploadPhoto, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li .uploadRegPhoto .uploadPhoto {
                width: 100%;
                position: relative; }
                .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li .uploadRegPhoto .uploadPhoto input[type=file], .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li .uploadRegPhoto .uploadPhoto input[type=file] {
                  appearance: none;
                  position: absolute;
                  left: 0;
                  top: 0;
                  height: 48px;
                  width: 100%;
                  z-index: 1;
                  opacity: 0;
                  cursor: pointer; }
                .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li .uploadRegPhoto .uploadPhoto span, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li .uploadRegPhoto .uploadPhoto span {
                  display: block;
                  width: 100%;
                  height: 48px;
                  border-radius: 8px;
                  background: url(../icons/mdi_camera.svg) no-repeat left 16px center #F6F8FF;
                  background-size: 22px;
                  border: 1px dashed #3C65F4;
                  box-sizing: border-box;
                  font: 500 13px/46px "Inter", sans-serif;
                  text-align: center;
                  color: #3C65F4; }
                  .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li .uploadRegPhoto .uploadPhoto span:hover, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li .uploadRegPhoto .uploadPhoto span:hover {
                    background-color: #e8edff; }
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li .uploadRegPhoto .preview, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li .uploadRegPhoto .preview {
                flex-shrink: 0;
                width: 48px;
                aspect-ratio: 1 / 1;
                border-radius: 8px;
                overflow: hidden; }
                .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg .divUpdate ul li .uploadRegPhoto .preview img, .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg ul li .uploadRegPhoto .preview img {
                  display: block;
                  width: 100%;
                  height: 100%;
                  object-fit: cover; }
        .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg dl {
          width: 100%;
          padding: 32px 0 0 0;
          margin: 8px 0 0 0;
          border-top: 1px solid #E1E4F0;
          display: grid;
          grid-gap: 20px;
          grid-template-columns: repeat(2, 1fr);
          align-items: center; }
          @media (max-width: 768px) {
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg dl {
              grid-template-columns: repeat(1, 1fr); } }
          .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg dl dt {
            width: 100%; }
            .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg dl dt a {
              display: block;
              width: 100%;
              height: 48px;
              border-radius: 8px;
              border: 1px solid #DDE1F0;
              font: 500 13px/48px "Inter", sans-serif;
              color: #21273C;
              text-align: center;
              box-sizing: border-box;
              background: url(../icons/google-icon.png) no-repeat left 16px center #fff;
              background-size: 20px; }
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg dl dt a:hover {
                background-color: #f1f1f1; }
              .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg dl dt a.facebookIcon {
                background: url(../icons/facebook-icon.png) no-repeat left 16px center #4267B2;
                background-size: 20px;
                color: #fff;
                border: none; }
                .alumniNewRegWrapper .alumniNewRegWrapp .alumniNewRegCon .alumniNewReg dl dt a.facebookIcon:hover {
                  background-color: #2c4b88; }

.alumniNewOTPWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F0F7FD;
  padding: 16px;
  box-sizing: border-box; }
  .alumniNewOTPWrapper .alumniNewOTPWrapp {
    width: 100%;
    max-width: 442px;
    display: flex;
    flex-flow: column;
    gap: 24px; }
    .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon {
      width: 100%;
      display: flex;
      flex-flow: column;
      gap: 32px;
      padding: 40px;
      border-radius: 16px;
      background-color: #fff;
      box-sizing: border-box; }
      @media (max-width: 560px) {
        .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon {
          padding: 24px; } }
      .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
        .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .logo img {
          display: block;
          width: 100%;
          max-width: 202px; }
      .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP {
        width: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        gap: 24px; }
        .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP .alumniNewW {
          width: 100%;
          display: flex;
          flex-flow: column;
          align-items: center;
          gap: 16px; }
          .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP .alumniNewW h2 {
            text-align: center;
            font: 600 24px "Inter", sans-serif;
            color: #21273C; }
        .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 20px; }
          .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li {
            width: 100%;
            display: flex;
            flex-flow: column;
            gap: 8px; }
            .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li b {
              display: block;
              width: 100%;
              border-radius: 8px;
              background: url(../icons/ic_round-warning.svg) no-repeat left 16px center #FFF0E5;
              background-size: 24px;
              font: 500 13px/48px "Inter", sans-serif;
              color: #C3580A;
              text-align: center; }
            .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li label {
              display: block;
              width: 100%;
              text-align: left;
              font: 500 13px "Inter", sans-serif;
              color: #21273C; }
            .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .otp {
              width: 100%;
              display: grid;
              grid-template-columns: repeat(6, 1fr);
              align-items: center;
              gap: 6px; }
              .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .otp input[type=text] {
                height: 44px;
                width: 100%;
                padding: 8px;
                box-sizing: border-box;
                border-radius: 8px;
                text-align: center;
                font: 500 14px "Inter", sans-serif;
                color: #21273C;
                border: 1px solid #BBC1D6; }
                .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .otp input[type=text]:focus {
                  outline: none;
                  border-color: #3C65F4; }
                .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .otp input[type=text]::placeholder {
                  color: #BBC1D6;
                  font: 400 14px "Inter", sans-serif; }
            .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend {
              width: 100%;
              display: flex;
              align-items: center;
              justify-content: space-between; }
              .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend input[type=submit] {
                appearance: none;
                height: auto;
                display: inline-block;
                width: auto;
                font: 500 13px "Inter", sans-serif;
                color: #3C65F4;
                background: url(../icons/resend.svg) no-repeat left center transparent;
                background-size: 18px;
                padding: 0 0 0 24px;
                box-sizing: border-box;
                border: none;
                cursor: pointer; }
                .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend input[type=submit]:hover, .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend input[type=submit]:focus {
                  color: #2747b9;
                  background: url(../icons/resend.svg) no-repeat left center transparent;
                  background-size: 18px;
                  padding: 0 0 0 24px;
                  box-sizing: border-box; }
              .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend a {
                display: inline-block;
                width: auto;
                font: 500 13px "Inter", sans-serif;
                color: #202020; }
                .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend a.resend {
                  color: #3C65F4;
                  background: url(../icons/resend.svg) no-repeat left center;
                  background-size: 18px;
                  padding: 0 0 0 24px;
                  box-sizing: border-box; }
                  .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend a.resend:hover {
                    color: #2747b9; }
                .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend a.clear {
                  color: #DB2828;
                  background: url(../icons/minus-solid.svg) no-repeat left center;
                  background-size: 16px;
                  padding: 0 0 0 22px;
                  box-sizing: border-box;
                  line-height: 18px; }
                  .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .resend a.clear:hover {
                    color: #a71c1c; }
            .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li .errorAlMsg {
              display: block;
              width: 100%;
              text-align: left;
              font: 500 12px "Inter", sans-serif;
              color: #E13D3D; }
            .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li input[type=submit] {
              appearance: none;
              height: 48px;
              width: 100%;
              border-radius: 8px;
              background-color: #3C65F4;
              text-align: center;
              border: none;
              cursor: pointer;
              font: 500 14px "Inter", sans-serif;
              color: #fff; }
              .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li input[type=submit]:focus, .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP ul li input[type=submit]:hover {
                outline: none;
                background-color: #3354C8; }
        .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP .alumniLoginSubmit {
          width: 100%;
          display: flex;
          flex-flow: column;
          gap: 12px; }
          .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP .alumniLoginSubmit a {
            height: 48px;
            width: 100%;
            border-radius: 8px;
            background-color: #FAFBFF;
            text-align: center;
            border: 1px solid #3C65F4;
            font: 500 14px/48px "Inter", sans-serif;
            color: #3C65F4; }
            .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP .alumniLoginSubmit a:focus, .alumniNewOTPWrapper .alumniNewOTPWrapp .alumniNewOTPCon .alumniNewOTP .alumniLoginSubmit a:hover {
              outline: none;
              background-color: #dfe6ff; }
    .alumniNewOTPWrapper .alumniNewOTPWrapp p {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font: 500 13px "Inter", sans-serif;
      color: #677090; }
      .alumniNewOTPWrapper .alumniNewOTPWrapp p a {
        color: #3C65F4;
        margin: 0 0 0 8px; }
        .alumniNewOTPWrapper .alumniNewOTPWrapp p a:hover {
          text-decoration: underline; }
