/* Some Global Styles */
.textGreen {
  color: #43ba7f;
}
.textLightRed {
  color: #f67a7f;
}

/* Selecting an option from the dropdown-style 3 component */
.dropdown-style3 .selected-options {
  display: flex;
  gap: 1rem;
}
.dropdown-style3 .selected-options .option {
  height: 70px;
  border-radius: 14px;
  border: 5px solid rgba(108, 84, 230, 0.1);
  flex-grow: 0;
  padding: 12.5px 40px 12.5px 12.5px;
  position: relative;
  display: none;
}
.dropdown-style3 .selected-options .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.3rem;
}
.dropdown-style3 .selected-options .option > i {
  position: absolute;
  width: 22.5px;
  height: 22.5px;
  background: black;
  border-radius: 0 10px 0 10px;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dropdown-style3 .selected-options .option:hover > i {
  background-color: #6c54e6;
}
.dropdown-style3 .selected-options .option > i > img {
  zoom: 1.2;
}
.dropdown-style3 .selected-options .text-1 {
  margin: 0;
  font-size: 14px;
  color: #3d3d3d;
}
.dropdown-style3 .selected-options .text-2 {
  margin-top: -0.3rem;
  font-size: 12px;
  color: #828282;
}

/* Related to the new template selection overlay */
.template-selection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff80;
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 3% 11%;
  display: none;
}
.template-overlay-container {
  border-radius: 14px;
  border: 1px solid #6c54e624;
  box-shadow: 0px 11.59px 57.97px 0px #c0c0c0ba;
  position: relative;
}
.template-overlay-container > i {
  position: absolute;
  width: 45px;
  height: 45px;
  background: black;
  border-radius: 0 14px 0 14px;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}
.template-overlay-container > i > img {
  zoom: 1.8;
}
.template-overlay-container .custom-data-table {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border: none;
  box-shadow: none;
}
.template-overlay-container .custom-data-table .top-row {
  padding: 4px 0px;
}
.template-overlay-container .horizontal-line {
  border: none;
  border-top: 1px solid #828282;
  height: 1px;
  margin: 1.5rem 0rem;
}

/* Related to new fields */
/* Select any one radio option */
.binary-option__2 {
  background-color: rgba(108, 84, 230, 0.1);
  padding: calc(20px * var(--resp));
  border-radius: calc(10px * var(--resp));
}
.binary-option__2 h3 {
  font-size: 14px;
  line-height: 17px;
}
/* Select one or multiple template form-field  */
.form-group.form-group--template-selection {
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(20px * var(--resp));
}
.form-group.form-group--template-selection .template-type {
  gap: calc(12px * var(--resp));
  width: calc(372px * var(--resp));
  height: calc(110px * var(--resp));
  border-radius: calc(8px * var(--resp));
  border: calc(1px * var(--resp)) solid #6c54e624;
  padding: calc(10px * var(--resp)) calc(24px * var(--resp));
  color: #3d3d3d;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.form-group.form-group--template-selection .template-type.active {
  box-shadow: 0px 6px 18px 0px #0000000f;
  border: 1px solid #b2a3ff;
}
.form-group.form-group--template-selection .template-type > i {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6c54e612;
  height: calc(54px * var(--resp));
  width: calc(54px * var(--resp));
  border-radius: 100%;
}
.form-group.form-group--template-selection .template-type > span {
  font-size: calc(14px * var(--fresp));
  line-height: calc(17px * var(--fresp));
}
.form-group.form-group--template-selection .template-type.active > span {
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    52.88deg,
    #0049e6 -5.02%,
    #9c15f7 52.99%,
    #ff4cf8 113.38%
  );
}

@media (max-width: 992px) {
  .form-group.form-group--template-selection {
    flex-direction: column;
    gap: calc(20px * var(--resp));
  }
}

/* Related to the template content , customised text area */
.form-group .template-content {
  border: 1px solid #6c54e626;
  border-radius: 10px;
  height: 12rem;
  padding: 0.6rem 0.45rem;
}
.form-group .template-content .form-control {
  flex: 1;
  border: 0;
  padding: 0.5rem 0.8rem;
}
.form-group .template-content .customised-text-options {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0px 0px 10px 10px;
  background-color: rgba(108, 84, 230, 0.1);
}
.form-group .template-content .customised-text-options .icons {
  margin: 1rem 0rem 1rem 1rem;
  display: flex;
  gap: 1rem;
}
.form-group .template-content .customised-text-options .text-conditions {
  margin: 1rem 1rem;
  display: flex;
}
.form-group .template-content .customised-text-options .text-conditions > li {
  display: flex;
  gap: 1rem;
}
.form-group .template-content .customised-text-options .icons > li > img {
  zoom: 1.2;
  cursor: pointer;
}

/* Related to the toggle buttons class  */
.toggle-buttons {
  display: inline-flex;
  overflow: hidden;
  max-width: 150px;
}
.toggle-buttons.active {
  max-width: none;
}
.toggle-buttons .btn-grp-1,
.toggle-buttons .btn-grp-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  transition: 0.25s ease-out;
  flex-wrap: nowrap;
}
.toggle-buttons .btn-grp-2 {
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: transform 0.25s;
}
.toggle-buttons.active .btn-grp-2 {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}
.toggle-buttons .btn-grp-1 > div,
.toggle-buttons .btn-grp-2 > div {
  height: 100%;
  cursor: pointer;
  font-size: 14px;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-out;
}
.toggle-buttons .btn-grp-1 > div {
  background-color: #eeeeee;
  color: #3d3d3d;
  border-radius: 10px;
  padding-inline: 20px;
  border: 1px solid transparent;
  position: relative;
  z-index: 9;
}
.toggle-buttons .btn-grp-1 > div:hover {
  border: 1px solid black;
  color: black;
  background-color: white;
}
.toggle-buttons.active .btn-grp-1 > div {
  background-color: black;
  color: white;
  border-radius: 10px 0px 0px 10px;
}
.toggle-buttons .btn-grp-2 > div {
  padding-inline: 30px;
}
.toggle-buttons.active .btn-grp-2 > div {
  border: 1.5px solid #6c54e626;
  color: #828282;
}
.toggle-buttons.active .btn-grp-2 > div:last-child {
  border-radius: 0px 10px 10px 0px;
}
.toggle-buttons.active .btn-grp-2 > div:last-child .form-control {
  border: 0;
  padding: 0;
  height: 40px;
  cursor: pointer;
}
.toggle-buttons.active .btn-grp-2 .icons-holder {
  margin-left: 1rem;
  display: flex;
  gap: 0.1rem;
}

/* Related to the null screens */
.vihm-page-tabs-content .null-info-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.vihm-page-tabs-content .null-info-screen .null-info-screen-header {
  width: 500px;
  margin: auto;
}
.vihm-page-tabs-content .null-info-screen .null-info-screen-header h1 {
  font-size: 32px;
  line-height: 38px;
}
.vihm-page-tabs-content .null-info-screen .null-info-screen-header span {
  color: #828282;
  font-size: 15px;
  line-height: 18px;
}
.vihm-page-tabs-content .null-info-screen > i > button {
  margin-top: -15rem;
}

/* Related to daterange picker css  */
.daterangepicker .drp-buttons .applyBtn {
  border-radius: 8px;
  height: 35px;
  padding: 5px 20px;
  color: white;
  border: 0;
  background: linear-gradient(
    52.88deg,
    #0049e6 -5.02%,
    #9c15f7 52.99%,
    #ff4cf8 113.38%
  );
  transition: 0.23s ease-out;
  font-weight: 600;
}
.daterangepicker .drp-buttons .cancelBtn {
  border: 1px solid transparent;
  border-radius: 8px;
  height: 35px;
  padding: 5px 20px;
  color: #6c54e6;
  background-color: #e4e0fb;
  transition: 0.23s ease-out;
  font-weight: 600;
}
.daterangepicker .drp-buttons .applyBtn:hover {
  color: #fff !important;
  filter: brightness(130%) contrast(1.3);
}
.daterangepicker .drp-buttons .cancelBtn:hover {
  background-color: white;
  border: 1px solid #6c54e6;
}

.daterangepicker .calender-table table tbody {
  display: none;
}

.daterangepicker td.in-range {
  color: #6c54e6;
  background-color: #e4e0fb;
}
.daterangepicker td.off {
  cursor: not-allowed;
}
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date,
.daterangepicker td.start-date,
.daterangepicker td.end-date {
  color: white;
  background: linear-gradient(
    52.88deg,
    #0049e6 -5.02%,
    #9c15f7 52.99%,
    #ff4cf8 113.38%
  );
}

/* Related to the dropdown having flag as an option */
.vihm-page-tabs-content__form button.dropdown-country > span {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Related to SWAL FireUps in send-sms screen */
/* Pop Up when msg-content is less then or equal to 60 and text-short-sms */
.msgCont-textShort-popUp,
.msgCont-flash-popUp,
.dtRowDel-popUp,
.saveForm-popUp {
  border-radius: 14px;
  border: Mixed solid;
  box-shadow: 0px 21.5px 53.75px 0px #00000047;
  font-size: 16px;
  padding-top: 1rem;
}
/* .dtRowDel-popUp {
  padding: 0rem 0rem 2rem 0rem;
} */
.msgCont-textShort-confirmBtn.swal2-styled,
.msgCont-flash-confirmBtn.swal2-styled,
.dtRowDel-action-cancelBtn.swal2-styled,
.saveForm-cancelBtn.swal2-styled {
  border-radius: 10px;
  font-weight: 400;
  padding-inline: 40px;
  color: white;
  transition: 0.5s ease-out;
}
.dtRowDel-action-confirmBtn,
.saveForm-confirmBtn {
  border: 0px !important;
  height: 46px;
  border-radius: 10px !important;
  padding: 0px 40px;
  gap: 10px;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 12px;
  background-color: #e4e0fb !important;
  color: #6c54e6 !important;
  transition: 0.5s ease-out;
}
.dtRowDel-action-confirmBtn.swal2-styled:hover,
.saveForm-confirmBtn.swal2-styled:hover {
  color: #fff !important;
  /* background-color: white !important; */
  background-color: white !important;
  border: none !important;
  background: linear-gradient(52.88deg, #0049e6 -5.02%, #9c15f7 52.99%, #ff4cf8 113.38%) !important;
  filter: brightness(130%) contrast(1.3);
}
.msgCont-textShort-confirmBtn.swal2-styled:hover,
.msgCont-flash-confirmBtn.swal2-styled:hover,
.dtRowDel-action-cancelBtn.swal2-styled:hover,
.saveForm-cancelBtn.swal2-styled:hover {
  color: #fdfdfd;
  background-color: rgba(0, 0, 0, 0.8);
}
.dtRowDel-action-confirmBtn.swal2-styled:focus,
.msgCont-textShort-confirmBtn.swal2-styled:focus,
.msgCont-flash-confirmBtn.swal2-styled:focus,
.saveForm-cancelBtn.swal2-styled:focus,
.saveForm-confirmBtn.swal2-styled:focus {
  outline: 0;
  box-shadow: none;
}
/* Related to OBD Page , OBD Terminal */
.OBD-terminal {
  margin-top: 4rem 1rem;
  padding: 1rem;
  margin: auto;
  max-width: 60vh;
  height: 80vh;
  width: 100%;
  background-color: black;
  border-radius: 14px;
  border: 1px solid #6c54e633;
}
.OBD-terminal .terminal-header {
  height: 47px;
  padding: 1rem 2rem 1rem 1rem;
  display: flex;
  color: white;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #323232;
}
.OBD-terminal .terminal-body {
  color: white;
  font-style: italic;
  font-size: 1rem;
  line-height: 35px;
  padding: 2rem;
}
.OBD-terminal .terminal-header .terminal-header__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.OBD-terminal .terminal-header .terminal-header-option {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.3rem;
}
.OBD-terminal .terminal-header .terminal-header__left .terminal-header-option {
  font-size: 12px;
  line-height: 15px;
}
.OBD-terminal
  .terminal-header
  .terminal-header__right
  .terminal-header-option.option1 {
  color: #43ba7f;
  font-size: 12px;
  font-weight: 15px;
  font-style: italic;
}
@media (min-width: 1600px) {
  .OBD-terminal {
    width: 70vh;
    max-height: 85vh;
  }
  .OBD-terminal
    .terminal-header
    .terminal-header__left
    .terminal-header-option {
    font-size: 15px;
    font-weight: 18px;
  }
  .OBD-terminal
    .terminal-header
    .terminal-header__right
    .terminal-header-option.option1 {
    font-size: 15px;
    font-weight: 18px;
  }
  .OBD-terminal .terminal-header {
    padding: 2rem 1rem;
  }
  .OBD-terminal .terminal-header .terminal-header-option {
    gap: 0.2rem;
  }
  .OBD-terminal .terminal-header .terminal-header__left {
    gap: 1rem;
  }
  .OBD-terminal .terminal-body {
    font-size: 15px;
    line-height: 35px;
    padding: 1.5rem;
  }
}
@media (max-width: 1400px) {
  .OBD-terminal {
    width: 80vh;
    max-height: 85vh;
  }
  .OBD-terminal
    .terminal-header
    .terminal-header__left
    .terminal-header-option {
    font-size: 10px;
    font-weight: 13px;
  }
  .OBD-terminal
    .terminal-header
    .terminal-header__right
    .terminal-header-option.option1 {
    font-size: 10px;
    font-weight: 13px;
  }
  .OBD-terminal .terminal-header {
    padding: 0.75rem 0.5rem;
  }
  .OBD-terminal .terminal-header .terminal-header-option {
    gap: 0rem;
  }
  .OBD-terminal .terminal-header .terminal-header__left {
    gap: 0.75rem;
  }
  .OBD-terminal .terminal-body {
    font-size: 12px;
    line-height: 30px;
    padding: 1rem;
  }
}

/* Related to mobile caller keypad */
.mobile-keypad {
  height: 100%;
  margin-top: 2rem;
  display: none;
}
.mobile-keypad.active {
  display: block;
}
.vihm-mobDailer__mobile-container {
  display: inline-block;
  position: relative;
}
.vihm-mobDailer__mobile {
  max-height: 80vh;
}
.vihm-mobDailer__mobile-content-area {
  position: absolute;
  top: 10%;
  right: 4%;
  bottom: 15%;
  bottom: 4%;
  left: 4%;
  overflow-y: auto;
  padding: 5% 5% 2% 5%;
}
.vihm-mobDailer__mobile-content-area::-webkit-scrollbar {
  display: none;
}

.vihm-mobDailer__mobNum-container {
  margin-top: 5%;
  position: relative;
  /* background-color: yellow; */
  height: 20% !important;
}
.vihm-mobDailer__mobNum-container .mob-num {
  display: block;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
}
.vihm-mobDailer__mobNum-container .mob-num-tag {
  display: block;
  margin-top: 2%;
  color: #6c54e6;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}
.vihm-mobDailer__mobNum-keypad {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0rem 0.5rem;
}

.vihm-mobDailer__mobNum-keypad-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.vihm-mobDailer__mobNum-keypad-row .keypadBtn {
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 110px;
  background-color: white;
  border: 1px solid #6c54e633;
  box-shadow: 0px 4px 9px 0px #00000014;
  transition: 0.25s all ease-out;
}
.vihm-mobDailer__mobNum-keypad-row .keypadBtn.dailBtn {
  background: linear-gradient(
    52.88deg,
    #0049e6 -5.02%,
    #9c15f7 52.99%,
    #ff4cf8 113.38%
  );
}
.vihm-mobDailer__mobNum-keypad-row .keypadBtn.backSpaceBtn {
  border: none;
  background-color: transparent;
  box-shadow: none;
}
.vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit {
  font-size: 28px;
  line-height: 35px;
  color: #6c54e6;
}
.vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets {
  font-size: 10px;
  line-height: 12px;
  color: #6c54e6;
}

.vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover {
  background-color: #6c54e6;
}
.vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover .digit,
.vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover .alphabets {
  color: white;
}
.vihm-mobDailer__mobNum-keypad-row .keypadBtn:active {
  height: 65px;
  width: 65px;
  background-color: rgba(108, 84, 230, 0.4);
}
.vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover.backSpaceBtn {
  background-color: transparent;
  height: 70px;
  width: 70px;
}
.vihm-mobDailer__mobNum-keypad-row
  .keypadBtn:active.backSpaceBtn
  .bckSpce-btnSvg-mobile {
  fill: rgba(108, 84, 230, 0.8);
}

@media (min-width: 992px) {
  .vihm-mobDailer__mobNum-container .mob-num {
    font-size: 20px;
    line-height: 23px;
  }
  .vihm-mobDailer__mobNum-container .mob-num-tag {
    font-size: 10px;
    line-height: 12px;
  }
  .vihm-mobDailer__mobNum-keypad {
    gap: 0.7rem;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn {
    height: 48px;
    width: 48px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn.dailBtn > img {
    transform: scale(0.6);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn.backSpaceBtn > svg {
    transform: scale(0.6);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit {
    font-size: 16px;
    line-height: 20px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit.starBtn {
    margin-top: 0.6rem;
    transform: scale(1.5);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets {
    font-size: 7px;
    line-height: 9px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets.plusBtn {
    transform: scale(1.7);
    margin-top: -0.1rem;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:active {
    height: 44px;
    width: 44px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover.backSpaceBtn {
    background-color: transparent;
    height: 48px;
    width: 48px;
  }
}
@media (min-width: 1280px) {
  .vihm-mobDailer__mobNum-container .mob-num {
    font-size: 20px;
    line-height: 23px;
  }
  .vihm-mobDailer__mobNum-container .mob-num-tag {
    font-size: 10px;
    line-height: 11px;
  }
  .vihm-mobDailer__mobNum-keypad {
    gap: 0.6rem;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn {
    height: 50px;
    width: 50px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn.dailBtn > img {
    transform: scale(0.6);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn.backSpaceBtn > svg {
    transform: scale(0.6);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit {
    font-size: 19px;
    line-height: 23px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit.starBtn {
    margin-top: 0.65rem;
    transform: scale(1.5);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets {
    font-size: 8px;
    line-height: 10px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets.plusBtn {
    transform: scale(1.5);
    margin-top: -0.1rem;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:active {
    height: 46px;
    width: 46px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover.backSpaceBtn {
    background-color: transparent;
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 1366px) {
  .vihm-mobDailer__mobNum-container .mob-num {
    font-size: 23px;
    line-height: 26px;
  }
  .vihm-mobDailer__mobNum-container .mob-num-tag {
    font-size: 11px;
    line-height: 13px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn {
    height: 56px;
    width: 56px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit {
    font-size: 19px;
    line-height: 23px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets {
    font-size: 8.5px;
    line-height: 10.5px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:active {
    height: 52px;
    width: 52px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover.backSpaceBtn {
    background-color: transparent;
    height: 56px;
    width: 56px;
  }
}
@media (min-width: 1600px) {
  .vihm-mobDailer__mobNum-container .mob-num {
    font-size: 28px;
    line-height: 30px;
  }
  .vihm-mobDailer__mobNum-container .mob-num-tag {
    font-size: 13px;
    line-height: 15px;
  }
  .vihm-mobDailer__mobNum-keypad {
    gap: 0.6rem;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn {
    height: 70px;
    width: 70px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn.dailBtn > img {
    transform: scale(0.85);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn.backSpaceBtn > svg {
    transform: scale(0.7);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit {
    font-size: 25px;
    line-height: 27px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit.starBtn {
    margin-top: 0.7rem;
    transform: scale(1.7);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets {
    font-size: 11px;
    line-height: 13px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets.plusBtn {
    transform: scale(1.6);
    margin-top: -0.1rem;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:active {
    height: 65px;
    width: 65px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover.backSpaceBtn {
    background-color: transparent;
    height: 70px;
    width: 70px;
  }
}
@media (min-width: 1920px) {
  .vihm-mobDailer__mobile {
    max-height: 80vh;
  }
  .vihm-mobDailer__mobNum-container .mob-num {
    font-size: 32px;
    line-height: 38px;
  }
  .vihm-mobDailer__mobNum-container .mob-num-tag {
    font-size: 14px;
    line-height: 15px;
  }
  .vihm-mobDailer__mobNum-keypad {
    gap: 0.8rem;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn {
    height: 75px;
    width: 75px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn.dailBtn > img {
    transform: scale(0.9);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn.backSpaceBtn > svg {
    transform: scale(0.65);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit {
    font-size: 25px;
    line-height: 28px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .digit.starBtn {
    margin-top: 0.7rem;
    transform: scale(1.6);
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets {
    font-size: 11px;
    line-height: 14px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn .alphabets.plusBtn {
    transform: scale(1.5);
    margin-top: -0.1rem;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:active {
    height: 70px;
    width: 70px;
  }
  .vihm-mobDailer__mobNum-keypad-row .keypadBtn:hover.backSpaceBtn {
    background-color: transparent;
    height: 75px;
    width: 75px;
  }
}

/* Related to the calling view of the OBD mobile */
.vihm-mobDailer__mobile-content-area.call-initiated-view {
  top: 15%;
}
.vihm-mobDailer__mobileRing-container .mobileRing {
  height: 128px;
  width: 128px;
  margin: auto;
  background: linear-gradient(
    52.88deg,
    #0049e6 -5.02%,
    #9c15f7 52.99%,
    #ff4cf8 113.38%
  );
  padding: 3rem;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: yellow;
  transition: 0.5s all ease-out;
  -webkit-animation: pulseBlue 2s infinite;
  animation: pulseBlue 2s infinite;
}
@-webkit-keyframes pulseBlue {
  0% {
    box-shadow: 0 0 5px 12px rgba(108, 84, 230, 0.3);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(108, 84, 230, 0);
  }
  100% {
    box-shadow: 0 0 5px 12px rgba(108, 84, 230, 0.3);
  }
}
@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 5px 12px rgba(108, 84, 230, 0.3);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(108, 84, 230, 0);
  }
  100% {
    box-shadow: 0 0 5px 12px rgba(108, 84, 230, 0.3);
  }
}
.vihm-mobDailer__mobileRing-container .call-info {
  margin-top: 20%;
}
.vihm-mobDailer__mobileRing-container .call-info .mobile-num {
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: #1e1e1e;
}
.vihm-mobDailer__mobileRing-container .call-info .mobile-num-tag {
  display: block;
  font-size: 16px;
  line-height: 19px;
  color: #6c54e6;
}
.vihm-mobDailer__mobileRing-container .horizontal-line {
  opacity: 0.1;
  margin-top: 17%;
}
.vihm-mobDailer__mobileRing-container .dailingOptions {
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.vihm-mobDailer__mobileRing-container .dailingOptions .dailingOption-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.vihm-mobDailer__mobileRing-container .dailingOptions .option {
  height: 78px;
  width: 78px;
  border-radius: 100px;
  border: none;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  transition: 0.5s all ease-out;
}
.vihm-mobDailer__mobileRing-container .dailingOptions .option.cancel-call {
  background-color: #f67a7f;
  transition: 0.25s all ease-out;
}
.vihm-mobDailer__mobileRing-container .dailingOptions .option:hover.cancel-call,
.option:active.cancel-call {
  background-color: rgba(255, 0, 0, 0.7);
}
.vihm-mobDailer__mobileRing-container .dailingOptions .option > span {
  font-size: 14px;
  line-height: 16.5px;
  color: black;
}
@media (min-width: 1200px) {
  .vihm-mobDailer__mobileRing-container .mobileRing {
    height: 81px;
    width: 81px;
    padding: 2rem;
  }
  .vihm-mobDailer__mobileRing-container .call-info .mobile-num {
    font-size: 13.5px;
    line-height: 17.5px;
  }
  .vihm-mobDailer__mobileRing-container .call-info .mobile-num-tag {
    font-size: 11.5px;
    line-height: 14.5px;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions {
    gap: 1.25rem;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option {
    height: 52px;
    width: 52px;
  }
  .vihm-mobDailer__mobileRing-container
    .dailingOptions
    .option:active.cancel-call {
    height: 49px;
    width: 49px;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option > img {
    transform: scale(0.65);
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option > span {
    font-size: 10px;
    line-height: 12px;
  }
}
@media (min-width: 1366px) {
  .vihm-mobDailer__mobileRing-container .mobileRing {
    height: 85px;
    width: 85px;
    padding: 2rem;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions {
    gap: 1.5rem;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option {
    height: 55px;
    width: 55px;
  }
  .vihm-mobDailer__mobileRing-container
    .dailingOptions
    .option:active.cancel-call {
    height: 58px;
    width: 58px;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option > img {
    transform: scale(0.75);
  }
}
@media (min-width: 1600px) {
  .vihm-mobDailer__mobileRing-container .mobileRing {
    height: 95px;
    width: 95px;
    padding: 2.2rem;
  }
  .vihm-mobDailer__mobileRing-container .call-info .mobile-num {
    font-size: 16px;
    line-height: 20px;
  }
  .vihm-mobDailer__mobileRing-container .call-info .mobile-num-tag {
    font-size: 12.5px;
    line-height: 15.5px;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions {
    gap: 1.5rem;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option {
    height: 65px;
    width: 65px;
  }
  .vihm-mobDailer__mobileRing-container
    .dailingOptions
    .option:active.cancel-call {
    height: 68px;
    width: 68px;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option > img {
    transform: scale(0.9);
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option > span {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (min-width: 1920px) {
  .vihm-mobDailer__mobileRing-container .mobileRing {
    height: 118px;
    width: 118px;
    padding: 3rem;
  }
  .vihm-mobDailer__mobileRing-container .call-info .mobile-num {
    font-size: 19px;
    line-height: 23px;
  }
  .vihm-mobDailer__mobileRing-container .call-info .mobile-num-tag {
    font-size: 14px;
    line-height: 16px;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions {
    gap: 2rem;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option {
    height: 78px;
    width: 78px;
  }
  .vihm-mobDailer__mobileRing-container
    .dailingOptions
    .option:active.cancel-call {
    height: 81px;
    width: 81px;
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option > img {
    transform: scale(1);
  }
  .vihm-mobDailer__mobileRing-container .dailingOptions .option > span {
    font-size: 14px;
    line-height: 16px;
  }
}

/* Related to various text-sections in forms */
.vihm-page-tabs-content__form .text-section.text-section1 {
  position: relative;
}
.vihm-page-tabs-content__form .text-section.text-section1 > textarea {
  height: 65%;
}
.vihm-page-tabs-content__form .text-section .bottom-section {
  position: absolute;
  bottom: 0;
  height: 22%;
  width: 97.5%;
  margin: 0% 1.25% 1.25% 1.25%;
  background-color: rgba(108, 84, 230, 0.1);
  border-radius: 0px 0px 10px 10px;
  padding: 1% 2%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Related to text modification options in the text-section */
.vihm-page-tabs-content__form
  .text-section
  .bottom-section
  .customised-text-options {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.7rem;
  align-items: center;
}
.vihm-page-tabs-content__form
  .text-section
  .bottom-section
  .customised-text-options
  > button {
  border: none;
  background-color: transparent;
}

/* Related to text-info in the text-section */
.vihm-page-tabs-content__form .text-section .bottom-section .text-info span {
  white-space: nowrap;
  font-size: 12px;
  line-height: 12px;
  color: black;
  font-weight: 400;
}
.vihm-page-tabs-content__form
  .text-section
  .bottom-section
  .text-info
  > span
  > strong {
  margin: 0rem 0.35rem;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #6c54e6;
}
@media (min-width: 992px) {
  .vihm-page-tabs-content__form
    .text-section
    .bottom-section
    .customised-text-options {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .vihm-page-tabs-content__form
    .text-section
    .bottom-section
    .customised-text-options {
    gap: 0.6rem;
  }
}
@media (min-width: 1366px) {
  .vihm-page-tabs-content__form
    .text-section
    .bottom-section
    .customised-text-options {
    gap: 0.6rem;
  }
}
@media (min-width: 1600px) {
  .vihm-page-tabs-content__form
    .text-section
    .bottom-section
    .customised-text-options {
    gap: 1rem;
  }
}

/* Related to dynamic-cards in email section */
.my-cards.email-dynamic-templates {
  /* margin: calc(20px * var(--resp)) calc(10px * var(--resp)) */
    /* calc(37px * var(--resp)) calc(10px * var(--resp)); */
  display: flex;
  flex-direction: row;
  align-items: center;
  /* gap: calc(19px * var(--resp)); */
  flex-wrap: wrap;
}
.email-dynamic-templates > .email-template-list{
  width: calc( (100%/3 - (2 * 7.5px) ) );
}

@media (max-width: 1600px) {
  .my-cards.email-dynamic-templates {
    flex-wrap: wrap;
  }
}
.email-template-list .email-temp-card {
  height: calc(647px * var(--resp));
  width: 100%;
  border-radius: calc(10px * var(--resp));
  border: 1px solid #6c54e624;
  box-shadow: 0px 11.59px 57.97px 0px #d9d9d940;
}
.email-template-list .email-temp-card__body {
  height: calc(605px * var(--resp));
  padding: calc(26px * var(--resp)) calc(24px * var(--resp));
}
.email-template-list .email-temp-card__header {
  height: calc(38px * var(--resp));
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.email-template-list .email-temp-card__header__left {
  display: flex;
  gap: calc(15px * var(--resp));
}
.email-template-list .email-temp-card__icon {
  margin-top: calc(4px * var(--resp));
}
.email-template-list .email-temp-card__header__left > span {
  font-size: calc(14px * var(--fresp));
  line-height: calc(16.59px * var(--fresp));
}
.email-template-list .email-temp-card__options__icon {
  margin-top: calc(-16px * var(--resp));
  cursor: pointer;
}
.email-template-list .email-temp-card__mainBody__image {
  height: calc(433px * var(--resp));
  margin-top: calc(27px * var(--resp));
  margin-bottom: calc(18px * var(--resp));
  border-radius: calc(6px * var(--resp));
  border: 1px solid #6c54e624;
  box-shadow: 0px 11.59px 57.97px 0px #d9d9d940;
  overflow: hidden;
}
.email-template-list .email-temp-card__mainBody__image iframe{width:100%!important}
.email-template-list:hover .email-temp-card__mainBody__image .image-wrapper {
  animation: scrollAnimation 10s linear infinite;
}
@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translate(0%);
  }
}

.email-template-list .email-temp-card__mainBody__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10px * var(--resp));
}

.email-template-list .email-temp-card__footer {
  background-color: #6c54e61a;
  height: calc(42px * var(--resp));
  border-top: 1px solid #6c54e61a;
  border-radius: 0px 0px calc(10px * var(--resp)) calc(10px * var(--resp));
  display: flex;
  justify-content: center;
  align-items: center;
}

.email-template-list .email-temp-card__footer > span {
  font-size: calc(12px * var(--fresp));
  line-height: calc(14.22px * var(--fresp));
}

/* Related to new filed in email compose */
.form-group .email-compose-options {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: calc(var(--resp) * 20px);
  min-height: calc(50px * var(--resp));
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Related to cke editor in email-send-compse page */
.custom_email_editor {
  padding: calc(var(--resp) * 15px);
  border: 1px solid #ced4da;
  border-radius: calc(var(--resp) * 10px);
}
.custom_email_editor .cke_chrome {
  border: none !important;
}
.custom_email_editor .cke_combo_label {
  display: none !important;
}
.custom_email_editor .cke_combo_off {
  margin-inline: calc(10px * var(--resp));
}
.custom_email_editor .cke_top {
  background-color: #f7f6ff;
  border: none;
}
.cke_button_label, .cke_button__undo_label, .cke_button_description {
  display: none !important;
}
.cke_voice_label {
  display: none !important;
}
.custom_email_editor .cke_reset_all,
.custom_email_editor .cke_reset_all *,
.custom_email_editor .cke_reset_all a,
.custom_email_editor .cke_reset_all textarea {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.custom_email_editor .cke_bottom {
  display: none !important;
}
.custom_email_editor a.cke_combo_button {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom_email_editor .cke_combo_text {
  margin-left: 0px;
  color: #1e1e1e;
  font-size: calc(var(--fresp) * 16px);
  line-height: calc(var(--fresp) * 24px);
  font-weight: 500;
}
.custom_email_editor .cke_combo::after {
  display: none;
}
.custom_email_editor .cke_combo_open {
  transform: scale(1.5, 1.5);
  color: #1e1e1e;
  margin-bottom: 5px;
}
/* .custom_email_editor .cke_hidpi a.cke_button .cke_button__italic_icon,
.cke_browser_webkit a.cke_button .cke_button__italic_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-cke-redo.svg) !important;
} */
/* .custom_email_editor
  .cke_browser_webkit
  .cke_ltr
  a.cke_button
  .cke_button__undo_icon,
.cke_ltr.cke_browser_webkit a.cke_button .cke_button__undo_icon,
.cke_hidpi .cke_ltr a.cke_button .cke_button__undo_icon,
.cke_ltr.cke_hidpi a.cke_button .cke_button__undo_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-cke-undo.svg)
    no-repeat center !important;
  background-size: 100% !important;
}
.custom_email_editor
  .cke_browser_webkit
  .cke_ltr
  a.cke_button
  .cke_button__redo_icon,
.cke_ltr.cke_browser_webkit a.cke_button .cke_button__redo_icon,
.cke_hidpi .cke_ltr a.cke_button .cke_button__redo_icon,
.cke_ltr.cke_hidpi a.cke_button .cke_button__redo_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-cke-redo.svg)
    no-repeat center !important;
  background-size: 100% !important;
}

.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__print_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-cke-print.svg)
    no-repeat center !important;
  background-size: 105% !important;
}

.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__bold_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-bold.svg)
    no-repeat center !important;
  background-size: 60% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__italic_icon {
  background: url(./../images/icons/custom-email-icons/cusom-email-italic.svg)
    no-repeat center !important;
  background-size: 80% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__underline_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-textUnderline.svg)
    no-repeat center !important;
  background-size: 75% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__justifyleft_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-leftAllign.svg)
    no-repeat center !important;
  background-size: 80% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__justifycenter_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-centreAllign.svg)
    no-repeat center !important;
  background-size: 90% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__justifyright_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-rightAllign.svg)
    no-repeat center !important;
  background-size: 90% !important;
}

.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__strike_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-strikeThrough.svg)
    no-repeat center !important;
  background-size: 100% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__textcolor_icon {
  background: url(./../images/icons/custom-email-icons/cusotm-email-textColor.svg)
    no-repeat center !important;
  background-size: 90% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__link_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-link.svg)
    no-repeat center !important;
  background-size: 100% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__image_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-image.svg)
    no-repeat center !important;
  background-size: 100% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button .cke_button__justifyblock_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-justify.svg)
    no-repeat center !important;
  background-size: 90% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button  .cke_button__outdent_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-decreaseIndent.svg)
    no-repeat center !important;
  background-size: 90% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button  .cke_button__indent_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-increaseIndent.svg)
    no-repeat center !important;
  background-size: 90% !important;
}
.custom_email_editor .cke_hidpi,
.cke_browser_webkit a.cke_button  .cke_button__removeformat_icon {
  background: url(./../images/iconscustom-email-icons/custom-email-clearFormatting.svg)
    no-repeat center !important;
  background-size: 90% !important;
}

.custom_email_editor
  .cke_browser_webkit
  .cke_ltr
  a.cke_button
  .cke_button__numberedlist_icon,
.cke_ltr.cke_browser_webkit a.cke_button .cke_button__numberedlist_icon,
.cke_hidpi .cke_ltr a.cke_button .cke_button__numberedlist_icon,
.cke_ltr.cke_hidpi a.cke_button .cke_button__numberedlist_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-numberList.svg)
    no-repeat center !important;
  background-size: 85% !important;
}
.custom_email_editor
  .cke_browser_webkit
  .cke_ltr
  a.cke_button
  .cke_button__bulletedlist_icon,
.cke_ltr.cke_browser_webkit a.cke_button .cke_button__bulletedlist_icon,
.cke_hidpi .cke_ltr a.cke_button .cke_button__bulletedlist_icon,
.cke_ltr.cke_hidpi a.cke_button .cke_button__bulletedlist_icon {
  background: url(./../images/icons/custom-email-icons/custom-email-insertRemoveBullet.svg)
    no-repeat center !important;
  background-size: 90% !important;
} */

/* New Login page code */
.new__auth__inner {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  width: 100%;
}
.new__auth__inner__left,
.new__auth__inner__right {
  height: 100vh;
  width: 50%;
}
.new__auth__inner__right::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../images/rectangleOverlay.svg) no-repeat;
  background-size: cover;
  z-index: 0;
}
.new__auth__inner__left {
  padding: 20vh calc(95px * var(--resp)) 50px calc(95px * var(--resp));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  position: relative;
}
.new__auth__inner__left  .contentHeader{
  position: absolute;
  height: 58px;
  left: calc(95px* var(--resp));
  top: 20px;
}
.new__auth__inner__left  .contentFooter,
.new__auth__inner__left  .contentCover__footer{
  position: absolute;
  left: calc(95px* var(--resp));
  right: calc(95px* var(--resp));
  bottom: 20px;
  width: auto!important;
}
.new__auth__inner__left .contentBody .contentBody__header h1 {
  font-size: calc(56px * var(--fresp));
  line-height: calc(66px * var(--fresp));
  margin: 0;
}
.new__auth__inner__left .contentBody .contentBody__header p {
  font-size: calc(16px * var(--fresp));
  line-height: 1.5;
  margin-top: 0.7rem;
}
.new__auth__inner__left .contentBody .contentBody__body .linkWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new__auth__inner__left .contentFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width:1600px) {
  .new__auth__inner__left .contentFooter,
  .new__auth__inner__left  .contentCover__footer{
    font-size: 12px!important;
  }
  .new__auth__inner__left .contentFooter .fs14,
  .new__auth__inner__left  .contentCover__footer .fs14{
    font-size: 12px!important;
  }
}

@media (max-width:1400px) {
  .new__auth__inner__left .contentFooter,
  .new__auth__inner__left  .contentCover__footer{
    font-size: 10px!important;
  }
  .new__auth__inner__left .contentFooter .fs14,
  .new__auth__inner__left  .contentCover__footer .fs14{
    font-size: 10px!important;
  }
}

.new__auth__inner__left .contentFooter .list-inline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(10px * var(--resp));
}
.new__auth__inner__left .contentBody .contentBody__body .terms__robot__captcha {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new__auth__inner__left .vihm-page-tabs-content__form {
  padding: 0;
  border: 0;
  box-shadow: none;
}
.new__auth__inner__right {
  position: relative;
  padding: 12px calc(55px * var(--resp));
  background: linear-gradient(
    22.33deg,
    #0049e6 -5.87%,
    #9c15f7 53.8%,
    #ff4cf8 115.91%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1600px) and (max-height: 800px) {
  .new__auth__inner__right {
    padding-bottom: 1rem;
  }
}
.new__auth__inner__right .pageHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  gap: min(3vw, 3rem);
}
.new__auth__inner__right .pageHeader .navbar-nav {
  display: flex !important;
  align-items: center;
  flex-direction: row;
  gap: calc(42px * var(--resp));
  justify-content: space-between;
}
.new__auth__inner__right .pageHeader .navbar-nav .nav-item .nav-link {
  color: white;
  font-size: calc(16px * var(--fresp));
}
.new__auth__inner__right .bg-effect-slice::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../images/rectangleOverlay.svg) no-repeat;
  background-size: cover;
}

/* Rlated to the animation of the girl in the login page  */
.new__auth__inner__right .new__auth__inner__anim {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new__auth__inner__anim .girlInCenter {
  width: 50%;
  z-index: 0;
  display: flex;
  align-items: center;
}
.new__auth__inner__right
  .pageFooter
  .login__slider__info
  .loginSlider
  .bottomContent
  > h2 {
  font-size: calc(42px * var(--fresp));
  line-height: calc(42px * var(--fresp));
  color: white;
}
@media (max-width: 1600px) and (max-height: 800px) {
  .new__auth__inner__right
    .pageFooter
    .login__slider__info
    .loginSlider
    .bottomContent
    > h2 {
    font-size: calc(2rem * var(--fresp));
    line-height: 1;
  }
}
.new__auth__inner__right
  .pageFooter
  .login__slider__info
  .loginSlider
  .bottomContent
  > p {
  color: white;
  font-size: calc(16px * var(--fresp));
  line-height: calc(18px * var(--fresp));
}
.new__auth__inner__right .pageFooter .login__slider__info .owl-theme .owl-dots,
.login__slider__info .owl-theme .owl-nav {
  margin-top: -0.5rem !important;
  text-align: start;
}
.pageFooter .help__toaster {
  display: flex;
  justify-content: flex-end;
}
.pageFooter .help__toaster .toaster {
  background-color: white;
  margin-right: calc(-53px * var(--resp));
  height: calc(97px * var(--resp));
  max-width: calc(424px * var(--resp));
  border-radius: 420px 0% 0% 420px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-inline: calc(10px * var(--resp)) calc(45px * var(--resp));
  cursor: pointer;
  transform: translateX(450px);
  -webkit-animation: animOnload 0.8s ease-in-out forwards 1s;
  animation: animOnload 0.8s ease-in-out forwards 1s;
}

.pageFooter
  .help__toaster
  .toaster
  .user__icon__holder {
  height: calc(76px * var(--resp));
  width: calc(76px * var(--resp));
  border-radius: calc(38px * var(--resp));
  background: linear-gradient(
    52.88deg,
    #0049e6 -5.02%,
    #9c15f7 52.99%,
    #ff4cf8 113.38%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem;
}
.pageFooter .help__toaster .toaster .toaster__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-inline: calc(10px * var(--resp));
}


  .pageFooter
  .help__toaster
  .toaster
  .toaster__info
  > h1 {
  font-size: calc(26px * var(--fresp));
  line-height: calc(28px * var(--fresp));
  margin: calc(3px * var(--resp));
}


  .pageFooter
  .help__toaster
  .toaster
  .toaster__info
  > p {
  font-size: calc(14px * var(--fresp));
  line-height: calc(15px * var(--fresp));
  margin: calc(3px * var(--resp));
}

@media (max-width: 1600px) and (max-height: 800px) {
  .pageFooter .help__toaster .toaster {
    height: calc(4rem * var(--resp));
    padding-right: 1rem;
  }
  .pageFooter
    .help__toaster
    .toaster
    .user__icon__holder {
    width: calc(3rem * var(--resp));
    height: calc(3rem * var(--resp));
    padding: 0;
  }
  .pageFooter
    .help__toaster
    .toaster
    .user__icon__holder
    img {
    max-width: 55%;
    height: auto;
    margin-top: 3px;
  }

  .pageFooter
    .help__toaster
    .toaster
    .toaster__info
    > h1 {
    margin-top: 0rem;
    font-size: calc(1.25rem * var(--fresp));
  }
  .pageFooter
    .help__toaster
    .toaster
    .toaster__info
    > p {
    margin-top: 0;
    font-size: 12px;
  }
}

/* This is related to the animations of the forgot and signIn page */
.new__auth__inner__right .new__auth__inner__anim .signUpImg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(36%, -60%, 0);
  margin-left: auto;
  pointer-events: none;
}
.new__auth__inner__right .new__auth__inner__anim .signUpImg img {
  max-height: 100vh;
  width: 100%;
  max-width: 100%;
  right: 0;
  top: 0;
}

.new__auth__inner__right .new__auth__inner__anim .signUpImg .img01,
.new__auth__inner__right .new__auth__inner__anim .signUpImg .img02,
.new__auth__inner__right .new__auth__inner__anim .signUpImg .img03 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
}
.new__auth__inner__right .new__auth__inner__anim .signUpImg .img00 {
  animation: signUpMainImgAnimation 1s linear forwards;
}
.new__auth__inner__right .new__auth__inner__anim .signUpImg .img01 {
  transform-origin: center center;
  transform: rotate(-35deg);
  opacity: 0;
  animation: signUpImgAnimation01 1s ease-in-out forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
}
.new__auth__inner__right .new__auth__inner__anim .signUpImg .img02 {
  transform-origin: center center;
  transform: rotate(-25deg);
  opacity: 0;
  animation: signUpImgAnimation02 1s ease-in-out forwards;
  animation-delay: 0.15s;
}
.new__auth__inner__right .new__auth__inner__anim .signUpImg .img03 {
  transform-origin: center center;
  transform: rotate(-15deg);
  opacity: 0;
  animation: signUpImgAnimation03 1s ease-in-out forwards;
  animation-delay: 0.1s;
}
.new__auth__inner__left .contentBody__body .otpMainContainer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1s ease-out, opacity 0.5s ease-out;
}
.new__auth__inner__left .contentBody__body .otpMainContainer.active {
  opacity: 1;
  max-height: 200px;
}

.new__auth__inner__left .contentBody__body .otpMainContainer.active {
  display: block;
}
.new__auth__inner__left .contentBody__body .otpContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 2s ease-in-out;
}
.new__auth__inner__left .contentBody__body .otpContainer .otpInfo > h4 {
  font-size: 18px;
  margin: 0;
}
.new__auth__inner__left .contentBody__body .otpContainer .otpInfo > p {
  font-size: 14px;
  margin: 0;
}
.new__auth__inner__left .contentBody__body .otpContainer .otpNum {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}
.new__auth__inner__left .contentBody__body .otpContainer .otpNum .otpDigit {
  height: 48px;
  width: 48px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* Media queries for login screen */
@media (max-height: 750px) {
  .contentBody,
  .contentFooter {
    zoom: 0.8;
  }
  .contentFooter > * {
    margin-bottom: 0;
  }
  .contentBody__body {
    margin-top: 2vh;
  }
  .contentBody__body .form-control {
    padding-left: 3.2rem;
    font-size: 1rem;
  }
  .contentBody__body .gradient--primary {
    font-size: 1rem;
  }
  .contentBody__body .form-group > i,
  .contentBody__body .form-group > i.pwdIcon {
    top: 2.85rem;
  }
  .contentBody__body .form-group--password .togglePwd {
    top: 3rem;
    right: 1.2rem;
  }
  .contentBody__body select,
  .contentBody__body .form-control,
  .contentBody__body .form-select,
  .contentBody__body .gradient--primary {
    height: 56px;
  }
}
@media (max-width: 1025px) {
  .new__auth__inner__left .contentFooter .list-inline {
    display: inline-flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    gap: 0.1rem;
  }
  .contentFooter p {
    display: inline-flex;
    flex-flow: column nowrap;
    align-items: flex-start;
  }
}


/* Related to the modal delete */
.modal__delete_popup {
  height: calc(495px * var(--resp));
  width: calc(462px * var(--resp));
  padding-top: calc(80px * var(--resp));
  border-radius: calc(40px * var(--resp));
  background-color: #ffffff;
  box-shadow: 0px 21.5px 53.75px 0px #00000047;
}
.modal__delete .modal_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(40px * var(--resp));
}
.modal__delete.modal_content .modal_image > img {
  width: calc(270px * var(--resp));
  height: calc(267px * var(--resp));
}

/* Related to the flash modal */
.modal__flash_popup {
  height: calc(462px * var(--resp));
  width: calc(489px * var(--resp));
  padding: calc(30px * var(--resp)) 0px 0px 0px;
  border-radius: calc(40px * var(--resp));
  background-color: #ffffff;
  box-shadow: 0px 21.5px 53.75px 0px #00000047;
}
.modal__flash .modal_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(10px * var(--resp));
}
.modal__flash.modal_content .modal_image > img {
  width: calc(280px * var(--resp));
  height: calc(249px * var(--resp));
  margin-inline: auto;
  margin-bottom: calc(10px * var(--resp));
}
.modal__flash__popup .swal2-actions {
  margin: 0 !important;
}

/* Related to the login success modal */
.modal__loginSuccess_popup {
  width: calc(462px * var(--resp));
  height: calc(500px * var(--resp));
  padding: calc(20px * var(--resp)) calc(30px * var(--resp));
  border-radius: calc(40px * var(--resp));
  background-color: #ffffff;
  box-shadow: 0px 21.5px 53.75px 0px #00000047;
}
.modal__loginSuccess .modal_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal__loginSuccess.modal_content .modal_image > img {
  width: calc(402px * var(--resp));
  height: calc(340px * var(--resp));
  margin-inline: auto;
  margin-bottom: calc(10px * var(--resp));
}

/* Related to the modal otp sent */
.modal__otpSent_popup {
  width: calc(462px * var(--respP));
  height: calc(498px * var(--resp));
  padding: calc(20px * var(--resp)) calc(30px * var(--resp));
  border-radius: calc(40px * var(--resp));
  background-color: #ffffff;
  box-shadow: 0px 21.5px 53.75px 0px #00000047;
}
.modal__otpSent .modal_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(30px * var(--resp));
}
.modal__otpSent.modal_content .modal_image > img {
  width: calc(356px * var(--resp));
  height: calc(296px * var(--resp));
}

/* Related to the user added modal */
.modal__userAdded_popup {
  width: calc(462px * var(--respP));
  height: calc(500px * var(--resp));
  padding: calc(20px * var(--resp)) calc(40px * var(--resp));
  border-radius: calc(40px * var(--resp));
  background-color: #ffffff;
  box-shadow: 0px 21.5px 53.75px 0px #00000047;
}
.modal__userAdded .modal_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(20px * var(--resp));
}
.modal__userAdded.modal_content .modal_image > img {
  width: calc(330px * var(--resp));
  height: calc(294px * var(--resp));
}
.modal__userAdded .modal_info__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Related to the user welcome modal */
.modal__userWelcome_popup {
  width: calc(440px * var(--resp));
  height: calc(480px * var(--resp));
  padding: calc(20px * var(--resp)) calc(20px * var(--resp));
  border-radius: calc(40px * var(--resp));
  background-color: #ffffff;
  box-shadow: 0px 21.5px 53.75px 0px #00000047;
}
.modal__userWelcome .modal_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(20px * var(--resp));
}
.modal__userWelcome.modal_content .modal_image > img {
  width: calc(287px * var(--resp));
  height: calc(285px * var(--resp));
}
.modal__userWelcome .modal_info__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Related to the delete alert */
.modal__deleteAlert_popup {
  width: calc(466px * var(--resp));
  height: calc(532px * var(--resp));
  padding: calc(10px * var(--resp)) calc(30px * var(--resp));
  border-radius: calc(40px * var(--resp));
  background-color: #ffffff;
  box-shadow: 0px 21.5px 53.75px 0px #00000047;
}
.modal__deleteAlert .modal_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(20px * var(--resp));
}
.modal__deleteAlert.modal_content .modal_image > img {
  width: calc(244px * var(--resp));
  height: calc(236px * var(--resp));
}
.modal__deleteAlert .modal_info__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Common to all the modals */
.modal_content .modal_info .modal_heading {
  font-size: calc(28px * var(--fresp));
  line-height: calc(33px * var(--fresp));
  font-weight: 500;
  color: #1e1e1e;
  margin: 0px;
}
.modal_content .modal_info .modal_text_info {
  font-size: calc(18px * var(--fresp));
  font-weight: 400;
  line-height: calc(21px * var(--fresp));
  color: #545454;
  margin: 0px;
}
.modal__loginSuccess.modal_content .modal_info .modal_heading {
  color: #269c59;
}
.modal__userWelcome.modal_content .modal_info .modal_heading {
  margin-top: calc(10px * var(--resp));
  color: #6c54e6;
  font-weight: 600;
}
.modal__loginSuccess.modal_content .modal_info .modal_text_info,
.modal__otpSent.modal_content .modal_info .modal_text_info,
.modal__userAdded.modal_content .modal_info .modal_text_info,
.modal__deleteAlert.modal_content .modal_info .modal_text_info {
  margin-top: calc(10px * var(--resp)) !important;
  width: calc(291px * var(--resp));
}
.modal__userAdded.modal_content .modal_info .modal_text_info {
  width: calc(276px * var(--resp));
}
.modal_content .modal__static_image {
  display: none;
}
div:where(.swal2-container) .swal2-html-container,
div:where(.swal2-container) div:where(.swal2-actions) {
  margin: 0px !important;
  padding: 0px !important;
}
div:where(.swal2-container) div:where(.swal2-actions) {
  justify-content: center !important;
  align-items: flex-start !important;
  padding: 0px !important;
  margin: 0px !important;
}
div:where(.swal2-container) button:where(.swal2-styled) {
  margin: 0px !important;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  height: calc(48px * var(--resp)) !important;
  border-radius: 10px !important;
  font-weight: 400 !important;
  background: linear-gradient(
    52.88deg,
    #0049e6 -5.02%,
    #9c15f7 52.99%,
    #ff4cf8 113.38%
  ) !important;
  color: white !important;
  transition: 0.5s ease-out !important;
  padding-block: 0px !important;
  box-shadow: 0px 1.85px 3.15px 0px #623ce704, 0px 8.15px 6.52px 0px #623ce707,
    0px 20px 13px 0px #623ce709 !important;
  min-width: 100px;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
  height: calc(48px * var(--resp)) !important;
  border-radius: 10px !important;
  font-weight: 400 !important;
  color: #6c54e6 !important;
  transition: 0.5s ease-out !important;
  background-color: #e4e0fb !important;
  padding-block: 0px !important;
  border: none !important;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel:hover {
  background-color: transparent !important;
  border: none !important;
}
.modal__deleteAlert_popup .swal2-actions {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: calc(10px * var(--resp));
  justify-content: space-between;
}


/* settings */
.settings_list {
  background: rgba(108, 84, 230, 0.05);
  border-radius: 14px;
}
.settings_heading{
  font-size: calc(22px * var(--fresp));
  color: rgba(44, 44, 44, 1);
  margin-bottom: 18px;
}
.settings_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.settings_list li {
  margin-bottom: 0;
}
.settings_list a {
  text-decoration: none;
  color: rgba(44, 44, 44, 1);
  font-weight: 400;
  display: block;
  padding: calc(35px * var(--resp)) calc(35px * var(--resp));
  font-size: calc(20px * var(--fresp));
  position: relative;
  transition: all 0.3s ease-in-out;
}
.settings_list a {
  color: #000;
}
.settings_list a:hover {
  text-decoration: none;
}
.settings_list a::before {
  content: '';
  height: 1px;
  position: absolute;
  bottom: 0;
  left: calc(35px * var(--resp));
  right: calc(35px * var(--resp));
  background-color: rgba(108, 84, 230, 0.11);
}
.settings_list li:last-child > a::before {
  display: none;
}
.settings_list a::after {
  content: '';
  background-color: #6C54E6;
  width: 39.61px;
  height: 39.61px;
  border-radius: 50%;
  position: absolute;
  right: calc(35px * var(--resp));
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  background-image: url('../images/icons/setting-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.settings_list a:hover::after {
  background-color: #553bd5;
}