diff --git a/node_modules/@project-sunbird/sb-styles/.circleci/config.yml b/node_modules/@project-sunbird/sb-styles/.circleci/config.yml
deleted file mode 100644
index 4b0450aaf9d1c3934b30dc638a7ada688454462b..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/.circleci/config.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-version: 2.1
-jobs:
-  build:
-    docker:
-      - image: circleci/node:12.16.0
-    steps:
-      - checkout
-      - run:
-          name: Check current version of node
-          command: node -v
-      - restore_cache:
-          keys:
-            - node_modules_cache_{{ checksum "package-lock.json" }}
-      - run:
-          name: Install project dependencies
-          command: |
-            if [ ! -d "node_modules" ]; then
-            npm ci -f
-            fi
-      - save_cache:
-          key: node_modules_cache_{{ checksum "package-lock.json" }}
-          paths:
-            - node_modules
-      - run:
-          name: Publish to NPM
-          command: |
-            if [ -z $CIRCLE_PR_NUMBER ]; then
-              npm pack
-              echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
-              npm publish project-sunbird-sb-styles-*  --access=public
-            else
-              npm pack
-            fi
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/LICENSE b/node_modules/@project-sunbird/sb-styles/LICENSE
deleted file mode 100644
index 04d8b59ba2ca3e1af8930bd5cc841dcc17484397..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2020 Sunbird for Education
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/node_modules/@project-sunbird/sb-styles/README.md b/node_modules/@project-sunbird/sb-styles/README.md
deleted file mode 100644
index 8540efd363286f8b449882c77708358d5a8fa8ae..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# sb-styles
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_borders.scss b/node_modules/@project-sunbird/sb-styles/assets/_borders.scss
deleted file mode 100644
index 063caab059bc3bc0891822a61a13baaf2eccbafd..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_borders.scss
+++ /dev/null
@@ -1,31 +0,0 @@
-@use './mixins/border' as *;
-.b-0{
-    @include border(border,0px,var(--gray-400) !important);
-}
-.bl-0{
-    border-left: none !important;
-}
-.br-0{
-    border-right: none !important;
-}
-.br-4{
-    border-radius: 4px !important;
-}
-.bt-0{
-    border-top: none !important;
-}
-.bb-0{
-    border-bottom: none !important;
-}
-.b-1 {
-    @include border(border,1px,var(--gray-400) !important);
-}
-.b-2 {
-    @include border(border,2px,var(--gray-400) !important);
-}
-.b-4 {
-    @include border(border,4px,var(--gray-400) !important);
-}
-.b-8 {
-    @include border(border,8px,var(--gray-400) !important);
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_box-shadows.scss b/node_modules/@project-sunbird/sb-styles/assets/_box-shadows.scss
deleted file mode 100644
index 36b5ffc2e7a873a176309ab66fef07ceff2a5084..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_box-shadows.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-.bs-0 {
-    box-shadow: none !important;
-}
-.bs-1{
-    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.29) !important;
-    &:hover{
-        box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.29) !important;
-    }
-}
-.bs-2{
-    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.29) !important;
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_buttons.scss b/node_modules/@project-sunbird/sb-styles/assets/_buttons.scss
deleted file mode 100644
index d1503d5d98072f55f8eb39c38fb20636ec447a28..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_buttons.scss
+++ /dev/null
@@ -1,446 +0,0 @@
-@use "./mixins/mixins" as *;
-@use "./varSass" as *;
-/* buttons sytle guide */
-input[type="submit"],
-input[type="reset"],
-input[type="button"] {
-  &.btn-block {
-    width: 100%;
-  }
-}
-
-// anchor button style
-a.sb-btn {
-  text-align: center;
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-  flex-wrap: wrap;
-
-  &:hover {
-    text-decoration: none;
-  }
-}
-
-button.sb-btn:focus {
-  outline: none;
-}
-
-.sb-btn {
-  white-space: nowrap;
-  -webkit-tap-highlight-color: transparent;
-  user-select: none;
-  outline: 0;
-  display: inline-block;
-  border: calculateRem(1px) solid;
-  cursor: pointer;
-  min-width: calculateRem(64px);
-  border-radius: 0.125rem;
-  position: relative;
-  line-height: 1;
-
-  text: {
-    transform: inherit;
-    decoration: none;
-  }
-
-  &:hover {
-    opacity: 1;
-  }
-
-  &:after {
-    content: "";
-    position: absolute;
-    top: 50%;
-    left: 50%;
-    width: calculateRem(3px);
-    height: calculateRem(3px);
-    background: var(--primary-600);
-    opacity: 0;
-    border-radius: 50%;
-    transform: scale(1, 1) translate(-50%);
-    transform-origin: 50% 50%;
-  }
-
-  &.flat {
-    border-radius: 0;
-  }
-
-  &.sb-btn-radius {
-    border-radius: 2rem;
-  }
-}
-
-// Create button color classess from the below list
-// btnname basecolor hovercolor outlinecolor
-$btns: "gray"var(--gray-200) var(--gray-400) var(--gray-100),
-"primary"var(--primary-400) var(--primary-800) var(--primary-100),
-"secondary"var(--secondary-200) var(--secondary-400) var(--secondary-0),
-"tertiary"var(--tertiary-100) var(--tertiary-400) var(--tertiary-0),
-"red"var(--red-100) var(--red-400) var(--red-0),
-"info"var(--primary-400) var(--primary-800) var(--primary-100),
-"success"var(--secondary-200) var(--secondary-400) var(--secondary-100),
-"warning"var(--tertiary-100) var(--tertiary-400) var(--tertiary-0),
-"error"var(--red-100) var(--red-400) var(--red-0);
-
-@each $btn in $btns {
-  $btntypes: btn btn-outline btn-dashed btn-link btn-square;
-
-  @each $btntype in $btntypes {
-    .sb-#{nth($btntype, 1)}-#{nth($btn, 1)} {
-      @if $btntype==btn {
-        background-color: #{nth($btn, 2)};
-        border-color: #{nth($btn, 2)};
-        color: var(--white);
-
-        &:hover,
-        &:active,
-        &.active {
-          background-color: #{nth($btn, 3)};
-          border: calculateRem(1px) solid transparent;
-          color: var(--white);
-        }
-      }
-
-      @else if $btntype==btn-outline {
-        background-color: var(--white);
-        color: #{nth($btn, 2)};
-        border-color: #{nth($btn, 2)};
-
-        &:hover,
-        &:active,
-        &.active {
-          color: #{nth($btn, 3)};
-          background-color: #{nth($btn, 4)};
-        }
-      }
-
-      @else if $btntype==btn-link {
-        background: none;
-        border: 0px;
-        color: #{nth($btn, 2)};
-
-        &:hover,
-        &:active,
-        &.active {
-          background-color: #{nth($btn, 4)};
-        }
-      }
-
-      @else if $btntype==btn-dashed {
-        border-style: dashed;
-        border-width: calculateRem(1px);
-        background-color: var(--white);
-        border-color: #{nth($btn, 2)};
-        color: #{nth($btn, 2)};
-
-        &:hover,
-        &:active,
-        &.active {
-          background-color: #{nth($btn, 4)};
-        }
-      }
-    }
-  }
-}
-
-// Create button sizes classess from the below list
-// class height padding fontsize width
-$btnsizes: "xs"1.5rem "0.25rem 0.5rem"0.75rem null,
-"normal"2rem "0.5rem 1rem"0.75rem null,
-"sm"2.5rem "0.5rem 1rem"1rem null,
-"md"3rem "0.5rem 1rem"1rem null,
-"lg"3.5rem "1rem 1.5rem"1.25rem null,
-"full"1.5rem "0.5rem 1rem"1.25rem 100%;
-
-@each $btn in $btnsizes {
-  .sb-btn-#{nth($btn, 1)} {
-    height: #{nth($btn, 2)};
-    padding: #{nth($btn, 3)};
-    font-size: #{nth($btn, 4)};
-    width: #{nth($btn, 5)};
-  }
-}
-
-// Create button square classess from the below list
-// class height width fontsize padding
-$btnSquaresizes: "xs"1.5rem 1.5rem 1rem null,
-"normal"4rem 4rem 0.75rem null,
-"sm"3rem 3rem 0.75rem null,
-"md"4rem 4rem 1rem null,
-"lg"8rem 8rem 1.25rem null;
-
-@each $btn in $btnSquaresizes {
-  .sb-btn-square {
-    &.sb-btn-#{nth($btn, 1)} {
-      height: #{nth($btn, 2)};
-      width: #{nth($btn, 3)};
-      font-size: #{nth($btn, 4)};
-
-      //width: #{nth($btn, 5)};
-      i.icon {
-        margin: 0 0 0 0;
-        font-size: 2em;
-      }
-
-      span {
-        margin: 0.5rem 0 0 0;
-      }
-    }
-  }
-}
-
-.sb-btn-white {
-  box-shadow: 0 calculateRem(-1px) calculateRem(4px) 0 rgba(var(--rc-rgba-black), 0.1),
-    0 calculateRem(3px) calculateRem(4px) 0 rgba(var(--rc-rgba-black), 0.2);
-  border: 0px solid var(--rc-dddddd);
-}
-
-.sb-btn-square {
-  display: inline-flex;
-  flex-direction: column;
-  align-items: center;
-  justify-content: space-evenly;
-  font-size: 0.75rem;
-  padding: 0.5rem;
-}
-
-.sb-btn-disabled,
-.sb-btn-outline-disabled {
-  cursor: default;
-  font-weight: normal;
-}
-
-.sb-btn-disabled {
-  background-color: var(--gray-100);
-  border: calculateRem(1px) solid var(--gray-100);
-
-  &:hover {
-    background-color: var(--gray-100) !important;
-    color: var(--gray-200) !important;
-  }
-}
-
-.sb-btn-outline-disabled {
-  background-color: var(--white);
-  border: calculateRem(1px) solid var(--gray-100);
-
-  &:hover {
-    background-color: var(--white) !important;
-    ;
-    border: calculateRem(1px) solid var(--gray-100) !important;
-    color: var(--gray-200) !important;
-  }
-}
-
-// button link
-.sb-btn-link {
-  background: none;
-  border: 0;
-}
-
-// Buttons with icon
-.sb-right-icon-btn {
-  padding: calculateRem(8px);
-
-  i.icon {
-    margin-left: calculateRem(8px);
-    margin-right: 0;
-  }
-
-  html[dir="rtl"] & {
-    padding: calculateRem(8px);
-
-    i.icon {
-      margin-right: calculateRem(4px);
-      margin-right: 0;
-    }
-  }
-}
-
-.sb-left-icon-btn {
-  padding: calculateRem(8px);
-
-  i.icon {
-    margin-right: calculateRem(4px);
-  }
-
-  html[dir="rtl"] & {
-    padding: calculateRem(8px);
-
-    i.icon {
-      margin-left: calculateRem(8px);
-    }
-  }
-}
-
-.sb-left-icon-btn.sb-btn-xs {
-  padding: 0 calculateRem(8px);
-}
-
-//Buttons toggle
-.ui.toggle.checkbox.sb-toggle {
-  min-height: calculateRem(24px);
-  position: relative;
-  display: inline-block;
-  -webkit-backface-visibility: hidden;
-  backface-visibility: hidden;
-  outline: 0;
-  vertical-align: baseline;
-  font-style: normal;
-  min-height: calculateRem(16px);
-  font-size: 1rem;
-  min-width: calculateRem(16px);
-
-  input {
-    width: calculateRem(64px);
-    height: calculateRem(24px);
-    cursor: pointer;
-    position: absolute;
-    top: 0;
-    left: 0;
-    opacity: 0;
-    outline: 0;
-    z-index: 3;
-
-    &:focus:checked~label:before,
-    &:focus:checked~.box:before,
-    &:checked~.box:before,
-    &:checked~label:before {
-      background-color: var(--primary-color) !important;
-    }
-  }
-
-  label {
-    min-height: calculateRem(16px);
-    padding-left: calculateRem(72px);
-    color: rgba(var(--rc-rgba-black), 0.87);
-    position: relative;
-    display: block;
-    outline: 0;
-    font-size: 1rem;
-
-    &:before {
-      display: block;
-      position: absolute;
-      content: "";
-      z-index: 1;
-      transform: none;
-      border: none;
-      top: calculateRem(1px);;
-      left: 0;
-      background: rgba(var(--rc-rgba-black), 0.05);
-      box-shadow: none;
-      width: calculateRem(64px);
-      height: calculateRem(24px);
-      border-radius: 500rem;
-      @include btn-theme($primary-color);
-      transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease,
-        box-shadow 0.1s ease, -webkit-transform 0.1s ease;
-    }
-
-    &:after {
-      background: var(--white) linear-gradient(transparent, rgba(var(--rc-rgba-black), 0.05));
-      position: absolute;
-      content: "" !important;
-      opacity: 1;
-      z-index: 2;
-      border: none;
-      width: calculateRem(20px);
-      height: calculateRem(20px);
-      top: calculateRem(3px);
-      left: 0;
-      border-radius: 500rem;
-      transition: background 0.3s ease, left 0.3s ease;
-    }
-  }
-
-  input~label:after {
-    left: 0.1rem;
-    box-shadow: none;
-  }
-
-  input:checked~label:after {
-    left: calculateRem(41px);
-    box-shadow: none;
-  }
-}
-
-// button groups
-.btn-group {
-  border: 0.0625rem solid var(--gray-100);
-  display: inline-flex;
-  -webkit-box-orient: horizontal;
-  -webkit-box-direction: normal;
-  flex-direction: row;
-  flex-direction: row;
-  font-size: 0;
-  vertical-align: baseline;
-
-  .sb-btn {
-    background: var(--white);
-    border-left: 0.0625rem solid var(--gray-100);
-    flex: 1 0 auto;
-    margin: 0;
-    border-radius: 0;
-    margin: 0;
-    border: 0;
-    color: var(--primary-400);
-    min-width: calculateRem(40px);
-
-    &:first-child {
-      border-left: none;
-      margin-left: 0;
-    }
-
-    &:active,
-    &.active {
-      background-color: var(--primary-100);
-      color: var(--primary-400);
-    }
-
-    .icon {
-      margin: 0;
-      vertical-align: top;
-    }
-  }
-}
-
-*[lang="hi"] .sb-btn-xs {
-  line-height: 1.5;
-}
-
-*[lang="hi"] .sb-btn-normal {
-  line-height: 1.5;
-}
-
-.sb-btn-icon-fix {
-  display: flex;
-  align-items: center;
-  line-height: normal;
-}
-
-/* do not delete */
-.sb-btn-grow {
-  background: none;
-  border: 0px solid var(--white);
-  font-size: calculateRem(12px);
-  color: var(--white);
-  cursor: pointer;
-
-  &:disabled {
-    opacity: 0.4;
-    cursor: default;
-  }
-
-  transition: all .2s ease-in-out;
-
-  &:hover:not([disabled]) {
-    background: none;
-    transform: scale(1.15);
-  }
-}
-
-.sb-btn-primary svg.icon-svg--primary {
-  fill: var(--primary-color-contrast);
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_colors.scss b/node_modules/@project-sunbird/sb-styles/assets/_colors.scss
deleted file mode 100644
index 3d8ac390d599bfe61b945d306ab8c4fe98462c00..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_colors.scss
+++ /dev/null
@@ -1,60 +0,0 @@
-/* colors */
-$colours: "gray-hs" var(--gray-hs), "gray" var(--gray), "gray-0" var(--gray-0),
-  "gray-100" var(--gray-100), "gray-200" var(--gray-200),
-  "gray-300" var(--gray-300), "gray-400" var(--gray-400),
-  "gray-800" var(--gray-800), "primary" var(--primary-400),
-  "primary-0" var(--primary-0), "primary-100" var(--primary-100),
-  "primary-200" var(--primary-200), "primary-250" var(--primary-250),
-  "primary-300" var(--primary-300), "primary-400" var(--primary-400),
-  "primary-600" var(--primary-600), "primary-800" var(--primary-800),
-  "secondary" var(--green), "secondary-0" var(--secondary-0),
-  "secondary-100" var(--secondary-100), "secondary-200" var(--secondary-200),
-  "secondary-400" var(--secondary-400), "tertiary" var(--orange),
-  "tertiary-0" var(--tertiary-0), "tertiary-100" var(--tertiary-100),
-  "tertiary-400" var(--tertiary-400), "red" var(--red), "red-0" var(--red-0),
-  "red-100" var(--red-100), "red-400" var(--red-400), "info" var(--primary-400),
-  "success" var(--secondary-200), "warning" var(--tertiary-400),
-  "error" var(--red-400), "white" var(--white), "black" var(--black); // colors
-@each $i in $colours {
-  .sb-bg-color-#{nth($i, 1)} {
-    background: nth($i, 2) !important;
-  }
-  .sb-color-#{nth($i, 1)} {
-    color: nth($i, 2) !important;
-  }
-}
-
-// bg colors
-.sb-bg-white {
-    background: var(--white);
-}
-.sb-bg-none {
-  background: none !important;
-}
-//to clean
-.color-3, .sb-text-gray-800 {
-    color: var(--gray-800); 
-}
-.sb-bg-color-black {
-    background-color: var(--black);
-}
-
-// background
-.bg-contain {
-  background-position: center;
-  background-repeat: no-repeat;
-  background-size: contain;
-}
-
-//opacity
-
-$odeclarations: 0, 10, 20, 25, 30, 40, 50, 60, 70, 75, 80, 90, 100;
-
-@each $ovalue in $odeclarations {
-  .opacity#{$ovalue} {
-    opacity: var(--alpha#{$ovalue}) !important;
-  }
-}
-
-/* colors end */
-
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_displays.scss b/node_modules/@project-sunbird/sb-styles/assets/_displays.scss
deleted file mode 100644
index 15f07334808d17ab44ba762a0e88b1fc8fac18e9..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_displays.scss
+++ /dev/null
@@ -1,47 +0,0 @@
-/* display styles */
-
-$displays: inline-block,
-block,
-flex,
-inline-flex,
-none;
-
-@each $var in $displays {
-  .d-#{$var} {
-    display: $var !important;
-  }
-}
-
-.show {
-  @extend .d-block;
-}
-
-.hide {
-  @extend .d-none;
-}
-
-@media only screen and (max-width: 1023px) {
-
-  [class*="mobile hidden"],
-  [class*="tablet only"]:not(.mobile),
-  [class*="computer only"]:not(.mobile),
-  [class*="large screen only"]:not(.mobile),
-  [class*="widescreen only"]:not(.mobile),
-  [class*="or lower hidden"] {
-    display: none !important;
-  }
-}
-
-@media only screen and (min-width: 1024px) {
-
-  [class*="mobile only"]:not(.computer),
-  [class*="tablet only"]:not(.computer),
-  [class*="computer hidden"],
-  [class*="large screen only"]:not(.computer),
-  [class*="widescreen only"]:not(.computer),
-  [class*="or lower hidden"]:not(.tablet):not(.mobile) {
-    display: none !important;
-  }
-}
-
-/* display styles ends */
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_flexbox.scss b/node_modules/@project-sunbird/sb-styles/assets/_flexbox.scss
deleted file mode 100644
index 47f028447a19e86eb4a19857bb2b48ccb1cf0983..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_flexbox.scss
+++ /dev/null
@@ -1,71 +0,0 @@
-@forward './displays';
-/* flex styles */
-.flex-ai-jc-center,.flex-jc-ai-center {
-  @extend .d-flex;
-  @extend .flex-jc-center;
-  @extend .flex-ai-center;
-}
-
-$declarations: center,
-flex-start,
-flex-end;
-
-$jc-properties: space-between,
-space-around,
-space-evenly;
-
-$direction: "r" row,
-"c" column;
-
-@each $value in $declarations {
-  .flex-ai-#{$value} {
-    align-items: $value !important;
-  }
-
-  .flex-as-#{$value} {
-    align-self: $value !important;
-  }
-
-  .flex-jc-#{$value} {
-    justify-content: $value !important;
-  }
-}
-
-@each $value in $jc-properties {
-  .flex-jc-#{$value} {
-    justify-content: $value !important;
-  }
-}
-
-@each $name,
-$value in $direction {
-  .flex-d#{$name} {
-    flex-direction: $value !important;
-  }
-}
-
-.flex-ai-baseline {
-  align-items: baseline !important;
-}
-
-.flex-ai-end {
-  align-items: flex-end !important;
-}
-
-.flex-w-wrap {
-  flex-wrap: wrap !important;
-}
-
-.flex-basis-1 {
-  flex: 1;
-}
-
-.flex-basis-100 {
-  flex-basis: 100%;
-}
-
-.flex-none {
-  flex: none;
-}
-
-/* flex styles ends */
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_icons.scss b/node_modules/@project-sunbird/sb-styles/assets/_icons.scss
deleted file mode 100644
index 3dfc7b27ba56f7ca526393a4db237874443f8e3d..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_icons.scss
+++ /dev/null
@@ -1,171 +0,0 @@
-@use "./mixins/mixins" as *;
-
-[class^="sb-icon-"],
-[class*="sb-icon-"] {
-  /* use !important to prevent issues with browser extensions that change fonts */
-  font-family: 'icomoon' !important;
-  speak: none;
-  font-style: normal;
-  font-weight: normal;
-  font-variant: normal;
-  font-size: inherit;
-  text-transform: none;
-  line-height: inherit;
-
-  /* Better Font Rendering */
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-}
-
-.sb-icon-preview:before {
-  content: "\e909";
-}
-.sb-icon-refresh:before {
-  content: "\e90c";
-}
-.sb-icon-reviewer:before {
-  content: "\e90a";
-}
-.sb-icon-folder:before {
-  content: "\e902";
-}
-.sb-icon-comment:before {
-  content: "\e908";
-}
-.sb-icon-send:before {
-  content: "\e90b";
-}
-.sb-icon-book:before {
-  content: "\e900";
-}
-.sb-icon-content:before {
-  content: "\e901";
-}
-.sb-icon-collection:before {
-  content: "\e903";
-}
-.sb-icon-doc:before {
-  content: "\e904";
-}
-.sb-icon-mp3:before {
-  content: "\e905";
-}
-.sb-icon-open-book:before {
-  content: "\e906";
-}
-.sb-icon-video:before {
-  content: "\e907";
-}
-.sb-lock-icon {
-  cursor: pointer;
-}
-/*[class*="sb-icon-"] {
-  -webkit-mask-size: contain;
-  -webkit-mask-position: 50% 50%;
-  -webkit-mask-repeat: no-repeat;
-  mask-size: contain;
-  mask-position: 50% 50%;
-  mask-repeat: no-repeat;
-  background-color: var(--primary-color);
-  width: 16px;
-  height: 16px;
-  display: inline-block;
-  cursor: pointer;
-}
-*/
-[class*="sb-icon-primary"] {
-  background-color: var(--primary-color);
-}
-
-[class*="sb-icon-secondary"] {
-  background-color: var(--secondary-color);
-}
-
-[class*="sb-icon-warning"] {
-  background-color: var(--tertiary-color);
-}
-
-[class*="sb-icon-error"] {
-  background-color: var(--red);
-}
-
-.info-icon {
-  background-color: var(--gray-400);
-  -webkit-mask-size: contain;
-  -webkit-mask-position: 50% 50%;
-  -webkit-mask-repeat: no-repeat;
-  mask-size: contain;
-  mask-position: 50% 50%;
-  mask-repeat: no-repeat;
-  width: calculateRem(16px);
-  height: calculateRem(16px);
-  margin-left: calculateRem(4px);
-  display: inline-block;
-  vertical-align: bottom;
-}
-
-
-//common consumption library
-// icons
-.icon-arrow-round-down {
-  transform: rotate(90deg);
-}
-.icon-svg {
-  position: relative;
-  top: calculateRem(1px);
-  display: inline-block;
-  font-style: normal;
-  font-weight: 400;
-  line-height: 1;
-  -webkit-font-smoothing: antialiased;
-  opacity: 1;
-  svg.icon {
-    width: 100%;
-    height: inherit;
-  }
-  //sizes
-  &--xxs {
-    width: var(--icon-svg-xxs);
-    height: var(--icon-svg-xxs);
-  }
-  &--xs {
-    width: var(--icon-svg-xs);
-    height: var(--icon-svg-xs);
-  }
-  &--sm {
-    width: var(--icon-svg-sm);
-    height: var(--icon-svg-sm);
-  }
-  &--md {
-    width: var(--icon-svg-md);
-    height: var(--icon-svg-md);
-  }
-  &--lg {
-    width: var(--icon-svg-lg);
-    height: var(--icon-svg-lg);
-  }
-  &--xl {
-    width: var(--icon-svg-xl);
-    height: var(--icon-svg-xl);
-  }
-
-  //colors
-  &--white {
-    fill: var(--white);
-  }
-  &--primary {
-    fill: var(--primary-color);
-  }
-  &--secondary {
-    fill: var(--secondary-color);
-  }
-  &--tertiary {
-    fill: var(--tertiary-color);
-  }
-  &--red {
-    fill: var(--red-400);
-  }
-  &--gray {
-    fill: var(--gray-800);
-  }
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_loadingshadows.scss b/node_modules/@project-sunbird/sb-styles/assets/_loadingshadows.scss
deleted file mode 100644
index afb8521d62357048d3680a1c656f509bf3c6e70b..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_loadingshadows.scss
+++ /dev/null
@@ -1,62 +0,0 @@
-@use './mixins/mixins' as *;
-
-.loading-animation {
-	-webkit-animation-duration: 1s;
-	animation-duration: 1s;
-	-webkit-animation-fill-mode: forwards;
-	animation-fill-mode: forwards;
-	-webkit-animation-iteration-count: infinite;
-	animation-iteration-count: infinite;
-	-webkit-animation-name: placeload;
-	animation-name: placeload;
-	-webkit-animation-timing-function: linear;
-	animation-timing-function: linear;
-	background: var(--lazyload-bg);
-	background: var(--grey-nuance-lighter);
-	background: -webkit-gradient(
-		linear,
-		left top,
-		right top,
-		color-stop(8%, var(--grey-nuance-lighter)),
-		color-stop(18%, var(--grey-nuance-darker)),
-		color-stop(33%, var(--grey-nuance-lighter))
-	);
-	background: -webkit-linear-gradient(
-		left,
-		var(--grey-nuance-lighter) 8%,
-		var(--grey-nuance-darker) 18%,
-		var(--grey-nuance-lighter) 33%
-	);
-	background: linear-gradient(
-		to right,
-		var(--grey-nuance-lighter) 8%,
-		var(--grey-nuance-darker) 18%,
-		var(--grey-nuance-lighter) 33%
-	);
-	-webkit-background-size: calculateRem(800px) calculateRem(104px);
-	background-size: calculateRem(1200px) calculateRem(104px);
-	position: relative;
-}
-@-webkit-keyframes placeload {
-	0% {
-		background-position: calculateRem(-468px) 0;
-	}
-	100% {
-		background-position: calculateRem(468px) 0;
-	}
-}
-@keyframes placeload {
-	0% {
-		background-position: calculateRem(-468px) 0;
-	}
-	100% {
-		background-position: calculateRem(468px) 0;
-	}
-}
-
-.sb--card--highlighter {
-	height: calculateRem(12px);
-	width: 100%;
-	margin-top: calculateRem(5px);
-	// min-width: calculateRem(65px);
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_margins.scss b/node_modules/@project-sunbird/sb-styles/assets/_margins.scss
deleted file mode 100644
index 92a6081678af9b4406d21f48bb939187409fbf02..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_margins.scss
+++ /dev/null
@@ -1,86 +0,0 @@
-/* margin styles */
-@use './mixins/border' as *;
-
-$mValues: 0, 2, 3, 4, 5, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 50, 52, 56, 60, 64, 68, 72, 76, 80,
-  84, 88, 96, 192;
-  @each $value in $mValues {
-    $baseMvalue: 0.0625 * $value + rem;
-    /* Margin in all direction */
-    .m-#{$value} {
-      margin:$baseMvalue !important; 
-    }
-    /* Margin in top direction */
-    .mt-#{$value} {
-      margin-top:$baseMvalue !important; 
-    }
-    /* Margin in bottom direction */
-    .mb-#{$value} {
-      margin-bottom:$baseMvalue !important; 
-    }
-    /* Margin in top and bottom direction */
-    .my-#{$value} {
-      margin-top:$baseMvalue !important; 
-      margin-bottom:$baseMvalue !important; 
-    }
-    /* Margin in left and right direction */
-    .mx-#{$value} {
-      margin-left:$baseMvalue !important; 
-      margin-right:$baseMvalue !important;
-    }
-    /* Margin in left direction */
-    .ml-#{$value} {
-      margin-left:$baseMvalue !important; 
-      html[dir="rtl"] & {
-        margin-right:$baseMvalue !important;
-        margin-left: 0 !important;
-      }
-    }
-    /* Margin in right direction */
-    .mr-#{$value} {
-      margin-right:$baseMvalue !important;
-      html[dir="rtl"] & {
-        margin-left:$baseMvalue !important;
-        margin-right: 0 !important;
-      }
-    }
-  }
-  
-  .m-auto {
-     margin: 0 auto 0 auto !important;
-  }
-  .mt-auto {
-     margin-top:auto !important;
-  }
-  .mb-auto {
-    margin-bottom:auto !important;
-  }
-  .mx-auto {
-    margin-left:auto !important;
-    margin-right:auto !important;
-  }
-  .my-auto {
-    margin-top:auto !important;
-    margin-bottom:auto !important;
-  }
-  .ml-auto {
-    margin-left:auto !important;
-    html[dir="rtl"] & {
-      margin-right:auto !important;
-      margin-left: 0 !important;
-    }
-  }
-  .mr-auto {
-    margin-right:auto !important;
-    html[dir="rtl"] & {
-      margin-left:auto !important;
-      margin-right: 0 !important;
-    }
-  }
-  /* Negative margins */
-  @media screen and (min-width: 768px) {
-    .mx--20 {
-      margin: 0 calculateRem(-20px) !important;
-    }
-  }
-
-  /* margin styles ends */
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_overflows.scss b/node_modules/@project-sunbird/sb-styles/assets/_overflows.scss
deleted file mode 100644
index 4408163cdc15c5ded44e77de2e87615ba65aaad2..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_overflows.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-/* overflow styles */
-
-$value: ('auto': 'auto', 'visible': 'visible', 'hide': 'hidden', 'scroll': 'scroll');
-
-$cordinate: x, y;
-
-@each $i in $cordinate {
-  @each $key, $val in $value {
-    .o-#{$i}-#{$key} {
-      overflow-#{$i}: #{$val} !important;
-    }
-  }
-}
-
-/* overflow styles ends */
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_paddings.scss b/node_modules/@project-sunbird/sb-styles/assets/_paddings.scss
deleted file mode 100644
index 153c7cb3c7bc81cefde750f0c3afdf2b567f40a3..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_paddings.scss
+++ /dev/null
@@ -1,56 +0,0 @@
-@use './mixins/mixins' as *;
-
-/* padding styles */
-$pValues: 0, 2, 3, 4, 5, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 52, 56, 60, 64, 68, 72, 76, 80,
-  84, 88, 96, 192;
-
-@each $value in $pValues {
-  $basePvalue: 0.0625 * $value + rem;
-  /* padding in all direction */
-  .p-#{$value} {
-     padding:($basePvalue) !important;
-  }
-  /* padding in top direction */
-  .pt-#{$value} {
-    padding-top: $basePvalue !important;
-  }
-  /* padding in bottom direction */
-  .pb-#{$value} {
-    padding-bottom: $basePvalue !important;
-  }
-  /* padding in top and bottom direction */
-  .py-#{$value} {
-    padding-top:$basePvalue !important;
-    padding-bottom: $basePvalue !important;
-  }
-  /* padding in left and right direction */
-  .px-#{$value} {
-    padding-left:$basePvalue !important;
-    padding-right: $basePvalue !important;
-  }
-  /* padding in left direction */
-  .pl-#{$value} {
-     padding-left: $basePvalue !important;
-    html[dir="rtl"] & {
-      padding-right: $basePvalue !important;
-      padding-left: 0 !important;
-    }
-  }
-  /* padding in right direction */
-  .pr-#{$value} {
-    padding-right: $basePvalue !important;
-    html[dir="rtl"] & {
-      padding-left:$basePvalue !important;
-      padding-right: 0 !important;
-    }
-  }
-}
-
-/* Negative paddings */
-@media screen and (min-width: 768px) {
-  .px--20 {
-    padding: 0 calculateRem(-20px);
-  }
-}
-
-/* padding styles ends */
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_positions.scss b/node_modules/@project-sunbird/sb-styles/assets/_positions.scss
deleted file mode 100644
index b8e699a675afd5a972d21b3f75747465678e4d36..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_positions.scss
+++ /dev/null
@@ -1,60 +0,0 @@
-/* position styles */
-
-.relative {
-  position: relative !important;
-}
-.absolute {
-  position: absolute !important;
-}
-.fixed {
-  position:fixed !important;
-}
-
-.right-0 {
-  right: 0 !important;
-  html[dir="rtl"] & {
-    left: 0 !important;
-  }
-}
-.left-0 {
-  left: 0 !important;
-  html[dir="rtl"] & {
-    right: 0 !important;
-  }
-}
-
-.top-50 {
-  top: 50% !important;
-  transform: translateY(-50%);
-}
-
-.bottom-0 {
-  bottom: 0 !important;
-}
-.bottom-5 {
-  bottom: 5px !important;
-}
-
-.sb-sticky-bottom,
-.sb-sticky-top {
-  position: sticky;
-  z-index: 999999;
-}
-.sb-sticky-bottom {
-  bottom: 0;
-}
-.sb-sticky-top {
-  top: 0;
-}
-
-$zindexes: 1, 2, 9, 99, 999, 9999, 99999;
-
-@each $zindex in $zindexes {
-  .zindex-#{$zindex} {
-    z-index: #{$zindex} !important;
-  }
-}
-
-/* position styles ends */
-
-
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_reset.scss b/node_modules/@project-sunbird/sb-styles/assets/_reset.scss
deleted file mode 100644
index 71426d62a64e709b76336860b59a56cc9088a708..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_reset.scss
+++ /dev/null
@@ -1,348 +0,0 @@
-*,
-*::before,
-*::after {
-  box-sizing: border-box;
-}
-
-html {
-  font-family: inherit;
-  line-height: 1.15;
-  -webkit-text-size-adjust: 100%;
-  -ms-text-size-adjust: 100%;
-  -ms-overflow-style: scrollbar;
-  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-
-@-ms-viewport {
-  width: device-width;
-}
-
-article,
-aside,
-dialog,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-nav,
-section {
-  display: block;
-}
-
-body {
-  margin: 0;
-  font-family: var(--font-stack-en);
-  font-size: 1rem;
-  font-weight: 400;
-  line-height: 1.5;
-  color: var(--gray-800);
-  text-align: left;
-  background: #E5EDF5;
-}
-
-[tabindex="-1"]:focus {
-  outline: none !important;
-}
-
-hr {
-  box-sizing: content-box;
-  height: 0;
-  overflow: visible;
-}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
-  margin-top: 0;
-  margin-bottom: 0.5rem;
-}
-
-p {
-  margin-top: 0;
-  margin-bottom: 1rem;
-}
-
-abbr[title],
-abbr[data-original-title] {
-  text-decoration: underline;
-  text-decoration: underline dotted;
-  cursor: help;
-  border-bottom: 0;
-}
-
-address {
-  margin-bottom: 1rem;
-  font-style: normal;
-  line-height: inherit;
-}
-
-ol,
-ul,
-dl {
-  margin-top: 0;
-  margin-bottom: 1rem;
-}
-
-ol ol,
-ul ul,
-ol ul,
-ul ol {
-  margin-bottom: 0;
-}
-
-dt {
-  font-weight: 700;
-}
-
-dd {
-  margin-bottom: .5rem;
-  margin-left: 0;
-}
-
-blockquote {
-  margin: 0 0 1rem;
-}
-
-dfn {
-  font-style: italic;
-}
-
-b,
-strong {
-  font-weight: bolder;
-}
-
-small {
-  font-size: 80%;
-}
-
-sub,
-sup {
-  position: relative;
-  font-size: 75%;
-  line-height: 0;
-  vertical-align: baseline;
-}
-
-sub {
-  bottom: -.25em;
-}
-
-sup {
-  top: -.5em;
-}
-
-a {
-  color: theme-color("primary");
-  text-decoration: none;
-  background-color: transparent;
-  -webkit-text-decoration-skip: objects;
-}
-
-a:hover {
-  color: #0056b3;
-  text-decoration: underline;
-}
-
-a:not([href]):not([tabindex]) {
-  color: inherit;
-  text-decoration: none;
-}
-
-a:not([href]):not([tabindex]):hover,
-a:not([href]):not([tabindex]):focus {
-  color: inherit;
-  text-decoration: none;
-}
-
-a:not([href]):not([tabindex]):focus {
-  outline: 0;
-}
-
-pre,
-code,
-kbd,
-samp {
-  font-family: monospace, monospace;
-  font-size: 1em;
-}
-
-pre {
-  margin-top: 0;
-  margin-bottom: 1rem;
-  overflow: auto;
-  -ms-overflow-style: scrollbar;
-}
-
-figure {
-  margin: 0 0 1rem;
-}
-
-img {
-  vertical-align: middle;
-  border-style: none;
-}
-
-svg:not(:root) {
-  overflow: hidden;
-}
-
-a,
-area,
-button,
-[role="button"],
-input:not([type="range"]),
-label,
-select,
-summary,
-textarea {
-  touch-action: manipulation;
-}
-
-table {
-  border-collapse: collapse;
-}
-
-caption {
-  padding-top: 0.75rem;
-  padding-bottom: 0.75rem;
-  color: #868e96;
-  text-align: left;
-  caption-side: bottom;
-}
-
-th {
-  text-align: inherit;
-}
-
-label {
-  display: inline-block;
-  margin-bottom: .5rem;
-}
-
-button {
-  border-radius: 0;
-}
-
-button:focus {
-  outline: 0px dotted;
-  outline: 0px auto transparent;
-}
-
-input,
-button,
-select,
-optgroup,
-textarea {
-  margin: 0;
-  font-family: inherit;
-  font-size: inherit;
-  line-height: inherit;
-}
-
-button,
-input {
-  overflow: visible;
-}
-
-button,
-select {
-  text-transform: none;
-}
-
-button,
-html [type="button"],
-[type="reset"],
-[type="submit"] {
-  -webkit-appearance: button;
-}
-
-button::-moz-focus-inner,
-[type="button"]::-moz-focus-inner,
-[type="reset"]::-moz-focus-inner,
-[type="submit"]::-moz-focus-inner {
-  padding: 0;
-  border-style: none;
-}
-
-input[type="radio"],
-input[type="checkbox"] {
-  box-sizing: border-box;
-  padding: 0;
-}
-
-input[type="date"],
-input[type="time"],
-input[type="datetime-local"],
-input[type="month"] {
-  -webkit-appearance: listbox;
-}
-
-textarea {
-  overflow: auto;
-  resize: vertical;
-}
-
-fieldset {
-  min-width: 0;
-  padding: 0;
-  margin: 0;
-  border: 0;
-}
-
-legend {
-  display: block;
-  width: 100%;
-  max-width: 100%;
-  padding: 0;
-  margin-bottom: .5rem;
-  font-size: 1.5rem;
-  line-height: inherit;
-  color: inherit;
-  white-space: normal;
-}
-
-progress {
-  vertical-align: baseline;
-}
-
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
-  height: auto;
-}
-
-[type="search"] {
-  outline-offset: -2px;
-  -webkit-appearance: none;
-}
-
-[type="search"]::-webkit-search-cancel-button,
-[type="search"]::-webkit-search-decoration {
-  -webkit-appearance: none;
-}
-
-::-webkit-file-upload-button {
-  font: inherit;
-  -webkit-appearance: button;
-}
-
-output {
-  display: inline-block;
-}
-
-summary {
-  display: list-item;
-}
-
-template {
-  display: none;
-}
-
-[hidden] {
-  display: none !important;
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_sizing.scss b/node_modules/@project-sunbird/sb-styles/assets/_sizing.scss
deleted file mode 100644
index 65228c92892704e8765029700600c106c233e592..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_sizing.scss
+++ /dev/null
@@ -1,68 +0,0 @@
-/* sizing styles */
-
-$width: "100" 100%,
-"90" 90%,
-"80" 80%,
-"75" 75%,
-"70" 70%,
-"60" 60%,
-"50" 50%,
-"40" 40%,
-"30" 30%,
-"25" 25%,
-"20" 20%,
-"15" 15%,
-"10" 10%,
-"5" 5%,
-"auto" auto;
-
-@each $var in $width {
-  .w-#{nth($var, 1)} {
-    width: nth($var, 2);
-    max-width: nth($var, 2);
-  }
-}
-
-.h-100 {
-  height: 100%;
-  max-height: 100%;
-}
-
-.height-auto {
-  height: auto !important;
-}
-
-.sb-mw-100 {
-  max-width: 100% !important;
-}
-
-.min-height-auto {
-  min-height: auto !important;
-}
-.min-w-auto {
-  min-width: auto !important;
-}
-.max-w-auto {
-  max-width: auto !important;
-}
-/* sizing styles ends */
-
-/* rotate classes */
-.rotate-90{
-  transform: rotate(-90deg);
-}
-.rotate90{
-  transform: rotate(90deg);
-}
-.rotate180{
-  transform: rotate(180deg);
-}
-.rotate-180{
-  transform: rotate(-180deg);
-}
-.rotate-45{
-  transform: rotate(-45deg);
-}
-.rotate45{
-  transform: rotate(45deg);
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_typography.scss b/node_modules/@project-sunbird/sb-styles/assets/_typography.scss
deleted file mode 100644
index 57673e8d5e878afc71c3fdefdda3b190239e71f5..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_typography.scss
+++ /dev/null
@@ -1,174 +0,0 @@
-@use './mixins/border' as *;
-
-// Headings
-$typography: 
-h1 var(--h1-font-size) calc(var(--h1-font-size) * var(--line-height-value)), // 32px
-h2 var(--h2-font-size) calc(var(--h2-font-size) * var(--line-height-value)), // 28px
-h3 var(--h3-font-size) calc(var(--h3-font-size) * var(--line-height-value)), // 24px
-h4 var(--h4-font-size) calc(var(--h4-font-size) * var(--line-height-value)), // 20px
-h5 var(--h5-font-size) calc(var(--h5-font-size) * var(--line-height-value)), // 16px
-h6 var(--h6-font-size) calc(var(--h6-font-size) * var(--line-height-value)); // 14px
-
-@each $name, $font-size, $line-height in $typography {
-  #{$name}, .sb-#{$name} {
-    font-size: $font-size;
-    line-height: $line-height;
-    margin: 0;
-    padding: 0;
-  }
-}
-
-// Font sizes
-
-$font-size: ('medium': var(--font-size-md), 'normal': var(--font-size-normal), 'small': var(--font-size-sm), 'xsmall': var(--font-size-xs));
-
-@each $name, $size in $font-size {
-  .f#{$name} {
-    font-size: #{$size} !important;
-  }
-}
-
-
-// Font sizes in values
-
-$font-size-number: ('0-785': 0.785rem, '0-92': 0.9286rem, '1': 1rem, '1-143': 1.143rem, '1-16': 1.16rem, '1-286': 1.286rem, '1-3': 1.3rem,
-'1-429': 1.429rem, '1-5': 1.5rem, '1-7': 1.7rem, '2': 2rem, '2-5': 2.5rem, '2-57': 2.571rem, '3': 3rem, '3-5': 3.5rem);
-
-@each $num, $size in $font-size-number {
-  .fs-#{$num} {
-    font-size: $size !important;
-  }
-}
-
-// Text transform
-
-$text-transform: capitalize, uppercase, lowercase, inherit;
-
-@each $val in $text-transform {
-  .text-#{$val} {
-    text-transform: $val !important;
-  }
-}
-
-.text-sentencecase {
-  @extend .text-lowercase;
-  &::first-letter {
-    text-transform: uppercase !important;
-  }
-}
-// Font weight
-
-$font-weight: bold, normal;
-
-@each $val in $font-weight {
-  .font-weight-#{$val} {
-    font-weight: $val !important;
-  }
-}
-
-// Word break
-
-$word-break: break-word, break-all;
-
-@each $val in $word-break {
-  .#{$val} {
-    word-break: $val !important;
-  }
-}
-
-// Cursor
-
-$cursor: pointer, text;
-
-@each $val in $cursor {
-  .cursor-#{$val} {
-    cursor: $val !important;
-  }
-}
-
-// Vertical alignment
-
-$vertical-align: bottom, middle, top;
-
-@each $val in $vertical-align {
-  .va-#{$val} {
-    vertical-align: $val !important;
-  }
-}
-
-
-
-p,
-.sb-para {
-  font-size: var(--p-font-size); //14px
-  line-height: calc(var(--p-font-size) * var(--line-height-value)); //* 1.618
-}
-
-.font-italic {
-  font-style: italic;
-}
-
-a {
-  color: var(--primary-color);
-  &:hover {
-    color: var(--primary-color);
-  }
-  &:focus {
-    outline: 0;
-  }
-}
-
-.white-space-nowrap {
-  white-space: nowrap !important;
-}
-
-.text-center {
-  text-align: center !important;
-}
-
-.text-right {
-  text-align: right !important;
-  html[dir="rtl"] & {
-    text-align: left !important;
-  }
-}
-
-.text-left {
-  text-align: left !important;
-  html[dir="rtl"] & {
-    text-align: right !important;
-  }
-}
-.text-underline {
-  text-decoration: underline !important;
-}
-
-.lineHeight-normal {
-  line-height: normal !important;
-}
-.sb__ellipsis {
-  /* autoprefixer: off */
-  -webkit-box-orient: vertical;
-  /* autoprefixer: on */
-  display: -webkit-box;
-  -webkit-line-clamp: 1;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  word-break: break-word;
-  &--two {
-    -webkit-line-clamp: 2;
-  }
-  &--three {
-    -webkit-line-clamp: 3;
-  }
-}
-
-.ellipsis {
-  white-space: nowrap;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  cursor: pointer;
-}
-
-
-/* typography styles ends */
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_varColors.scss b/node_modules/@project-sunbird/sb-styles/assets/_varColors.scss
deleted file mode 100644
index 20f550451c7561c6a6b2d16fc8ca429ff0000e57..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_varColors.scss
+++ /dev/null
@@ -1,206 +0,0 @@
-/* css3 variable & sass variables */
-:root {
-  // base colors
-  --blue: #024f9d;
-  --green: #008840;
-  --orange: #e55a28;
-  --red: #ff4558;
-  --indigo: #6610f2;
-  --purple: #6f42c1;
-  --pink: #e83e8c;
-  --yellow: #ffc107;
-  --teal: #20c997;
-  --cyan: #17a2b8;
-  --black: #000000;
-  --white: #ffffff;
-  --accessibility-red: #A30010;
-  // gray colors shades
-  --gray-hs: 0, 0%;
-  --gray: hsl(var(--gray-hs), 20%);
-  --gray-0: hsl(var(--gray-hs), 95%); // place holder active bg #F2F2F2
-  --gray-100: hsl(var(--gray-hs), 80%); // disable btn bg, icon color #CCCCCC
-  --gray-200: hsl(var(--gray-hs), 60%); // disable text, place holder text #999999
-  --gray-300: hsl(var(--gray-hs), 59%); // sub heading 2 #969696
-  --gray-400: hsl(var(--gray-hs), 40%); // sub heading #666666
-  --gray-800: var(--gray); // text color #333333
-
-  // basetheme
-  --primary-color: #024f9d;
-  --secondary-color: #008840;
-  --tertiary-color: #e55a28;
-
-  // primary colors
-  --primary-0: #f3f7fa; // bg
-  --primary-100: #edf4f9; // default button bg
-  --primary-200: #80a7ce; // divider
-  --primary-250: #d3e7f4; //pagination bg color
-  --primary-300: #7ab4ee; // outline, focus fields
-  --primary-400: var(--primary-color); // button bg, heading, table titles, links, toggles
-  --primary-600: #005391; // on press
-  --primary-800: #002e50; // hover
-  --primary-color-contrast: #fff;
-  --primary-color-contrast-rgb: rgb(255, 255, 255);
-  --primary-color-shade: var(--primary-800);
-  --primary-color-tint: var(--primary-200);
-
-  // secondary colors
-  --secondary-0: #e1ffdf; // toast bg, label
-  --secondary-100: #00c786; // button bg bg, toast
-  --secondary-200: #07bc81; // button bg
-  --secondary-400: var(--secondary-color); // hover
-
-  // tertiary colors
-  --tertiary-0: #feedd7; // toast bg, label
-  --tertiary-100: #ffa11d; // buttong bg, toast
-  --tertiary-400: var(--tertiary-color); // icon, label, notification bg
-
-  // red colors
-  --red-0: #fbccd1; // toast bg
-  --red-100: #ff6979; // buttong bg, toast
-  --red-400: var(--red); // icon color, lable, notification
-
-  // status colors
-  --info-color: var(--blue);
-  --success-color: var(--green);
-  --warning-color: var(--orange);
-  --danger-color: var(--red);
-
-  // element based variables
-  --body-background-color: var(--primary-0);
-  --default-text-color: var(--gray-800);
-  --bg-body: var(--primary-0);
-  --body-color: var(--gray-800);
-
-  // alpha
-  --alpha0: 0;
-  --alpha25: 0.25;
-  --alpha50: 0.5;
-  --alpha75: 0.75;
-
-  //random colors and backgrounds
-  --rc-00abc7: #00abc7;
-  --rc-33B6CC: #33B6CC;
-  --rc-2dadc2: #2dadc2;
-  --rc-0fbad6: #0fbad6;
-  --rc-96C8DA: #96C8DA;
-  --rc-add8e6: #add8e6;
-  --rc-afd9e7: #afd9e7;
-  --rc-66c7f4: #66c7f4;
-  --rc-289fd9: #289fd9;
-  --rc-88B7E6: #88B7E6;
-  --rc-007AFF: #007AFF;
-  --rc-7b86f4: #7b86f4;
-  --rc-0076FE: #0076FE;
-  --rc-2361ff: #2361ff;
-  --rc-1B4785: #1B4785;
-  --rc-196DAB: #196DAB;
-  --rc-5c8db7: #5c8db7;
-  --rc-91aecc: #91aecc;
-  --rc-80A7CE: #80A7CE;
-  --rc-2972a4: #2972a4;
-  --rc-2f4272: #2f4272;
-  --rc-042D55: #042D55;
-
-  --rc-1b1c1d: #1b1c1d;
-  --rc-252525: #252525;
-  --rc-4a4a4a: #4a4a4a;
-  --rc-565c70: #565c70;
-  --rc-6D7278: #6D7278;
-  --rc-424242: #424242;
-  --rc-a9a9a9: #a9a9a9;
-  --rc-aaaaaa: #aaaaaa;
-  --rc-bbbbbb: #bbbbbb;
-  --rc-979797: #979797;
-  --rc-9F9F9F: #9F9F9F;
-  --rc-9b9b9b: #9b9b9b;
-
-  --rc-00BD7F: #00BD7F;
-  --rc-2ca58d: #2ca58d;
-  --rc-009D53: #009D53;
-  --rc-bfe1cf: #bfe1cf;
-
-  --rc-E5EDF5: #E5EDF5;
-  --rc-f5f5f5: #f5f5f5;
-  --rc-f9f9f9: #f9f9f9;
-  --rc-fdfdfd: #fdfdfd;
-  --rc-dedede: #dedede;
-  --rc-F5F9FC: #F5F9FC;
-  --rc-c4c4c4: #c4c4c4;
-  --rc-d8d8d8: #d8d8d8;
-  --rc-e9e5e5: #e9e5e5;
-  --rc-dddddd: #dddddd;
-  --rc-d0d0d0: #d0d0d0;
-  --rc-d4d3d3: #d4d3d3;
-  --rc-FAFAFA: #FAFAFA;
-  --rc-F3F8FF: #F3F8FF;
-  --rc-e0e1e2: #e0e1e2;
-  --rc-bdbdbd: #bdbdbd;
-  --rc-cecece: #cecece;
-  --rc-E0F1FD: #E0F1FD;
-  --rc-C8D6EA: #C8D6EA;
-  --rc-e2e3e5: #e2e3e5;
-  --rc-BCBEC0: #BCBEC0;
-  --rc-d4d4d5: #d4d4d5;
-  --rc-d4d8da: #d4d8da;
-  --rc-e0e0e0: #e0e0e0;
-  --rc-c2c2c2: #c2c2c2;
-  --rc-e5e5e5: #e5e5e5;
-  --rc-d8dee2: #d8dee2;
-  --rc-D9E4F2: #D9E4F2;
-  --rc-fff6f6: #fff6f6;
-  --rc-f7f7f7: #f7f7f7;
-  --rc-eeeeee: #eeeeee;
-  --rc-dededf: #dededf;
-  --rc-eeeeee: #eeeeee;
-  --rc-E0EFFF: #E0EFFF;
-  --rc-c2c2c2: #c2c2c2;
-  --rc-e5e5e5: #e5e5e5;
-  --rc-c3c3c3: #c3c3c3;
-  --rc-F7FFF5: #F7FFF5;
-  --rc-D3DED1: #D3DED1;
-  --rc-EBF6E0: #EBF6E0;
-  --rc-F6F6F6: #F6F6F6;
-  --rc-f7ffec: #f7ffec;
-  --rc-d2ddc7: #d2ddc7;
-
-  --rc-866A6A: #866a6a;
-  --rc-7c7b7b: #7c7b7b;
-  --rc-DECACA: #DECACA;
-  --rc-FCE6E6: #FCE6E6;
-  --rc-fcf2d6: #fcf2d6;
-  --rc-F5D7D7: #F5D7D7;
-  --rc-ffe1e1: #ffe1e1;
-  --rc-e6c8c8: #e6c8c8;
-
-
-  --rc-ffb300: #ffb300;
-  --rc-e68900: #e68900;
-  --rc-E08A20: #E08A20;
-  --rc-DD680F: #DD680F;
-  --rc-f56b56: #f56b56;
-  --rc-dc523d: #dc523d;
-  --rc-e65c47: #e65c47;
-
-  --rc-rgba-black: 0, 0, 0; // var(--black)
-  --rc-rgba-white: 255, 255, 255; // var(--white)
-  --rc-rgba-gray: 51, 51, 51; // var(--gray-300)
-  --rc-rgba-primary: 2, 79, 157; // var(--primary-color)
-  --rc-rgba-primary-300: 41, 114, 164; //var(--primary-300)
-  --rc-rgba-gray-300: 34, 36, 38; //var(--gray-100)
-  --rc-rgba-866a6a: 134, 106, 106;
-  --rc-rgba-d0d0d0: 208, 208, 208;
-  --rc-rgba-7b86f4: 123, 134, 244;
-  --rc-rgba-C8D6EA: 200, 214, 234;
-
-  // shadows
-  --sbt-box-shadow-black: rgba(0, 0, 0, 0.1);
-  --sbt-box-shadow-6px: 0.375rem 0.375rem 0.125rem 0 var(--sbt-box-shadow-black);
-  --sbt-box-shadow-3px: 0.1875rem 0.1875rem 0.125rem 0 var(--sbt-box-shadow-black);
-  --sbt-box-shadow: rgba(128, 167, 206, 1);
-
-  // lazy loading
-  --lazyload-bg: #f6f7f8;
-  --grey-nuance-lighter: #eeeeee;
-  --grey-nuance-darker: #dddddd;
-  --fade-grey: #e8e8e8;
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_varFonts.scss b/node_modules/@project-sunbird/sb-styles/assets/_varFonts.scss
deleted file mode 100644
index 536f3cbe3f17022e53aca7c11e9d476a1551c062..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_varFonts.scss
+++ /dev/null
@@ -1,57 +0,0 @@
-@use './mixins/border' as *;
-
-/* css3 variable & sass variables */
-:root {
-  //font-size: 16px;
-  --font-stack-en: "Noto Sans", "Noto Sans Devanagari", "Noto Sans Tamil",
-    "Noto Sans Bengali", "Noto Sans Malayalam", "Noto Sans Gurmukhi",
-    "Noto Sans Gujarati", "Noto Sans Telugu", "Noto Sans Kannada",
-    "Noto Sans Oriya", "Noto Nastaliq Urdu", -apple-system, BlinkMacSystemFont,
-    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
-    sans-serif;
-  --font-stack-hi: "Noto Sans Devanagari", "Noto Sans", "Noto Sans Tamil",
-    "Noto Sans Bengali", "Noto Sans Malayalam", "Noto Sans Gurmukhi",
-    "Noto Sans Gujarati", "Noto Sans Telugu", "Noto Sans Kannada",
-    "Noto Sans Oriya", "Noto Nastaliq Urdu", -apple-system, BlinkMacSystemFont,
-    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
-    sans-serif;
-  --font-stack-ur: "Noto Sans", "Noto Nastaliq Urdu", "Noto Sans Devanagari",
-    "Noto Sans Tamil", "Noto Sans Bengali", "Noto Sans Malayalam",
-    "Noto Sans Gurmukhi", "Noto Sans Gujarati", "Noto Sans Telugu",
-    "Noto Sans Kannada", "Noto Sans Oriya", -apple-system, BlinkMacSystemFont,
-    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
-    sans-serif;
-
-  // fonts
-  --font-default-size: 0.875rem;
-  --font-size-base: var(--font-default-size); // 14px Assumes the browser default, typically `16px`
-  --font-weight-light: 300;
-  --font-weight-normal: 400;
-  --font-weight-bold: 700;
-  --font-weight-base: var(--font-weight-normal);
-  --line-height-value : 1.61803398875;
-  --line-height-base: calc(var(--font-size-base) * var(--line-height-value));
-  --h1-font-size: 2rem; // 32px
-  --h2-font-size: 1.75rem; // 28px
-  --h3-font-size: 1.5rem; // 24px
-  --h4-font-size: 1.2rem; // 20px
-  --h5-font-size: 1rem; // 16px
-  --h6-font-size: var(--font-size-base); // 14px
-  --font-size-lg: var(--h4-font-size); //20px
-  --font-size-md: var(--h5-font-size); // 16px
-  --font-size-normal: var(--font-size-base); // 14px
-  --font-size-sm: 0.75rem; // 12px
-  --font-size-xs: 0.625rem; // 10px
-  --p-font-size: var(--font-size-base); //14px
-
-  // base variables
-  --base-font-size: 0.875rem;
-  --base-block-space: 0.5rem; //8px,
-  --icon-svg-xxs: 0.75rem;
-  --icon-svg-xs: calc(var(--base-block-space) * 2);
-  --icon-svg-sm: calc(var(--base-block-space) * 3);
-  --icon-svg-md: calc(var(--base-block-space) * 4);
-  --icon-svg-lg: calc(var(--base-block-space) * 5);
-  --icon-svg-xl: calc(var(--base-block-space) * 6);
-
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_varIndex.scss b/node_modules/@project-sunbird/sb-styles/assets/_varIndex.scss
deleted file mode 100644
index 8551b2fc3ac619f806b9feb9438f2a2a91c78fcc..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_varIndex.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-@forward './varFonts';
-@forward './varSass';
-@forward './varColors';
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/_varSass.scss b/node_modules/@project-sunbird/sb-styles/assets/_varSass.scss
deleted file mode 100644
index 56982bf3bf2acdabd8a78040e5995293a17af2fd..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/_varSass.scss
+++ /dev/null
@@ -1,98 +0,0 @@
-@use './mixins/border' as *;
-
-// Variables
-$font-stack-en: var(--font-stack-en);
-$font-stack-hi: var(--font-stack-hi);
-$font-stack-ur: var(--font-stack-ur);
-
-// Base Colors
-$blue: var(--primary-color);
-$green: var(--secondary-color);
-$orange: var(--tertiary-color);
-$red: var(--red);
-$black: var(--black);
-$white: var(--white);
-$indigo: var(--indigo);
-$purple: var(--purple);
-$pink: var(--pink);
-$yellow: var(--yellow);
-$teal: var(--teal);
-$cyan: var(--cyan);
-$gray: var(--gray);
-
-// brand Colors
-$primary-color: var(--primary-color);
-$secondary-color: var(--secondary-color);
-$tertiary-color: var(--tertiary-color);
-// Neutral Colors
-$white-color: var(--white);
-// gray colors shades
-$gray-0: var(--gray-0); // place holder active bg #F2F2F2
-$gray-100: var(--gray-100); // disable btn bg, icon color #CCCCCC
-$gray-200: var(--gray-200); // disable text, place holder text #999999
-$gray-300: var(--gray-300); // sub heading 2 #969696
-$gray-400: var(--gray-400); // sub heading #666666
-$gray-800: var(--gray-800); // text color #333333
-
-// primary colors shades
-$primary-0: var(--primary-0); // bg
-$primary-100: var(--primary-100); // default button bg
-$primary-200: var(--primary-200); // divider
-$primary-250: var(--primary-250); //pagination bg color
-$primary-300: var(--primary-300); // outline, focus fields
-$primary-400: var(--primary-400); // button bg, heading, table titles, links, toggles
-$primary-600: var(--primary-600); // on press
-$primary-800: var(--primary-800); // hover
-
-// secondary colors shades
-$secondary-0: var(--secondary-0); // toast bg, label
-$secondary-100: var(--secondary-100); // buttong bg, toast
-$secondary-200: var(--secondary-200); // button bg
-$secondary-400: var(--secondary-400); // hover
-
-// tertiary colors shades
-$tertiary-0: var(--tertiary-0); // toast bg, label
-$tertiary-100: var(--tertiary-100); // buttong bg, toast
-$tertiary-400: var(--tertiary-400); // icon, label, notification bg
-
-// red colors shades
-$red-0: var(--red-0); // toast bg
-$red-100: var(--red-100); // buttong bg, toast
-$red-400: var(--red-400); // icon color, lable, notification
-
-// input border width
-$input-border-width: 0.0625rem;
-
-// Status Colors
-$info-color: var(--primary-400);
-$success-color: var(--secondary-200);
-$warning-color: var(--tertiary-400);
-$danger-color: var(--red-100);
-$body-background-color: var(--primary-0);
-$default-text-color: var(--gray-800);
-$bg-body: var(--primary-0);
-$body-color: var(--gray-800);
-
-/* Fonts */
-$font-default-size: var(--font-default-size);
-$font-size-base: var(--font-size-base); // 14px Assumes the browser default, typically `16px`
-$font-weight-light: var(--font-weight-light);
-$font-weight-normal: var(--font-weight-normal);
-$font-weight-bold: var(--font-weight-bold);
-$font-weight-base: var(--font-weight-normal);
-$line-height-base: calc(var(--font-size-base) * var(--line-height-value));
-$h1-font-size: var(--h1-font-size); // 32px
-$h2-font-size: var(--h2-font-size); // 28px
-$h3-font-size: var(--h3-font-size); // 24px
-$h4-font-size: var(--h4-font-size); // 20px
-$h5-font-size: var(--h5-font-size); // 16px
-$h6-font-size: var(--font-size-base); // 14px
-$font-size-lg: var(--h4-font-size); //20px
-$font-size-md: var(--h5-font-size); // 16px
-$font-size-normal: var(--font-size-base); // 14px
-$font-size-sm: var(--font-size-sm); // 12px
-$font-size-xs: var(--font-size-xs); // 10px
-$p-font-size: var(--font-size-base); //14px
-
-// spaces
-$base-block-space: 0.5rem;
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/_fontFamily.scss b/node_modules/@project-sunbird/sb-styles/assets/fonts/_fontFamily.scss
deleted file mode 100644
index 48f61ddac3fcddb192792c19c3b2dc9ad9f486c4..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/_fontFamily.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-// local fonts
-@forward "./notosans/notosans.css";
-@forward "./notosans-bengali/notosansbengali.css";
-@forward "./notosans-malayalam/notosansmalayalam.css";
-@forward "./notosans-gurmukhi/notosansgurmukhi.css";
-@forward "./notosans-devanagari/notosansdevanagari.css";
-@forward "./notosans-gujarati/notosansgujarati.css";
-@forward "./notosans-telugu/notosanstelugu.css";
-@forward "./notosans-tamil/notosanstamil.css";
-@forward "./notosans-kannada/notosanskannada.css";
-@forward "./notosans-oriya/notosansoriya.css";
-@forward "./noto-nastaliqurdu/notonastaliqurdu.css";
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/NotoNastaliqUrdu-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/NotoNastaliqUrdu-Regular.ttf
deleted file mode 100644
index d57d0c7006f15658f71f1087c3cf923349ab5af4..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/NotoNastaliqUrdu-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/NotoNastaliqUrdu-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/NotoNastaliqUrdu-Regular.woff
deleted file mode 100644
index 963f074ce9ca113a6b91fdff17336aadb2722f3d..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/NotoNastaliqUrdu-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/notonastaliqurdu.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/notonastaliqurdu.css
deleted file mode 100644
index 553cc80835c82f7f3b9820b0a1840037ce1c5b06..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/noto-nastaliqurdu/notonastaliqurdu.css
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * Noto Nastaliq Urdu (Arabic) http://www.google.com/fonts/earlyaccess
- */
- @font-face {
-    font-family: 'Noto Nastaliq Urdu';
-    font-style: normal;
-    font-weight: 400;
-    font-display: swap;
-    src: url(./NotoNastaliqUrdu-Regular.woff) format('woff'),
-         url(./NotoNastaliqUrdu-Regular.ttf) format('truetype');
-}
-
-/* 
- * scale.py 0.75 noto-nastaliqurdu/NotoNastaliqUrdu-Regular.ttf scaled/NotoNastaliqUrdu-Regular.ttf
- * scale.py 0.75 noto-nastaliqurdu/NotoNastaliqUrdu-Regular.woff scaled/NotoNastaliqUrdu-Regular.woff
- */
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.eot
deleted file mode 100644
index a71195b801e7b23a8bc3defb9600e87507eea4fb..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.ttf
deleted file mode 100644
index 5db4e895a9a0f0959f57160e04250a59584b39e5..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.woff
deleted file mode 100644
index 5b50fd745839d83091db61b0d0fb8ee4bfc11d2e..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.woff2
deleted file mode 100644
index 1891986a396005f9e63cc80fb7fcee720a49980f..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.eot
deleted file mode 100644
index ebc430807e2863922b2ece694f97ba2e1b070bbd..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.ttf
deleted file mode 100644
index 418d336a90ef4b514fe9aa193bb97121de08bff2..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.woff
deleted file mode 100644
index c08795e4525874fc495431852bc4c27effab27b3..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.woff2
deleted file mode 100644
index b54d8c906323b471ed80a89e179cf423d196760b..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/NotoSansBengali-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/notosansbengali.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/notosansbengali.css
deleted file mode 100644
index 7e510dc36ce2c6d3d07cffe715c0658d7311ff4f..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-bengali/notosansbengali.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Bengali';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansBengali-Regular.eot);
-  src:
-    url(./NotoSansBengali-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansBengali-Regular.woff2) format('woff2'),
-    url(./NotoSansBengali-Regular.woff) format('woff'),
-    url(./NotoSansBengali-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Bengali';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansBengali-Bold.eot);
-  src:
-    url(./NotoSansBengali-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansBengali-Bold.woff2) format('woff2'),
-    url(./NotoSansBengali-Bold.woff) format('woff'),
-    url(./NotoSansBengali-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.eot
deleted file mode 100644
index 1402a7a03320400bf808084e199aad8b4c471df8..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.ttf
deleted file mode 100644
index 73f9c42a8b31ebda07d2f6dd377b7f46a6204c50..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.woff
deleted file mode 100644
index 80d1eb1e6c2eae9c7a4dda7bc50097cadbe0eb2b..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.woff2
deleted file mode 100644
index 4db409ff21184a4b5b9c81a8a77d20732c48c16c..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.eot
deleted file mode 100644
index d24d1275b59fa700d5c039e1698d24ddba6ac8af..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.ttf
deleted file mode 100644
index 6f73add44b9086182b25d01930274c282c7bc780..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.woff
deleted file mode 100644
index aec6d9cac7b8570469caf930991af6f3565450f2..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.woff2
deleted file mode 100644
index 2eec3db4e4a80ed293da6b1f0a2ffd1100ea2fa7..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/NotoSansDevanagari-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/notosansdevanagari.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/notosansdevanagari.css
deleted file mode 100644
index e1508585e9b880b98a28e994b3fa801483da53ef..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-devanagari/notosansdevanagari.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Devanagari';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansDevanagari-Regular.eot);
-  src:
-    url(./NotoSansDevanagari-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansDevanagari-Regular.woff2) format('woff2'),
-    url(./NotoSansDevanagari-Regular.woff) format('woff'),
-    url(./NotoSansDevanagari-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Devanagari';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansDevanagari-Bold.eot);
-  src:
-    url(./NotoSansDevanagari-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansDevanagari-Bold.woff2) format('woff2'),
-    url(./NotoSansDevanagari-Bold.woff) format('woff'),
-    url(./NotoSansDevanagari-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.eot
deleted file mode 100644
index 75392ca30f0589cc2c5a7153ccda4941b066b19e..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.ttf
deleted file mode 100644
index 8d06ec88091ac5c3825f8248f14881ffcdc98e26..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.woff
deleted file mode 100644
index fbe82aecb04c3a582425cbbfa6a8b04a02dcd65c..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.woff2
deleted file mode 100644
index e159ea8b221116a2911c3ba07bd8d18c7d008e9c..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.eot
deleted file mode 100644
index 75804a140b1553a87d377f03104636fec31a2c4d..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.ttf
deleted file mode 100644
index 162c9e0bb288f712ac2a3fe6eea393cf6c5e28bf..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.woff
deleted file mode 100644
index 4b90b1b5f627ac001a215ddb3247e50d54c191ea..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.woff2
deleted file mode 100644
index 4cf61dda62bcdfd61ac65f679828cf27333bfa48..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/NotoSansGujarati-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/notosansgujarati.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/notosansgujarati.css
deleted file mode 100644
index b9ef9c120dadb721ffc8902708b1eef2da44a745..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gujarati/notosansgujarati.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Gujarati';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansGujarati-Regular.eot);
-  src:
-    url(./NotoSansGujarati-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansGujarati-Regular.woff2) format('woff2'),
-    url(./NotoSansGujarati-Regular.woff) format('woff'),
-    url(./NotoSansGujarati-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Gujarati';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansGujarati-Bold.eot);
-  src:
-    url(./NotoSansGujarati-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansGujarati-Bold.woff2) format('woff2'),
-    url(./NotoSansGujarati-Bold.woff) format('woff'),
-    url(./NotoSansGujarati-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.eot
deleted file mode 100644
index 0094f6fd6bdeea50494e952943c744ee514afda0..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.ttf
deleted file mode 100644
index 7d64851ea7f5ce5b1196b5375be0a53810b20b5a..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.woff
deleted file mode 100644
index 8654cea41d39cd2a7ac53d81c98cc123bd6f2881..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.woff2
deleted file mode 100644
index d33102d3fb9da89f76b96949dabdc8987da6f8a5..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.eot
deleted file mode 100644
index 34ed2bdabead299eca304852f86075727e5e822f..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.ttf
deleted file mode 100644
index 53d342388d37f78223145e95ad4d3f40538cd6ff..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.woff
deleted file mode 100644
index ddd3c5a44503a899ea4c3ab4cc6546d752cbf097..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.woff2
deleted file mode 100644
index 37d2185427129a0c5175297ce5d9d9c89efce280..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/NotoSansGurmukhi-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/notosansgurmukhi.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/notosansgurmukhi.css
deleted file mode 100644
index cc505e3e4efad96ae1f30ed1d7615bca576a53d0..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-gurmukhi/notosansgurmukhi.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Gurmukhi';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansGurmukhi-Regular.eot);
-  src:
-    url(./NotoSansGurmukhi-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansGurmukhi-Regular.woff2) format('woff2'),
-    url(./NotoSansGurmukhi-Regular.woff) format('woff'),
-    url(./NotoSansGurmukhi-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Gurmukhi';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansGurmukhi-Bold.eot);
-  src:
-    url(./NotoSansGurmukhi-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansGurmukhi-Bold.woff2) format('woff2'),
-    url(./NotoSansGurmukhi-Bold.woff) format('woff'),
-    url(./NotoSansGurmukhi-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.eot
deleted file mode 100644
index d409a8f426930da0fb710b2d5303a8a51e4c5b09..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.ttf
deleted file mode 100644
index 382e394c1db46e03f48083ac8b59b4a5689a81de..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.woff
deleted file mode 100644
index 0ad6ea9d863fcf7ff6a52876ce4a01a670ce008e..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.woff2
deleted file mode 100644
index a5ba7ebc9c2c2c6649230995f5497f8c38cb4941..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.eot
deleted file mode 100644
index d5da33b70973d8c8fd6ea1f3cfc94b8948ed8441..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.ttf
deleted file mode 100644
index 1327196dadb34c01232525d5e3a267096060ecab..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.woff
deleted file mode 100644
index f940ab79e6f12829566c1561d6b1f5dbaa7e8d4b..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.woff2
deleted file mode 100644
index 181acd3c64b74186cde1fc758d1cce9fe9a2abe8..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/NotoSansKannada-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/notosanskannada.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/notosanskannada.css
deleted file mode 100644
index 164aec88ff950819ddda1b30733884f09668b3f1..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-kannada/notosanskannada.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Kannada';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansKannada-Regular.eot);
-  src:
-    url(./NotoSansKannada-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansKannada-Regular.woff2) format('woff2'),
-    url(./NotoSansKannada-Regular.woff) format('woff'),
-    url(./NotoSansKannada-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Kannada';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansKannada-Bold.eot);
-  src:
-    url(./NotoSansKannada-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansKannada-Bold.woff2) format('woff2'),
-    url(./NotoSansKannada-Bold.woff) format('woff'),
-    url(./NotoSansKannada-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.eot
deleted file mode 100644
index d3a206420fff96f2300cd5c2b85af59c7c47dada..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.ttf
deleted file mode 100644
index 346bd2103b4118b624878641ce11105be6394599..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.woff
deleted file mode 100644
index 764a96b3e4afe110a7974562211a78472c6594b8..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.woff2
deleted file mode 100644
index 136d7135fad84699c0495231119f88e54bdd0350..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.eot
deleted file mode 100644
index b67a6930815d064b4d60c352821ee664f1992ee2..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.ttf
deleted file mode 100644
index 7b8b1b852d2eba679c0de0b8c6f0a67501524190..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.woff
deleted file mode 100644
index b2c52efa14cb01a11bed49a3a46d35041f689468..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.woff2
deleted file mode 100644
index eb944a63e2cb91a1fcac9e4d9c0b916b89b8d2c7..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/NotoSansMalayalam-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/notosansmalayalam.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/notosansmalayalam.css
deleted file mode 100644
index bb17dbfb28af9c35a839c685ff1f9510c5a9b6f7..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-malayalam/notosansmalayalam.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Malayalam';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansMalayalam-Regular.eot);
-  src:
-    url(./NotoSansMalayalam-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansMalayalam-Regular.woff2) format('woff2'),
-    url(./NotoSansMalayalam-Regular.woff) format('woff'),
-    url(./NotoSansMalayalam-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Malayalam';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansMalayalam-Bold.eot);
-  src:
-    url(./NotoSansMalayalam-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansMalayalam-Bold.woff2) format('woff2'),
-    url(./NotoSansMalayalam-Bold.woff) format('woff'),
-    url(./NotoSansMalayalam-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.eot
deleted file mode 100644
index 2ba55026f31345537ae62a32fb4466c9b8777d51..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.ttf
deleted file mode 100644
index 9420c7d84c3845a067959b3f09cf864fb47535d3..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.woff
deleted file mode 100644
index 26a9e8518a255214ef87a63e3edf1821f402df94..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.woff2
deleted file mode 100644
index bc4e22beeee79b7bcc85746107130bc2bb0ebdc9..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.eot
deleted file mode 100644
index 1e56a150c52339c1f92038bbdd3895b58cfbfccb..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.ttf
deleted file mode 100644
index 0453ab6a606d41f76dcc050a9f443a009ceeb4db..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.woff
deleted file mode 100644
index b8e2834cd76e005831f11344488058cdd28629f4..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.woff2
deleted file mode 100644
index e085402bcc0acc21c772d6ccb3e7fb4bb56f2742..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/NotoSansOriya-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/notosansoriya.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/notosansoriya.css
deleted file mode 100644
index 3b2e7b300a06feb9a04d9109d08e4c738ae3744b..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-oriya/notosansoriya.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Oriya';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansOriya-Regular.eot);
-  src:
-    url(./NotoSansOriya-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansOriya-Regular.woff2) format('woff2'),
-    url(./NotoSansOriya-Regular.woff) format('woff'),
-    url(./NotoSansOriya-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Oriya';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansOriya-Bold.eot);
-  src:
-    url(./NotoSansOriya-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansOriya-Bold.woff2) format('woff2'),
-    url(./NotoSansOriya-Bold.woff) format('woff'),
-    url(./NotoSansOriya-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.eot
deleted file mode 100644
index 51e9f984a715fefc3321e570997926f312515d69..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.ttf
deleted file mode 100644
index a2d64f50323593781a60290cff9975fa64515de0..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.woff
deleted file mode 100644
index a230422316e5837804c7ac06cc41ff8703ae07d4..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.woff2
deleted file mode 100644
index 7b044a11d2365f35855c533d16fa8a4a61d9598f..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.eot
deleted file mode 100644
index cf47f6ddbe73953c3f7e5b89930cc4961d0edc94..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.ttf
deleted file mode 100644
index 7a7d19feb4f33d918ad5db67faa3974134eb3618..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.woff
deleted file mode 100644
index 0875d84979fa9d7919b8220b98f1ea9808e0c841..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.woff2
deleted file mode 100644
index 3a2a059be87c6aff71a38237b1d2635021097ce7..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/NotoSansTamil-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/notosanstamil.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/notosanstamil.css
deleted file mode 100644
index 3711a616d704bfb89c8d9c83990cf4cabc0cb04c..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-tamil/notosanstamil.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Tamil';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansTamil-Regular.eot);
-  src:
-    url(./NotoSansTamil-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansTamil-Regular.woff2) format('woff2'),
-    url(./NotoSansTamil-Regular.woff) format('woff'),
-    url(./NotoSansTamil-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Tamil';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansTamil-Bold.eot);
-  src:
-    url(./NotoSansTamil-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansTamil-Bold.woff2) format('woff2'),
-    url(./NotoSansTamil-Bold.woff) format('woff'),
-    url(./NotoSansTamil-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.eot
deleted file mode 100644
index 1f243bcf77e12a4a3b7cbf48df6497d3445bfb3b..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.ttf
deleted file mode 100644
index 1ec324929c796d9fd7afb7be2156686203c3d38e..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.woff
deleted file mode 100644
index bf7e0284ee8692793a41d356caff691da6cb28e3..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.woff2
deleted file mode 100644
index b1fce26482cd0ffc4867bfc6873657857e067fcc..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Bold.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.eot
deleted file mode 100644
index 79be725c24510ef13e07a28573794c7c93b04508..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.ttf
deleted file mode 100644
index e10039476a3a69e670427ccb0e8307651922c37f..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.woff
deleted file mode 100644
index 3aed35a27e983babb26d6049ee35dc4222833684..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.woff2
deleted file mode 100644
index 652d67d205a8a878ef36bd03328d0b3cde5fc9b8..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/NotoSansTelugu-Regular.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/notosanstelugu.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/notosanstelugu.css
deleted file mode 100644
index 2d3d96405245057a7087a96bc3e3e371ad191ac3..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans-telugu/notosanstelugu.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@font-face {
-  font-family: 'Noto Sans Telugu';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: url(./NotoSansTelugu-Regular.eot);
-  src:
-    url(./NotoSansTelugu-Regular.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansTelugu-Regular.woff2) format('woff2'),
-    url(./NotoSansTelugu-Regular.woff) format('woff'),
-    url(./NotoSansTelugu-Regular.ttf) format('truetype');
-}
-
-@font-face {
-  font-family: 'Noto Sans Telugu';
-  font-style: normal;
-  font-weight: 700;
-  font-display: swap;
-  src: url(./NotoSansTelugu-Bold.eot);
-  src:
-    url(./NotoSansTelugu-Bold.eot?#iefix) format('embedded-opentype'),
-    url(./NotoSansTelugu-Bold.woff2) format('woff2'),
-    url(./NotoSansTelugu-Bold.woff) format('woff'),
-    url(./NotoSansTelugu-Bold.ttf) format('truetype');
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/cyrillic-ext.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/cyrillic-ext.woff2
deleted file mode 100644
index 1d76abd4cda38c17a67f5173eb9ad648cab61c8c..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/cyrillic-ext.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/cyrillic.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/cyrillic.woff2
deleted file mode 100644
index 1809b57742e823b2e10ccc3b575f6c314f0ebb4a..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/cyrillic.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/devanagari.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/devanagari.woff2
deleted file mode 100644
index f228192f296147f3df3b60aca44a812819631e34..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/devanagari.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/greek-ext.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/greek-ext.woff2
deleted file mode 100644
index c0ed67f8e69c51f913880ecb6cddfea6eaaef503..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/greek-ext.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/greek.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/greek.woff2
deleted file mode 100644
index ae50fdd36e6ed769ad22e03ba34e9085ee2d2906..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/greek.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/latin-ext.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/latin-ext.woff2
deleted file mode 100644
index f330caf6dadef7ee58c8341d2812312af1e770e2..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/latin-ext.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/latin.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/latin.woff2
deleted file mode 100644
index 22818e7d4c3314490e1566fe3b3dfeb8ab0b174a..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/latin.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/notosans.css b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/notosans.css
deleted file mode 100644
index fda7690d78a973c4f089787f31e33c310988a16f..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/notosans.css
+++ /dev/null
@@ -1,74 +0,0 @@
-/* cyrillic-ext */
-@font-face {
-  font-family: 'Noto Sans';
-  font-style: normal;
-  font-weight: 400;
-  src: local('Noto Sans'), local('NotoSans'), url(./cyrillic-ext.woff2) format('woff2');
-  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
-}
-
-/* cyrillic */
-@font-face {
-  font-family: 'Noto Sans';
-  font-style: normal;
-  font-weight: 400;
-  src: local('Noto Sans'), local('NotoSans'), url(./cyrillic.woff2) format('woff2');
-  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
-}
-
-/* devanagari */
-@font-face {
-  font-family: 'Noto Sans';
-  font-style: normal;
-  font-weight: 400;
-  src: local('Noto Sans'), local('NotoSans'), url(./devanagari.woff2) format('woff2');
-  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
-}
-
-/* greek-ext */
-@font-face {
-  font-family: 'Noto Sans';
-  font-style: normal;
-  font-weight: 400;
-  src: local('Noto Sans'), local('NotoSans'), url(./greek-ext.woff2) format('woff2');
-  unicode-range: U+1F00-1FFF;
-}
-
-/* greek */
-@font-face {
-  font-family: 'Noto Sans';
-  font-style: normal;
-  font-weight: 400;
-  src: local('Noto Sans'), local('NotoSans'), url(./greek.woff2) format('woff2');
-  unicode-range: U+0370-03FF;
-}
-
-/* vietnamese */
-@font-face {
-  font-family: 'Noto Sans';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: local('Noto Sans'), local('NotoSans'), url(./vietnamese.woff2) format('woff2');
-  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
-}
-
-/* latin-ext */
-@font-face {
-  font-family: 'Noto Sans';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: local('Noto Sans'), local('NotoSans'), url(./latin-ext.woff2) format('woff2');
-  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
-}
-
-/* latin */
-@font-face {
-  font-family: 'Noto Sans';
-  font-style: normal;
-  font-weight: 400;
-  font-display: swap;
-  src: local('Noto Sans'), local('NotoSans'), url(./latin.woff2) format('woff2');
-  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/vietnamese.woff2 b/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/vietnamese.woff2
deleted file mode 100644
index b28836f20376c17636d8fa3fa2fca8e43d5d9fff..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/notosans/vietnamese.woff2 and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.eot b/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.eot
deleted file mode 100644
index 29cba8b9ffde805b69f2e127a5ed8e561a708a45..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.eot and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.svg b/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.svg
deleted file mode 100644
index 614fc3b5ca26a6b0f11bf49c5c6385fa38bb0dea..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.svg
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata>Generated by IcoMoon</metadata>
-<defs>
-<font id="icomoon" horiz-adv-x="1024">
-<font-face units-per-em="1024" ascent="960" descent="-64" />
-<missing-glyph horiz-adv-x="1024" />
-<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
-<glyph unicode="&#xe900;" glyph-name="book" d="M192 832v-768h640v768h-640zM192 896h640c35.346 0 64-28.654 64-64v-768c0-35.346-28.654-64-64-64h-640c-35.346 0-64 28.654-64 64v768c0 35.346 28.654 64 64 64zM416 320c-17.673 0-32 14.327-32 32s14.327 32 32 32h320c17.673 0 32-14.327 32-32s-14.327-32-32-32h-320zM405.333 192c-11.782 0-21.333 14.327-21.333 32s9.551 32 21.333 32h213.333c11.782 0 21.333-14.327 21.333-32s-9.551-32-21.333-32h-213.333zM448 704v-192h256v192h-256zM416 768h320c17.673 0 32-14.327 32-32v-256c0-17.673-14.327-32-32-32h-320c-17.673 0-32 14.327-32 32v256c0 17.673 14.327 32 32 32zM896 768v0c17.673 0 32-14.327 32-32v0c0-17.673-14.327-32-32-32v64zM896 640v0c17.673 0 32-14.327 32-32v0c0-17.673-14.327-32-32-32v64zM896 512v0c17.673 0 32-14.327 32-32v0c0-17.673-14.327-32-32-32v64zM256 832h64v-768h-64z" />
-<glyph unicode="&#xe901;" glyph-name="content" d="M128 192h160c17.673 0 32-14.327 32-32s-14.327-32-32-32h-192c-17.673 0-32 14.327-32 32v576c0 17.673 14.327 32 32 32h832c17.673 0 32-14.327 32-32v-576c0-17.673-14.327-32-32-32h-128c-17.673 0-32 14.327-32 32s14.327 32 32 32h96v512h-768v-512zM748.095 348.095v-116.027c0-92.992-75.076-168.068-168.068-168.068-44.363 0-87.020 17.916-118.586 49.482l-130.53 130.53c-15.356 15.356-14.503 40.951 2.559 55.454 15.356 12.797 37.538 10.238 52.041-3.413l62.279-62.279v304.57c0 22.182 18.769 39.244 40.951 37.538 19.622-1.706 34.125-19.622 34.125-39.244v-118.586c4.266 17.916 20.475 31.566 40.097 29.86 20.475-0.853 34.979-18.769 34.979-39.244v-21.328c4.266 17.916 20.475 31.566 40.097 29.86 20.475-0.853 34.979-18.769 34.979-39.244v-21.328c4.266 17.916 20.475 31.566 40.097 29.86 20.475 0 34.979-17.916 34.979-38.391z" />
-<glyph unicode="&#xe902;" glyph-name="folder" d="M485.053 672h349.713c81.062 0 124.081-48.129 117.237-134.020l-85.808-448c-2.888-15.078-16.077-25.98-31.429-25.98h-738.767c-17.673 0-32 14.327-32 32v640c0 17.673 14.327 32 32 32h295.008c54.665 0 86.188-35.629 94.046-96zM551.008 576h115.439c77.672 0 123.288-45.616 128-128v-192c0-17.673-14.327-32-32-32s-32 14.327-32 32l0.053 190.152c-2.746 47.464-21.13 65.848-64.053 65.848h-115.439c-81.673 0-128 46.327-128 128 0 48.415-10.39 64-32 64h-263.008v-576h680.326l80.344 418.468c3.532 45.661-10.654 61.532-53.903 61.532h-343.503c7.66-22.725 26.183-32 59.744-32z" />
-<glyph unicode="&#xe903;" glyph-name="collection" d="M128 64h768v438.857h-499.2c-21.208 0-38.4 16.374-38.4 36.571v36.571h-230.4v-512zM437.333 568.889h485.333c20.619 0 37.333-15.919 37.333-35.556v-497.778c0-19.637-16.715-35.556-37.333-35.556h-821.333c-20.619 0-37.333 15.919-37.333 35.556v568.889c0 19.637 16.715 35.556 37.333 35.556h298.667c20.619 0 37.333-15.919 37.333-35.556v-35.556zM384 832v-96h-64v128c0 17.673 14.327 32 32 32h512c17.673 0 32-14.327 32-32v-352h-64v320h-448zM320 384h64v-64h-64v64zM448 384h256v-64h-256v64zM448 256h256v-64h-256v64zM320 256h64v-64h-64v64zM256 704v-64h-64v96c0 17.673 14.327 32 32 32h512c17.673 0 32-14.327 32-32v-224h-64v192h-448z" />
-<glyph unicode="&#xe904;" glyph-name="doc" d="M352 448c-17.673 0-32 14.327-32 32s14.327 32 32 32h320c17.673 0 32-14.327 32-32s-14.327-32-32-32h-320zM192 832v-768h640v576c0 106.039-85.961 192-192 192h-448zM128 832c0 35.346 28.654 64 64 64h448c141.385 0 256-114.615 256-256v-576c0-35.346-28.654-64-64-64h-640c-35.346 0-64 28.654-64 64v768zM832 672v-64h-128c-53.019 0-96 42.981-96 96v128h64v-128c0-17.673 14.327-32 32-32h128zM352 320c-17.673 0-32 14.327-32 32s14.327 32 32 32h320c17.673 0 32-14.327 32-32s-14.327-32-32-32h-320zM352 192c-17.673 0-32 14.327-32 32s14.327 32 32 32h192c17.673 0 32-14.327 32-32s-14.327-32-32-32h-192z" />
-<glyph unicode="&#xe905;" glyph-name="mp3" d="M338.745 320h-114.745c-17.673 0-32 14.327-32 32v192c0 17.673 14.327 32 32 32h114.745l246.627 246.627c20.159 20.159 54.627 5.882 54.627-22.627v-704c0-28.509-34.469-42.786-54.627-22.627l-246.627 246.627zM256 512v-128h96c8.487 0 16.626-3.371 22.627-9.373l201.373-201.373v549.49l-201.373-201.373c-6.001-6.001-14.14-9.373-22.627-9.373h-96zM704 288c-17.673 0-32 14.327-32 32s14.327 32 32 32c53.019 0 96 42.981 96 96s-42.981 96-96 96c-17.673 0-32 14.327-32 32s14.327 32 32 32c88.366 0 160-71.634 160-160s-71.634-160-160-160z" />
-<glyph unicode="&#xe906;" glyph-name="open-book" d="M64 768v-640h896v640h-896zM64 832h896c35.346 0 64-28.654 64-64v-640c0-35.346-28.654-64-64-64h-896c-35.346 0-64 28.654-64 64v640c0 35.346 28.654 64 64 64zM480 768h64v-704h-64zM160 640h192c17.673 0 32-14.327 32-32s-14.327-32-32-32h-192c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 640h192c17.673 0 32-14.327 32-32s-14.327-32-32-32h-192c-17.673 0-32 14.327-32 32s14.327 32 32 32zM160 512h192c17.673 0 32-14.327 32-32s-14.327-32-32-32h-192c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 512h192c17.673 0 32-14.327 32-32s-14.327-32-32-32h-192c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 384h128c17.673 0 32-14.327 32-32s-14.327-32-32-32h-128c-17.673 0-32 14.327-32 32s14.327 32 32 32zM160 384h192c17.673 0 32-14.327 32-32s-14.327-32-32-32h-192c-17.673 0-32 14.327-32 32s14.327 32 32 32z" />
-<glyph unicode="&#xe907;" glyph-name="video" d="M192 704v-512.004h704.004v512.004h-704.004zM192 768h704.004c35.346 0 64-28.654 64-64v-512.004c0-35.346-28.654-64-64-64h-704.004c-35.346 0-64 28.654-64 64v512.004c0 35.346 28.654 64 64 64zM448 552.842v-193.867c0-10.604 8.596-19.2 19.2-19.2 2.981 0 5.92 0.694 8.587 2.027l193.867 96.934c9.484 4.742 13.329 16.275 8.587 25.76-1.858 3.716-4.871 6.729-8.587 8.587l-193.867 96.934c-9.484 4.742-21.017 0.898-25.76-8.587-1.333-2.666-2.027-5.606-2.027-8.587z" />
-<glyph unicode="&#xe908;" glyph-name="comment" d="M537.975 224.61c185.148 8.728 326.025 109.109 326.025 223.39 0 120.328-155.508 224-352 224s-352-103.672-352-224c0-79.719 68.836-155.040 180.62-195.289 27.244-9.81 26.401-42.853 8.108-56.351-8.861-48.129-33.258-90.55-72.403-126.739 68.108 21.548 151.999 68.113 233.505 135.447 4.112 10.482 13.582 18.857 28.144 19.543zM285.399 205.98c-115.686 51.652-189.399 140.954-189.399 242.020 0 162.442 188.338 288 416 288s416-125.558 416-288c0-150.804-162.825-270.759-370.239-286.296-100.419-84.511-206.121-140.474-289.515-160.794-40.23-9.803-70.979-10.508-90.14 2.822-37.719 26.241-17.853 60.669 21.484 86.894 48.915 32.61 76.946 70.683 85.808 115.355zM384 416c-17.673 0-32 14.327-32 32s14.327 32 32 32h256c17.673 0 32-14.327 32-32s-14.327-32-32-32h-256zM480 576c0 17.673 14.327 32 32 32s32-14.327 32-32v-256c0-17.673-14.327-32-32-32s-32 14.327-32 32v256z" />
-<glyph unicode="&#xe909;" glyph-name="preview" d="M512 224c146.517 0 275.865 90.345 328.015 224-52.15 133.655-181.498 224-328.015 224s-275.865-90.345-328.015-224c52.15-133.655 181.498-224 328.015-224zM119.679 458.664c58.274 164.872 214.605 277.336 392.321 277.336s334.047-112.464 392.321-277.336l3.769-10.664-3.769-10.664c-58.274-164.872-214.605-277.336-392.321-277.336s-334.047 112.464-392.321 277.336l-3.769 10.664 3.769 10.664zM394.271 498.323c8.789-11.158 22.422-18.323 37.729-18.323 26.51 0 48 21.49 48 48 0 15.306-7.164 28.939-18.323 37.729 15.447 6.611 32.457 10.271 50.323 10.271 70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128 0 17.865 3.66 34.876 10.271 50.323z" />
-<glyph unicode="&#xe90a;" glyph-name="reviewer" d="M384 480c-88.366 0-160 71.634-160 160s71.634 160 160 160c88.366 0 160-71.634 160-160s-71.634-160-160-160zM384 544c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM672 192c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 123.712-100.288 224-224 224s-224-100.288-224-224c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 159.058 128.942 288 288 288s288-128.942 288-288zM809.373 662.627c12.497 12.497 32.758 12.497 45.255 0s12.497-32.758 0-45.255l-128-128c-12.497-12.497-32.758-12.497-45.255 0l-64 64c-12.497 12.497-12.497 32.758 0 45.255s32.758 12.497 45.255 0l41.373-41.373 105.373 105.373zM809.373 534.627c12.497 12.497 32.758 12.497 45.255 0s12.497-32.758 0-45.255l-128-128c-12.497-12.497-32.758-12.497-45.255 0l-64 64c-12.497 12.497-12.497 32.758 0 45.255s32.758 12.497 45.255 0l41.373-41.373 105.373 105.373z" />
-<glyph unicode="&#xe90b;" glyph-name="send" d="M516.269 431.464c14.182-1.765 25.474-12.72 27.668-26.842l32.627-209.995 226.307 506.167-499.743-242.798 213.142-26.532zM188.047 407.828c-31.614 3.935-38.686 46.616-10.031 60.538l675.97 328.417c26.872 13.056 55.391-14.57 43.197-41.844l-306.4-685.307c-13.014-29.107-55.939-23.357-60.834 8.148l-45.547 293.157-296.355 36.891z" />
-<glyph unicode="&#xe90c;" glyph-name="refresh" d="M451.527 256.027c-1.438 2.301-3.278 3.681-5.838 4.392-2.41 0.669-4.747 0.345-7.095-0.948l-6.64-4.108c-1.319-0.659-1.846-1.528-1.956-3.732-0.169-3.381 0.548-6.249 2.112-8.753l54.95-85.685-19.492 4.873c-3.046 0.778-3.046 0.778-5.863 1.564-2.54 0.709-2.54 0.709-5.396 1.438-19.996 5.127-39.105 12.309-57.316 21.543-18.181 9.219-35.092 20.108-50.724 32.665s-29.853 26.65-42.66 42.275c-12.779 15.59-24.023 32.329-33.835 50.409-17.405 34.298-27.779 70.545-31.107 108.689-3.331 38.182 0.899 75.746 12.682 112.631 11.791 36.912 30.392 70.008 55.77 99.232 25.323 29.159 55.141 52.707 89.288 70.543 3.707 2.022 6.109 4.904 7.467 8.977 1.313 3.94 0.997 7.734-0.931 11.601-2.022 3.707-4.904 6.109-8.977 7.467-3.886 1.295-7.32 0.997-11.106-1.062-19.444-9.722-37.415-21.136-53.924-34.246-16.536-13.131-31.609-27.718-45.225-43.766-13.639-16.074-25.692-33.242-36.165-51.507-10.422-18.177-18.784-37.447-25.142-57.983-6.795-20.385-11.281-40.997-13.463-61.848-2.191-20.937-2.434-41.745-0.731-62.428 1.701-20.65 5.466-41.057 11.3-61.231 5.838-20.188 13.622-39.77 23.324-58.69 10.716-20.458 23.127-39.317 37.235-56.588 14.088-17.246 29.873-32.788 47.363-46.634 17.531-13.879 36.277-25.929 56.245-36.157 19.878-10.182 40.722-17.937 66.29-25.379-1.076 0.979-1.076 0.979-4.143 1.588h34.194l-89.682-46.501c-1.944-0.972-3.083-2.382-3.732-4.72-0.645-2.324-0.362-4.253 1.652-7.774l1.538-4.554c1.513-2.42 3.229-3.806 5.335-4.464 1.981-0.619 3.842-0.445 5.921 0.594l111.475 57.607 6.257 2.985c1.537 1.153 2.854 2.376 3.963 3.669 0.711 0.83 1.12 1.595 1.309 2.351 0.263 1.051 0.331 2.217 0.184 3.54-0.088 0.788-0.409 1.568-1.326 2.812l-4.485 6.728-68.899 108.587zM533.695 156.286l4.23-6.366c2.329-3.105 3.751-6.56 4.162-10.257 0.351-3.163 0.171-6.232-0.563-9.168-0.808-3.231-2.393-6.203-4.672-8.862-1.882-2.195-4.053-4.211-7.721-6.802l-7.38-3.689-111.475-57.607c-5.799-2.9-11.912-3.473-17.904-1.6-5.868 1.834-10.63 5.68-14.805 12.66l-1.538 4.554c-3.674 5.878-4.636 12.421-2.79 19.068 1.842 6.632 5.936 11.701 11.861 14.662l42.39 21.98c-16.938 5.189-33.301 11.825-49.082 19.909-20.897 10.703-40.523 23.32-58.873 37.847-18.391 14.56-34.998 30.911-49.815 49.048-14.796 18.112-27.8 37.874-39.043 59.339-10.2 19.889-18.363 40.424-24.485 61.599-6.127 21.189-10.086 42.642-11.873 64.352-1.785 21.676-1.53 43.477 0.764 65.397 2.303 22.008 7.036 43.754 14.142 65.067 6.651 21.488 15.482 41.837 26.489 61.036 10.957 19.111 23.571 37.076 37.84 53.893 14.291 16.843 30.116 32.157 47.467 45.937 17.379 13.801 36.285 25.809 56.457 35.889 7.43 4.053 15.458 4.751 23.533 2.059 7.888-2.629 13.976-7.702 18.066-15.211 3.921-7.841 4.601-16.007 1.928-24.028-2.629-7.888-7.702-13.976-15.085-18.001-32.505-16.98-60.744-39.28-84.758-66.933-23.958-27.588-41.487-58.778-52.62-93.628-11.141-34.877-15.133-70.321-11.986-106.392 3.151-36.11 12.959-70.378 29.339-102.663 9.229-17.001 19.911-32.903 32.050-47.712 12.11-14.774 25.546-28.089 40.314-39.952 14.767-11.862 30.747-22.153 47.949-30.874 14.546-7.376 29.7-13.363 45.439-17.956l-33.007 51.469c-3.37 5.392-4.895 11.493-4.566 18.079 0.388 7.763 4.097 13.871 10.092 16.829l6.334 3.946c6.269 3.483 12.901 4.404 19.462 2.581 6.411-1.781 11.548-5.633 15.050-11.239l69.587-111.234-0.901 2.974zM541.255 733.24l68.814-107.71c1.438-2.301 3.278-3.681 5.838-4.392 2.324-0.645 4.253-0.362 6.348 0.948l6.64 4.108c1.449 0.724 2.124 1.776 2.36 4.127 0.326 3.256-0.278 5.973-1.768 8.358l-54.547 85.056 18.885-4.197c4.3-0.955 8.852-1.794 13.656-2.515 5.431-0.815 10.613-2.042 15-3.525 39.991-10.254 75.676-28.225 106.979-53.883 31.235-25.603 56.339-56.598 75.292-92.967 17.92-34.816 28.43-71.218 31.506-109.152 3.075-37.919-1.283-75.341-13.060-112.208-11.778-36.87-29.976-69.934-54.57-99.14-24.592-29.203-54.065-52.782-88.246-70.636-3.707-2.022-6.109-4.904-7.467-8.977-1.313-3.94-0.997-7.734 1.062-11.853 1.319-2.638 3.138-4.615 5.567-6.073 2.526-1.516 4.978-2.228 7.484-2.228 1.269 0 2.402 0.151 3.416 0.441 1.243 0.355 2.658 0.921 4.158 1.671 18.954 9.72 36.561 21.134 52.83 34.247 16.302 13.139 31.138 27.61 44.515 43.42 13.364 15.793 25.15 32.926 35.363 51.406 10.201 18.459 18.459 37.89 24.83 58.466 6.795 20.385 11.281 40.997 13.463 61.848 2.191 20.937 2.434 41.745 0.731 62.428-1.701 20.65-5.466 41.057-11.3 61.231-5.838 20.188-13.622 39.77-23.356 58.752-10.24 20.48-22.379 39.294-36.456 56.527-14.113 17.276-29.678 32.841-46.701 46.703-16.987 13.832-35.431 25.724-55.343 35.68-19.947 9.974-40.869 17.88-63.242 23.862-2.747 0.916-5.619 1.72-8.615 2.411-3.016 0.696-6.158 1.278-9.426 1.745l-25.269 3.61 81.972 40.946c2.622 1.639 4.555 3.894 5.91 6.942 0.931 2.095 0.846 3.533-0.927 6.67l-1.538 4.554c-1.403 2.245-3.314 3.629-6.107 4.364-2.907 0.765-5.279 0.562-7.392-0.494l-111.475-57.607-6.257-2.985c-1.537-1.153-2.854-2.376-3.963-3.669-0.711-0.83-1.12-1.595-1.309-2.351-0.263-1.051-0.331-2.217-0.184-3.54 0.088-0.788 0.409-1.568 1.823-3.669l3.111-6.221 0.962-0.527zM870.356 525.969c6.127-21.189 10.086-42.642 11.873-64.352 1.785-21.676 1.53-43.477-0.764-65.397-2.303-22.008-7.036-43.754-14.142-65.067-6.639-21.449-15.324-41.885-26.054-61.301-10.718-19.395-23.101-37.395-37.147-53.994-14.032-16.583-29.594-31.763-46.682-45.535-17.12-13.798-35.643-25.806-55.633-36.057-2.414-1.207-4.737-2.136-6.982-2.778-2.474-0.707-5.079-1.054-7.797-1.054-5.467 0-10.74 1.531-15.689 4.5-5.046 3.027-8.958 7.28-11.626 12.615-3.921 7.841-4.601 16.007-1.928 24.028 2.629 7.888 7.702 13.976 15.085 18.001 32.472 16.963 60.308 39.232 83.557 66.84 23.247 27.606 40.431 58.828 51.577 93.72 11.147 34.895 15.261 70.231 12.356 106.067-2.904 35.821-12.826 70.183-29.772 103.107-17.943 34.431-41.677 63.736-71.24 87.968-29.495 24.177-63.080 41.090-101.372 50.929-2.962 0.987-6.055 1.796-9.282 2.426l34.263-53.427c3.444-5.51 4.834-11.764 4.162-18.475-0.762-7.616-4.571-13.541-10.436-16.433l-5.98-3.738c-5.878-3.674-12.421-4.636-19.068-2.79-6.411 1.781-11.548 5.633-15.050 11.239l-68.772 107.643-1.16 0.727-2.985 6.257c-2.329 3.105-3.751 6.56-4.162 10.257-0.351 3.163-0.171 6.232 0.563 9.168 0.808 3.231 2.393 6.203 4.672 8.862 1.882 2.195 4.053 4.211 7.721 6.802l7.38 3.689 111.475 57.607c5.766 2.883 12.115 3.427 18.677 1.701 6.676-1.757 11.991-5.606 16.276-12.76l1.538-4.554c3.914-6.263 4.328-13.297 1.272-20.172-2.632-5.922-6.679-10.644-12.691-14.359l-40.072-20.036c22.291-6.069 43.625-14.196 63.993-24.381 20.953-10.477 40.383-23.004 58.28-37.577 17.861-14.544 34.19-30.873 48.982-48.98 14.819-18.14 27.591-37.935 38.314-59.375 10.191-19.878 18.348-40.401 24.467-61.563zM527.061 151.863l4.485-6.728c1.495-1.993 2.367-4.111 2.616-6.354s0.125-4.361-0.374-6.354c-0.498-1.993-1.495-3.862-2.99-5.606s-3.239-3.364-5.233-4.859l-7.475-3.738-111.38-57.559c-3.987-1.993-7.974-2.367-11.96-1.121s-7.226 3.862-9.718 7.849l-2.243 5.98c-2.492 3.987-3.115 8.223-1.869 12.708s3.862 7.724 7.849 9.718l60.549 31.396h-1.495c-0.498 0-0.997 0.249-1.495 0.748-22.426 5.482-43.854 13.455-64.287 23.921s-39.618 22.799-57.559 37.002c-17.941 14.203-34.137 30.15-48.589 47.841s-27.16 37.002-38.123 57.933c-9.967 19.436-17.94 39.494-23.921 60.175s-9.842 41.612-11.587 62.792c-1.744 21.18-1.495 42.484 0.748 63.913s6.852 42.608 13.829 63.539c6.479 20.931 15.075 40.74 25.789 59.428s23.048 36.255 37.002 52.7c13.954 16.445 29.402 31.396 46.346 44.851s35.382 25.166 55.316 35.133c5.482 2.99 11.213 3.488 17.193 1.495s10.465-5.731 13.455-11.213c2.99-5.98 3.488-11.96 1.495-17.94s-5.731-10.465-11.213-13.455c-33.389-17.442-62.418-40.366-87.086-68.772s-42.733-60.549-54.195-96.43c-11.462-35.881-15.573-72.385-12.334-109.511s13.331-72.385 30.274-105.774c9.469-17.442 20.432-33.763 32.891-48.962s26.288-28.904 41.487-41.114c15.2-12.21 31.645-22.799 49.336-31.77s36.255-15.947 55.69-20.931c1.993-0.498 3.862-0.997 5.606-1.495s3.613-0.997 5.606-1.495l-44.104 68.772c-2.492 3.987-3.613 8.472-3.364 13.455s2.367 8.472 6.354 10.465l5.98 3.738c4.485 2.492 8.97 3.115 13.455 1.869s7.974-3.862 10.465-7.849l68.772-107.643v-0.748zM838.776 583.929c9.967-19.436 17.94-39.494 23.921-60.175s9.842-41.612 11.587-62.792c1.744-21.18 1.495-42.484-0.748-63.913s-6.852-42.608-13.829-63.539c-6.479-20.931-14.95-40.864-25.416-59.801s-22.55-36.504-36.255-52.7c-13.705-16.196-28.904-31.022-45.599-44.477s-34.76-25.166-54.195-35.133c-1.993-0.997-3.862-1.744-5.606-2.243s-3.613-0.748-5.606-0.748c-3.987 0-7.849 1.121-11.587 3.364s-6.603 5.357-8.596 9.344c-2.99 5.98-3.488 11.96-1.495 17.94s5.731 10.465 11.213 13.455c33.389 17.442 62.044 40.366 85.965 68.772s41.612 60.549 53.074 96.43c11.462 35.881 15.698 72.26 12.708 109.138s-13.206 72.26-30.648 106.148c-18.439 35.383-42.858 65.532-73.257 90.45s-65.034 42.359-103.905 52.326c-4.485 1.495-9.219 2.616-14.203 3.364s-9.718 1.62-14.203 2.616l44.104-68.772c2.492-3.987 3.488-8.472 2.99-13.455s-2.741-8.472-6.728-10.465l-5.98-3.738c-3.987-2.492-8.223-3.115-12.708-1.869s-7.974 3.862-10.465 7.849l-68.772 107.643c0 0-0.249 0-0.748 0l-3.738 7.475c-1.495 1.993-2.367 4.111-2.616 6.354s-0.125 4.361 0.374 6.354c0.498 1.993 1.495 3.862 2.99 5.606s3.239 3.364 5.233 4.859l7.475 3.738 111.38 57.559c3.987 1.993 8.347 2.367 13.082 1.121s8.347-3.862 10.839-7.849l2.243-5.98c2.492-3.987 2.741-8.223 0.748-12.708s-4.983-7.974-8.97-10.465l-59.801-29.901c3.488-0.498 6.852-1.121 10.091-1.869s6.354-1.62 9.344-2.616c22.426-5.98 43.854-14.078 64.287-24.294s39.369-22.425 56.811-36.628c17.442-14.203 33.389-30.15 47.841-47.841s26.911-37.002 37.376-57.933z" />
-</font></defs></svg>
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.ttf b/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.ttf
deleted file mode 100644
index 8dce0955da137aa0422ae357dd4da97e35bb9cc3..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.ttf and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.woff b/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.woff
deleted file mode 100644
index 0882358b4944b6d13cf8cf17cbdbce0443eaac55..0000000000000000000000000000000000000000
Binary files a/node_modules/@project-sunbird/sb-styles/assets/fonts/sb-icons/icomoon.woff and /dev/null differ
diff --git a/node_modules/@project-sunbird/sb-styles/assets/mixins/_border.scss b/node_modules/@project-sunbird/sb-styles/assets/mixins/_border.scss
deleted file mode 100644
index 58cf8844d5967f33129178117ed00d4419b93385..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/mixins/_border.scss
+++ /dev/null
@@ -1,38 +0,0 @@
-// Set basic variables
-$border-width:1px;
-$border-color: #CCCCCC;
-//@include border(border,$border-width,$border-color);
-
-@mixin border($var-direction: "border", $var-width: $border-width, $var-color: $border-color) {
-    @if $var-direction == 'border'{
-        border: $var-width solid $var-color;
-    }
-    @if $var-direction == 'border-bottom'{
-        border-bottom: $var-width solid $var-color;
-    }
-    @if $var-direction == 'border-top'{
-        border-top: $var-width solid $var-color;
-    }
-    @if $var-direction == 'border-right'{
-        border-right: $var-width solid $var-color;
-    }
-    @if $var-direction == 'border-left'{
-        border-left: $var-width solid $var-color;
-    }
-    @if $var-direction == 'border-tb'{
-        border-bottom: $var-width solid $var-color;
-        border-top:    $var-width solid $var-color;
-    }
-    @if $var-direction == 'border-lr'{
-        border-left: $var-width solid $var-color;
-        border-right: $var-width solid $var-color;
-    }
-    @if $var-direction == 'border-no-top'{
-        border: $var-width solid $var-color;
-        border-top: none;
-    }
-    @if $var-direction == 'border-no-bottom'{
-        border:        $var-width solid $var-color;
-        border-bottom: none;
-    }
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/mixins/_button.scss b/node_modules/@project-sunbird/sb-styles/assets/mixins/_button.scss
deleted file mode 100644
index 4047ab88001c06eb988f1eb0c4275d00ef716ece..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/mixins/_button.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-@mixin btn-theme($btn-color) {
-	border-color: $btn-color;
-	background-color: $btn-color;
-	color: var(--white);
-}
-
-@mixin btn-theme-bgwhite($btn-color) {
-	//border-color: darken($btn-color, 2%);
-	background-color: var(--white);
-	color: $btn-color;
-}
-
-@mixin btn-theme-links($btn-color) {
-	color:($btn-color);
-}
-
-@mixin btn-theme-links($btn-color) {
-	color:($btn-color);
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/mixins/_functions.scss b/node_modules/@project-sunbird/sb-styles/assets/mixins/_functions.scss
deleted file mode 100644
index e6cd7a94e5045855d63981a2882360fbe0cb0bcb..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/mixins/_functions.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-//rem calculator
-@use 'sass:math';
-@use 'sass:meta';
-@use 'sass:list';
-
-// @function calculateRem($size) {
-//     //$remSize: ($size / 16px);
-//     $remSize: math.div($size, 16px);
-//     @return #{$remSize}rem;
-// }
-// @function calculateEm($size) {
-//     //$emSize: ($size / 16px);
-//     $remSize: math.div($size, 16px);
-//     @return #{$emSize}em;
-// }
-// @mixin fontSize($size) {
-//     font-size: $size; //Fallback in px
-//     font-size: calculateRem($size);
-// }
-
-
-// Private polyfill for the `math.div` function from Sass to be used until we can update the
-// minimum required Sass version to 1.34.0 or above.
-// TODO(crisbeto): replace with `math.div` eventually.
-@function calculateRem($size) {
-  @if (meta.function-exists('div', 'math')) {
-        $remSize: math.div($size, 16px);
-        @return #{$remSize}rem;
-  }
-  @else {
-    $remSize: ($size / 16px);
-    @return #{$remSize}rem;
-  }
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/mixins/_label.scss b/node_modules/@project-sunbird/sb-styles/assets/mixins/_label.scss
deleted file mode 100644
index 7a8f660ee4890c28d93fe0457cfe23fda61e6a70..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/mixins/_label.scss
+++ /dev/null
@@ -1,10 +0,0 @@
-@mixin label-theme($label-color) {
-	border-color:($label-color);
-	background-color: $label-color;
-}
-
-@mixin label-theme-bgwhite($label-color) {
-	//border-color: darken($label-color, 2%);
-	background-color: var(--white);
-	color:($label-color);
-}
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/assets/mixins/_media-queries.scss b/node_modules/@project-sunbird/sb-styles/assets/mixins/_media-queries.scss
deleted file mode 100644
index 0e1244356951f948d49a65500af5cd35e07a1e6a..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/mixins/_media-queries.scss
+++ /dev/null
@@ -1,107 +0,0 @@
-//
-//  MEDIA QUERIES
-//––––––––––––––––––––––––––––––––––––––––––––––––––
-
-// A map of breakpoints.
-$breakpoints: (
-  xs: 576px,
-  sm: 768px,
-  md: 992px,
-  lg: 1280px,
-  xl: 1440px,
-  xxl: 1600px,
-  xxxl: 1920px
-);
-
-
-//
-//  RESPOND ABOVE
-//––––––––––––––––––––––––––––––––––––––––––––––––––
-
-// @include respond-above(sm) {}
-@mixin respond-above($breakpoint) {
-
-  // If the breakpoint exists in the map.
-  @if map-has-key($breakpoints, $breakpoint) {
-
-    // Get the breakpoint value.
-    $breakpoint-value: map-get($breakpoints, $breakpoint);
-
-    // Write the media query.
-    @media (min-width: $breakpoint-value) {
-      @content;
-    }
-  
-  // If the breakpoint doesn't exist in the map.
-  } @else {
-
-    // Log a warning.
-    @warn 'Invalid breakpoint: #{$breakpoint}.';
-  }
-}
-
-
-//
-//  RESPOND BELOW
-//––––––––––––––––––––––––––––––––––––––––––––––––––
-
-// @include respond-below(sm) {}
-@mixin respond-below($breakpoint) {
-
-  // If the breakpoint exists in the map.
-  @if map-has-key($breakpoints, $breakpoint) {
-
-    // Get the breakpoint value.
-    $breakpoint-value: map-get($breakpoints, $breakpoint);
-
-    // Write the media query.
-    @media (max-width: ($breakpoint-value - 1)) {
-      @content;
-    }
-  
-  // If the breakpoint doesn't exist in the map.
-  } @else {
-
-    // Log a warning.
-    @warn 'Invalid breakpoint: #{$breakpoint}.';
-  }
-}
-
-
-//
-//  RESPOND BETWEEN
-//––––––––––––––––––––––––––––––––––––––––––––––––––
-
-// @include respond-between(sm, md) {}
-@mixin respond-between($lower, $upper) {
-
-  // If both the lower and upper breakpoints exist in the map.
-  @if map-has-key($breakpoints, $lower) and map-has-key($breakpoints, $upper) {
-
-    // Get the lower and upper breakpoints.
-    $lower-breakpoint: map-get($breakpoints, $lower);
-    $upper-breakpoint: map-get($breakpoints, $upper);
-
-    // Write the media query.
-    @media (min-width: $lower-breakpoint) and (max-width: ($upper-breakpoint - 1)) {
-      @content;
-    }
-  
-  // If one or both of the breakpoints don't exist.
-  } @else {
-
-    // If lower breakpoint is invalid.
-    @if (map-has-key($breakpoints, $lower) == false) {
-
-      // Log a warning.
-      @warn 'Your lower breakpoint was invalid: #{$lower}.';
-    }
-
-    // If upper breakpoint is invalid.
-    @if (map-has-key($breakpoints, $upper) == false) {
-
-      // Log a warning.
-      @warn 'Your upper breakpoint was invalid: #{$upper}.';
-    }
-  }
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/mixins/_mixins.scss b/node_modules/@project-sunbird/sb-styles/assets/mixins/_mixins.scss
deleted file mode 100644
index 2a492c37da58b7a26ea202db181d4b21aa717ead..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/mixins/_mixins.scss
+++ /dev/null
@@ -1,157 +0,0 @@
-@forward "functions";
-@forward "media-queries";
-@forward "radius-shadow-gradient";
-@forward "button";
-@forward "label";
-@forward "border";
-
-@mixin trans($val...) {
-	-webkit-transition: $val;
-	-moz-transition: $val;
-	-o-transition: $val;
-	transition: $val;
-}
-
-$app-direction: multi;
-@mixin multi-dir() {
-  @if $app-direction == multi {
-    $root: #{&};
-    @at-root [dir="ltr"],
-      [dir="rtl"] {
-      #{$root} {
-        @content;
-      }
-    }
-  } @else {
-    @content;
-  }
-}
-@mixin rtl() {
-  @if $app-direction == multi {
-    $root: #{&};
-    @at-root [dir="rtl"] {
-      #{$root} {
-        @content;
-      }
-    }
-  } @else if $app-direction == rtl {
-    @content;
-  }
-}
-
-@mixin ltr() {
-  @if $app-direction == multi {
-    $root: #{&};
-    @at-root [dir="ltr"] {
-      #{$root} {
-        @content;
-      }
-    }
-  } @else if $app-direction == ltr {
-    @content;
-  }
-}
-// Add property horizontal
-// @param {string} $start
-// @param {string} $end
-// ----------------------------------------------------------
-@mixin property-horizontal($prop, $start, $end: $start) {
-  @if $start == $end {
-    @include multi-dir() {
-      #{$prop}-left: $start;
-      #{$prop}-right: $end;
-    }
-  } @else {
-    @include ltr() {
-      #{$prop}-left: $start;
-      #{$prop}-right: $end;
-    }
-    @include rtl() {
-      #{$prop}-left: $end;
-      #{$prop}-right: $start;
-    }
-  }
-}
-
-// Add property for all directions
-// @param {string} $prop
-// @param {string} $top
-// @param {string} $end
-// @param {string} $bottom
-// @param {string} $start
-// @param {boolean} $content include content or use default
-// ----------------------------------------------------------
-@mixin property($prop, $top, $end: $top, $bottom: $top, $start: $end) {
-  @if $top == $end and $top == $bottom and $top == $start {
-    @include multi-dir() {
-      #{$prop}: $top;
-    }
-  } @else if
-    $top ==
-    $bottom and
-    $end ==
-    $start and
-    $top !=
-    null and
-    $end !=
-    null
-  {
-    @include multi-dir() {
-      #{$prop}: $top $end;
-    }
-  } @else if
-    $end ==
-    $start and
-    $top !=
-    null and
-    $end !=
-    null and
-    $bottom !=
-    null
-  {
-    @include multi-dir() {
-      #{$prop}: $top $end $bottom;
-    }
-  } @else if
-    $top !=
-    null and
-    $end !=
-    null and
-    $bottom !=
-    null and
-    $start !=
-    null
-  {
-    @include ltr() {
-      #{$prop}: $top $end $bottom $start;
-    }
-    @include rtl() {
-      #{$prop}: $top $start $bottom $end;
-    }
-  } @else {
-    @include property-horizontal($prop, $start, $end);
-    @include multi-dir() {
-      #{$prop}-top: $top;
-      #{$prop}-bottom: $bottom;
-    }
-  }
-}
-
-@mixin margin($top, $end: $top, $bottom: $top, $start: $end) {
-  @include property(margin, $top, $end, $bottom, $start);
-}
-
-@mixin margin-horizontal($start, $end: $start) {
-  @include property-horizontal(margin, $start, $end);
-}
-
-@mixin padding($top, $end: $top, $bottom: $top, $start: $end) {
-  @include property(padding, $top, $end, $bottom, $start);
-}
-@mixin clearfix {
-  &::after {
-    clear: both;
-    content: "";
-    display: block;
-  }
-}
diff --git a/node_modules/@project-sunbird/sb-styles/assets/mixins/_radius-shadow-gradient.scss b/node_modules/@project-sunbird/sb-styles/assets/mixins/_radius-shadow-gradient.scss
deleted file mode 100644
index c9bf081c7a5469989314c8ad06b6848f48e732e4..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/mixins/_radius-shadow-gradient.scss
+++ /dev/null
@@ -1,42 +0,0 @@
-//Cross browser CSS3 mixins
-
-@mixin box-shadow($left, $top, $radius, $color) {
-	box-shadow: $left $top $radius $color;
-	-webkit-box-shadow: $left $top $radius $color;
-	-moz-box-shadow: $left $top $radius $color;
-}
-
-@mixin transition($property, $duration, $easing: linear) {
-	transition: $property $duration $easing;
-	-webkit-transition: $property $duration $easing;
-	-moz-transition: $property $duration $easing;
-}
-
-@mixin border-radius($radius) {
-	border-radius: $radius;
-	-webkit-border-radius: $radius;
-	-moz-border-radius: $radius;
-}
-
-@mixin border-radii($topleft, $topright, $bottomright, $bottomleft) {
-	border-top-left-radius: $topleft;
-	border-top-right-radius: $topright;
-	border-bottom-right-radius: $bottomright;
-	border-bottom-left-radius: $bottomleft;
-	-webkit-border-top-left-radius: $topleft;
-	-webkit-border-top-right-radius: $topright;
-	-webkit-border-bottom-right-radius: $bottomright;
-	-webkit-border-bottom-left-radius: $bottomleft;
-	-moz-border-radius-topleft: $topleft;
-	-moz-border-radius-topright: $topright;
-	-moz-border-radius-bottomright: $bottomright;
-	-moz-border-radius-bottomleft: $bottomleft;
-}
-
-@mixin gradient($color1, $color2) {
-	background-color: $color1;
-	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#{$color1}, endColorstr=#{$color2});
-	background-image: -moz-linear-gradient(center top, $color1, $color2);
-	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from($color1), to($color2));
-}
-
diff --git a/node_modules/@project-sunbird/sb-styles/assets/styles.scss b/node_modules/@project-sunbird/sb-styles/assets/styles.scss
deleted file mode 100644
index 42f3b17f46c14a0c0ddb8bf21ae32049ca7d927f..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/assets/styles.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-// base scss partials
-@use "./fonts/fontFamily" as *; // fonts
-@use "./varIndex" as *; // variables
-@use "./mixins/mixins" as *;
-@use "./icons" as *; // icons
-@use "./reset" as *; // reset styles
-@use "./colors" as *; // global color related styles
-@use "./sizing" as *; // width heights etc
-@use "./typography" as *; // font styles
-@use "./displays" as *; // visibility
-@use "./positions" as *; 
-@use "./margins" as *; // global margin
-@use "./paddings" as *; // global padding
-@use "./overflows" as *; 
-@use "./flexbox" as *; // common flexbox styles
-@use "./borders" as *; // custom border styles
-@use "./box-shadows" as *; 
-
-//Components
-@use "./buttons" as *;
\ No newline at end of file
diff --git a/node_modules/@project-sunbird/sb-styles/package.json b/node_modules/@project-sunbird/sb-styles/package.json
deleted file mode 100644
index 9034bc5e9a5d25455ea4c6bce3f0641d31085400..0000000000000000000000000000000000000000
--- a/node_modules/@project-sunbird/sb-styles/package.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
-  "_args": [
-    [
-      "@project-sunbird/sb-styles@0.0.14",
-      "/Users/bharathkumar/pod3/sb-themes"
-    ]
-  ],
-  "_from": "@project-sunbird/sb-styles@0.0.14",
-  "_id": "@project-sunbird/sb-styles@0.0.14",
-  "_inBundle": false,
-  "_integrity": "sha512-pq4RqXPoqcTyncLz64gHu0AFVgl4KoL3yr+ocgdO4n26BkQZBgQG0xtuYqscUPPWVBg/BS4TCsjzMO+ifunRaA==",
-  "_location": "/@project-sunbird/sb-styles",
-  "_phantomChildren": {},
-  "_requested": {
-    "type": "version",
-    "registry": true,
-    "raw": "@project-sunbird/sb-styles@0.0.14",
-    "name": "@project-sunbird/sb-styles",
-    "escapedName": "@project-sunbird%2fsb-styles",
-    "scope": "@project-sunbird",
-    "rawSpec": "0.0.14",
-    "saveSpec": null,
-    "fetchSpec": "0.0.14"
-  },
-  "_requiredBy": [
-    "/"
-  ],
-  "_resolved": "https://registry.npmjs.org/@project-sunbird/sb-styles/-/sb-styles-0.0.14.tgz",
-  "_spec": "0.0.14",
-  "_where": "/Users/bharathkumar/pod3/sb-themes",
-  "author": "",
-  "bugs": {
-    "url": "https://github.com/Sunbird-Ed/sb-styles/issues"
-  },
-  "description": "",
-  "homepage": "https://github.com/Sunbird-Ed/sb-styles.git#readme",
-  "keywords": [
-    "angular",
-    "components",
-    "sunbird",
-    "Styles"
-  ],
-  "license": "MIT",
-  "main": "index.js",
-  "name": "@project-sunbird/sb-styles",
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/Sunbird-Ed/sb-styles.git"
-  },
-  "scripts": {
-    "test": "echo \"Error: no test specified\" && exit 1"
-  },
-  "version": "0.0.14"
-}