/*** intopopup ***/
.introPopup__wrapper {
  transition: bottom 1s ease;
  position: absolute;
  padding: 0;
  width: 450px;
  max-width: 95%;
  margin: auto;
  right: 0;
  bottom: calc(-100% + 88px);
  background: #fff;
  position: fixed;
  z-index: 1000;
  box-shadow: 0px 4px 9px 0px #000000;
}

.introPopup__wrapper.active {
  opacity: 1;
  bottom: 0;
}

.introPopup__wrapper.minimum {
  top: calc(100% - 29px);
  transition: none;
  max-width: 90%;
}

.minimum .intro-popup .minimize-button {
  display: none;
}

.intro-popup-header {
  padding: 6px 25px;
  padding-right: 65px;
  background: #0084be;
  position: relative;
  min-height: 29px;
}

.intro-popup-header span {
  cursor: pointer;
  width: 12px;
  height: 12px;
  padding: 11px 15px;
  display: inline-block;
}

.intro-popup .minimize-button {
  background: url(../images/popup/minimize.png) no-repeat center;
}

.intro-popup .close-button {
  background: url(../images/popup/close.png) no-repeat center;
  position: relative;
}

.intro-popup .resize-button {
  background: url(../images/popup/maximize.png) no-repeat center;
  display: none;
}

.minimum .intro-popup .resize-button {
  display: inline-block;
}

.intro-popup-header>p {
  width: auto;
  position: absolute;
  z-index: 99999;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.intro-popup-content {
  height: auto;
  padding: 16px 25px;
  background-color: #002345;
  position: relative;
}

.intro-popup-header-title {
  font-size: 16px;
  padding: 0px;
  display: block;
  line-height: normal;
  text-align: left;
  color: #fff;
  font-weight: 700;
}

.intro-popup-title {
  margin: 0;
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
}

.intro-popup-title a {
  color: #fff;
}

.popup-inner-content {
  font-size: 16px;
  color: #cccccc;
  display: block;
  font-weight: 300;
}

.popup-inner-content p>a {
  font-weight: 500;
  color: #03abe3;
}

.popup-inner-content p>a:hover {
  color: #03abe3;
}


@media only screen and (min-width: 768px) {
  .intro-popup {
    min-width: auto;
    min-width: 100%;
  }

  .introPopup__wrapper.minimum {
    width: 259px;
    background: transparent;
  }

  .introPopup__wrapper.minimum .intro-popup-header-title {
    font-size: 12px;
  }
}
/*** END OF intropopup ***/

/*** header changes ***/
.inner-nav .nav-right>li {
  position: relative;
}

.inner-nav .nav-right>li:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 25px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 25px;
  right: 0;
}

/* logo changess */
.et-branding-logo .logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.et-branding-logo {
  background: url(../images/logo/GFP_footer_bg.png) no-repeat center;
  background-size: contain;
  padding-left: 40px;
  width: fit-content;
  min-width: 330px;
}

.et-branding-logo .logo-wrap img {
  height: auto;
}
/*** END OF header changes ***/

/*** page loader ***/
.show-loader .custom-loader {
  display: flex;
}

.custom-loader {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100% !important;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0 !important;
  z-index: 9999;
  opacity: 1 !important;
  overflow: hidden;
}

.custom-loader .loader-logout {
  width: 64px;
  height: 64px;
  content: "LOADER";
  background-image: url(../images/Spinner-1s-200px.gif);
  background-size: 64px;
}
/*** END OF page loader ***/
