@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap');

:root {
    /* template BG color */
    --bgColor1: #DEF5E5;
    --bgColor2: #FFE1E1;
    --bgColor3: #E1FFB1;
    --bgColor4: #FAF7F0;
    --bgColor5: #F9F9F9;
    --bgColor6: #EEF1FF;
    --bgGradient1: linear-gradient(to right top, #ffafbd, #ffb3b4, #ffb7ac, #ffbda5, #ffc3a0);
    --bgGradient2: linear-gradient(to right top, #2193b0, #37a3bf, #4ab3ce, #5cc4de, #6dd5ed);
    --bgGradient3: linear-gradient(to right top, #ee9ca7, #f3acb5, #f7bdc4, #fbcdd2, #ffdde1);
    --bgGradient4: linear-gradient(to right top, #6d327c, #485DA6, #00a1ba, #00BF98, #36C486);
    --bgGradient5: linear-gradient(to right top, #38438b, #944b94, #d75a88, #ff7e71, #ffb25f, #ffeb68);
    --bgGradient6: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
    --bgImageURL1: url(../img/bodyBG.jpg);
    --bgImageURL2: url(../img/bodyBG2.jpg);
    --bgImageURL3: url(../img/bodyBG3.jpg);
    --bgImageURL4: url(../img/bodyBG4.jpg);
    --bgImageURL5: url(../img/bodyBG5.jpg);
    --bgImageURL6: url(../img/bodyBG6.jpg);
    --themeFont: 'Nunito', sans-serif;
    /* base Heading Setting */
    /* bg color End */
    --black: #000000;
    --black900: #0d0e10;
    --black800: #646f79;
    --black700: #475569;
    --black600: #9ca6af;
    --black500: #b7bfc6;
    --black400: #d5dce0;
    --black300: #edf1f2;
    --black250: #f4f6f6;
    --black200: #f6f8f9;
    --black100: #fafafa;
    --white: #fff;
    --green: #28a745;
    --greenHover: #38e788;
    --orange: #ffc107;
    --skyblue: #17a2b8;
    --orangeHover: #ffc925;
    --red: #dc3545;
    --redLight: #e66666;
    --redDark: #cf3246;
    --blue: #4e3bc2;
    --pink: #ff508d;
    --blueBtn: #4e3bc2;
    --blackBtn: #444444;
    --purple: #E918ED;
    --inputControlHoverBG: #eaf7ff;
    --blueLight: #8780cd;
    --yellow: #FFEB3B;
    --lightYellow: #FCFF70;
    --btnLinkHoverColor: #eaf7ff;
    --veryLight: 100;
    --light: 200;
    --regular: 300;
    --medium: 300;
    --semiBold: 400;
    --bold: 500;
    --veryBold: 600;
    /* --themeFont: "Montserrat", sans-serif; */
    /* --themeFont: 'Inter',sans-serif; */
    /* --baseFontSize: 14px; */
    --normalSpeed: all 0.5s linear;
    /* custom Styles */
    --headerBoxShadow: 0px 1px 5px rgb(41 85 115 / 21%);
    --sideMenuBoxShadow: 0 17px 12px rgb(42 62 82 / 20%);
    --bodyBgColor: #F5F9FD;
    --activeMainSidemenu: 0px 8px 20px rgba(0, 0, 0, 0.06);
    --bodyBgGray: #f0f4f7;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
ul {
  padding: 0;
}
strong {
  font-weight: var(--semiBold);
}
body {
    font-family: var(--themeFont);
    font-size: 14px;
    overflow-x: hidden;
    background: var(--bodyBgGray);
    font-weight: 400;
    padding: 0 !important;
    --blue: #4e3bc2;
}
h1 {
  font-family: "Montserrat", sans-serif;
}
/* loader css */
.loader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  left: 0;
  top: 0;
}

.loaderBox {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loaderBox div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loaderBox div:nth-child(1) {
  left: 8px;
  animation: pageLoader1 0.6s infinite;
  background-color: var(--blue);
}
.loaderBox div:nth-child(2) {
  left: 8px;
  animation: pageLoader2 0.6s infinite;
  background-color: var(--red);
}
.loaderBox div:nth-child(3) {
  left: 32px;
  animation: pageLoader2 0.6s infinite;
  background-color: var(--green);
}
.loaderBox div:nth-child(4) {
  left: 56px;
  animation: pageLoader3 0.6s infinite;
  background-color: var(--orange);
}
@keyframes pageLoader1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pageLoader3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes pageLoader2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/* -----------------------------------------------------------------------Header CSS -------------------------*/
.headerWrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  display: grid;
  grid-template-columns: 130px 1fr;
  z-index: 999;
}
.logoWrapper {
  background: #764abc;
  display: flex;
  align-items: center;
  padding-left: 48px;
  font-size: 1.5em;
  font-weight: var(--bold);
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: 10px center;
  color: var(--white);
  background-size: 27px;
}
.HeaderMenusWrapper{
  background: #764abc;
  box-shadow: var(--headerBoxShadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.headerItems,.headerLinksSearchWrapper {
  display: flex;
}
.headerLinksOptions {
  display: none;
  position: absolute;
  left: 0;
  top: 6px;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  padding-top: 32px;
}
.headerLinksItem:hover .headerLinksOptions,
.headerLinksItem:focus .headerLinksOptions{
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.headerLinksOptions ul{
  margin: 0;
    background: #fff;
    padding: 10px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 9%);
}
.headerLinksOptions ul:after{
  content: '';
  position: absolute;
  top: -16px;
  left: 10px;
  border-style: solid;
  border-width: 9px;
  border-color: transparent transparent var(--white) transparent;
}
.headerLinksOptions ul li{
  color: var(--black700);
  min-width: 222px;
  border-bottom: 1px solid var(--black200);
  padding: 6px 10px 6px 20px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: var(--semiBold);
  font-family: 'Inter',sans-serif;
  font-size: 0.9rem;
}

.headerLinksOptions ul li:last-child{
  border:0;
}
.headerLinksOptions ul li:hover{
  color:var(--blue);
  cursor: pointer;
  background: var(--btnLinkHoverColor);
}
.headerLinksWrapper {
  background: #00000000;
  border: 0;
  border-radius: 40px;
  padding: 2px 5px;
  color: var(--white);
  display: flex;
  align-items: center;
  column-gap: 6px;
  font-weight: var(--semiBold);
  font-family: 'Inter',sans-serif;
  font-size: 0.8rem;
}

.headerLinks {
  background: #00000000;
  border: 0;
  border-radius: 40px;
  padding: 2px 8px;
  color: var(--white);
  display: flex;
  align-items: center;
  column-gap: 6px;
  font-weight: var(--semiBold);
  font-family: 'Inter',sans-serif;
  font-size: 0.8rem;
}
.HeaderLinkArrowIcon {
  display: block;
  height: 12px;
  width: 15px;
  background-image: url(../img/icons/headerArrrowLink.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
}
.headerLinkItemBadgeType .headerLinks {
  background-color: var(--lightYellow);
  color: var(--black900);
}
.headerSearchBarWrapper {
  display: flex;
  align-items: center;
}
.headerSearchBarWrapper input {
  border: 0;
  width: 273px;
  font-size: 0.85rem;
  border-radius: 17px;
  padding: 6px 14px;
  background-color: #fff;
  line-height: 0.9rem;
  background-image: url(../img/icons/headerSearchIcon.svg);
  padding-left: 33px;
  background-repeat: no-repeat;
  background-position: 10px center;
  font-weight: 300;
}
.alertBtn.alertInbox {
  padding-right: 0;
}
.headerSearchBarWrapper input::placeholder { 
  color: var(--black600);
}
.headerSearchBarWrapper input:focus{
  background-color: var(--white);
  border:0;
  outline: 0;
  color: var(--black900);
}
.headerLinksItem {
  position: relative;
}
.userControlOptions {
  display: none;
}
.userProfileControls {
  position: relative;
}

.userControlInner {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.userProfileImg img {
  height: 28px;
  width: 28px;
}
.userProfileImg {
  border: 3px solid rgb(255 255 255 / 31%);
  border-radius: 50%;
}
.userControlText {
  color: var(--white);
  font-size: 0.8rem;
  padding-right: 20px;
  max-width: 163px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: var(--semiBold);
  position: relative;
}
.arrowIconUSerControl {
  display: block;
  height: 7px;
  width: 10px;
  background-image: url(../img/icons/headerArrrowLink.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
  position: absolute;
  right: 9px;
  top: 6px;
}
.userControlOptions2 {
  display: none;
  position: absolute;
  top: 12px;
  right: 0;
  padding-top: 32px;
}
.userControlOptions2 ul:after{
  content: '';
  position: absolute;
  top: -17px;
  right: 3px;
  border-style: solid;
  border-width: 9px;
  border-color: transparent transparent var(--white) transparent;
}
.userControlOptions2 ul {
  margin: 0;
  background: #fff;
  padding: 10px;
  position: relative;
  border-radius: 3px;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 9%);
}
.userControlOptions2 ul  li .normalLinks{
  display: block;
  width: 100%;
  border: 0;
  text-align: left;
  padding: 8px;
  background: transparent;
  min-width: 200px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.userControlOptions2 ul  li .normalLinks:hover,
.userControlOptions2 ul  li .normalLinks:focus{
  color: var(--blue);
    background: var(--btnLinkHoverColor);
    
}
.footerUserOption {
  border-top: 1px solid var(--black250);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}
.footerUserOption .linksuserControl{
  font-size: 1rem;
  background: transparent;
  display: flex;
  border: 0;
  align-items: center;
  padding: 2px 8px;
  border-radius: 2px;
  transition: all 0.3s ease;

}
.footerUserOption .linksuserControl:hover{
  background:var(--btnLinkHoverColor);
  color:var(--blue);
}
.footerUserOption .linksuserControl:hover svg path{
  fill:var(--blue);
}
.footerUserOption .linksuserControl.logoutBtn{
  border: 1px solid rgb(86 129 233);
  padding: 2px 8px;
  border-radius: 21px;
  color: var(--blue);
  font-weight: var(--semiBold);
  transition: all 0.3s ease;
}
.footerUserOption .linksuserControl.logoutBtn:hover,
.footerUserOption .linksuserControl.logoutBtn:focus{
  color:var(--white);
  background:var(--blue);;
}
.userProfileControls:hover {
  cursor: pointer;
}
.userProfileControls:hover .userControlOptions2{
  display: block;
}
.headerUserLinkOptions {
  position: absolute;
  top: 12px;
  right: 0;
  padding-top: 32px;
  display: none;
}
.userProfileControls:hover .headerUserLinkOptions{
  display: block;
}
.headerUserLinkOptionsInner {
  min-height: 300px;
  background: rgba(247,248,249,.88);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  box-shadow: 0 12px 27px 0 rgb(0 0 0 / 15%);
  width: 400px;
  padding: 13px;
  box-sizing: border-box;
  margin-top: 5px;
}
.headerUserLinkOptionsSection{
  border-radius: 12px;
  display: flex;
  position: relative;
  padding: 10px 14px;
  transform: translateY(0);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 9%);
  background: var(--white);
  transition: .2s;
  margin-bottom: 15px;
}
.headerUserLinkOptionsSection:hover{
  transform: translateY(-2px);
}
.headerUserLinkOptionsSection.lightWhite{
  background-color: rgb(250, 250, 250);
}
.userIcon {
  height: 40px;
  width: 40px;
  background-color: var(--blue);
  border-radius: 100%;
  background-image: url(../img/userPic.svg);
}
.menuOptionUserSection {
  display: flex;
  column-gap: 10px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.userIconAndName {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.userNameAndRole h5 {
  font-size: 1.09rem;
  margin: 0;
  line-height: 1.15rem;
}
.userNameAndRole p {
  margin: 0;
}
.goToProfileBtn {
  border-bottom: 5px;
  background: transparent;
  border: 1px solid var(--blue);
  padding: 4px 10px;
  border-radius: 17px;
  font-weight: var(--semiBold);
}
.buttonMoreOptionIcon {
  height: 32px;
  width: 32px;
  background: rgb(82 92 105 / 10%);
  border-radius: 50%;
  background-image: url(../img/loginHistory.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.buttonMoreOptionIcon.loginHistory{
  background-image: url(../img/loginHistory.svg);
}
.buttonMoreOptionIcon.extensions{
  background-image: url(../img/extensions.svg);
}
.buttonMoreOptionIcon.notifications{
  background-image: url(../img/notifications.svg);
}
.buttonMoreOptionIcon.logout{
  background-image: url(../img/logout.svg);
}
.buttonMoreOptionIcon.mySite{
  background-image: url(../img/mySite.svg);
}
  .buttonMoreOption {
    display: flex;
    width: 100%;
    column-gap: 10px;
    text-decoration: none;
    color: var(--black900);
    font-weight: var(--semiBold);
    align-items: center;
    justify-content: space-between;
}
.buttonMoreOptionText {
  position: relative;
}
.buttonMoreOption:hover{
  color: var(--black900);
  text-decoration: none;
}
.buttonMoreOptionBadge {
  background: var(--green);
  color: var(--white);
  padding: 3px 6px;
  border-radius: 20px;
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 0.7rem;
  line-height: 0.8rem;
}
.twoColumnSec{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
}
.iconAndLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
.moreOptionLinkLabel {
  margin: 0;
  font-size: 0.8rem;
}
.goToProfileBtn.insideLighBg {
  border-color:transparent;
  background: var(--white);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 18%);
  padding: 5px 14px;
  font-size: 0.8rem;
  line-height: 1rem;
}
.goToProfileBtn.insideLighBg:hover{
  border-color:var(--blue);
}
.changeColorThemeInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  width: 100%;
}
.colorBar {
  height: 15px;
  margin-bottom: 2px;
  background: var(--black100);
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.colorBar span{}
.colorBar span:nth-child(1){
  background:var(--orange);
}
.colorBar span:nth-child(2){
  background:var(--green);
}
.colorBar span:nth-child(3){
  background:var(--red);
}
.colorBar span:nth-child(4){
  background:var(--blue);
}
.colorBar span:nth-child(5){
  background:var(--purple);
}
.colorBar span:nth-child(6){
  background:var(--blackBtn);
}
.headerUserLinkOptionsSection.changeColorTheme {
  background-image: linear-gradient(to right, #8360c3, #2ebf91);
}
.changeColorThemeInner>div {
  color: #fff;
}
.headerRightLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
.alertBtn {
  background: transparent;
  border: 0;
  padding: 0 10px;
  position: relative;
}
.alertBtn .iconBadge {
  background: #ffeb3b;
  color: var(--black900);
  font-size: 0.6rem;
  font-weight: var(--bold);
  line-height: 0.8rem;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  position: absolute;
  display: flex;
  top: -5px;
  right: 2px;
  animation: notification 02s ease-in-out infinite;
  align-items: center;
  justify-content: center;
}
@keyframes notification {
  0%{transform: scale(1);}
  50%{transform: scale(1.1);}
  100%{transform: scale(1);}
  
}
.alertsActionButtons {
  border-left: 1px solid var(--black600);
  border-right: 1px solid var(--black600);
  padding-right: 10px;
}
.fixedSubHeader {
  position: fixed;
  width: calc(100% - 250px);
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: rgb(244 247 249);
  z-index: 99;
}
.textControlLabel {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 1rem;
}
.textControlItem select {
  color: var(--black900);
  font-size: 1rem;
  line-height: 1.1rem;
  min-height: 33px;
  font-weight: var(--medium);
  background-image: url(../img/ddlDownArrow.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px 10px;
  border: 0;
  padding-left: 0;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.defaultColor {
  font-size: 0;
  display: block;
  height: 25px;
  width: 25px;
  border-radius: 22px;
}
.marginItemControlWpr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background: #eaf7ff;
  padding: 5px;
  margin-top: 5px;
}
.marginItemControl {
  display: flex;
  column-gap: 5px;
  align-items: center;
}
.marginItemControl span{
  display: inline-block;
  min-width: 46px;
  font-size: 14px;
  color: #444;
  line-height: 18px;
}
.marginItemControl .typeValuteInput {
  width: 50px;
  padding: 2px 6px;
  text-align: center;
  height: 28px;
  border: 1px solid #cccc;
  border-radius: 5px;
  color: #000;
  font-size: 14px;
}
/* -----------------------------------------------------------------------Header CSS ------------------------- End*/
/* -----------------------------------------------------------------------Layout Settings -------------------------*/
.PageWrapper {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  padding-top: 40px;
}
.pageBodyWrapper {
  box-sizing: content-box;
  position: relative;
  height: calc(100vh - 40px);
  padding: 0px 0px;
  overflow: hidden;
  overflow-x: hidden;
  display: flex;
  align-items: flex-start;
}

*::-webkit-scrollbar {
  width: 8px;
  
}
 
*::-webkit-scrollbar-track {
  box-shadow: none;
  background:transparent;
}
 
*::-webkit-scrollbar-thumb {
  background-color: var(--black500);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}
*::-webkit-scrollbar-thumb:hover{
  background-color: var(--black800);
  }
  .themBtn {
    color: #000;
    background: var(--white);
    text-decoration: none;
    border: 0;
    padding: 7px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.1rem;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 9%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.themBtn.themBtnLikeInput {
  min-height: 45px;
  display: inline-flex;
}
.themBtn svg{
  transition: all 0.3s ease;
}
.themBtn:hover svg{
 transform: translateX(5px);
}
.themBtnIcon {
  height: 30px;
    width: 30px;
    display: block;
    border-radius: 50%;
    margin-left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pageTitleActionButtons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.themBtn:hover{
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgb(87 91 211 / 24%);
}
.themBtn.orange_bg{
  background:var(--orange);
  color:var(--white);
  border: 0;
}
.themBtn.orange_bg:hover{
  background:var(--orangeHover);
}
.themBtn.red_bg{
  background:var(--red);
  color:var(--white);
  border: 0;
} 
.themBtn.green_bg{
  background:var(--green);
  color:var(--white);
}
.themBtn.green_bg:hover{
  background:var(--greenHover);
}
.themBtn.purple_bg{
  background: var(--blue);
  color: var(--white);
} 
.themBtn.blue_bg{
  background:var(--blueBtn);
  color:var(--white);
}
.themBtn.black_bg{
  background:var(--blackBtn);
  color:var(--white);
}
.readOnlyInfoAside {
  padding: 20px 15px;
}
.readOnlyInfoAsideItemHeading {
  padding-bottom: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.readOnlyInfoAsideItem p {
  margin: 0;
  font-weight: var(--semiBold);
}
.readOnlyInfoAsideItem span {
  display: block;
  font-size: 1rem;
  font-weight: var(--regular);
  margin-bottom: 20px;
}
  .whiteBoxCard {
    position: relative;
    border-radius: 8px;
    min-height: 80px;
    padding: 0;
    box-shadow: 4px 3px 12px rgb(220 231 245 / 13%);
    background: #fff;
}
.positionSticky{
  position: sticky;
    top: 15px;
}
.whiteBoxCard.whiteBoxCardWithoutBG {
  background: transparent;
  box-shadow: none;
  border-top: 1px solid var(--black300);
  border-radius: 0;
}
.whiteBoxCardWithoutBG .whteboxHeader, .whiteBoxCardWithoutBG .whteboxBody {
  padding: 15px 0;
}
.whteboxHeader.border-bottom {
  border-bottom: 1px solid var(--black400);
}
.help-text.smallFontSize {
  font-size: 0.9rem !important;
  font-weight: var(--semiBold);
  padding: 0 !important;
}
.form-label.withRegularBoldFont {
  margin: 0!important;
  font-weight: var(--bold);
  margin-top: 15px !important;
  font-size: 1.1rem;
}
.lightHoverEffect{
  transition: all 0.3s ease;
}
.lightHoverEffect:hover{
  background: rgb(255 255 255 / 51%);
  border-radius: 20px;
}
.whteboxHeader {
  padding: 8px 20px;
  border-bottom: 1px solid var(--black200);
  background-color: #eaf7ff;
  border-radius: 8px 8px 0 0;
  border: 1px solid #daeaf4;
  background-image: url(../img/icons/headerBgPattern.svg);
}
.whteboxHeader h4{   
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter',sans-serif;
  }
.whteboxHeader p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}
.whteboxHeader p a{
  text-decoration: none;
}
.whteboxBody{
  padding:20px;
  display: none;
}
.whteboxBody.opened{
display: block;
}

.whiteBoxHeaderTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.showMoreBtn {
  color: var(--blue);
  display: flex;
  column-gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
}
.pageHeader {
  padding: 25px 0;
}
.pagebreadcum {
  position: relative;
  display: flex;
}
.pagebreadcum ul{
  position: relative;
  display: flex;
  margin: 0;
  column-gap: 10px;
}
.pagebreadcum ul li{
  position: relative;
  display: flex;
  padding: 5px 0;
  font-size: 1.2rem;
  line-height: 1.1rem;
  align-items: center;
  color: var(--black600);
}
.pagebreadcum ul a{
  position: relative;
  display: flex;
  padding-right: 20px;
  color: var(--blue);
  text-decoration: none;
  font-size: 1.1rem;
}
.pagebreadcum ul a span{
  position: absolute;
  right: 0;
  top: -6px;
}
.pagebreadcum ul a span svg{
  height: 30px;
  width: 7px;
}
.pageTitle {
  margin-top: 10px;
}
.pageTitleHeading {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.pageTitleHeadingWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pageBackBtn {
  text-decoration: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.pageBackBtn:hover{
  background: var(--white);
}
.pageBackBtn svg{
  height: 40px;
    width: 40px;
}
.pageTitleHeading  h2{
  margin:0;
}
.pageTitle p{
  margin: 0;
  font-size: 1rem;
  color: var(--black700);
}
.input-group-prepend .input-group-text {
  font-size: 1rem;
  line-height: 1.3rem;
  min-height: 45px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.helpVideoFrame,.videoFrame
{
  width: 100% !important;
    height: 215px !important;
    border-radius: 8px;
}
.favIconUpgrade {
  display: flex;
  margin-top: 15px;
  column-gap: 15px;
}
.faviconOnTab{
  background-image: url(../img/favIconOnTab.svg);
  width: 477px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
.faviconOnTab img{
  position: absolute;
    height: 21px;
    width: 21px;
    left: 72px;
    top: 17px;
    border-radius: 5px;
}
.faviconOnTab span{
  position: absolute;
  left: 103px;
  top: 17px;
  border-radius: 5px;
  max-width: 120px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.faviconHolder {
  display: flex;
  border: 1px solid var(--black400);
  border-radius: 7px;
  height: 60px;
  width: 60px;
}
.faviconHolder img{
  border-radius: 18px;
  width: 100%;
}
.videoHelpDiv
{
  border-top: 1px solid var(--black300);
    padding-top: 10px;
}
.margin0{
  margin:0 !important;
}
.helpVideoFrameWrapper {
  overflow: hidden;
  max-height: 300px;
}
.socialLinksUpdate {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.form-group .socialLinksUpdate .form-label {
  min-width: 170px;
  font-size: 1rem;
  margin: 0;
}
.customTableHeader {
  background-color: #eeee;
  padding: 9px 0;
  display: flex;
  align-items: center;
}

.userProfilNameIcon {
  height: 50px;
  width: 50px;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.NamewithEmail h6 {
  margin: 0;
}
.tableText {
  font-size: 0.9rem;
}
.statusBadge {
  background: #eee;
  padding: 2px 8px;
  border-radius: 10px;
  line-height: 0.85rem;
  display: inline-block;
  text-align: center;
}
.statusBadge.active{
  background: var(--blue);
  color: var(--white);
}
.statusBadge.inactive{}
.statusBadge.hold{}
.customTableRow {
  border-bottom: 1px solid var(--black300);
}
.customTableBody {
  padding-bottom: 10px;
  min-height: calc(100vh - 450px);
}
.customTableHeader .customTH {
  font-size: 0.9rem;
}
.customTH .filterArrow{
  margin-left: 5px;
    display: inline-block;
    width: 20px;
}
.customTableHeader  .customTH,.customTableRow .customTD{
  padding: 10px;
}
.customTableRow .customTD a{
  text-decoration: none;
  color: var(--blue);
}
/* .customTableBody .customTableRow:last-child{
  border:0;
} */
/* Width Adjustments */
.customTableHeader,
.customTableRow {
    display: grid;
    grid-template-columns: 5% 1fr 13% 9% 14% 10% 12% 4% 14%;
    align-items: center;
    padding: 5px 0;
}

.changeThemeMenu {
  background: var(--white);
  width: 250px;
  height: calc(100vh - 69px);
  top: 0;
  left: 0;
  border-top: 5px solid var(--purple);
  border-right: 1px solid var(--black300);
}
.changeThemeMenu.mainThemeMenu{
  position: absolute;
    top: 0;
    left: 0;
    background: var(--white);}
.changeThemeMenu.backgroundTheme,
.changeThemeMenu.textStyling,
.changeThemeMenu.colorStyling
{
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--white);
  border-top-color: var(--orange);
  z-index: -999;
  opacity: 0;
  transition: all 0.5s ease;
   
}
.changeThemeMenu.backgroundTheme.show,
.changeThemeMenu.textStyling.show,
.changeThemeMenu.colorStyling.show
{
left: 250px;
opacity: 1; z-index: 99;
}
.changeThemeMenuHeader {
  display: flex;
  font-size: 1.1rem;
  font-weight: var(--bold);
  border-bottom: 1px solid var(--black300);
  padding: 9px 10px;
  position: relative;
  background: var(--white);
  justify-content: space-between;
  align-items: center;
}

.changeThememenuBody {
  padding: 20px;
}
.ThemeMainOptionsItem p {
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 1px;
  margin-top: 20px;
}
.ThemeMainOptionsItem button {
  height: 100px;
  border: 1px solid var(--black300);
  display: flex;
  width: 100%;
  background: transparent;
  border-radius: 10px;
  position: relative;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}
.ThemeMainOptionsItem.active button {
  border: 3px solid var(--blue);
}
.ThemeMainOptionsItem.active button:after, .backgroundColorExamples.active:after,.textStylingelements.active:after{
  content: '';
  background-image: url(../img/icons/blueTick.svg);
  height: 24px;
  width: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -9px;
  left: -6px;
  background-color: var(--white);
  border-radius: 50%;
}
.backgroundColorExamples.active,
.textStylingelements.active
{
  border-color: var(--blue);
  border-width: 2px;
}
.customizeColor .colorPallete {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  height: 25px;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}
.backgroundColorExamples {
  position: relative;
  height: 60px;
  width: 100%;
  background: transparent;
  border: 1px solid transparent;
  background: var(--white);
  margin-bottom: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  color: var(--black700);
}
.backgroundColorExamples.default:before{
  content: 'Selected';
  position: absolute;
  right: 3px;
  top: -12px;
  background: var(--white);
  color: var(--black800);
  font-size: 0.9rem;
  line-height: 0.9rem;
  padding: 2px 7px;
  border-radius: 16px;
  border: 2px solid var(--blue);
}


.themeName{
  padding: 4px 5px;
  font-size: 1rem;
}
.themeInfo{
  font-size: 0.8rem;
    padding: 4px 5px;
}
.ThemeMainOptionsItem .customizeColor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 13px;
}
.ThemeMainOptionsItem span,
.ThemeMainOptionsItem small{
  display: block;
  line-height: 100%;
}
.customizeColor .colorPallete small{}
.customizeColor .colorPallete small:nth-child(1){background:#170DF2}
.customizeColor .colorPallete small:nth-child(2){background:#FFADFF}
.customizeColor .colorPallete small:nth-child(3){background:#FDD80D}
.customizeColor .colorPallete small:nth-child(4){background:#FC4E1A}
.ThemeMainOptionsItem .customizeBackground {
  background-image: url(../img/bodyBG.jpg);
  background-size: cover;
  color: var(--white);
}
.ThemeMainOptionsItem .customizeText {
  background-color: var(--btnLinkHoverColor);
  border-color: var(--btnLinkHoverColor);
  background-image: url(../img/changeText.png);
}
.changeThemeMenu.mainThemeMenu {
  border-left: 1px solid var(--black300);
}
.templatePreviewArea{
  width: 100%;
  background: var(--bodyBG);
  height: calc(100vh - 69px);
  overflow-x: hidden;
  overflow-y: auto;
}
.templatePreviewArea.TemplateEditThemeMode{
  padding-left: 250px;
  padding-top: 59px;
}
.backgroundThemeTabHeader {

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  border-bottom: 1px solid var(--black300);
  background: var(--white);
}
.backgroundThemeTabHeader a {
  text-decoration: none;
  padding: 5px 10px;
  color: var(--black800);
  transition: all 0.3s ease;
}
.backgroundThemeTabHeader a.active{
  background: orange;
  color: var(--white);
}
.tabContentbg {
  padding: 20px 15px;
  display: none;
}
.tabContentbg.show{
  display: block;
}
.textStylingInner {
  padding: 20px 10px;
}
.changeThemeMenu.textStyling.show {
  /* background: linear-gradient(to right top, #9cb9ee85, #acc1f3, #bdedf7, #cdfbd7, #ffeddd); */
}
.textStylingelements {
  border: 1px solid var(--black300);
  display: block;
  background: var(--white);
  width: 100%;
  font-size: 1rem;
  padding: 6px 10px;
  margin-bottom: 16px;
  text-align: right;
  font-weight: var(--bold);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.textStylingelements:hover{
  background:var(--black250);
}
.textStylingelements.textStylingHeading1 {
  font-size:30px;
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
}
.textStylingelements.textStylingHeading2 {
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
}
.textStylingelements.textStylingHeading3 {
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
}
.textStylingelements.textStylingHeading4 {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
}
.textStylingelements.textStylingHeading5 {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
}
.textStylingelements.textStylingHeading6 {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
}
.textStylingelements.textStylingParagraph1 {
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
}
.textStylingelements.textStylingParagraph2 {
  font-size: 17px;
  font-weight: 300;
  text-decoration: none;
  font-style: normal;
}
.pickedColor{
  fill:#1d1d1f;
}
input#fontColor {
  height: 0;
  width: 0;
  opacity: 0;
  z-index: -99;
}
.triggerColorPicker {
  height: 30px;
  width: 60px;
  border: 1px solid var(--black300);
  background: var(--white);
  margin-top: 5px;
  margin-right: 10px;
  transition: all ease 0.3s;
  border-radius: 5px;
  display: block;
}
.textStylingControlWrapper {
  background: var(--white);
  height: auto;
  position: absolute;
  left: 0px;
  opacity: 0;
  z-index: -1;
  width: 500px;
  transition: all 0.5s ease;
  
}


.textStylingControlWrapper.show{
  left:500px;
  opacity: 1;
  z-index: 99;
}
.fontPreview {
  padding: 15px;
}
.textStylingControlWrapperHeader:hover{
 cursor:move;
}
.textStylingControlWrapperHeader {
  font-size: 1.1rem;
  font-weight: var(--bold);
  border-bottom: 1px solid var(--black300);
  padding: 9px 10px;
  position: relative;
  background: var(--white);
  display: flex;
  justify-content: space-between;
}
.textStylingControlWrapperBody {
  display: flex;
}
.textStylingControlWrapperBody ul {
  margin: 0;
  width: 100%;
}
.textControlItem input[type="range"] {
  width: 100%;
}
[data-mode="edit"]
{
  outline:2px solid #764abc !important;
}

.textStylingControlWrapperBody ul li {
  padding: 10px;
  border-bottom: 1px solid var(--black300);
  width: 100%;
}
.singleClickTextControl {
  border: 1px solid #eaf7ff;
  background: #fff;
  margin-top: 5px;
  color: #464646;
  margin-right: 10px;
  border-radius: 4px;
  transition: all ease 0.3s;
  padding: 2px 8px;
  font-size: 14px;
}
.singleClickTextControl:hover{
background:var(--black200);
}
.singleClickTextControl.active{
  border-color: #eaf7ff;
  background:#eaf7ff;
}
.textStylingControlWrapperFooter {
  background: #ededed;
  padding: 7px 10px;
  display: flex;
  justify-content: flex-end;
  border-radius: 0 0 5px 5px;
}
.textStylingControlWrapperFooter .themBtn:hover svg {
  margin-left: 5px;
}
.textStylingControlWrapper.show.smallSize .fontPreview {
  transform: scale(0);
  height: 0;
  width: 0;
}
.textStylingControlWrapper.show.smallSize {
  width: 185px;
  box-shadow: 23px 29px 20px 15px #00000005;
}
.textStylingControlWrapper.show.smallSize .textStylingControlWrapperFooter{
  /* display: none; */
}
/* text editable  */
.text_editor {
  text-align: inherit;
  border: 1px dashed #c5f3ff;
  background: #fafafa;
  color: inherit;
  font-family: arial;
  cursor: text;
  display: inline-block;
  padding: inherit;
  border-radius: 4px;
  line-height: inherit;
  font-weight: var(--semiBold);
  outline: none;
  width: auto;
  font-weight: inherit;
  /* min-height: 100px; */
  font-size: inherit;
}

/* -----------------------------------------------------------------------Layout Settings ------------------------- End*/
/* -----------------------------------------------------------------------Side Menu ------------------------- End*/
.sideMenuWrapper {
  background: var(--white);
  height: calc(100vh - 40px);
  padding: 0px 0px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: var(--sideMenuBoxShadow);
  border-right: 1px solid #ddd;
}
.sideMenuInner ul li:last-child .sideMenuLinkItem .sideMenuItem{
  border-bottom: 0;
}
.sideMenuWrapper::-webkit-scrollbar {
  width: 12px;
  
}
 
.sideMenuWrapper::-webkit-scrollbar-track {
  box-shadow: none
}
 
.sideMenuWrapper::-webkit-scrollbar-thumb {
  background-color: var(--btnLinkHoverColor);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}
.sideMenuWrapper::-webkit-scrollbar-thumb:hover{
background-color: var(--blue);
}
.sideMenuLinkItem {
  text-decoration: none;
  display: block;
  padding: 0;
  transition: var(--normalSpeed);
  position: relative;
}
.sideMenuLinkItem.hasCollapsable.show {
  background: var(--black100);
  border-radius: 8px;
}
.sideMenuInner ul li{
  position: relative;
}
.sidemenuItemCollapsedSection li:first-child{
  border-radius: 8px 8px 0 0;
}
.sidemenuItemCollapsedSection li:last-child{
  border-radius: 0 0 8px 8px;
}

.sideMenuLinkItem .sideMenuItem{
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  border-bottom: 1px solid var(--black300);
  padding: 15px 0;
}
.sideMenuLinkItem .sideMenuItem:hover {
  background: var(--btnLinkHoverColor);
}
.sideMenuLinkItem .sideMenuText {
  font-size: 0.9rem;
  color: var(--black);
  font-weight: var(--semiBold);
  transition: all 0.3s ease;
  font-family: 'Inter',sans-serif;
}
.sideMenuLinkItem.active .sideMenuText {
  color: var(--blue);
}
 .sideMenuIcon {
  height: 20px;
  width: 25px;
}
.sidemenuItemCollapsedSection .sideMenuIcon {
  width: 24px;
  height: 18px;
}
.arrowIcon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 1px;
  top: 9px;
}
.sidemenuItemCollapsedSection {
  overflow: hidden;
  transition: all 0.5s ease;
  max-height: 0;
  opacity: 0;
}
.sideMenuLinkItem.hasCollapsable.show .sidemenuItemCollapsedSection{
  max-height: 300px;
  transition: all 0.5s ease;  

opacity: 1;
}
.sideMenuLinkItem.hasCollapsable.show .arrowIcon svg{
  transform: rotate(-90deg);
}
/* .sidemenuItemCollapsedSection ul {

} */
.sidemenuItemCollapsedSection ul li{
  position: relative;
  padding: 5px 10px;
}
.sidemenuItemCollapsedSection ul li a{
  font-size: 1rem;
    font-weight: var(--semiBold);
    color: var(--black700);
    line-height: 1rem;
    text-decoration: none;
    padding: 7px 0px;
    display: inline-block;
    margin-bottom: 2px;
    border-radius: 25px;
    display: flex;
    column-gap: 2px;
    position: relative;
    align-items: center;
}
.sidemenuItemCollapsedSection ul li.active a{
  background: var(--blue);
  color: var(--white);
  box-shadow: 0px 8px 20px rgb(0 0 0 / 6%);
}
.sidemenuItemCollapsedSection ul li a:hover,
.sidemenuItemCollapsedSection ul li:hover{
  cursor: pointer;
}


.sideMenuLinkItem .arrowIcon svg path{
  fill:var(--black700);
}
/* Hover and active State */
.sideMenuLinkItem:hover .sideMenuItem{
  cursor: pointer;
}





.sidemenuItemCollapsedSection ul li:hover{
  background: var(--btnLinkHoverColor);
}
 .sideMenuIcon .iconHolder{
  background-image: url(../img/icons/menuDashboard_white.png);
  background-size: contain;
  height: 20px;
  width: 20px;
  display: block;
  background-repeat: no-repeat;
  transition: var(--normalSpeed);
}
/* normal */
  .sideMenuIcon .iconHolder.dashboard{
  background-image: url(../img/icons/menuDashboard_black.svg);
}
  .sideMenuIcon .iconHolder.websiteTemplate{
  background-image: url(../img/icons/menuWebisteAndTemplate_Blue.svg);
}
  .sideMenuIcon .iconHolder.menusAndPages{
  background-image: url(../img/icons/menuMenusAndPages_blue.svg);
}
  .sideMenuIcon .iconHolder.menuLayouts{
  background-image: url(../img/icons/menuLayoutBlue.svg);
}
.sideMenuIcon .iconHolder.editMenus {
  background-image: url(../img/icons/pages_black.svg);
}
.active .sideMenuIcon .iconHolder.editMenus {
  background-image: url(../img/icons/pages_white.svg);
}
  .sideMenuIcon .iconHolder.siteDesign{
  background-image: url(../img/icons/menuSiteDesignn_blue.svg);
}
  .sideMenuIcon .iconHolder.communication{
  background-image: url(../img/icons/menuCommunnication_blue.svg);
}
  .sideMenuIcon .iconHolder.Advertiseing{
  background-image: url(../img/icons/menuAdverstiseing_blue.svg);
}
 .sideMenuIcon .iconHolder.Marketing{
  background-image: url(../img/icons/menuMarketing_blue.svg);
}
  .sideMenuIcon .iconHolder.seoAndsmo{
  background-image: url(../img/icons/menuSeoAndSmo_blue.svg);
}
  .sideMenuIcon .iconHolder.Analytics{
  background-image: url(../img/icons/menuAnaltics_blue.svg);
}
  .sideMenuIcon .iconHolder.Analytics{
  background-image: url(../img/icons/menuAnaltics_blue.svg);
}
  .sideMenuIcon .iconHolder.plans{
  background-image: url(../img/icons/menuPlans_black.svg);
}
.sideMenuLinkItem  .sideMenuIcon .iconHolder.manageRoles{
  background-image: url(../img/icons/menuManageroles_black.svg);
}
.sideMenuLinkItem  .sideMenuIcon .iconHolder.settings{
  background-image: url(../img/icons/menuSettings_blac.svg);
}
.sideMenuLinkItem  .sideMenuIcon .iconHolder.experiences{
  background-image: url(../img/icons/menuExperiences_black.svg);
}
.sideMenuLinkItem  .sideMenuIcon .iconHolder.help{    
  background-image: url(../img/icons/menuHelp_black.svg);
}
/* user Profile */
.sideMenuLinkItem  .sideMenuIcon .iconHolder.userProfile{    
  background-image: url(../img/icons/userProfile_Blackk.svg);
}
.sideMenuLinkItem.active .sideMenuIcon .iconHolder.userProfile{
  background-image: url(../img/icons/userProfile_Blue.svg);
}
/* business info */
.sideMenuLinkItem  .sideMenuIcon .iconHolder.businessInfo{    
  background-image: url(../img/icons/businessInfo_Black.svg);
}
.sideMenuLinkItem.active .sideMenuIcon .iconHolder.businessInfo{
  background-image: url(../img/icons/businessInfo_Blue.svg);
}
/* website listing */
.sideMenuLinkItem  .sideMenuIcon .iconHolder.websiteListing{    
  background-image: url(../img/icons/websiteListing_Black.svg);
}
.sideMenuLinkItem.active .sideMenuIcon .iconHolder.websiteListing{
  background-image: url(../img/icons/websiteListing_Blue.svg);
}
/* website Details */
.sideMenuLinkItem  .sideMenuIcon .iconHolder.websiteDetails{    
  background-image: url(../img/icons/websiteDetails_Black.svg);
}
.sideMenuLinkItem.active .sideMenuIcon .iconHolder.websiteDetails{
  background-image: url(../img/icons/websiteDetails_blue.svg);
}
/* website domain */
.sideMenuLinkItem  .sideMenuIcon .iconHolder.websiteDomain{    
  background-image: url(../img/icons/websiteDomain_Black.svg);
}
.sideMenuLinkItem.active .sideMenuIcon .iconHolder.websiteDomain{
  background-image: url(../img/icons/websiteDomain_Blue.svg);
}
/* active */
.active  .sideMenuIcon .iconHolder.dashboard{
  background-image: url(../img/icons/menuDashboard_white.svg);
}
.active  .sideMenuIcon .iconHolder.websiteTemplate{
  /* background-image: url(../img/icons/menuWebisteAndTemplate_white.svg); */
}
/* .sideMenuLinkItem.active  .sideMenuIcon .iconHolder.menusAndPages{
  background-image: url(../img/icons/menuMenusAndPages_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.siteDesign{
  background-image: url(../img/icons/menuSiteDesignn_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.communication{
  background-image: url(../img/icons/menuCommunnication_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.Advertiseing{
  background-image: url(../img/icons/menuAdverstiseing_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.Marketing{
  background-image: url(../img/icons/menuMarketing_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.seoAndsmo{
  background-image: url(../img/icons/menuSeoAndSmo_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.Analytics{
  background-image: url(../img/icons/menuAnaltics_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.plans{
  background-image: url(../img/icons/menuPlans_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.manageRoles{
  background-image: url(../img/icons/menuManageroles_white.svg);
}
.sideMenuLinkItem.active  .sideMenuIcon .iconHolder.settings{
  background-image: url(../img/icons/menuSettings_white.svg);
} */
.sideMenuLinkItem.active  .sideMenuItem{
  background: var(--btnLinkHoverColor);
}
.form-group{
  margin-bottom: 15px;
}
.form-group .form-label {
  padding-bottom: 1px;
  margin: 0;
  font-size: 0.8rem;
  color: #000;
  font-weight: 400;
  font-family: 'Inter',sans-serif;
  margin: 0 0 5px;
}
.form-group .form-label.withCount {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-group .form-label.withHighlightValue b {
 font-weight: 700;
}
.form-group .help-text {
  font-size: 0.8rem;
  padding: 5px 2px;
}
.form-group .form-control{
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3rem;
  min-height: 36px;
  border-radius: 3px;
}
.form-group .form-control:disabled{
  border-color: #ddd !important;
  background-color: #eee !important;
  cursor: not-allowed;
  user-select: none;
}
    
.form-group select.form-control:disabled{
  background-image: url(../img/ddlDownArrowgray.svg) !important;
}

.form-group .form-control:optional{
  border-color: var(--black500);
}
    .form-group .form-control.invalid {
        border: 1px solid var(--red) !important;
    }
.form-group.withRoundedInput .form-control {
  border-radius: 50px;
}
    .form-group .helpText {
        color: var(--red);
        font-weight: 500;
    }
.form-control.darkBorder {
    border-color: var(--blue) !important;
}
.form-group .form-control::placeholder { 
  color: var(--black600);
  opacity: 1; 
}
.form-group .form-control:hover,
.form-group .form-control:focus
{
  color: #212529;
  background-color: #fff;
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0px 1px 4px rgb(0 0 0 / 9%);
}
/* checkbox control */
.checkBox_Control{
  position: relative;
}
.checkbox_inner{
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-column-gap: 5px;
  align-items: center;
}
.checkbox_inner input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox_Label {
  font-size: 0.9rem;
  color: #000;
  font-weight: 400;
}
.checkbox_inner .checkmark {
  border: 1px solid #656363;
  height: 20px;
  width: 20px;
  display: block;
  border-radius: 3px;
  position: relative;
  transition: all 0.5s ease;
}
.checkbox_inner .checkmark:after{
  content: '';
  background-image: url(../img/icons/rightTick.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  position: absolute;
  width: 20px;
  height: 20px;
  background-position: 2px 4px;
  border-radius: 3px;
  transition: all 0.2s ease;
  transform-origin: center center;
  transform: scale(0);
}
.checkbox_inner input:checked ~ .checkmark{
background:var(--blue);
}
.checkbox_inner input:checked ~ .checkmark:after{
  transform:scale(1);
}
/* Radio Control*/
.radio_group{
  display: flex;
  column-gap: 15px;
}
.radio_Control{
  position: relative;
}
.radio_inner{
  display: grid;
  grid-template-columns: 25px 1fr;
  grid-column-gap: 10px;
  align-items: center;
}
.radio_inner input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio_Label {
  font-size: 0.9rem;
  color: #000;
  font-weight: 400;
}
.radio_inner .checkmark {
  border: 1px solid #656363;
  height: 21px;
  width: 21px;
  display: block;
  border-radius: 100%;
  position: relative;
  transition: all 0.5s ease;
}
.radio_inner .checkmark:after{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: all 0.2s ease;
  transform-origin: center center;
  transform: scale(0);
  background: var(--blue);
  top: 0px;
  left: 0px;
}

.radio_inner input:checked ~ .checkmark:after{
  transform: scale(0.6);
}
.button_group {
  display: flex;
  column-gap: 10px;
}
.button_group.flexEnd {
 justify-content: flex-end;
}
/* radio button end */


.infoLink {
  display: inline-block;
  height: 15px;
  width: 15px;
  background-image: url(../img/infoIcon.svg);
  background-size: contain;
  margin-bottom: -2px;
  background-repeat: no-repeat;
}
.form-group .form-control.form-select{
  background-image: url(../img/icons/ddlDownArrow_Black.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px 10px;
}
.uploadProfileImageSection {
  display: grid;
  grid-template-columns: 173px 1fr;
  grid-column-gap: 20px;
}
.imageUloadPlaceholder {
  background-color: #ebf7ff;
  border-radius: 8px;
  padding: 12px;
}
.imageUploadPlaceholderInner {
  border: dashed 1px #4eb7f5;
  border-radius: 3px;
  padding: 12px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.imageUploadPlaceholderInner svg path{
  fill:#4eb7f5;
}
.uploadImageBtn {
  font-size: 1rem;
  border: 1px solid #2e6afeb8;
  color: var(--blue);
  background: transparent;
  border-radius: 50px;
  padding: 10px 23px;
  line-height: 1rem;
  font-weight: var(--semiBold);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.uploadImageBtn:hover{
  background:var(--blue);
  color:var(--white);
}
.uploadImageMoreDetail {
  margin: 0;
  font-size: 1rem;
}
.uploadImageMoreLink {
  text-decoration: none;
  font-size: 1.1rem;
}
.aboutFieldNote {
  margin-top: 28px;
  margin-bottom: 0;
}
.psHeader {
  padding-left: 45px;
}
.reffLink{
  border-top: 1px solid var(--black200);
    padding-top: 10px;
}
.reffLink h5{
  margin: 0;
  font-size: 1rem;
}
.reffLink p{
margin-bottom: 0;
}
.reffLink a{
  text-decoration: none;
    font-size: 1.1rem;
}
.tableFilterControlWrapper {
  display: flex;
  align-items: center;
  column-gap: 15px;
  justify-content: space-between;
}
.filterControlItem {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.tableFilterlabel {
  padding-bottom: 1px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}
.tableFilterControlsLeft {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.tableFilterControl {
  min-width: 200px;
}
.tableFilterControl .form-control {
  background-position: right 0.9rem center !important;
  border-radius: 45px;
  min-height: 28px;
  padding: 4px 11px;
}
.tableFilterControl .form-control.form-Search {
  background-position: left 0.7rem center !important;
  background-image: url(../img/icons/headerSearchIconBlue.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  padding-left: 34px;
}
/* -----------------------------------------------------------------------Layout Settings ------------------------- End*/
/* -----------------------------------------------------------------------Dashboard ------------------------- End*/
.userDetailsLeftSection {
  display: grid;
  grid-template-columns: 78px 1fr 1fr 100px;
  grid-column-gap: 10px;
}
.userDetailsRightSection p, .userDetailsLeftSection p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--black700);
  line-height: 1.2rem;
}
.userDetailsRightSection p svg, .userDetailsLeftSection p svg{
  width: 37px;
}
.userDetailsRightSection p span small{
  font-size: 100%;
  color:var(--blue);
}
.userDetailsRightSection
{
  border-left: 1px solid var(--black300);
  padding-left: 10px;
}
.editLinkSec a span {
  font-size: 1rem;
  font-weight: var(--semiBold);
}
.editLinkSec a{
  color: var(--blue);
  text-decoration: none;
}
.userProductDetailsDashboard {
  display: flex;
  align-items: center;
  column-gap: 20px;
  border-top: 1px solid var(--black300);
  padding-top: 20px;
}
.userProductDetailsDashboard p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: var(--semiBold);
  color: var(--black900);
}
.userProductDetailsDashboard p span{
  font-weight: var(--medium);
  color:var(--black700);
}
.userProductDetailsDashboard div a{
  text-decoration: none;
  font-size: 0.95rem;
}
.dashboardServicesLinkWrapper {
  padding: 20px;
}
.dashboardServicesLinkWrapper {
  display: flex;
  column-gap: 15px;
}
.dashboardServicesLinkWrapper.blueBG {
  background: linear-gradient(103deg, rgba(17, 109, 255, 0) 39.12%, rgba(17, 109, 255, 0.19) 99.92%);
  border-radius: 10px;
}
.dashboardServicesLinkWrapper.greenBG {
  background: linear-gradient(103deg, rgb(17 255 46 / 0%) 39.12%, rgb(17 255 79 / 19%) 99.92%);
  border-radius: 10px;
}
.dashboardServicesLinkWrapper.redBG {
  background: linear-gradient(103deg, rgb(255 17 17 / 0%) 39.12%, rgb(255 17 17 / 19%) 99.92%);
  border-radius: 10px;
}
.dashboardServicesLinkWrapper.yellowBG {
  background: linear-gradient(103deg, rgb(255 237 17 / 0%) 39.12%, rgb(255 204 17 / 19%) 99.92%);
  border-radius: 10px;
}
.dashboardServicesLinkWrapper.purpleBG {
  background: linear-gradient(103deg, rgb(255 17 171 / 0%) 39.12%, rgb(193 2 152 / 19%) 99.92%);
  border-radius: 10px;
}
.dashboardServicesLinkWrapper.blackBG {
  background: linear-gradient(103deg, rgb(0 0 0 / 0%) 39.12%, rgb(18 18 18 / 19%) 99.92%);
  border-radius: 10px;
}


.dashboardServicesLinkWrapperIcon {
  width: 120px;
}
.dashboardServicesLinkWrapperIcon img
{
  width: 100%;
}
.dashboardServicesLinkWrapperDetails {
  width: 100%;
}
.dashboardServicesLinkWrapperTitleWpr {
  display: flex;
  justify-content: space-between;
}
.dashboardServicesLinkWrapperTitleWpr  .themBtn {
  display: flex;
  padding: 1px 20px;
  column-gap: 8px;
  align-items: center;
  max-height: 39px;
}
.dashboardServicesLinkWrapperTitleWpr  .themBtn svg{
  transition: all 0.3s linear;
}
.dashboardServicesLinkWrapperTitleWpr  .themBtn:hover svg{
  transform: translateX(5px);
}
.dashboardServicesLinkWrapperTitleWpr h5 {
  margin: 0;
}
.dashboardServicesLinkWrapperTitleWpr p {
  margin: 0;
  color: var(--black600);
}
.dashboardServicesLinkWrapperbodyWpr p {
  margin: 0;
  font-weight: var(--semiBold);
  font-size: 1.05rem;
  color: var(--black700);
  margin-top: 5px;
}
.dashboardServicesLinkWrapperbodyWpr ul {
  margin: 0;
}
.dashboardServicesLinkWrapperbodyWpr ul li{
  margin: 0;
  position: relative;
  padding: 5px 10px;
  font-size: 0.9rem;
  line-height: 1rem;
  padding-left: 31px;
  font-weight: var(--semiBold);
}
.dashboardServicesLinkWrapperbodyWpr ul li:before{
  content: attr(data-title);
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--black500);
}
/* -----------------------------------------------------------------------Dashboard ------------------------- End*/
.themeSettingMenu {
  width: 300px;
  background: #fff;
  display: block;
  border-left: 1px solid #eaf7ff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
.sideMenuContentHeader
{
  display: flex;
  padding: 0px 8px 0px;
  position: relative;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-left: 0;
}
.sideMenuHelpHeaderText{
  font-size: 1rem;
    color: var(--black900);
    font-weight: var(--semiBold);
    transition: all 0.3s ease;
    font-family: 'Inter',sans-serif;
}
.sideMenuHelpHeaderHelp ,
.sideMenuHelpHeaderClose{
  height: 20px;
  width: 20px;
  background: #eaf7ff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.sideMenuHelpHeaderClose:hover
{
  background:#ffeaea;
}
.ThemeMainOptionsItem {
  margin-bottom: 10px;
}
.ThemeMainOptionsItem.nonCustomize .customizeColor {
  padding-top: 0;
  height: auto;
}
.sideMenuHelpHeaderHelp{
  background:#eaf7ff;
  margin: 0 4px;
}
.themeSettingMenu .sideMenuContentHeader {
  padding: 4px 15px 4px;
}
.sideMenuHelpHeaderHelp svg{
  height:18px;width:18px;
}
.sideMenuHelpHeaderClose svg{
  height: 17px;
    width: 17px;
}
.sideMenuContentHeader > span {
  display: flex;
  align-items: center;
}
.sideMenuContentBody{
  height: calc(100vh - 65px);
  overflow-x: hidden;
  padding: 10px;
  overflow-y: auto;
}
.sideMenuContentThemeTextOption label.radio_inner {
  margin-bottom: 10px;
}
.sideMenuContentThemeTextOption label.radio_inner .checkmark {
  transform: scale(0.8);
}
.sidemenuContentHelpBox {
  background: #eaf7ff;
  padding: 10px;
  border-radius: 5px;
}
.sidemenuContentHelpBox h3 {
  font-size: 1.0rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  background-image: url(../img/icons/iconColor.svg);
  padding-left: 25px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 0 0;
}
.customizeColor.selected{
  position: relative;
}
.customizeColor.selected:after{
  content: '';
  background-image: url(../img/icons/rightTick.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  position: absolute;
  width: 20px;
  height: 20px;
  background-position: 4px 5px;
  background-color: var(--blue);
  border-radius: 100%;
  left: 5px;
  top: 2px;
}
.sidemenuContentHelpBox p {
  font-size: 0.8rem;
  text-align: center;
  margin: 0;
  line-height: 1rem;
  margin-top: 5px;
  margin-bottom: 10px;
}
.sidemenuContentHelpBox p a{
  color: #000;
}
.sidemenuContentHelpBoxCloseBtnWpr {
  display: flex;
  justify-content: flex-end;
}
.sidemenuContentHelpBoxCloseBtnWpr {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  font-weight: 500;
  color: var(--blue);
  outline: none;
}
.addPagesMenu,.addComponentsMenu {
  width: 300px;
  background: #fff;
  display: block;
  border-left: 1px solid #eaf7ff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
 .sidemenuContentHelpBox h3.addPagesMenu{
  background-image: url(../img/icons/addPagesTitle.svg);
  background-size: contain;
}
 .sidemenuContentHelpBox h3.addComponentsMenu{
  background-image: url(../img/icons/gridIcon.svg);
  background-size: contain;
}
.addedMenusList >li > .sortablePageandContentItem {
  border: 1px solid #c1e7ff;
  border-radius: 4px;
  padding: 6px 4px;
  display: flex;
  position: relative;
  text-decoration: none;
  font-size: 1.0rem;
  color: var(--black900);
  background: #eaf7ff;
  margin-bottom: 10px;
}
.MenusList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  width: 100%;
}
.MenusListItemIcon svg path {
  fill: var(--blue);
}
.menuListItemOptionsWrapper {
  position: absolute;
  right: 0;
  top: 43px;
  width: 212px;
  border: 1px solid var(--black300);
  background: var(--white);
  border-radius: 6px;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
  transform-origin: left top;
  z-index: 2;
  opacity: 1;
  padding: 10px 10px 0;
}
.menuListItemOptionsWrapper.show{
  transform: scale(1);
  z-index: 2; 
  opacity: 1;
}
.menListItemOption button {
  font-weight: 400;
  border: 0;
  border-bottom: 1px solid var(--black300);
  display: block;
  width: 100%;
  text-align: left;
  padding: 4px 10px;
  background: var(--white);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: var(--black);
}
.menListItemOption button:hover{
  background: var(--black300);
}
.menListItemOption button span svg{
  height: 18px;
  width: 18px;
}
.menListItemOption button:last-child{
  border-bottom: 0;
}
.menuListItemOptionsIconBtn {
  border: 1px solid var(--black300);
  border-radius: 50%;
  background: var(--white);
  transition: all 0.2s ease;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menuListItemOptionsIconBtn svg path {
  fill: var(--blue);
}
.menuListItemOptionsIconBtn:hover,
.menuListItemOptionsIconBtn:focus,
.menuListItemOptionsIconBtn.active{
  border-color:var(--blue);
  background:var(--blue);
  color:var(--white);
}
.menuListItemOptionsIconBtn:hover svg path,
.menuListItemOptionsIconBtn:focus svg path,
.menuListItemOptionsIconBtn.active svg path{
  fill:var(--white);
}
.menuListItemOptionsWrapper:before,
.menuListItemOptionsWrapper:after{
  content: '';
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent var(--black300) transparent;
  position: absolute;
  right: 10px;
  top: -18px;

}
.menuListItemOptionsWrapper:after{
 right:10px;
 top:-17px;
  border-color: transparent transparent var(--white)  transparent;
}
.MenusListitemLabel {
  font-size: 0.8rem;
}
.menuListItemOptionsIconBtn svg {
  height: 18px;
  width: 18px;
}
.sideMenuAddPagesButton {
  padding: 20px 10px 20px;
  display: flex;
  justify-content: center;
}
.sideMenuAddPagesButton button {
  padding: 5px 15px;
  background-color: var(--pink);
  /* background-color: var(--blue); */
  border: 0;
  display: flex;
  justify-content: center;
  color: var(--white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  padding-left: 27px;
  background-image: url(../img/icons/plusWhite.svg);
  background-repeat: no-repeat;
  background-size: 17px;
  background-position: 7px center;
}
.lihightPlaceholder{
  border:1px dashed var(--black300);
  height: 30px;
  width: 100%;
  margin:5px 0;
  border-radius: 8px;
  background-color: var(--black300);
}
.ui-sortable-handle.active .sortablePageandContentItem {
  background: #4e3bc2;
}
.ui-sortable-handle.active .sortablePageandContentItem  .MenusListItemIcon svg path{
  fill: var(--white);
}
.ui-sortable-handle.active .sortablePageandContentItem  .MenusListitemLabel{
  color:#fff;
}
.ui-sortable-handle.active .sortablePageandContentItem  .menuListItemOptionsIconBtn{
  background-color: #fff;
  border-color: #fff;
}
.ui-sortable-handle .sortablePageandContentItem  .menuListItemOptionsIconBtn:after{
  content:none;
}
.ui-sortable-handle.active .sortablePageandContentItem  .menuListItemOptionsIconBtn svg path{
  fill: var(--blue);
}
.sideMenusContent {
  display: flex;
  align-items: flex-start;
  position: sticky;
  top: 0;
}

/* modal add page */
.modalWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  height: 100%;
  z-index: 999;
  background: #000000c7;
  padding: 15px;
  display: none;
}
.modalWrapper.show{
  display: block;
}
.modalContent {
  position: relative;
  width: 100%;
}
.modalHeader {
  background: var(--blue);
  display: flex;
  justify-content: space-between;
  padding: 4px 15px;
  border-radius: 0;
  align-items: center;
  border-radius: 4px 4px 0 0;
}
.modalHeaderTitle {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.1rem;
}
.closeModalBtn {
  background-color: transparent;
  border: 0;
  outline: none;
  height: 22px;
  width: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image:url(../img/icons/crossWhite.svg);
}
.modalBody {
 position: relative;
}
.modalBodyContent {
  background: #fff;
  display: grid;
  grid-template-columns: 150px 280px 1fr;
}
.modalpageCategoryWrapper {
  height: calc(100vh - 60px);
  padding: 0px 0px;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 1px solid #ddd;
}
.modalpageCategoryTitle {
  padding: 4px 16px;
  font-weight: 300;
  background: var(--black700);
  color: #fff;
  font-size: 0.9rem;
  display: block;
}
.modalPageCategoryList {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 5px;
}
.modalPageCategoryListItem {
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  outline: none;
  flex-direction: column;
}
.modalPageCategoryListItemTitle {
  color: #000;
  font-size: 0.95rem;
}
.modalPageCategoryListItemIcon {
  height: 30px;
  width: 30px;
  display: block;
  background-color: transparent;
  background-image: url(../img/icons/categoryBlankPage.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.modalPageCategoryListItemIcon.iframePage {
  background-image: url(../img/icons/page_iFrame_black.svg);
}
.modalPageCategoryListItemIcon.landingPage {
  background-image: url(../img/icons/page_Landing_black.svg);
}
.modalPageCategoryListItemIcon.contactusPage {
  background-image: url(../img/icons/page_contactUs1_black.svg);
}
.modalPageCategoryListItemIcon.servicePage {
  background-image: url(../img/icons/page_service_black.svg);
}
.modalPageCategoryListItemIcon.testimonialPage {
  background-image: url(../img/icons/page_testimonial_black.svg);
}
.modalPageCategoryListItemIcon.featuresPage {
  background-image: url(../img/icons/page_features_black.svg);
}
.modalPageCategoryListItemIcon.blogPage {
  background-image: url(../img/icons/page_blog_black.svg);
}
.modalPageCategoryListItemIcon.listingPage {
  background-image: url(../img/icons/page_contactUs_black.svg);
}


.modalPageCategoryListItemIcon.embedComponentIcon {
  background-image: url(../img/icons/embedComponent_Black.svg);
}
.modalPageCategoryListItemIcon.mediaComponentIcon {
  background-image: url(../img/icons/mediaComponent_Black.svg);
}
.modalPageCategoryListItemIcon.imagesComponentIcon {
  background-image: url(../img/icons/imageComponent_Black.svg);
}
.modalPageCategoryListItemIcon.textComponentIcon {
  background-image: url(../img/icons/textComponent_black.svg);
}
/* active state */
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.embedComponentIcon {
  background-image: url(../img/icons/embedComponent_Blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.mediaComponentIcon {
  background-image: url(../img/icons/mediaComponent_Blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.imagesComponentIcon {
  background-image: url(../img/icons/imageComponent_Blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.textComponentIcon {
  background-image: url(../img/icons/textComponent_blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.blankPage {
  background-image: url(../img/icons/pages_blank_active.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.iframePage {
  background-image: url(../img/icons/page_iFrame_blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.landingPage {
  background-image: url(../img/icons/page_Landing_blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.contactusPage {
  background-image: url(../img/icons/page_contactUs1_blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.servicePage {
  background-image: url(../img/icons/page_service_blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.testimonialPage {
  background-image: url(../img/icons/page_testimonial_blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.featuresPage {
  background-image: url(../img/icons/page_features_blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.blogPage {
  background-image: url(../img/icons/page_blog_blue.svg);
}
.modalPageCategoryListItem.active .modalPageCategoryListItemIcon.listingPage {
  background-image: url(../img/icons/page_ContactUs_blue.svg);
}
.modalPageCategoryListItem.active{
 background-color: #eaf7ff;
}
.modalPageCategoryListItem.active .modalPageCategoryListItemTitle {
  color:var(--blue);
}

.modalpageCategorySubTitle {
  font-weight: 300;
  margin-bottom: 10px;
  margin-top: 0;
}
.DynamicmodalPageCategory{
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.modalPagePreviewScroller{
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
}
.modalPagePreviewScroller img{
  height: auto;
  width: 100%;
}
.modalAddPageNameInput input {
  border: solid 1px #999999;
  border-radius: 3px;
  color: var(--black900);
  font-size: 1rem;
  line-height: 1.3rem;
  min-height: 30px;
  font-weight: var(--medium);
  width: 100%;
  padding: 4px 10px;
  margin-top: 3px;
}
.modalAddPageNameInput{
  position: relative;
}
.modalAddPageNameInput .themBtn.blueBtn{
  background-color: var(--blue);
  color: var(--white);
  padding: 6px 10px;
  padding-left: 22px;
  background-image: url(../img/icons/plusWhite.svg);
  background-repeat: no-repeat;
  background-size: 17px;
  background-position: 4px center;
  margin: 5px auto 0;
  border-radius: 20px;
}
.modalAddPageNameActionBtnWpr .themBtn.grayBtn{
  background-color: var(--black300);
  color:var(--black);
    padding-left: 27px;
    background-image: url(../img/icons/arrowback_black.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 4px center;
}
.pageNameLabel{
  margin: 0;
    color: #aba6a6;
}
.modalTemplateDesigns{
  position: relative;
}
.modalPagePreview {
  padding: 10px;
    border-left: 1px solid #ddd;
}
.modalTemplateDesigns .sideMenuContentHeader {
  border-top: 0;
  padding: 4px 8px 4px;
}
.pageTemplatesList{
  height: calc(100vh - 150px);
  padding: 0px 0px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0;
  padding-right: 5px;
  margin-top: 10px;
}
.ui-sortable-helper{
  transform: rotate(-5deg);
}
.modalTemplateDesigns .sideMenuContentBody {
  height: auto;
  overflow-x: initial;
  padding: 10px;
  overflow-y: initial;
}
.pageTemplatesListItem img {
  width: 100%;
}
.pageTemplatesListItem{
  border: 2px solid var(--black300);
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
  border-radius: 4px;
  position: relative;
  text-decoration: none;
  box-shadow: 0px 4px 4px rgb(10 10 24 / 11%);
  
}
.marginItemControl.borderControls {
  flex-direction: column;
  width: 100%;
}
.marginItemControlWpr.borderConrolWpr {
  grid-template-columns: 1fr;
}
.marginItemControl.borderControls> span {
  display: block;
  width: 100%;
}
.pageTemplatesListItem.active{
  border-color: var(--blue);
}
.pageTemplatesListItem span{
  color: #000;
  padding-left: 19px;
  text-decoration: none;
  display: block;
  font-size: 1.0rem;
  margin-bottom: 5px;
}
.pageTemplatesListItem:after{
  content: '';
  background-image: url(../img/icons/rightTick.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  position: absolute;
  width: 20px;
  height: 20px;
  background-position: 4px 5px;
  background-color: var(--blue);
  border-radius: 100%;
  left: 5px;
  top: 12px;
  opacity: 0.3;
}
.pageTemplatesListItem.active:after{
  opacity: 1;
}
.addEditContainer {
  padding: 15px;
  width: 100%;
}
.addEditContainer.withAside{

  display: grid;
  grid-template-columns: 1fr 250px;
  column-gap: 15px;
  align-items: flex-start;
  width:100%;
}
.addEditAsideContainer {
  position: sticky;
  top: 10px;
}
.addEditAsideContainer .whteboxHeader {
  background-color: #d5eeff;
  color: var(--black);
}
.addEditAsideContainer .whteboxBody {
  position: relative;
  border-radius: 0 0 8px 8px;
  min-height: 100px;
  padding: 10px 20px;
  box-shadow: 4px 3px 12px rgb(220 231 245 / 13%);
  background: #fff;
  border: 1px solid #eee;
  border-top: 0;
}
.addEditAsideContainer .whteboxBody .auditDetialsItem:last-child {
  border-bottom: 0;
}
.auditDetialsItem {
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  padding-top: 5px;
}
.auditDetialsItemValue {
  font-weight: 500;
  font-size: 0.9rem;
  color: #000;
}
.auditDetialsItemLabel {
  line-height: 0.7rem;
  margin-bottom: 4px;
  border-radius: 10px;
}
.goToEditorLink {
  background-image: url(../img/icons/goToWebsiteEditor_blue.svg);
  background-repeat: no-repeat;
  background-size: 17px;
  color: #000;
  background-position: 5px center;
  background-color: #eaf7ff;
  /* box-shadow: 0px 4px 4px rgb(0 0 0 / 9%); */
  display: inline-block;
  border-radius: 4px;
  padding: 1px 10px;
  padding-left: 26px;
}
.customTableBody .customTableRow:last-child{
  border-bottom: 0;
}
/* modal add page end */
/* pages and section Menu */
.pagesAndSectionMenu{
  width: 280px;
    background: #fff;
    display: block;
    border-left: 1px solid #eaf7ff;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
.modalAddPageName {
  margin: -10px -10px 0;
  padding: 10px;
  background: #fafafa;
}
.pageAndSetionTabContent{
  display: none;
}
.pageAndSetionTabContent.show{
  display: block;
}
.btnPageAndContentTabLink {
  font-size: 0.9rem;
  color: var(--black900);
  font-weight: var(--semiBold);
  transition: all 0.3s ease;
  font-family: 'Inter',sans-serif;
  padding: 3px 15px;
  background: transparent;
  border: 0;
  margin-bottom: -2px;
  color:#666;
  border-bottom: 3px solid transparent;
}
.btnPageAndContentTabLink.active{
  border-bottom: 3px solid var(--blue);
  color:#000;
  background: #eaf7ff;
}
.btnPageAndContentTabLink:hover{
  border-bottom: 3px solid var(--blue);
}
.menuPagsectionItemOptions {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.addPageItem:hover {
  cursor: move;
}
.editmenuPageLink {
  border: 0;
  padding: 0;
  background: #5fc0fc;
  color: #fff;
  font-size: 0.8rem;
  padding: 3px 8px;
  line-height: 0.8rem;
  font-weight: 400;
  border-radius: 40px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
}
.addPageItem.active .editmenuPageLink{
  color:#fff;
  background: #3825a7;
}
.MenusListItemIcon {
  width: 16px;
  display: inline-block;
}
.mainPagePreview{
  padding: 10px;
  background: #eee;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-height: calc(100vh - 80px);
}
.mainPageContent {
  width:calc(100% - 281px)
}


.pagePreviewBadge {
  position: fixed;
  background: #000000;
  color: #fff;
  display: inline-block;
  padding: 4px 15px;
  z-index: 2;
  border-radius: 0 0 6px 6px;
  right: 413px;
  top: 40px;
}
.modalPagePreview .pagePreviewBadge {
  top: 45px;
}
.sectionTemplateList.pageTemplatesList {
  height: calc(100vh - 100px);
  margin-top: 0;
}
.sectionTemplateList.pageTemplatesList .pageTemplatesListItem {
  padding: 0;
  border: 0;
}
.sectionTemplateList.pageTemplatesList .pageTemplatesListItem:after{
  top:7px;
}
.selectComponentMode .layoutColumns:hover{
  outline: 2px solid var(--blue);
}
.layoutColumns{
  position: relative;
}
.componentSettingControl {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: #fff;
}
.btnEditComponent {
  border: 0;
  background-color: transparent;
  padding: 9px 14px;
  line-height: 0.8rem;
  font-weight: 400;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 16%);
  padding-left: 30px;
  background-image: url(../img/icons/menuSettings_blac.svg);
  background-size: 21px;
  background-repeat: no-repeat;
  background-position: 4px center;
  border-radius: 0 0 10px 0;
}
.componentEditModalBody {
  display: grid;
  grid-template-columns: 1fr 200px;
  background: #fff;
  padding-bottom: 15px;
}
.editComponentModal .modalContent {
  max-width: 1024px;
  margin: 0 auto;
}
.modalWrapper.editComponentModal {
  background: #000000c2;
}
.textupdateTextarea   {
  --width: 100%;
  border: 0;
  --lineHeight: 30px;
  --fontSize: 30px;
  --height: auto;
  --minHeight: 0;
  --paddingBottom: 0;
  --paddingLeft: 10px;
  --paddingRight: 10px;
  --paddingTop: 0;
  box-sizing: border-box;
  --display: block;
  resize: none;
}
.textupdateTextarea:hover,
.textupdateTextarea:focus{
  outline:1px solid var(--blue);
}
.descriptionTextControler .textupdateTextarea {
  --minHeight: 135px;
}
.descriptionTextControler .signatureTextControler {
  --minHeight: 35px;
}
.titleTextControler .textupdateTextarea{
  --maxHeight: 40px;
} 
.SubTitleTextControler .textupdateTextarea{
  --minHeight: 75px;
} 
.componentEditWrapper {
  padding-top: 0px;
}
.textControler {
  background: transparent;
  border: 0;
  position: relative;
  padding-top: 24px;
}

.textControllerControls {
  background: #eaf7ff;
  display: inline-flex;
  align-items: center;
  height: 24px;
  position: absolute;
  top: 0px;
  left: -1px;
  border: 1px solid #c6e9ff;
  border-right: 0;
  display: none;
}
.textControler:hover .textControllerControls {
  display: inline-flex;
  opacity:1;
}

.textControllerControlsItem.btnTCType {
  height: 24px;
  width: 24px;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #c6e9ff;
  border-bottom: 1px solid #c6e9ff;
  background: transparent;
}
.textControllerControlsItem.selectControl {
  border: 0;
  width: 110px;
  background: transparent;
}
.textControllerControlsItem.selectControl.changeFontFamily {
  width: 110px;
  height: 24px;
  border-right: 1px solid #c6e9ff;
  border-bottom: 1px solid #c6e9ff;
}
.textControllerControlsItem.changeFontSizeInput,
.textControllerControlsItem.changelineHeightInput {
  height: 24px;
  width: 30px;
  background: transparent;
  border: 0;
  border-right: 1px solid #c6e9ff;
  border-bottom: 1px solid #c6e9ff;
  text-align: center;
}
.textControllerControlsItem.changeFontSizeInput:focus,
.textControllerControlsItem.changelineHeightInput:focus {
background:#fff;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.colorPickerInuput {
  height: 0;
  width: 0;
  opacity: 0;
  z-index: -99;
}
button.textControllerControlsItem.changeFontColorBtn svg {
  height: 18px;
  width: 23px;
}
.textControllerControlsItem.changeFontColorBtn svg {
  transform: scale(0.8);
  transform-origin: center;
}
.textControllerControlsItem.btnTCType.makeLeftAlignBtn,
.textControllerControlsItem.btnTCType.makeCenterAlignBtn{
  border-right:0;
}
.textControllerControlsItem.btnTCType.makeBoldBtn svg,
.textControllerControlsItem.btnTCType.makeUnderlineBtn svg,
.textControllerControlsItem.btnTCType.makeItalicBtn svg,
.textControllerControlsItem.btnTCType.makeLeftAlignBtn svg,
.textControllerControlsItem.btnTCType.makeCenterAlignBtn svg,
.textControllerControlsItem.btnTCType.makeRightAlignBtn svg
 {
  transform: scale(0.7);
  transform-origin: center;
}
.subSectionBackgroundChange,
.layoutMarginPaddingEditComponent {
  background: #eee;
  border: 0;
  font-size: 14px;
  width: 100%;
  padding: 5px 8px;
  display: flex;
  justify-content: space-between;
}
.layoutMarPadEditComponentControls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 125px;
  column-gap: 10px;
  row-gap: 4px;
}
.setMarginPaddingButtonWpr input {
  width: 24px;
  height: 18px;
  border: 0;
  padding: 0;
  display: block;
}
.backgroundChangeTrigger {
  width: 50px;
  height: 24px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 3px;
}
.colorPickerInuput {
  height: 0;
  width: 0;
  opacity: 0;
  z-index: -99;
}
.componentEditMainActionBtns {
  padding-top: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  background: #444446;
}
.componentEditMainActionBtns .inlineButtons{
  display: flex;
  justify-content: flex-end;
  padding: 0 10px;
  column-gap: 10px;
  margin-bottom: 10px;
}
.componentEditMainActionBtns .flexEndButton{
  display: flex;
  justify-content: flex-end;
  padding: 0 10px;
}
.componentEditWrapperActionsWrapper {
  border-left: 1px solid #eee;
}
.btnnTheme.saveButton {
  background-color: var(--blue);
  padding-left: 30px;
  background-image: url(../img/icons/iconSaveWhite.svg);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 9px center;
}
.btnnTheme.resetButton {
  background-color: var(--black200);
  padding-left: 30px;
  color: var(--black);
  background-image: url(../img/icons/iconResetWhite.svg);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 9px center;
}
.btnnTheme.resetButton:hover,
.btnnTheme.autoContentButton:hover{
  background-color:#fff;
}
.btnnTheme.autoContentButton {
  width: 100%;
  padding-left: 21px;
  background-color: var(--black200);
  color: var(--black);
  background-image: url(../img/icons/iconAutoFillContent.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 6px center;
}
.listTitleEditComponent {
  padding: 4px 10px;
  color: var(--black);
  font-size: 14px;
  line-height: 1rem;
  margin-bottom: 0;
  background: #eee;
  border-top: 1px solid #ddd;
}
.textControllerControlsItem {
  font-size: 14px;
}
.componentEditHistory ul {
  margin:0;
  padding:0;
}
.componentEditHistory ul li {
  position: relative;
  padding: 5px 0 5px;
  margin-bottom: 3px;
  border-left: 2px solid var(--blue);
  background: #fff;
  border-bottom: 1px solid #eee;
}
.componentEditHistory ul li:last-child{
  border-bottom: 0;
}
.componentEditHistory ul li p {
  margin: 0;
  font-size: 15px;
  padding: 0 15px;
  line-height: 18px;
  padding-left: 16px;
  position: relative;
}
.componentEditHistory ul li p:after{
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  height: 6px;
  width: 11px;
  background: var(--blue);
  border-radius: 0 5px 5px 0;
}
.componentEditHistory ul li p span {
  display: flex;
  justify-content: space-between;
}
.componentEditHistory ul li p a {
  color: var(--black);
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 11px;
  display: inline-block;
  margin-top: 5px;
  border-radius: 50px;
  line-height: 15px;
  font-size: 15px;
}
.componentEditHistory ul li p a:hover{
  color: var(--blue);
}

.imageUploadControlBox {
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  height: 200px;
  background: #ddd;
  border-radius: 8px;
}
.imageUploadControlBoxIcon {
  height: 50px;
  display: block;
  margin: 0 auto;
  width: 50px;
  background-image: url(../img/icons/iconUploadImageBlack.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.imageUploadControlBoxBtn {
  text-align: center;
  border: 0;
  background: transparent;
  color: #000;
}
.setMarginPaddingButtonWpr {
  height: 24px;
  width: 58px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding-left: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/icons/iconResetWhite.svg);
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: 7px center;
  background-color: #fff;
}
.setMarginPaddingButtonWpr.marginTopBtn{ background-image:   url(../img/icons/iconMarginBottom.svg);}
.setMarginPaddingButtonWpr.marginBottomBtn{background-image: url(../img/icons/iconMarginTop.svg);}
.setMarginPaddingButtonWpr.marginLeftBtn{background-image:   url(../img/icons/iconMarginRight.svg);}
.setMarginPaddingButtonWpr.marginRightBtn{background-image:  url(../img/icons/iconMarginleft.svg);}
.setMarginPaddingButtonWpr.paddingTopBtn{background-image:   url(../img/icons/iconMarginTop.svg);}
.setMarginPaddingButtonWpr.paddingBottomBtn{background-image: url(../img/icons/iconMarginBottom.svg);}
.setMarginPaddingButtonWpr.paddingLeftBtn{background-image:   url(../img/icons/iconMarginleft.svg);}
.setMarginPaddingButtonWpr.paddingRightBtn{background-image:  url(../img/icons/iconMarginRight.svg);}
/* pages and section Menu end */

/* SEO basics start */
.seoBasicsWrapper{
  min-height: 600px;
  background:var(--white);
}
.innerPageSections_title{
  padding: 4px 15px;
  font-weight: 600;
  font-size: 15px;
  background: #fafafa;
}
.innerPageSections_title a{
  color: var(--primaryColor);
  font-weight: 600;}
.innerPageSections_title span{
  color: var(--black700);
    font-weight: 600;
}
.innerPageSections_heading{
  color: var(--black);
  font-weight: 600;
  font-size: 22px;
  padding: 7px 15px;
  text-align: center;
}
.seoBasicsTabs{
  display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    column-gap: 15px;
    padding:0 15px;
}
    .seoBasicsTabs a {
        font-size: 17px;
        font-weight: 600;
        color: var(--black700);
        display: flex;
        width: 100%;
        padding: 4px 0px;
        align-items: center;
        justify-content: center;
        border-bottom: 2px solid var(--black600);
        text-decoration: none;
        cursor:pointer;
    }
.seoBasicsTabs a.active{
  border-color: var(--primaryColor);
 color: var(--primaryColor);
}
.pageInnerSection{
  padding:10px;
}
.pageInformationBartext p {
  font-size: 17px;
  line-height: 19px;
  margin: 0;
}
.pageInformationBar {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 60px 1fr;
  padding: 5px 10px;
  align-items: center;
  background: #eaf7ff;
  border-radius: 5px;
  margin-bottom: 20px;
}
.setPagetoNoIndex{
  display: grid;
  column-gap: 10px;
  grid-template-columns:  1fr 60px;
  padding: 5px 10px;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 20px;
}
.setPagetoNoIndextext p {
  font-size: 17px;
  line-height: 19px;
  margin: 0;
}
.setPagetoNoIndextext p span{
  font-weight: 700;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider.round {
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider.round:before {
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--primaryColor);
}
input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  background: #fff;
  box-shadow: 0px 0px 4px 0px #0003;
}
.seperatorDIv{
  width: calc(100% - 2px);
  margin-block-start: 10px;
  margin-inline-end: 0;
  margin-block-end: 10px;
  margin-inline-start: 0;
  align-self: center;
  border-style: solid;
  border-color: #ced6d9;
  border-width: 1px;
  border-bottom: none;
}
.largeFormControlwithTitle h4 {
  font-weight: 700;
  font-size: 19px;
}
.largeFormControlwithTitle {
  margin-top: 20px;
  padding: 0 10px;
  margin-bottom: 30px;
}
.largeFormControlwithTitle textarea.form-control{
  min-height: 140px;
}
.imageUploadWrapper button {
  position: relative;
  padding: 2px 0;
  background-color: #f2f2f2;
  color: #617379;
  height: 100px;
  width: 100px;
  font-size: 16px;
  border-radius: 3px;
  border: 1px dashed #617379;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.imageUploadWrapper button.selectionButton{}
.imageUploadWrapper button.selectionButton.active{
  border-color: var(--primaryColor);
    background: #eaf7ff;
    color: var(--primaryColor);
}
.iconAuth{
  background-image: url(../img/globeIconBlack.svg);
  height: 30px;
  width: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 5px;
}
.iconAuth.globeicon{
  background-image:url(../img/globeIconBlack.svg);
}
.iconAuth.keyIcon{background-image:url(../img/keyIconBlack.svg);}
.iconAuth.usertickIcon{background-image:url(../img/userTickIconBlack.svg);}
.selectionButton.active .iconAuth.globeicon{background-image:url(../img/globeIconBlue.svg);}
.selectionButton.active .iconAuth.keyIcon{background-image:url(../img/keyIconBlue.svg);}
.selectionButton.active .iconAuth.usertickIcon{background-image:url(../img/userTickIconBlue.svg);}
.helpauthselection{
  font-size: 1rem;
    color: #444;
    font-weight: 400;
    font-family: 'Inter',sans-serif;
    margin: 8px 0 0px;
    display: block;
}
.imageUploadWrapper button.selectionButton span {
  line-height: 18px;
}
.imageUploadWrapper {
  margin-top: 20px;
  display: flex;
  column-gap: 15px;
}
.pageInnerTitle_wpr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
}
.pageInnerTitle_heading {
  font-weight: 700;
  font-size: 26px;
  margin: 0;
}
.pageInnerTitle_actions {
  display: flex;
  column-gap: 10px;
}
.pageInnerTitle_btns {
  border: 2px solid var(--primaryColor);
  display: flex;
  color: var(--primaryColor);
  font-weight: 600;
  padding: 2px 15px;
  border-radius: 50px;
  background: #fff;
}
.pageInnerTitle_btns_primary {
  border: 2px solid var(--primaryColor);
  display: flex;
  color: #fff;
  font-weight: 600;
  padding: 2px 15px;
  border-radius: 50px;
  background: var(--primaryColor);
  column-gap: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
}
.btnGroup {
display:flex;
column-gap:8px;
align-items:center;
}
.infoMessage {
    border: 1px solid transparent;
    background: transparent;
    padding: 8px;
    display: flex;
    column-gap: 8px;
    align-items: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom:10px;
}
.infoMessageIcon {

}
.infoMessage.success {
    background: #c0f7c0;
    color: darkgreen;
    border-color: #7eeb7e;
}

.infoMessage.warning {
    background: #f7eec0;
    color: #643c00;
    border-color: #edd57c;
}

.infoMessage.danger {
    background: #f7c5c0;
    color: #640000;
    border-color: #ed967c;
}
/* SEO basics End */

.datepicker {
    position: relative;
}

.datepicker > input + .ui-datepicker-trigger {
    position: absolute;
    top: 2px;
    right: 5px;
}

.pageInnerSection {
    padding: 10px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    overflow-x: hidden;
}

/* Rename Modal Wrapper */
.modal_popup_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0c17ba;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_popup_content {
  box-shadow: 0px 1px 6px 0px #3b3838;
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
}

.modal_popup_header {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  background: #eaf7ff;
  border-radius: 6px 6px 0 0;
  align-items: center;
}

.modal_popup_body {
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.modal_popup_header h4 {
  font-size: 19px;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

.modal_popup_close_btn {
  height: 30px;
  width: 30px;
  border-radius: 60px;
  border: 0;
  background-color: transparent;
  background-image: url(../img/crossIcon_black.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  min-width: 30px;
  transition: all 0.3s ease;
}

.foldernameInput {
  padding: 10px 5px;
  width: 260px;
}

.foldernameInput input,
.foldernameInput textarea,
.foldernameInput select {
  width: 100%;
  border: 1px solid #9ebdff;
  padding: 3px 15px;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  border-radius: 4px;
  outline: none;
  color: #333;
}
.foldernameInput input:focus,
.foldernameInput textarea:focus,
.foldernameInput select:focus
{
  outline: 1px solid #4e3bc2;
  box-shadow: 0px 2px 4px 0px #4e3bc245;
}
.foldernameInput textarea {
  min-height: 120px;
  resize: none;
}
.modal_popup_save,
.modal_popup_cancel {
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  padding: 6px 31px;
  background-color: #4e3bc2;
  border: 0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  column-gap: 5px;
  box-shadow: 0 1px 6px #c9c9c94f;
}
.modal_popup_save:hover,
.modal_popup_cancel:hover{
  cursor: pointer;
}
button:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
.modal_popup_cancel {
  background: #fff;
  color: #333;
  border: 2px solid #464646;
}

.modal_popup_footer {
  padding: 4px 15px 15px;
  display: flex;
  justify-content: center;
  column-gap: 15px;
}
.confirmationMessage{
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-top: 20px;
}

.successModalIcon {
  height: 70px;
}

/* edit Components Css */
.editComponentsSideMenu{
  width: 280px;
  background: #fff;
  display: block;
  border-left: 1px solid #eaf7ff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
.editComponentsSideMenuHeader {
  display: flex;
  padding: 0px 8px 0px;
  position: relative;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-left: 0;
}
.editComponentsSideMenuHeader p
{
  font-size: 0.9rem;
    color: var(--black300);
    font-weight: var(--semiBold);
    transition: all 0.3s ease;
    font-family: 'Inter',sans-serif;
    padding: 3px 15px;
    background: transparent;
    border: 0;
    margin-bottom: -2px;
    color: #666;
    border-bottom: 3px solid transparent;
}
.editComponentsSideMenuHeader > span {
  display: flex;
  align-items: center;
}
.editComponentsSideMenuBody {
  height: calc(100vh - 97px);
  overflow-x: hidden;
  padding: 10px;
  overflow-y: auto;
}
.selectedComponentName{
  background: #eaf7ff;
    padding: 2px 10px;
    margin: 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}
.editTexttrigger {
  border: 1px solid #ccc;
  width: 100%;
  height: 96px;
  background: #fff;
  text-align: left;
  padding: 2px 10px;
  border-radius: 4px;
  color: #464646;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.editTexttrigger:hover,
.editTexttrigger:focus{
  outline: none;
}
.modalEditText {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00000040;
  display: none;
}
.modalEditText.show{
  display: flex;
}
.modalEditTextInntr {
  position: relative;
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 3px 10px 0px #000000ab;
  width: 100%;
  max-width: 500px;
}
.modalEditTextHeading {
  padding: 4px 10px;
  background: #eee;
  border-radius: 4px 4px 0 0;
}
.modalEditTextHeading p {
  margin: 0;
}
.modalEditTextBody {
  padding: 10px;
}
.modalEditTextFooter {
  display: flex;
  padding: 4px 10px;
  justify-content: flex-end;
  column-gap: 10px;
}
.textEditorofComponent {
  width: 100%;
  min-height: 200px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.modalEditTextFooter .cancelBtn,
.modalEditTextFooter .saveBtn{
  border: 0;
  padding: 4px 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.modalEditTextFooter .cancelBtn{
  color:#000;
}
.modalEditTextFooter .saveBtn{
  background: var(--blue);
    color: #fff;
}
.borderSettingControl {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #ddd;
}
.imageUrllControlItem,.bgimageUrllControlItem{
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.imageURLInput,.hrefInput,.bgimageURLInput,.gridWidthControl input {
  border: 1px solid #ccc;
  width: 100%;
  height: 32px;
  background: #fff;
  text-align: left;
  padding: 2px 10px;
  border-radius: 4px;
  color: #464646;
  font-size: 15px;
}
.updateImageURL,.updateLinkURL,.bgupdateImageURL{
  height: 32px;
  width: 32px;
  border: 0;
  border-radius: 4px;
  background: #764abc;
  border-radius: 50px;
  min-width: 32px;
}
.btnThemePink:hover,.btnThemePink:hover{
  color:#fff;
}
.topActionButtonWpr{
  display: flex;
  justify-content: space-between;
  padding: 4px 10px;
  align-items: center;
  column-gap: 10px;
  background: var(--bgColor5);
}
.topActionButtonsInner{
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.topActionButton{
  padding: 4px 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-size: 16px;
  outline: none;
  display:flex;
  align-items: center;
  column-gap: 10px;
}
.topActionButton.normal{
  background: transparent;
  border: 1px solid #ccc;
}
.topActionButton.blueBtn{
  color:var(--white);
  background:var(--primaryColor);
}
.editComponentTitle{
  margin: 0;
  font-weight: 600;
}
.modalCommonAlerts {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e0e0ec4;
  display: none;
}
.modalCommonAlerts.show {
  display: flex;
}
.modalCommonInner{
  position: relative;
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 3px 10px 0px #000000ab;
  width: 100%;
  max-width: 330px;
  background-image: #fff;
}
.modalCommonInner.WarningModal{
  background-image: #fff;
}
.modalCommonInner.SuccessModal{
  background-image: #fff;
}
/* 
RED------ Bottom-#D64141 Top- #FAA5A5 ORANGE------- Bottom-#FDB752 Top-#F1A942 BLUE------ Bottom-#23B3CE Top-#4981AC */

.modalCommonBody p {
  text-align: center;
  color: #000;
  line-height: 20px;
  font-weight: 300;
  padding: 10px;
  font-family: 'Inter', sans-serif;
}
.modalCommonBody{
  padding: 10px;
}
.modalCommonFooter{
  display: flex;
  padding: 4px 10px;
  justify-content: center;
  column-gap: 10px;
}
.modalCommonActionBtn{
  padding: 4px 10px !important;
  margin-bottom: 10px;
  border-radius: 4px;
  color: #000;
  background: #0000000a;
  border: 1px solid #ccc;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  display: block;
  height: 36px;
}
.modalCommonActionBtn.alert
{
  background: #f14a4a;
  color: #fff;
  border-color: #f14a4a;
}
.modalCommonActionBtn.success
{
  background: #198754;
  color: #fff;
  border-color: #198754;
}
.modalCommonActionBtn.warning
{
  background: orange;
  color: #fff;
  border-color: orange;
}
.modalTypeIcon {
  display: flex;
  justify-content: center;
}
.modalTypeIcon svg
{
  height: 60px;
    width: 60px;
}
.gridWidthControl {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 5px;
}
.adjustGridWidth{
  display: block !important;
}
.flexibleColumn{
  column-gap: 5px;
}
.flexibleColumn2{
  column-gap: 5px;
  grid-template-columns: 1fr 1fr;
}
.gridColWidthInput ,
.gridColWidthInput2 {
  padding-right: 20px !important;
  background-image: url(../img/icons/percentageIcon.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 14px !important;
  background-position: calc(100% - 9px) center !important;
}
.blueLightBG
{
background:#f6f6f6;
}
.itemControlBox{
  background: #fff;

  padding: 10px;
  border-radius: 5px;
  box-shadow: 1px 4px 4px 0px #00000024;
  margin-bottom: 8px;
}
.innerItemBox{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.itemControlBox p{
  margin:0;
  font-family: 'Inter', sans-serif;
}
/* Toggle Button */
.switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 9px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: -1px;
  bottom: -2px;
  background-color: #858a8e;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primaryColor);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primaryColor);
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  background: #fff;
  box-shadow: 0px 0px 4px 0px #0003;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* Toggle Button End */
.itemControlBoxEdit{
  padding: 3px 11px 2px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  border-radius: 3px;
  background: #fff;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  border-radius: 50px;
  line-height: 15px;
  font-weight: 600;
  font-size: 15px;
}
.modalEditComponentContentWpr{
  background: #fff;
  min-height: 200px;
  padding: 30px;
  max-height: calc(100vh - 64px);
  overflow: hidden;
  overflow-y: auto;
}
.editComponentSectionModal
{
  max-width: 1024px;
    margin: 0 auto;
}
.toggleColorControl {
  background: #fff;
  display: block;
  text-align: left;
  padding: 8px 10px;
  position: relative;
  width: 100%;
  border: 0;
  border-radius: 5px;
  margin-bottom: 5px;
  box-shadow: 1px 4px 4px 0px #00000024;
}
.toggleColorControl[aria-expanded="true"]{
  margin-bottom: 0px;
  border-radius: 5px 5px 0 0;
}

.toggleColorControl:after{
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 6px;
  border-color: transparent transparent #000 transparent;
  right: 13px;
  top: 19px;
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.toggleColorControl[aria-expanded="true"]:after{

  transform: rotate(0deg);
  top: 12px;
}
.toggleColorControlBody{
  margin-bottom: 10px;
  border-radius: 0 0 5px 5px !important;
  border: 0 !important;
  box-shadow: 1px 4px 4px 0px #00000024;
}
.colorInputHidden {
  display: none;
}
.itemColorChangeControl{
  margin-bottom: 10px;
}
.itemColorChangeControl p {
  font-weight: 600;
  margin-bottom: 0;
}
.itemColorChangeTriggerDisplay {
  height: 32px;
  background: #eee;
  border: 1px solid #ccc;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 6px;
  padding-right: 20px;
 
}
.itemColorChangeTriggerDisplay:after{
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 5px;
  border-color: transparent transparent #000 transparent;
  right: 4px;
  top: 12px;
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.itemColorChangeDisplayColor {
  height: 20px;
  width: 39px;
  display: block;
  background: #fff;
  position: relative;
  border:1px solid #ccc;
  cursor: pointer;
}
.sampleColors {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 6px;
}
.sampleColors div {
  height: 24px;
  width: 24px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* Listing Table Design */
.tableWrapper{
  background: #fff;
  margin-bottom: 20px;
}
.listingTable {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.listingTable>thead>tr> th {
  text-align: left;
  padding: 6px;
  background: #fff;
  font-weight: 600;

}

.listingTable>tbody> tr >td {
  padding: 6px;
  border-top: 1px solid #ddd;
}
.listingTable>tbody> tr:nth-child(even) >td {
  background-color: #eaf7ff;
}
.editrowHTML {
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
}
.editRowHTMLTextAREA {
  width: 100%;
  height: 300px;
  border: 1px solid #ddd;
  padding: 10px;
  resize: none;
}
.historyVersionWrapper {
  padding: 12px;
  background: #fff;
  border-radius: 10px;
}
.previewSectionHeadingTitle{
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 10px;
}
.historyVersionWrapper .listingTable{
  background:#fff
}
.historyVersionWrapper .listingTable > thead >tr> th{
  padding: 4px 10px;
  background: #eaf7ff;
}
.historyVersionWrapper .listingTable>tbody> tr>td{
  padding: 4px 10px;
}
.historyVersionWrapper .listingTable>tbody> tr:nth-child(even) >td{
  background: #fff;
}
.restoreBtnWpr{
  display: flex;
  justify-content: flex-end;
}
.reStoreBtn {
  background: #764abc;
  color: #fff;
  border: 0;
  padding: 2px 10px;
  border-radius: 5px;
}
.dummyFlexColumn
{
  background: #fafafa;
  text-align: center;
  border-radius: 5px;
  padding: 15px 15px 5px;
  border: 1px solid #b0ddf9;
}
.showingDummyPlaceholder p{
  background: #fff;
  border: 1px solid #b0ddf9;
  text-align: center;
  border-radius: 5px;
  padding: 10px 15px;
  position: relative;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 5px;
}
.showingDummyPlaceholder.selected p{
  border-color: #764abc;
  background: #b586ff2e;
}
.showingDummyPlaceholder.selected .badgePlaceholder{
  background: #eee5fb;
  border: 1px solid #764abc;
}
.showingDummyPlaceholder.selected p span {
  background: #e2cdff;
}
.showingDummyPlaceholder {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
}

.badgePlaceholder {
  position: absolute;
  right: 8px;
  top: -6px;
  background: #eaf7ff;
  padding: 1px 10px;
  border-radius: 22px;
  line-height: 15px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #c3e2f6;
  z-index: 1;
}
.placeholderControls{
display: flex;
column-gap: 5px;
align-items: center;
}
.placeholderControls button {
  border: 0;
  background-color: transparent;
  padding: 4px 10px;
  border-radius: 5px;
  line-height: 15px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  color: #4e3bc2;
}
.placeholderControls button:hover{
cursor: pointer;
color: #fff;
}
.placeholderControls button:nth-child(1):hover{
  background-color: #764abc;
border-color: #764abc;
}
.placeholderControls button:nth-child(2):hover{
  background-color: #e43232;
border-color: #e43232;
}
.placeholderControls button:nth-child(3):hover{
  background-color: orange;
border-color: orange;
}
.showingDummyPlaceholder p span {
  background: #f8f2ff;
  color: #000;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 26px;
}
.placeholderActionBtn{
  background-image: url(../img/smallEditIcon.svg);
  padding-left: 26px !important;
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: 5px 2px;
}
.placeholderActionBtn.editactionbtn{
  background-image: url(../img/smallEditIcon.svg);
}
.placeholderActionBtn.deleteactionbtn{
  background-image: url(../img/smallDeleteIcon.svg);
}
.placeholderActionBtn.previewactionbtn{
  background-image: url(../img/smallEyeICon.svg);
}
.placeholderActionBtn.editactionbtn:hover{
  background-image: url(../img/smallEditIconWhite.svg);
}
.placeholderActionBtn.deleteactionbtn:hover{
  background-image: url(../img/smallDeleteIconWhite.svg);
}
.placeholderActionBtn.previewactionbtn:hover{
  background-image: url(../img/smallEyeIConWhite.svg);
}
.addCompnentSectioninBox{
  background-image: url(../img/smallAddCircleIcon.svg);
  padding-left: 26px !important;
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center 10px;
  border: 1px solid #b0ddf9;
  text-align: center;
  border-radius: 5px;
  padding: 0 15px 10px;
  position: relative;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 5px;
  background-color: #eaf7ff;
  padding-top: 45px;
  color: #764abc;
}
.addSctionDymmyWpr{
  padding: 12px;
  background: #fff;
  border-radius: 10px;
}