@font-face {
  font-family: 'Helvetica Now Text';
  src: url('../font/HelveticaNowText-Black.eot');
  src: local('Helvetica Now Text  Black'), local('HelveticaNowText-Black'),
      url('../font/HelveticaNowText-Black.eot?#iefix') format('embedded-opentype'),
      url('../font/HelveticaNowText-Black.woff2') format('woff2'),
      url('../font/HelveticaNowText-Black.woff') format('woff'),
      url('../font/HelveticaNowText-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Now Text';
  src: url('../font/HelveticaNowText-Bold.eot');
  src: local('Helvetica Now Text  Bold'), local('HelveticaNowText-Bold'),
      url('../font/HelveticaNowText-Bold.eot?#iefix') format('embedded-opentype'),
      url('../font/HelveticaNowText-Bold.woff2') format('woff2'),
      url('../font/HelveticaNowText-Bold.woff') format('woff'),
      url('../font/HelveticaNowText-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Now Text';
  src: url('../font/HelveticaNowText-ExtraBold.eot');
  src: local('Helvetica Now Text  Extra Bold'), local('HelveticaNowText-ExtraBold'),
      url('../font/HelveticaNowText-ExtraBold.eot?#iefix') format('embedded-opentype'),
      url('../font/HelveticaNowText-ExtraBold.woff2') format('woff2'),
      url('../font/HelveticaNowText-ExtraBold.woff') format('woff'),
      url('../font/HelveticaNowText-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Now Text';
  src: url('../font/HelveticaNowText-Regular.eot');
  src: local('Helvetica Now Text  Regular'), local('HelveticaNowText-Regular'),
      url('../font/HelveticaNowText-Regular.eot?#iefix') format('embedded-opentype'),
      url('../font/HelveticaNowText-Regular.woff2') format('woff2'),
      url('../font/HelveticaNowText-Regular.woff') format('woff'),
      url('../font/HelveticaNowText-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Now Text';
  src: url('../font/HelveticaNowText-Medium.eot');
  src: local('Helvetica Now Text  Medium'), local('HelveticaNowText-Medium'),
      url('../font/HelveticaNowText-Medium.eot?#iefix') format('embedded-opentype'),
      url('../font/HelveticaNowText-Medium.woff2') format('woff2'),
      url('../font/HelveticaNowText-Medium.woff') format('woff'),
      url('../font/HelveticaNowText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

:root {
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: 'Helvetica Now Text';
}

/* common css */
* {
  box-sizing: border-box;
  line-height: normal;
  margin-top: 0;
}
body {
  margin: 0;
  font-family: var(--secondary-font);
  color: #000000;
  line-height: normal;
  margin-top: 0;
  font-weight: 300;
}
.italic {
  font-style: italic;
}

.small-font {
  font-size: 12px;
}
.medium-font {
  font-size: 14px;
}
.large-font {
  font-size: 16px;
}
.text-22 {
  font-size: 14px;
}

@media screen and (min-width: 600px) {
  .small-font {
    font-size: 14px;
  }
  .medium-font {
    font-size: 16px;
  }
  .large-font {
    font-size: 18px;
  }
  .text-22 {
    font-size: 16px;
  }
}
@media screen and (min-width: 991px) {
  .large-font {
    font-size: 21px;
  }
  .text-22 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1300px) {
  .small-font {
    font-size: 16px;
  }
  .medium-font {
    font-size: 18px;
  }
  .large-font {
    font-size: 24px;
  }
}

.images-part {
  position: relative;
}
img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
ul,
ol {
  padding-left: 18px;
}
li {
  margin-bottom: 10px;
}
a {
  display: inline-block;
}
p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: 1010px;
  margin: 0 auto;
  padding: 0 80px 0 108px;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.row {
  margin-left: -20px;
  margin-right: -20px;
}
.common-padding-lr {
  padding-left: 20px;
  padding-right: 20px;
}

.left-part {
  width: 50%;
}
.right-part {
  width: 50%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h18 {
  margin-top: 0;
  margin-bottom: 30px;
  color: #000;
  font-family: var(--primary-font);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6,
  .h18 {
    margin-bottom: 20px;
  }
}

h1,
.h1 {
  font-size: 28px;
}
@media screen and (min-width: 992px) {
  h1,
  .h1 {
    font-size: 35px;
  }
}

h2,
.h2 {
  font-size: 25px;
}
@media screen and (min-width: 992px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 23px;
}
@media screen and (min-width: 992px) {
  h3,
  .h3 {
    font-size: 27px;
  }
}

h4,
.h4 {
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  h4,
  .h4 {
    font-size: 24px;
  }
}

h5,
.h5 {
  font-size: 18px;
}

@media screen and (min-width: 992px) {
  h5,
  .h5 {
    font-size: 20px;
  }
}

h6,
.h6 {
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  h6,
  .h6 {
    font-size: 18px;
  }
}

.h18 {
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .h18 {
    font-size: 18px;
  }
}

a {
  color: #002B7F;
}

.red-color {
  color: #ef3d4a;
}
.blue-color {
  color: #002B7F;
}
.orange-color {
  color: #f58326;
}
.gray-color {
  color: #737373;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

.form-field {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 300;
}
@media screen and (min-width: 600px) {
  .form-field {
    font-size: 18px;
  }
}
@media screen and (min-width: 991px) {
  .form-field {
    font-size: 21px;
  }
}
@media screen and (min-width: 1300px) {
  .form-field {
    font-size: 24px;
  }
}

.button,
button {
  padding: 8px 15px;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none !important;
  display: inline-block;
  background-color: rgb(0, 152, 185);
  color: #fff !important;
  line-height: normal;
  min-width: 123px;
  text-align: center;
  cursor: pointer;
  border: 0;
  outline: 0 !important;
  transition: all 0.5s;
}
.button:hover,
button:hover,
.button:focus,
button:focus {
  background-color: rgba(0, 152, 185, 0.7);
}
.gray-button {
  background-color: #e6e7e8;
  color: #737373 !important;
}     
.gray-button:hover,
.gray-button:focus {
  background-color: #737373;
  color: #fff !important;
}

@media screen and (min-width: 992px) {
  .button,
  button {
    padding: 12px 15px;
    font-size: 18px;
  }
}
.secondary-button {
  border: 3px solid #000000;
  background-color: transparent;
  color: #000000 !important;
}
.secondary-button:hover,
.secondary-button:focus {
  background-color: #000;
  color: #fff !important;
}
.secondary-button-white {
  border-color: #fff;
  color: #fff !important;
}
.secondary-button-white:hover,
.secondary-button-white:focus {
  background-color: #fff;
  color: #000 !important;
}

.main-heading {
  font-family: var(--primary-font);
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.section-spacing {
  padding-top: 40px;
  padding-bottom: 20px;
}
.section-head {
  margin-bottom: 40px;
}

.border-bottom {
  border-bottom: 0px dashed #000 !important;
}
.border-image {
  border: 1px solid #000 !important;
  padding: 10px;
}

.highlited-text {
  color: #f48379;
  font-weight: bold;
}

.model-button .button {
  font-size: 24px;
  font-family: var(--secondary-font);
  width: 100%;
  max-width: 510px;
  margin: 20px auto;
  display: block;
}
.model-button .button:last-child {
  margin-bottom: 0;
}

.order-with-breket {
  counter-reset: list;
}
.order-with-breket li {
  list-style: none;
  position: relative;
}
.order-with-breket li:before {
  content: counter(list) ") ";
  counter-increment: list;
  position: absolute;
  left: -20px;
  top: 0;
}

.popover {
  font-size: 16px;
  padding: 30px 20px 20px;
  font-family: var(--secondary-font);
  border: 5px solid #0098B9;
  border-radius: 13px;
  max-width: 320px;
}
.popover .popover-header {
  font-size: unset;
  font-family: var(--primary-font);
  color: #000;
  border-radius: 0;
  background-color: transparent !important;
  border: 0;
  padding: 0 0;
  margin-bottom: 1rem;
}
.popover .popover-body {
  padding: 0;
}
.popover .arrow:after {
  display: none;
}
.bs-popover-right {
  margin-left: 20px;
}
.bs-popover-left {
  margin-right: 20px;
}
.bs-popover-right .arrow:before {
  border: 0;
  background-image: url(../images/blue-arrow-icon.svg);
  width: 20px;
  height: 28px;
  left: -11px;
}
.bs-popover-left .arrow:before {
  border: 0;
  background-image: url(../images/blue-arrow-icon.svg);
  width: 20px;
  height: 28px;
  left: 0px;
  transform: rotate(180deg);
}
.model-heading {
  padding-top: 3px;
  width: calc(100% - 60px);
}
.close-popup {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
}
.close-popup img {
  width: 10px;
}
.next-prev-popup-arrow {
  position: absolute;
  top: 30px;
  right: 12px;
}
.model-next-prev-button {
  background-color: transparent !important;
  padding: 5px 8px;
  min-width: auto;
  margin: 0 4px;
  height: 25px;
  border-radius: 0;
}
.model-next-prev-button.left-arrow {
  right: 45px;
}

@media screen and (min-width: 500px) {
  .popover.bs-popover-top,
  .popover.bs-popover-bottom {
    max-width: 486px;
  }
}

.popover.bs-popover-top {
  margin-bottom: 20px;
}
.popover.bs-popover-bottom {
  margin-top: 20px;
}
.popover.bs-popover-top .arrow:before {
  border: 0;
  background-image: url(../images/arrow-yellow.svg);
  width: 20px;
  height: 28px;
  transform: rotate(270deg);
  bottom: -15px;
}
.popover.bs-popover-bottom .arrow:before {
  border: 0;
  background-image: url(../images/arrow-yellow.svg);
  width: 20px;
  height: 28px;
  transform: rotate(90deg);
  top: -15px;
}

/* end common css */

/* intro-page */

.intro-page {
  transform: translate3d(0px, -60px, 0px);
  opacity: 0;
  animation: introanimate 1s forwards;
}

@keyframes introanimate {
  0% {
    transform: translate3d(0px, -60px, 0px);
    opacity: 0;
  }
  to {
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
  }
}

.head-section {
  padding: 40px 60px 70px;
  background-color: #000000;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.logo-part-search-part {
  transition: all 0.5s;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
.search-icon {
  cursor: pointer;
}
.head-content-part {
  text-align: center;
}
.welcome-heading {
  color: #fff;
  font-weight: 300;
  font-family: var(--secondary-font);
  margin-bottom: 10px;
}
.head-section .main-heading {
  font-weight: 700;
  color: #0098B9;
  margin-bottom: 28px;
}
.head-section .head-content-part p {
  color: #fff;
  margin-bottom: 0;
}
.head-section .head-content-part .button {
  margin-top: 45px;
  background-color: #0098b9;
  border-color: #0098b9;
  color: #ffffff !important;
}

.lets-start-button {
  transition: all 0.3s;
}
.lets-start-button:hover {
  transform: scale(1.03);
}

.training-modules-section {
  max-width: 750px;
  margin: 34px auto 0 auto;
  padding: 0 20px 40px 20px;
}
.training-modules-section .note {
  margin-bottom: 25px;
}
.modules-link-main {
  padding-top: 45px;
  max-width: 445px;
  margin: 0 auto 45px;
}
.modules-link-main .heading {
  margin-bottom: 15px;
}
.modules-link-main .heading a {
  text-decoration: none;
  color: #737373;
}
.modules-info {
  margin-bottom: 30px;
  position: relative;
  padding-left: 5px;
  margin-left: 40px;
}
.modules-info:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: #737373;
  border-radius: 50%;
}

.inner-pages-link {
  display: flex;
  flex-wrap: wrap;
  max-width: 460px;
  margin-left: 30px;
  margin-top: 23px;
}
.inner-pages-link li {
  margin-bottom: 0;
  width: 50%;
}
.inner-pages-link a {
  color: #0098B9;
  font-weight: bold;
  text-decoration: none;
}
.training-modules-section .button {
  margin: 0 auto;
  display: block;
  max-width: 160px;
  background-color: #012B7F;
  color: #ffffff !important;
  border-color: #012B7F;
}

@media screen and (max-width: 767px) {
  .head-section {
    padding: 30px 20px 40px;
  }
  .head-section .head-content-part .button {
    margin-top: 30px;
  }
  .head-section .main-heading {
    margin-bottom: 10px;
  }
  .logo-part-search-part .logo img {
    max-width: 120px;
  }
  .training-modules-section {
    margin: 20px auto 0 auto;
  }
  .modules-link-main {
    padding-top: 25px;
    margin-bottom: 25px;
  }
  .modules-info {
    margin-bottom: 20px;
  }
  .inner-pages-link {
    margin-top: 15px;
    margin-left: 15px;
  }
}

/* end intro-page */

.training-portal-main {
  overflow: hidden;
  height: 100vh;
}

/* common sidebar */

.sidebar .sidebar-inner {
  height: 100%;
  overflow: auto;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  width: 330px;
  transition: all 0.2s;
}
.sidebar-head-section {
  height: 275px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.5s;
  background-color: #343434;
}
.logo-part-search-part .logo {
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
}
.sidebar-head-section .logo-part-search-part .logo img {
  max-width: 90px;
}
.logo-part-search-part .logo img {
  max-width: 130px;
}
.search-icon img {
  max-width: 25px;
}
.sidebar-head-section .logo-part-search-part {
  margin-bottom: 40px;
}
.sidebar-head-section .head-content-part {
  text-align: left;
  transition: opacity 0.5s linear 0.3s, visibility 5s linear;
  visibility: visible;
  opacity: 1;
}
.sidebar-head-section .head-content-part .main-heading {
  color: #0098B9;
  margin-bottom: 30px;
}

.nav-control__menu {
  padding: 0px;
  position: fixed;
  top: 15px;
  transition: all 0.2s;
  z-index: 99999;
  left: 350px;
}
.nav-control__button {
  background-color: transparent !important;
  padding: 10px;
  border: 0;
  display: block;
  min-width: auto;
  border-radius: 5px;
}
.sidebar-toggle__icon {
  display: block;
}
.nav-control__button.white-color .sidebar-toggle__icon line {
  stroke: #000000;
}

.sidebar-head-progress-text {
  color: #fff;
  margin-bottom: 15px;
}
.sidebar-progress-background {
  background-color: rgb(0 152 185 / 0.23);
  height: 7px;
  width: 100%;
  max-width: 314px;
}
.sidebar-progress-bar {
  height: 100%;
  background-color: #0098b9;
  transition: all 0.5s;
}
.secondry-color {
  color: #0098B9;
}
.primary-color {
  color: #012B7F;
}
.sidebar-nav-main {
  padding: 0;
  margin: 0;
  transition: opacity 0.5s linear 0.5s, visibility 0s linear;
}
.sidebar_nav_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #737373;
  font-weight: bold;
  padding: 5px 30px 5px 30px;
  margin-bottom: 12px;
  list-style: none;
  position: relative;
}
.sidebar_nav_item.none {
  display: none;
}
.sidebar_nav_item.active-tab,
.sidebar_nav_item.done_page {
  color: #fff;
}

.round-progress-bar {
  flex: 0 0 40px;
  display: inline-flex;
  padding-left: 10px;
}
.round-progress-bar .gauge-svg {
  transform: rotate(180deg);
  width: 30px;
  height: 30px;
}
.round-progress-bar .gauge-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.round-progress-bar .correct-icon {
  opacity: 0;
  transition: all 0.3s;
}
.done_page .correct-icon {
  opacity: 1;
}

.nav-sidebar-search {
  position: relative;
}
.nav-sidebar-header__search-area {
  transform: translate3d(0px, -100px, 0px);
  transition: all 0.5s;
  position: absolute;
  width: auto;
  box-sizing: border-box;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 280px;
  top: 40px;
  pointer-events: none;
  opacity: 0;
}
.nav-sidebar-search__icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 13px;
  left: 15px;
}
.nav-sidebar-search__input {
  width: 100%;
  padding: 10px 40px;
  border: 0;
  outline: 0 !important;
  border-radius: 10px;
  font-size: 18px;
}
.nav-sidebar-search__close {
  min-width: auto;
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent !important;
}
.nav-sidebar-search__close .nav-sidebar-search__close-icon {
  width: 12px;
  height: 12px;
}
.nav-sidebar-search__close .nav-sidebar-search__close-icon path {
  fill: #0098B9;
}

.nav-sidebar-results {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.nav-sidebar-results__list {
  padding: 0;
  margin: 0;
}
.nav-sidebar-results .nav-sidebar-result {
  list-style: none;
  position: relative;
  width: 100%;
}
.nav-sidebar-results .nav-sidebar-result:before {
  border-left: 0.5rem solid;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  border-color: #0098B9;
}
.nav-sidebar-results .nav-sidebar-result .nav-sidebar-result__link {
  color: #fff;
  padding: 15px 35px;
  width: 100%;
  background-color: #181818;
  text-decoration: none;
}
.nav-sidebar-results
  .nav-sidebar-result
  .nav-sidebar-result__link
  .nav-sidebar-result__title {
  width: 100%;
  display: block;
}
.nav-sidebar-result__count {
  font-size: 14px;
  font-style: italic;
  color: #0098B9;
}
.nav-sidebar-results .nav-sidebar-result .nav-sidebar-result__link:hover {
  background-color: #2b2b2b;
}

.search-active .nav-sidebar-header__search-area {
  pointer-events: unset;
  opacity: 1;
  transform: none;
}
.search-active .logo-part-search-part {
  transform: translate3d(0px, -100px, 0px);
}
.search-active .head-content-part {
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s, visibility 0s linear 0.5s;
  visibility: hidden;
}
.search-active .sidebar-head-section {
  height: 140px;
}
.search-active .sidebar-nav-main {
  opacity: 0;
  transition: opacity 0.5s, visibility 0s linear 0.5s;
  visibility: hidden;
  overflow: hidden;
}
.search-active .sidebar-nav-main .sidebar_nav_item {
  display: none;
}

.search-active .nav-sidebar-results {
  opacity: 1;
  pointer-events: unset;
  visibility: visible;
}

/* end common sidebar */

/* image map */
.map-item-list {
  margin: 0;
  padding: 0;
}
.map-item {
  list-style: none;
  margin-bottom: 0;
}
.map-item-list .labeled-graphic-marker {
  transition: box-shadow 0.5s;
  position: absolute;
  background-color: #0098B9;
  border: 0;
  padding: 0;
  min-width: auto;
  box-shadow: 0 0 0 0 rgba(80, 171, 241, 0.9);
  transition: box-shadow 0.3s;
  border-radius: 100%;
}
.map-item-list .labeled-graphic-marker.visible {
  box-shadow: 0 0 0 3rem rgba(80, 171, 241, 0);
}
.map-item-list .labeled-graphic-marker:after {
  animation: markerPulse 2s ease-in-out infinite alternate;
  border: 4px solid rgba(80, 171, 241, 0.4);
  border-radius: 50%;
  content: "";
  left: -8px;
  top: -7px;
  pointer-events: none;
  position: absolute;
  width: 41px;
  height: 41px;
}
@keyframes markerPulse {
  0% {
    transform: scale(1.4);
  }
  to {
    transform: scale(1);
  }
}
.map-item-list .labeled-graphic-marker .plus-icon {
  width: 25px;
  height: 25px;
  background-color: #fff;
  display: block;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: relative;
  border: 3px solid #0098B9;
}

.map-item-list .labeled-graphic-marker .plus-icon:before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #0098B9;
  display: block;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translatey(-50%) translatex(-50%);
}
.map-item-list .labeled-graphic-marker .plus-icon:after {
  content: "";
  height: 8px;
  width: 1px;
  background-color: #0098B9;
  display: block;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translatex(-50%) translatey(-50%);
}

.map-item-list .labeled-graphic-marker .plus-icon:hover {
  border-color: #0098B9;
}

.map-item-list .labeled-graphic-marker:hover .plus-icon {
  background-color: #0098B9;
  border-color: #fff;
}
.map-item-list .labeled-graphic-marker:hover .plus-icon:before {
  background-color: #fff;
}
.map-item-list .labeled-graphic-marker:hover .plus-icon:after {
  background-color: #fff;
}

.map-item-list .labeled-graphic-marker.active-model-button .plus-icon {
  background-color: #0098B9;
  border-color: #fff;
}
.map-item-list .labeled-graphic-marker.active-model-button .plus-icon:before {
  background-color: #fff;
}
.map-item-list .labeled-graphic-marker.active-model-button .plus-icon:after {
  background-color: #fff;
}
.map-item-list .labeled-graphic-marker.visited-button:after {
  display: none;
}

.map-item-list .map-item:nth-child(2) .labeled-graphic-marker.visible {
  transition-delay: 0.2s;
}
.map-item-list .map-item:nth-child(3) .labeled-graphic-marker.visible {
  transition-delay: 0.4s;
}
.map-item-list .map-item:nth-child(4) .labeled-graphic-marker.visible {
  transition-delay: 0.6s;
}
.map-item-list .map-item:nth-child(5) .labeled-graphic-marker.visible {
  transition-delay: 0.8s;
}
.map-item-list .map-item:nth-child(6) .labeled-graphic-marker.visible {
  transition-delay: 1s;
}
.map-item-list .map-item:nth-child(7) .labeled-graphic-marker.visible {
  transition-delay: 1.2s;
}
.map-item-list .map-item:nth-child(8) .labeled-graphic-marker.visible {
  transition-delay: 1.3s;
}
.map-item-list .map-item:nth-child(9) .labeled-graphic-marker.visible {
  transition-delay: 1.4s;
}
.map-item-list .map-item:nth-child(10) .labeled-graphic-marker.visible {
  transition-delay: 1.6s;
}
.map-item-list .map-item:nth-child(11) .labeled-graphic-marker.visible {
  transition-delay: 1.8s;
}
.map-item-list .map-item:nth-child(12) .labeled-graphic-marker.visible {
  transition-delay: 2s;
}
.map-item-list .map-item:nth-child(13) .labeled-graphic-marker.visible {
  transition-delay: 2.2s;
}
.map-item-list .map-item:nth-child(14) .labeled-graphic-marker.visible {
  transition-delay: 2.4s;
}
.map-item-list .map-item:nth-child(15) .labeled-graphic-marker.visible {
  transition-delay: 2.6s;
}

/* image map */

/* page animation */
.training-portal-content-main {
  width: calc(100% - 330px);
  margin-left: auto;
  height: 100%;
  transition: all 0.2s;
}
.training-portal-content {
  height: 100%;
  overflow: auto;
  transition: all 1s; /*perspective: 1000px; -webkit-perspective: 1000px;*/
}
.training-portal-content .inner-content {
  padding: 0rem;
  padding-top: 0px;
}
.training-portal-content.down {
  animation: slidedown 1s forwards;
}
.training-portal-content.up {
  animation: slideup 1s forwards;
}
@keyframes slidedown {
  0% {
    transform: translatey(0%);
  }
  to {
    transform: translatey(-100%);
    display: none;
  }
}
@keyframes slideup {
  0% {
    transform: translatey(-100%);
  }
  to {
    transform: translatey(0%);
    display: none;
  }
}
.training-portal-content.none:not(.active) {
  display: none;
}
.training-portal-content.down:not(.active) {
  opacity: 0.2;
  background-color: #e6e7e8;
}
.training-portal-content.up:not(.active) {
  opacity: 0.2;
  background-color: #e6e7e8;
}

.pageload-animation {
  opacity: 0;
}
.training-portal-content.active .pageload-animation {
  opacity: 1;
}

/*.training-portal-content.active .pageload-animation{
    animation: pageanimate 1s forwards;
    animation-delay: 1s;
}
@keyframes pageanimate {
    0%{ opacity: 0;}
    to{  opacity: 1; }
}
*/

/* for section aos animation  */
.training-portal-content:not(:first-child)
  .pageload-animation
  > div:first-child {
  opacity: 0;
}
.training-portal-content:not(:first-child).active
  .pageload-animation
  > div:first-child {
  animation: pageanimate 1s forwards;
  animation-delay: 1.2s;
}
@keyframes pageanimate {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.training-portal-content:not(:first-child)
  .pageload-animation
  > div:nth-child(2) {
  opacity: 0;
}
.training-portal-content:not(:first-child).active
  .pageload-animation
  > div:nth-child(2) {
  animation: pageanimatetwo 1s forwards;
  animation-delay: 1.2s;
}
@keyframes pageanimatetwo {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* for section aos animation  */

/* end page animation */

/* introduction page */
.top-prev-button {
  cursor: pointer;
  background-color: #737373;
  text-align: center;
  color: #fff !important;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  text-decoration: none !important;
  position: fixed;
  top: 0;
  transform: translate3d(0px, -100px, 0px);
  opacity: 0;
  transition-duration: 0.5s;
  z-index: 9999;
  transition-property: transform, opacity;
  display: none;
}
.preview-button-fix {
  transform: none;
  opacity: 1;
}
.top-prev-button.sticky {
  opacity: 1;
  transform: none;
}
.sidebar.togglenavbar ~ .training-portal-content-main .top-prev-button {
  width: calc(100% - 280px);
  min-width: 250px;
}
.top-prev-button .arrow-icon {
  margin: 0 auto 8px auto;
}
.top-prev-button span {
  font-family: var(--primary-font);
}

.page-head {
  padding-top: 60px;
  padding-bottom: 35px;
}
.page-head .small-heading {
  margin-bottom: 0;
  color: #0098B9;
}
.page-head .small-heading span {
  font-weight: 300;
  color: #737373;
}
.page-head .main-heading {
  color: #737373;
}
.page-head .page-progress-bar {
  width: 100%;
  background-color: #e6e7e8;
  height: 10px;
  margin-top: 10px;
}
.page-head .small-width {
  width: 95%;
}

.first-common-section .left-part {
  /*animation: bordershow 1s forwards; 
    animation-delay: 1.8s; 
    border-right: 0px dashed #000; */
  padding-top: 30px;
  padding-bottom: 30px;
}
/*@keyframes bordershow {
    0%{ border-width: 0;}
    to{ border-width: 1px;}
}*/

.model-button {
  position: relative;
}

.first-common-section .small-width {
  max-width: 350px;
  padding-right: 25px;
}
.first-common-section .right-part {
  padding-top: 30px;
  padding-bottom: 30px;
}
.Welcome-Aboard .small-width {
  margin-left: auto;
}
.Welcome-Aboard .image-part {
  max-width: 352px;
  margin-left: auto;
}
.Welcome-Aboard .image-part img:first-child {
  margin-bottom: 15px;
}

.secound-part-common {
  padding-top: 40px;
  padding-bottom: 30px;
}

.three-image-part {
  margin: 0px -11px 0 -11px;
}
.three-image-part .image-part {
  padding: 0 11px 20px 11px;
  width: 50%;
}

.categories-parcels-process-part .container {
  max-width: 850px;
}
.categories-parcels-process-part .heading {
  margin-bottom: 45px;
}
.categories-parcels-process-part .left-part .heading {
  max-width: 75%;
}
.categories-parcels-process-part .left-part {
  display: flex;
  flex-direction: column;
}
.categories-parcels-process-part .left-part .image-part {
  height: 100%;
  display: flex;
  align-items: center;
}
.categories-parcels-process-part .left-part .image-part img {
  max-width: 256px;
  width: 100%;
}
.categories-parcels-process-part .row > div {
  padding-bottom: 20px;
}

.next-back-buton-last-part {
  display: flex;
  justify-content: center;
  padding: 78px 20px;
}
.next-back-buton-last-part .button {
  margin: 0 18px;
}
.next-back-buton-small-part {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 60px;
}
/* end introduction page */

/* Prepare your store page */
.Welcome-Pack-part .right-part {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Welcome-Pack-part .right-part .image-part {
  border: 0px solid #000;
  position: relative;
}
.Welcome-Pack-part .right-part .image-part img {
  width: 100%;
}
.Welcome-Pack-part .heading {
  width: 80%;
}

.Organize-storage-space .section-head {
  margin-bottom: 15px;
}
.Organize-storage-space .four-images-part .left-part,
.Organize-storage-space .four-images-part .right-part {
  padding-top: 30px;
  padding-bottom: 30px;
}

.icon-with-multicolum-text-part {
  margin-top: 40px;
}
.icon-with-multicolum-text-part .heading {
  margin-bottom: 10px;
}
.icon-with-multicolum-text-inner {
  align-items: center;
  padding: 25px 0;
  justify-content: space-between;
}
.icon-with-multicolum-text-inner .right-content {
  flex: 0 0 52%;
}
.icon-with-multicolum-text-inner .icon-text-part {
  align-items: center;
  flex: 0 0 48%;
  padding-right: 20px;
}

.icon-text-part img {
  max-width: 72px;
  margin-right: 20px;
}
.icon-text-part .icon-content {
  width: calc(100% - 92px);
}
/* end Prepare your store page */

/*  System overview page */
.list a {
  color: #f58326;
}
.Basic-glossary-icon-text-part {
  padding: 0;
  max-width: 660px;
  margin: 0px auto 0 auto;
}
.Basic-glossary-icon-text-part li {
  list-style: none;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
.Basic-glossary-icon-text-part .icon {
  flex: 0 0 90px;
}
.Basic-glossary-icon-text-part .icon img {
  margin: 0 auto;
}
.Basic-glossary-icon-text-part li p {
  padding-left: 50px;
}

.System-structure .images-part {
  position: relative;
  margin-bottom: 20px;
}
/* end  System overviewpage */

/* Parcel types page */
.parcel-overview .parcel-overview-text {
  margin-top: 15px;
  margin-bottom: 20px;
}
.parcel-overview .parcel-overview-text span {
  font-weight: bold;
  color: #f48379;
}
.parcel-overview .images-section > div {
  padding-bottom: 20px;
}

.in-out-bond-part {
  padding-bottom: 30px !important;
}
.in-out-bond-part .images-part {
  margin-bottom: 30px;
}
/* end Parcel types page */

/* Parcel handling processes page */
.Parcel-handling-process .images-part {
  margin-bottom: 15px;
}

.process-counter-part {
  display: flex;
  height: 100%;
}
.process-count-left {
  margin-bottom: 30px;
  height: 100%;
  padding-right: 34px;
  position: relative;
  text-align: right;
  flex: 0 0 21%;
}
.process-count-left .count {
  margin-bottom: 0;
}
.process-count-left .heading {
  color: #737373;
  margin-bottom: 0;
}
.process-count-left:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 13px;
  height: 100%;
  background-color: #e6e7e8;
}

.process-content-right {
  padding-left: 30px;
  margin-bottom: 20px;
}
.process-content-right .list-three-part .heading {
  color: #737373;
}
.list-three-part {
  display: flex;
  padding: 0;
}
.list-three-part > li {
  width: 33.333%;
  list-style: none;
}
.list-three-part .heading {
  font-size: 22px;
  margin-bottom: 15px;
}

.what-you-do-this-step .images-part {
  margin-bottom: 20px;
}
.text-button-part {
  margin-top: 25px;
}
.image-with-text .images-part {
  padding-left: 20px;
}
.video-part {
  margin-bottom: 20px;
}
/* end Parcel handling processes page */

/*  Parcel handling processes checkout page */
.full-width .button {
  max-width: 100%;
}
.search-for-parcel .text-button-part {
  margin-top: 45px;
}
.tip-faster-courier-collection .heading {
  margin-bottom: 0;
  color: #737373;
}
.tip-faster-courier-collection .images-part {
  margin-bottom: 20px;
  margin-top: 30px;
}

.check-id .same-height-paragraph {
  min-height: 215px;
}
.check-id .image-part {
  margin-bottom: 20px;
}
.Check-out-process .check-id .text-button-part {
  margin-top: 8px;
  margin-bottom: 20px;
}

.courier-pick-up .text-button-part {
  margin-top: 10px;
}
.courier-pick-up .text-button-part .model-button .button {
  min-width: 580px;
}

.customer-pick-up {
  padding-top: 60px;
  padding-bottom: 20px;
}
.two-images-part img {
  margin-bottom: 20px;
}
.two-images-part .image-part {
  margin: 0 -10px;
}
.two-images-part .left-part,
.two-images-part .right-part {
  padding: 0 10px;
}

.Warning-Sign .text-button-part {
  margin-top: 60px;
  margin-bottom: 20px;
}
.Warning-Sign .text-button-part .model-button {
  margin-top: 40px;
}
/*  end Parcel handling processes checkout page */

/*  Parcel handling processes Aged-parcels page */
.Aged-parcels .images-part {
  margin-bottom: 30px;
}
.request-return-1 .two-images-part {
  margin-top: 35px;
}
.request-return-1 .two-images-part .image-part p {
  max-width: 75%;
  margin: 0 auto;
}
.check-out-hand-over .text-button-part {
  margin-bottom: 15px;
}
/*  end Parcel handling processes Aged-parcels page */

/*  Parcel handling processes Print-Free-Return page */
.Print-Free-Returns-top-part {
  margin-bottom: 45px;
}
.Print-Free-Returns .left-part {
  border-bottom: 0;
}
.follow-system-prompts .process-content-right li {
  margin-bottom: 35px;
}
.follow-system-prompts .process-content-right li:last-child {
  margin-bottom: 0;
}
.follow-system-prompts .process-content-right ol {
  margin-bottom: 0;
}
/*  end Parcel handling processes Print-Free-Return page */

.paperless-return,
.consolidated-parcels {
  min-height: 100vh;
}

/* FILES LIBRARY page */
.nearly-there {
  padding-bottom: 40px;
}
.pdf-part {
  display: flex;
  margin: 0 -15px 0px;
  flex-wrap: wrap;
}
.pdf-part .single-pdf {
  padding: 15px;
  flex: 0 0 20%;
}
.multipal-video-part {
  overflow: hidden;
}
/* end FILES LIBRARY page */

.almost-done-part {
  padding-bottom: 40px;
}
.support-time {
  border: 3px solid #d9d9d9;
  border-radius: 15px;
  padding: 12px 15px;
  text-align: center;
}
.icon-text-part-main {
  margin-top: 35px;
}
.icon-text-part-main .icon-text-part {
  align-items: center;
  margin-bottom: 30px;
}
.icon-text-part-main .icon-text-part .icon-content {
  color: #737373;
  text-decoration: none;
}
.feedback-form {
  margin-bottom: 15px;
}
.feedback-part {
  background-color: #737373;
  margin: 15px 0 20px 0;
  color: #fff;
}
.feedback-form .feedback-field {
  outline: 0;
  padding: 15px;
  width: 100%;
  border-radius: 15px;
  background-color: #d9d9d9;
  border: 0;
  min-height: 180px;
  max-height: 200px;
  margin-bottom: 24px;
}
.feedback-form .submit-butt {
  margin: 0 auto;
  display: block;
}
.last-bit {
  margin-bottom: 40px;
}
.last-bit .button {
  margin: 0 auto;
  display: block;
  max-width: 200px;
  text-align: center;
}
.zoho-form-part {
  margin-bottom: 30px;
}
.finish-button-last {
  margin-top: 35px;
}
.finish-button {
  background-color: #012B7F;   
}

/* popup */
.modal-dialog {
  margin-top: 50px;
  max-width: 930px;
  border: 0 !important;
  box-shadow: none !important;
}
.modal-content {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  border: 0;
  background-color: #737373;
  box-shadow: none !important;
  border-radius: 48px;
  padding: 40px 50px 57px 50px;
}
.modal-header {
  border: 0;
  padding: 0;
  display: none;
}
.modal-body {
  padding: 0;
}

.zf-templateWrapper {
  max-width: 730px;
  margin: 0 auto;
}
.zf-templateWrapper ul {
  margin: 0;
  padding: 0;
  color: #fff;
}
.zf-templateWrapper ul li {
  list-style: none;
  margin-bottom: 0;
}
.zf-tempContDiv .form-field {
  background-color: #d9d9d9;
  border: 0;
  outline: 0 !important;
  padding: 15px 15px;
  width: 100%;
  border-radius: 15px;
}
.zf-fmFooter {
  margin-top: 40px;
}
.zf-tempHeadBdr {
  margin-bottom: 38px !important;
}
.zf-errorMessage {
  font-size: 16px;
  color: red;
  text-align: left;
}

/* end popup */

@media screen and (min-width: 768px) {
  /* common sidebar */
  .sidebar-head-progress-text {
    font-size: 16px;
  }
  .nav-control__button .sidebar-toggle__icon {
    width: 38px;
  }
  /* end common sidebar */
}

@media screen and (min-width: 768px) {
  /* FILES LIBRARY page */
  .multipal-video-part .left-part .video {
    margin-left: 0;
  }
  .multipal-video-part .right-part .video {
    margin-right: 0;
  }
  .multipal-video-part .single-video {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  /* end FILES LIBRARY page */
}

@media screen and (min-width: 992px) {
  /* common sidebar */
  .sidebar.togglenavbar .nav-control__menu {
    left: 20px;
  }
  .sidebar.togglenavbar .sidebar-inner {
    left: -432px;
  }
  .sidebar.togglenavbar ~ .training-portal-content-main {
    width: 100%;
  }

  .nav-sidebar-results .nav-sidebar-result .nav-sidebar-result__link {
    font-size: 20px;
  }
  .sidebar_nav_item {
    font-size: 20px;
  }
  /* end common sidebar */

  .top-prev-button {
    width: calc(100% - 330px);
  }
  .sidebar.togglenavbar ~ .training-portal-content-main .top-prev-button {
    width: 100%;
  }

  /* Prepare your store page */
  .Welcome-Pack-part .right-part {
    /*padding-left: 0;*/
  }
  /* end Prepare your store page */

  /* Parcel handling processes page */
  .what-you-do-this-step .left-part {
    width: 50%;
  }
  .what-you-do-this-step .right-part {
    width: 50%;
  }
  /* end Parcel handling processes page */

  /*  Parcel handling processes Print-Free-Return page */
  .follow-system-prompts .process-content-right .image-with-text .left-part {
    width: 39%;
  }
  .follow-system-prompts .process-content-right .image-with-text .right-part {
    width: 61%;
  }
  /*  end Parcel handling processes Print-Free-Return page */
}

@media screen and (min-width: 1201px) {
  .common-small-width {
    width: 89.1%;
  }

  /* Prepare your store page */

  .Welcome-Pack-part .left-part {
    width: 43%;
  }
  .Welcome-Pack-part .right-part {
    width: 57%;
  }
  .Organize-storage-space .small-width {
    width: 92%;
  }
  .setup-need-part .small-width {
    width: 95.5%;
  }
  /* end Prepare your store page */

  /* System overview page */
  .Basic-glossary .small-width {
    width: 92%;
  }
  /* end System overview page */

  /* Parcel types page */
  .parcel-overview .small-width,
  .in-out-bond-part .small-width {
    width: 90.1%;
  }
  /* end Parcel types page */

  .return-request-process .small-width {
    width: 90.3%;
  }

  /*  Parcel handling processes checkout page */
  .tip-faster-courier-collection .small-width {
    width: 90%;
  }
  /*  end Parcel handling processes checkout page */

  /*  Parcel handling processes Aged-parcels page */
  .Aged-parcels .small-width {
    width: 90.3%;
  }
  /*  end Parcel handling processes Aged-parcels page */

  /*  Parcel handling processes Print-Free-Return page */
  .Print-Free-Returns .small-width {
    width: 96.2%;
  }
  /*  end Parcel handling processes Print-Free-Return page */

  .support-time {
    font-size: 30px;
  }
}

@media screen and (max-width: 1300px) {
  /* common sidebar */
  /*
   .search-active .sidebar-head-section { height: 125px; }
   .nav-sidebar-header__search-area{ max-width: 250px;}
   .sidebar .sidebar-inner{ width: 330px; }
   .sidebar-head-section{height: 320px; padding: 40px; margin-bottom: 40px; }
   .logo-part-search-part .logo img { max-width: 130px; }
   .search-icon img { max-width: 30px; }
   .sidebar-head-section .logo-part-search-part { margin-bottom: 40px; }
   .sidebar-head-section .head-content-part .main-heading{margin-bottom: 25px;}
   .sidebar_nav_item{font-size: 20px; margin-bottom: 15px;}
   .sidebar_nav_item{padding: 5px 40px 5px 40px;}
   .sidebar-toggle__icon { width: 30px; }
   .nav-control__menu{left: 340px; top: 10px;}*/
  .nav-control__menu {
    top: 10px;
  }
  /* end common sidebar */

  /* introduction page */
  .training-portal-content-main {
    width: calc(100% - 330px);
  }
  .top-prev-button {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  /* end introduction page */

  .model-button .button {
    font-size: 21px;
  }
}

@media screen and (max-width: 1200px) {
  .modal-content {
    padding: 40px;
  }
  .container {
    padding: 0 70px 0 70px;
  }

  /* introduction page */
  .categories-parcels-process-part .left-part .heading {
    max-width: 100%;
  }
  .categories-parcels-process-part .heading {
    margin-bottom: 30px;
  }
  .first-common-section .small-width {
    padding-right: 0;
  }
  .next-back-buton-last-part {
    padding: 40px 20px;
  }
  .next-back-buton-small-part {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  /* end introduction page */

  /* Prepare your store page */
  .icon-text-part img {
    max-width: 52px;
  }
  .icon-text-part .icon-content {
    width: calc(100% - 72px);
  }
  /* end Prepare your store page */

  /* System overview page */
  .Basic-glossary-icon-text-part .icon {
    flex: 0 0 50px;
  }
  .Basic-glossary-icon-text-part li p {
    padding-left: 30px;
  }
  /* end System overview page */
}

@media screen and (max-width: 991px) {
  .section-head {
    margin-bottom: 30px;
  }
  .model-button .button {
    font-size: 18px;
  }

  .training-portal-content .inner-content {
    padding-top: 0px;
  }

  /* common sidebar */
  .nav-sidebar-search__close {
    top: 5px;
  }
  .nav-sidebar-header__search-area {
    max-width: 220px;
  }
  .sidebar .sidebar-inner {
    left: -330px;
    width: 280px;
  }
  .nav-control__menu {
    left: 20px;
  }
  .sidebar.togglenavbar .sidebar-inner {
    left: 0;
  }
  .sidebar.togglenavbar .nav-control__menu {
    left: 290px;
  }
  .sidebar.togglenavbar ~ .training-portal-content-main {
    width: 100%;
    margin-left: 280px;
  }
  .sidebar-head-section {
    height: 256px;
  }
  .sidebar-head-section .logo-part-search-part {
    margin-bottom: 30px;
  }
  .sidebar-head-section .head-content-part .main-heading {
    margin-bottom: 20px;
  }
  .sidebar_nav_item {
    padding: 5px 30px 5px 30px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .search-icon img {
    max-width: 20px;
  }
  .logo-part-search-part .logo img {
    max-width: 110px;
  }
  .round-progress-bar .gauge-svg {
    width: 28px;
    height: 28px;
  }
  /* end common sidebar */

  /* introduction page */
  .training-portal-content-main {
    width: 100%;
  }
  .page-head {
    margin: 0 auto; /*padding-top: 40px;*/
    padding-bottom: 30px;
  }
  /* end introduction page */

  /*  Parcel handling processes checkout page */
  .check-id .same-height-paragraph {
    min-height: 120px;
  }
  /* end Parcel handling processes checkout page */
}

@media screen and (max-width: 767px) {
  .left-part {
    width: 100%;
    border-right: 0 !important;
  }
  .right-part {
    width: 100%;
  }
  .section-spacing {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  /* image map */
  .map-item-list .labeled-graphic-marker .plus-icon {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }
  .map-item-list .labeled-graphic-marker:after {
    border-width: 2px;
    left: -3px;
    top: -3px;
    width: 24px;
    height: 24px;
    border-color: rgba(0, 152, 185, 0.4);
  }
  /* end image map */

  /* common sidebar */
  .sidebar-toggle__icon {
    height: 15px;
    width: 20px;
  }
  .nav-control__menu {
    top: 20px;
  }
  .container {
    padding: 0 20px;
  }
  .nav-control__button {
    background-color: rgba(243, 243, 243, 0.5) !important;
  }
  /* end common sidebar */

  /* introduction page */
  .first-common-section {
    padding-left: 0;
  }
  .first-common-section .small-width {
    max-width: 100%;
  }
  .first-common-section .right-part {
    padding-top: 30px;
  }
  .Welcome-Aboard .image-part {
    margin: 0 auto;
  }

  .secound-part-common {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .three-image-part .image-part {
    width: 50%;
  }

  .categories-parcels-process-part {
    padding-left: 0;
  }
  .categories-parcels-process-part .heading {
    text-align: center;
  }
  .categories-parcels-process-part .right-part {
    padding-top: 30px;
  }

  .next-back-buton-last-part .button {
    margin: 0 10px;
  }
  /* end introduction page */

  /* Prepare your store page */
  .Organize-storage-space .four-images-part .left-part,
  .Organize-storage-space .four-images-part .right-part {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .setup-need-part {
    padding-top: 30px;
  }
  .icon-with-multicolum-text-part {
    margin-top: 20px;
  }
  .icon-with-multicolum-text-inner {
    padding: 15px 0;
  }
  .icon-text-part img {
    max-width: 42px;
    margin-right: 10px;
  }
  .icon-text-part .icon-content {
    width: calc(100% - 52px);
  }

  .Train-your-employees .left-part {
    padding-bottom: 30px;
  }
  .Train-your-employees .images-part img {
    margin-left: auto;
    margin-right: auto;
  }
  /* end Prepare your store    page */

  /* System overview page */
  .Basic-glossary-icon-text-part li {
    margin-bottom: 15px;
  }
  .Basic-glossary-icon-text-part .icon {
    flex: 0 0 35px;
  }
  .Basic-glossary-icon-text-part li p {
    padding-left: 20px;
  }

  .System-structure .images-part {
    margin-bottom: 15px;
  }

  /* end System overview page */

  /* Parcel types page */
  .in-out-bond-part .images-part {
    margin-bottom: 20px;
  }
  /* end Parcel types page */

  /* Parcel handling processes */
  .what-you-do-this-step .left-part {
    margin-bottom: 30px;
  }

  .process-content-right {
    padding-left: 20px;
  }
  .process-count-left {
    padding-right: 22px;
  }
  .process-count-left:after {
    width: 8px;
  }

  .image-with-text .text.left-part {
    margin-bottom: 20px;
  }
  .image-with-text .images-part {
    padding-left: 0;
  }

  .video-part {
    margin-bottom: 15px;
  }
  /* end Parcel handling processes */

  /*  Parcel handling processes checkout page */

  .search-for-parcel .text-button-part {
    margin-top: 30px;
  }
  .check-id .same-height-paragraph {
    min-height: auto;
  }
  .check-id .image-part {
    margin-bottom: 10px;
  }
  .check-id .left-part {
    padding-bottom: 30px;
  }
  .customer-pick-up {
    padding-top: 30px;
  }
  .customer-pick-up .left-part {
    padding-bottom: 30px;
  }
  .Warning-Sign .text-button-part {
    margin-top: 30px;
  }
  .Warning-Sign .text-button-part .model-button {
    margin-top: 30px;
  }
  .courier-pick-up .text-button-part .model-button .button {
    min-width: 320px;
  }
  .two-images-part img {
    margin-bottom: 10px;
  }

  /*  end Parcel handling processes checkout page */

  /*  Parcel handling processes Print-Free-Return page */
  .Print-Free-Returns .left-part {
    padding-bottom: 30px;
  }
  .Print-Free-Returns-top-part {
    margin-bottom: 30px;
  }
  .Print-Free-Returns .image-with-text .left-part {
    padding-bottom: 0;
  }
  /*  end Parcel handling processes Print-Free-Return page */

  /* FILES LIBRARY page */
  .multipal-video-part .single-video {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .pdf-part .single-pdf {
    flex: 0 0 25%;
  }
  .nearly-there {
    padding-bottom: 30px;
  }
  /* end FILES LIBRARY page */

  .last-bit .left-part {
    padding-bottom: 30px;
  }
  .icon-text-part-main {
    margin-top: 30px;
  }
  .almost-done-part {
    padding-bottom: 30px;
  }

  /* popup */
  .modal-content {
    padding: 30px;
  }
  .zf-fmFooter {
    margin-top: 30px;
  }
  /* end popup */
}

@media screen and (max-width: 599px) {
  .sidebar-head-section {
    height: 244px;
  }

  .model-button .button {
    font-size: 16px;
  }

  /* Parcel handling processes */
  .list-three-part {
    flex-wrap: wrap;
  }
  .list-three-part > li {
    width: 100%;
  }
  /* end Parcel handling processes */
}

@media screen and (max-width: 500px) {
  /* Prepare your store page */
  .three-image-part .image-part {
    width: 100%;
  }
  /* end Prepare your store page */

  /* Parcel handling processes */
  .process-counter-part {
    flex-wrap: wrap;
  }
  .process-content-right {
    padding-left: 0;
  }
  .process-count-left {
    margin-bottom: 20px;
    text-align: left;
    padding-right: 0px;
    padding-left: 22px;
    flex: 0 0 100%;
  }
  .process-count-left:after {
    right: auto;
    left: 0;
  }
  /* end Parcel handling processes */

  /* FILES LIBRARY page */
  .pdf-part .single-pdf {
    flex: 0 0 33%;
  }
  /* end FILES LIBRARY page */

  /* popup */
  .modal-content {
    padding: 20px;
    border-radius: 30px;
  }
  /* end popup */
}

@media screen and (max-width: 400px) {
  /* Prepare your store page */
  .icon-with-multicolum-text-inner .right-content {
    flex: 0 0 100%;
  }
  .icon-with-multicolum-text-inner .icon-text-part {
    flex: 0 0 100%;
    padding-right: 0;
    padding-bottom: 10px;
  }
  /* end Prepare your store page */

  /* FILES LIBRARY page */
  .pdf-part .single-pdf {
    flex: 0 0 50%;
  }
  /* edn FILES LIBRARY page */
}
/* aged parcel */
.aged-parcels-button {
    background-color: #F58326;
    padding: 15px;
    border-radius: 15px;
    color: #fff;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    align-items: center;
}
.aged-parcels-button img {
    margin: 0 20px 0 0;
    max-width: 51px;
    height: auto;
}
.aged-parcels-button strong {
    font-weight: bold;
}
.return-required-part {
    padding-top: 20px;
}
.return-required-part .points {
    padding-left: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.return-required-part .points b {
    font-weight: bold;
}
.Aged-parcel-process-steps .process-counter-part {
    padding: 30px 0;
}
.Aged-parcel-process-steps .process-counter-part:last-child {
    padding-bottom: 0;
}
.highlited-text.red-color {
    color: #ef3d4a;
}
@media screen and (max-width: 400px) {
  .return-required-part .points{
        padding-left:25px;
  }
  .aged-parcels-button img {
    margin: 0 15px 0 0;
    max-width: 40px;
  }
}
/* end aged parcel */
.skip-to-3 {
  font-size: 19px;
  margin-bottom: 20px;
  color: red;
  font-weight: 400;
  line-height: 19.2px;
}
.sky-blue-color{
  color: #0098B9;
}
.page-two .first-common-section .right-part,
.page-two .first-common-section .right-part.left {
  justify-content: center;
}
.review-main {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding: 16px;
  background-color: #E6ECF2;
  border-radius: 8px;
  position: relative;
}
.review-main::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 140px;
  top: -90px;
  right: -41px;
  background-color: #D5E1EDC7;
  border-radius: 100%;
}
.review-main .review-part-image {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  min-width: 60px;
}
.training-portal-content .Welcome-Pack-part .left-part.full-width {
  width: 100% !important;
}
@media screen and (min-width: 767px) {
  .page-two .first-common-section .left-part,
  .page-two .first-common-section .right-part {
    width: 50% !important;
  }
  .page-two .first-common-section .right-part {
    justify-content: flex-end;
  }
  .page-two .first-common-section .right-part.left {
    justify-content: flex-start;
  }
  .review-main {
    gap: 30px;
    padding: 30px;
    border-radius: 10px;
  }
  .review-main .review-part-image {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
  }
  .review-main::after {
    width: 180px;
    height: 180px;
    top: -90px;
    right: -41px;
  }
}

/**new start**/
.top-section.review-main {
  display: block;
  margin-bottom: 30px;
}
.top-section.review-main::after {
  display: none;
}
.Welcome-Aboard.first-common-section.small-big-sec .left-part{
  width: 65%;
}
.Welcome-Aboard.first-common-section.small-big-sec .right-part{
  width: 35%;
}


.sidebar-nav-main a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #737373;
  font-weight: bold;
  padding: 5px 30px 5px 30px;
  margin-bottom: 12px;
  list-style: none;
  position: relative;
  
}
.sidebar-nav-main a:hover{
  text-decoration: none;
}