@font-face {
  font-family: gilroy-regular;
  src: url(../fonts/Gilroy-Regular.ttf);
}

@font-face {
  font-family: gilroy-medium;
  src: url(../fonts/Gilroy-Medium.ttf);
}

@font-face {
  font-family: gilroy-bold;
  src: url(../fonts/Gilroy-SemiBold.ttf);
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  background: #f2f2f2;
  font-family: gilroy-regular, sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

button:active {
  outline: none !important;
  border: none !important;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.centerizeany {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* .modal-backdrop{
  display: none;
} */
.modal-backdrop{
  background-color:transparent;
}

/* =============== Navbar Start =================== */

.mynav {
  background: #000000;
  color: #ffffff;
  padding: 14px;
  z-index: 900;
}

/* menu button start */
.mynav .toggle-btn {
  outline: none;
  background-color: #323232;
  height: 46px;
  width: 46px;
  border-radius: 23px;
  position: relative;
}

.mynav .toggle-btn .hambugrer {
  position: absolute;
  height: 4px;
  width: 20px;
  border-radius: 25%;
  background-color: #f6e802;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.mynav .toggle-btn .hambugrer1 {
  top: -27%;
}

.mynav .toggle-btn .hambugrer3 {
  top: 26%;
}

/* menu button end */

/* rightside items start */

.mynav .nav-items:not(:last-child) {
  margin-left: auto;
}

.mynav .icon-box {
  /* margin-top: auto;
  margin-bottom: auto; */
  width: 200px;
  display: flex;
  justify-content: space-between;
}

.mynav .icon-box.termscondition-icon {
  width: 80px;
}
.mynav .icon-box.login-icon {
  width: 80px;
  margin-right: 36px;
}

.mynav .icon-box .icon {
  font-size: 26px;
  color: #787878;
}
.mynav .icon-box i {
  font-size: 26px;
  color: #787878;
  margin-top: 6px;
}

.mynav .welcome-box p {
  text-align: right;
}

.mynav .welcome-box{
  width: 110px;
}

.mynav .welcome-box .welcome {
  font-weight: 900;
  font-size: 16px;
}

.mynav .welcome-box .name {
  font-weight: 600;
  font-size: 14px;
}

/* rightside items start */

/* scrolling text start */
.marquee {
  overflow: hidden;
  position: relative;
  color: #ffffff;
  margin: 0 auto;
  width: 75%;
}
.marquee.login-marquee{
  width: 80%;
}
.marquee.termscon-marquee{
  width: 80%;
}

@media screen and (max-width: 1700px) {
  .marquee {
    width: 70%;
  }
  .marquee.termscon-marquee{
    width: 75%;
  }
}
@media screen and (max-width: 1400px) {
  .marquee {
    width: 65%;
  }
  .marquee.login-marquee{
    width: 75%;
  }
  .marquee.termscon-marquee{
    width: 70%;
  }
}
@media screen and (max-width: 1200px) {
  .marquee {
    width: 60%;
  }
  .marquee.termscon-marquee{
    width: 65%;
  }
}
@media screen and (max-width: 992px) {
  .mynav .icon-box {
    width: 180px;
  }
  .mynav .icon-box i {
    font-size: 24px;
    margin-top: 8px;
  }
  .mynav .welcome-box{
    width: 90px;
  }
  .marquee.login-marquee{
    width: 70%;
  }
}
@media screen and (max-width: 900px) {
  .marquee {
    width: 55%;
  }
  .marquee.login-marquee{
    width: 65% !important;
  }
  .marquee.termscon-marquee{
    width: 60%;
  }
}
@media screen and (max-width: 820px) {
  .marquee {
    width: 50%;
  }
}
@media screen and (max-width: 720px) {
  .marquee {
    width: 40% !important;
  }
  .marquee.login-marquee{
    width: 60% !important;
  }
  .marquee.termscon-marquee{
    width: 55% !important;
  }
}
.marquee p {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: gilroy-medium, sans-serif;
  line-height: 50px;
  text-align: center;
  /* Starting position */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  /* Apply animation to this element */
  -moz-animation: scroll-left 20s linear infinite;
  -webkit-animation: scroll-left 20s linear infinite;
  animation: scroll-left 20s linear infinite;
}

/* Move it (define the animation) */

@keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
    /* Browser bug fix */
    -webkit-transform: translateX(100%);
    /* Browser bug fix */
    transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
    /* Browser bug fix */
    -webkit-transform: translateX(-100%);
    /* Browser bug fix */
    transform: translateX(-100%);
  }
}

/* scrolling text end */

#triangle {
  display: block;
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  left: 25px;
  top: 73px;
  margin: 0;
  border-top: 12px solid #000000;
  border-bottom: 12px solid transparent;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}

/* =====x========= Navbar End =========x========= */

/* COLLAPSE MENU BAR START */

#collapsemenu {
  overflow: hidden;
  transition: height 200ms;
}

/* ========= MAIN TAB CONTAINER + ITEM SECTION START =========== */
.wrapper {
  background: #fff001;
}

/*-- ======== TAB MENU NAVIGATION START ======== --*/
.wrapper .tabs ul {
  width: 100%;
  height: 100%;
  display: flex;
  padding-top: 24px;
  margin-bottom: 0;
}

.wrapper .tabs ul li {
  width: 20%;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 130px;
  align-content: center;
}

#disable {
  pointer-events: none;
}

.wrapper .tabs ul li:last-child {
  margin-right: 0;
}

/* SVG / ICON and TEXT BOX SETTINGS START */

.tab-box {
  padding-bottom: 24px;
}

.tab-box .svg-box {
  width: 66px;
  height: 66px;
  border-radius: 33px;
  background: #fff997;
  position: relative;
  margin: auto;
}

.tab-box .svg-box svg {
  position: absolute;
  max-height: 30px;
  fill: #595525;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}

.tab-box .title-box {
  margin-top: 12px;
}

.tab-box .title-box p {
  text-align: center;
  margin: 0;
  font-family: gilroy-bold, sans-serif;
  font-weight: bold;
  line-height: 32px;
  letter-spacing: 2px;
  color: #6e6d4e;
  font-size: 26px;
  transition: all 0.3s ease;
}

/* SVG / ICON and TEXT BOX SETTINGS END */

.wrapper .tabs ul li.active {
  border-bottom: 6px solid #000000;
}

.wrapper .tabs ul li.active .tab-box .title-box p {
  color: #000000;
}

.wrapper .tabs ul li.active .tab-box .svg-box svg {
  fill: #000000;
}

/*-- ======== TAB MENU NAVIGATION END ======== --*/

/* ============================= TAB CONTENT START ============================= */
.content {
  background: #ffffff;
  /* padding-top: 50px; */
  border: 1px solid #f2f2f2;
  /* margin-top: -16px; */
}
.content.sfsf{
  background: #f2f2f2;
}
.content.tvtv{
  background: #f2f2f2;
}

.content .tab_content {
  font-size: 16px;
  font-family: gilroy-regular, sans-serif;
  line-height: 22px;
  background: #ffffff;
  /* padding-bottom: 50px; */
}

.content .tab_content .title {
  margin: 0 auto;
}

.content .tab_content .title p {
  font-size: 40px;
  font-family: gilroy-bold, sans-serif;
  font-weight: 900;
  color: #312d4e;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-align: center;
}

/* ====----=-=-=-=-=-=-=-=-=- MANAGE DATA SECTION START ====----=-=-=-=-=-=-=-=-=-*/

.content .tab_2 {
  padding-top: 60px;
}

.container {
  max-width: 1220px;
}

.content .tab_2 .column {
  width: 20%;
}

.content .tab_2 .option_box {
  display: table;
  width: 210px;
  height: 260px;
  border-radius: 2px;
  border: 1px solid #959595;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  margin: auto;
  background: #f9f9f9;
  position: relative;
  z-index: 9;
}

.content .tab_2 .option_box:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
}

.content .tab_2 .box-loading-animation:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-image: linear-gradient(to left, transparent, rgba(255,255,255,0.5), transparent);
  z-index: 2;

  animation: box-loading-animation 1s infinite;
}
.content .tab_2 .box-loading-animation:before {
  z-index: 0 !important;
  top: 0 !important;
  background: #d8d8d8 !important;
}
@keyframes box-loading-animation{
  100%{
      transform: translateX(100%);
  }
}


.content .tab_2 .option_box .option-content-box {
  display: table-cell;
  vertical-align: middle;
}

.content .tab_2 .option_box img {
  width: 70px;
}

.content .tab_2 .option_box p {
  font-size: 22px;
  color: #6b6b6b;
  font-weight: bold;
  font-family: gilroy-bold, sans-serif;
  letter-spacing: 2px;
  margin: 0;
  margin-top: 32px;
}

.content .tab_2 .option_box.active p {
  color: #1d1d1d;
}

.content .tab_2 .option_box.active .option-content-box {
  background: #dfdfdf;
}

.content .tab_2 .option-content-box:hover {
  background: #dfdfdf;
}

.content .tab_2 .option-content-box:hover p {
  color: #1d1d1d;
}

/* ================ OPTION CONTENT START ============= */

.option-content {
  margin-top: 50px;
}

.option-content .option {
  background: #f2f2f2;
  display: none;
  padding: 60px 0;
}

.option .hero-title {
  display: flex;
}

.option .hero-title .hero-box {
  margin: auto auto 60px auto;
  display: flex;
}

.option .hero-title .title-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000000;
  position: relative;
  margin-right: 18px;
}

.option .hero-title .title-icon img {
  position: absolute;
  width: 22px;
  height: 28px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.option .hero-title .mytitle {
  margin: auto;
}

.option .hero-title .mytitle p {
  font-size: 36px;
  letter-spacing: 2px;
  margin: 0;
  line-height: normal;
  color: #312d4f;
  font-family: gilroy-bold, sans-serif;
  font-weight: bold;
  text-align: center;
}

/* ==----=-=-=-=-=-=-=-=-=- OPTION ONE START ==----=-=-=-=-=-=-=-=-=- */
.create-manage {
  background: #ffffff;
  padding: 20px;
  margin: 0 3%;
}

/* =============== OPTION ONE TAB STARTS =============== */
.create-manage .create-manage-tab {
  display: flex;
  margin-bottom: 20px;
}

.create-manage-tab .create-new-content {
  width: 48%;
  border: 1px solid #959595;
  display: flex;
  cursor: pointer;
  padding: 20px;
}

.create-manage-tab .create-new-content:nth-child(2) {
  margin-left: auto;
}

.create-new-content .tik-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  /* background: #359F01; */
  background: #f5f5f5;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}

.createGreen,
.manageGreen {
  background: #359f01 !important;
}

.create-new-content .tik-box i {
  position: absolute;
  margin: auto;
  top: 30%;
  left: 30%;
  font-size: 120%;
  color: #ffffff;
}

.create-new-content .createpera {
  font-size: 26px;
  font-family: gilroy-medium, sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 20px;
}

.create-new-content .createpera p {
  margin: 0;
  color: #000000;
}

.create-new-content .logo-img {
  width: 70px;
  height: 90px;
  background: #f9f9f9;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
}

.create-new-content .logo-img img {
  width: 40px;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* =======X======== OPTION ONE TAB END ==========X===== */

/* ================ OPTION ONE CREATE NEW START ================ */

.create-manage .mytab-39 {
  display: none;
}

.create-manage .tab-active-39 {
  display: block;
}

.create-manage .mytab-43 {
  display: none;
}

.create-manage .tab-active-43 {
  display: block;
}

.create-manage .mytab-45 {
  display: none;
}

.create-manage .tab-active-45 {
  display: block;
}

.create-manage .mytab-41 {
  display: none;
}

.create-manage .tab-active-41 {
  display: block;
}

/* =========X======= OPTION ONE CREATE NEW END =========X======= */

/* ================ OPTION ONE MANAGE EXISTING START ================ */

#datamanage .manage-existing-title p {
  font-size: 28px;
  letter-spacing: 2px;
  margin: 24px auto;
  line-height: normal;
  color: #312d4f;
  font-family: gilroy-bold, sans-serif;
  font-weight: bold;
}

/* ========= MANAGE EXISTING TABLE START ========= */

#datamanage th,
td {
  border: none !important;
}

#datamanage .mytable1 {
  border: 1px solid #dfe2e7 !important;
}

#datamanage .mytable1 thead {
  border-bottom: 1px solid #dfe2e7 !important;
}

#datamanage .mytable1 td,
#datamanage .mytable1 th {
  border-right: 1px solid #dfe2e7 !important;
  border-left: 1px solid #dfe2e7 !important;
}

.mytable1 thead th:nth-child(1) {
  width: 8%;
}

.mytable1 thead th:nth-child(2) {
  width: 14%;
}

.mytable1 thead th:nth-child(3) {
  width: 24%;
}

.mytable1 thead th:nth-child(4) {
  width: 16%;
}

.mytable1 thead th:nth-child(5) {
  width: 19%;
}

.mytable1 thead th:nth-child(6) {
  width: 19%;
}

.mytable1 thead th {
  font-size: 13px;
  font-family: gilroy-bold, sans-serif;
  font-weight: 600;
  color: #9f9f9f;
  background: #fafafc;
  text-align: center;
}

.mytable1 thead th {
  position: relative;
}

.mytable1 thead th .head-filter {
  position: absolute;
  height: 20px;
  width: 20px;
  background: #ffffff;
  top: 2px;
  right: 2px;
  cursor: pointer;
}

.mytable1 thead th .head-filter i {
  color: #9f9f9f;
  font-size: 12px;
}

.mytable1 thead th .drop-filter {
  position: absolute;
  height: 20px;
  width: 20px;
  background: #ffffff;
  top: 25px;
  right: 2px;
  cursor: pointer;
}

.mytable1 thead th .drop-filter i {
  color: #9f9f9f;
  font-size: 16px;
}

.mytable1 tbody {
  font-size: 14px;
  font-family: gilroy-bold, sans-serif;
  text-align: center;
}

.mytable1 tbody .records-count p {
  /* float: left; */
  margin: 0 auto;
  text-align: center;
  /* margin-left: 30px; */
  text-decoration: underline;
  color: #07ba6c;
}

.mytable1 tbody .save-name {
  width: 100%;
  padding: 1px 0px 1px 12px;
  color: #131313;
}

.mytable1 tbody .save-name::placeholder {
  color: #131313;
}

.mytable1 tbody .date-time-39 {
  display: flex;
  align-content: center;
}

.mytable1 tbody .date-time-39 p{
  margin: 4px auto;
}

.mytable1 tbody .actions39 {
  display: flex;
  margin-top: -5px;
}

.mytable1 tbody .actions39 button {
  font-size: 14px;
  padding: 5px 14px;
  background: #feffd6;
  color: #000000;
  border-radius: 50px;
  margin-right: 24px;
  margin-left: auto;
  text-align: center;
  border: none;
  outline: none;
}

.mytable1 tbody .actions39 .cancel-box {
  padding: 0;
  margin: auto 0 auto;
  background: #ffe8e8;
  position: relative;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  cursor: pointer;
  margin-right: auto;
}

.mytable1 tbody .actions39 .cancel-box i {
  color: #ff0000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ======X=== MANAGE EXISTING TABLE END ======X=== */

/* =========X======= OPTION ONE MANAGE EXISTING END =========X======= */

/* ==----=-=-=-XX=-=-=-=-=-=- OPTION ONE END ==----=-=-XX=-=-=-=-=-=-=- */

/* ==----=-=-=-=-=-=-=-=-=-=- OPTION TWO START ==----=-=--==-=-=-=-=-=-=- */

.op2-listing-items {
  background: #ffffff;
  padding: 20px;
  margin: 0 3%;
  position: relative;
}

/* ========-= OPTION TWO LIST TABLE START ========-= */
#wrapper-list {
  position: relative;
  width: 100%;
  height: 670px;
  border: 2px solid #000000;
}

#wrapper-list .weapper-list-title {
  padding: 20px;
  background: #000000;
  margin-bottom: 12px;
}

#wrapper-list .weapper-list-title p {
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-family: gilroy-bold, sans-serif;
  font-weight: 700;
  letter-spacing: 2x;
  font-size: 20px;
}

#wrapper-list .scrollable-list {
  height: 565px;
  width: 99%;
  overflow: auto;
  /* overflow: hidden; */
  position: relative;
}

/* main list */
#wrapper-list .scrollable-list .main-list {
  width: 250px;
  background: #f6f6f6;
  padding: 8px;
  margin-left: 12px;
}

#wrapper-list .scrollable-list .main-list li {
  position: relative;
  display: flex;
  height: 32px;
  cursor: pointer;
}

#wrapper-list .scrollable-list .main-list li p {
  font-family: gilroy-bold, sans-serif;
  font-size: 14px;
  color: #000000;
  margin: auto auto auto 8px;
}

.scrollable-list .main-list li .green-check-box {
  height: 18px;
  width: 18px;
  background: #06e791;
  position: relative;
  margin: auto -58px auto auto;
  border-radius: 50%;
  /* display: none; */
}

.scrollable-list-op2 .main-list li .grey-times-box {
  height: 18px;
  width: 18px;
  background: #d3d3d3;
  position: relative;
  margin: auto -58px auto auto;
  border-radius: 50%;
  /* display: none; */
}

/* Edit by Ashiq */
.display-none {
  display: none;
}

.display-block {
  display: block;
}

/* Edit End by Ashiq */

.scrollable-list .main-list li .green-check-box i {
  position: absolute;
  margin: auto;
  top: 4px;
  bottom: 0;
  left: 4px;
  font-size: 10px;
  color: #ffffff;
}

.scrollable-list-op2 .main-list li .grey-times-box i {
  position: absolute;
  margin: auto;
  top: 3px;
  bottom: 0;
  left: 5px;
  font-size: 11px;
  color: #ffffff;
}

.scrollable-list .main-list li .arrow-li-box {
  height: 18px;
  width: 18px;
  /* background: #ffffff; */
  position: relative;
  margin: auto 8px auto auto;
}

/* Edit by Ashiq */
.arrow-li-box-background-color-1 {
  background: #ffffff;
}

.arrow-li-box-background-color-2 {
  background: #f6f6f6;
}

/* Edit End by Ashiq */

.scrollable-list .main-list li .arrow-li-box i {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 6px;
  font-size: 16px;
  /* color: #8f8f8f; */
}

/* Edit by Ashiq */
.arrow-li-box-i-color-1 {
  color: #8f8f8f;
}

.arrow-li-box-i-color-2 {
  color: #000000;
}

/* Edit End by Ashiq */

.scrollable-list .main-list li:hover .arrow-li-box,
.scrollable-list .main-list li:hover .arrow-li-box i {
  background: #f6f6f6;
  color: #000000;
}

.scrollable-list .main-list .highlight_li {
  border: 1px solid #000000;
  border-radius: 3px;
  background: #ffffff;
}

/* sublist */
#wrapper-list .scrollable-list .sub-list {
  width: 264px;
  background: #ffffff;
  padding: 8px;
  margin-left: 12px;
  position: absolute;
  top: 0;
}

#wrapper-list .scrollable-list .sub-list li {
  border: 1px solid #a1a1a1;
  border-radius: 3px;
  background: #ffffff;
  position: relative;
  display: flex;
  height: 25px;
  margin-bottom: 3px;
  cursor: pointer;
}

#wrapper-list .scrollable-list .sub-list li p {
  font-family: gilroy-bold, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  margin: auto 0px auto 8px;
  width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scrollable-list .sub-list li .sublist-check-box {
  position: relative;
  margin: auto 6px auto 6px;
  height: 18px;
  width: 18px;
  background: #06e791;
  border-radius: 50%;
  /* display: none; */
}
.scrollable-list .sub-list li .sublist-info-box {
  position: relative;
  margin: auto 6px auto auto;
  height: 18px;
  width: 18px;
  background: #d3d3d3;
  border-radius: 50%;
  /* display: none; */
}
.scrollable-list .sub-list li .sublist-pen-box {
  position: relative;
  margin: auto 6px auto 6px;
  height: 18px;
  width: 18px;
  background: #d3d3d3;
  border-radius: 50%;
  /* display: none; */
}

.scrollable-list .sub-list li .sublist-check-box i {
  position: absolute;
  margin: auto;
  top: 4px;
  bottom: 0;
  left: 4px;
  font-size: 10px;
  color: #ffffff;
}

.scrollable-list .sub-list li .sublist-info-box i {
  position: absolute;
  margin: auto;
  top: 4px;
  bottom: 0;
  left: 7px;
  font-size: 10px;
  color: #585757;
}

.scrollable-list .sub-list li .sublist-pen-box i {
  position: absolute;
  margin: auto;
  top: 4px;
  bottom: 0;
  left: 4px;
  font-size: 10px;
  color: #585757;
}

.scrollable-list .sub-list li .sublist-cancel-box {
  position: relative;
  margin: auto 6px auto 6px;
  height: 18px;
  width: 18px;
  background: #d3d3d3;
  border-radius: 50%;
  /* display: none; */
}

.scrollable-list .sub-list li .sublist-cancel-box i {
  position: absolute;
  margin: auto;
  top: 3px;
  bottom: 0;
  left: 5px;
  font-size: 11px;
  color: #ffffff;
}

#wrapper-list .scroll-down {
  margin-left: 12px;
  margin-top: 0px;
  width: 250px;
  height: 20px;
  background: #000000;
  cursor: pointer;
}

#wrapper-list .scroll-down i {
  margin-left: 115px;
  color: #ffffff;
  font-size: 22px;
}

/* scrollbar customize start */
.scrollable-list::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scrollable-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #919191;
  border-radius: 10px;
}

/* Handle */
.scrollable-list::-webkit-scrollbar-thumb {
  background: #919191;
  border-radius: 15px;
}

/* Handle on hover */
.scrollable-list::-webkit-scrollbar-thumb:hover {
  background: #424242;
}

/* scrollbar customize end */

/* ================ BACK RESET NEXT DONE BUTTON START ================ */
.btn39 .mybtns-39 {
  width: 170px;
  height: 60px;
  background-color: #e9e9e9;
  position: relative;
  border-radius: 3px;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.btn39 .mybtns-39 p {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: gilroy-regular, sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #7b7b7b;
  transition: all 0.3s ease;
}

.btn39 .back-btn {
  margin-left: 15px;
}

.btn39 .reset-btn {
  margin-left: 12px;
}

.btn39 a:last-child {
  margin-left: auto;
}

.btn39 .submit-btn {
  margin-right: 15px;
  background: #000000;
}

.btn39 .submit-btn p {
  color: #ffffff;
}

.btn39 .back-btn:hover,
.btn39 .reset-btn:hover {
  background: #b6b6b6;
}

.btn39 a:hover .back-btn p,
.btn39 a:hover .reset-btn p {
  color: #333333;
}

.btn39 .submit-btn:hover {
  background: #ffffff;
  border: 1px solid #000000;
}

.btn39 a:hover .submit-btn p {
  color: #000000;
}

/* ================ BACK RESET NEXT DONE BUTTON END ================ */

/* ====X====-= OPTION TWO LIST TABLE END =====X===-= */

/* ============= RECORDS FOUND START ============= */

#option_2 .option-2-records {
  background: #ffffff;
  padding: 20px;
  margin: 0 5%;
  position: relative;
}

.option-2-records .records-data {
  position: relative;
  width: 100%;
  height: 385px;
  border: 2px solid #000000;
}

.records-data .records-data-title {
  background: #fff111;
  padding: 20px;
  margin-bottom: 12px;
}

.records-data .records-data-title .selected-items {
  margin-bottom: 12px;
}

.records-data .records-data-title span {
  margin: 0;
  color: #000000;
  text-align: center;
  font-family: gilroy-bold, sans-serif;
  font-weight: 700;
  letter-spacing: 2x;
  font-size: 22px;
}

.records-data .total-records span {
  font-weight: 500;
  font-size: 16px;
}

.records-data .records-data-table {
  height: 260px;
  width: 99.9%;
  overflow: auto;
  /* overflow: hidden; */
  position: relative;
}

.records-data .records-data-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.records-data-table table th,
td {
  text-align: left;
  padding: 12px;
  font-family: gilroy-medium, sans-serif;
  font-weight: 500;
  letter-spacing: 2x;
  font-size: 14px;
  color: #000000;
}

.records-data-table table tr:nth-child(even) {
  background-color: #fafafa;
}

/* scrollbar customize start */
.records-data-table::-webkit-scrollbar {
  width: 4px;
}

/* Handle */
.records-data-table::-webkit-scrollbar-thumb {
  background: #919191;
  border-radius: 15px;
}

/* Handle on hover */
.records-data-table::-webkit-scrollbar-thumb:hover {
  background: #424242;
}

/* scrollbar customize end */

/* ============= RECORDS FOUND END ============= */
.record-loading{
  position: relative;
  width: 100%;
  height: 385px;
  border: 2px solid #000000;
}
.record-loading .records-title-loading{
  background: #fff111;
  padding: 20px;
  margin-bottom: 8px;
}
.record-loading .records-title-loading .header{
  width: 275px;
  height: 25px;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.record-loading .records-title-loading .sub-header{
  width: 220px;
  height: 18px;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.record-loading .checkbox-table-loading {
  margin: 0 8px;
}
.record-loading .checkbox-table-loading p{
  height: 35px;
}

/* ==----=-=-=-XX=-=-=-=-=-=- OPTION TWO END ==----=-=-XX=-=-=-=-=-=-=- */

/* ==----=-=-=-=-=-=-=-=-=- OPTION THREE END ==----=-=-=-=-=-=-=-=-=- */

/* ==----=-=-=-XX=-=-=-=-=-=- OPTION THREE END ==----=-=-XX=-=-=-=-=-=-=- */

/* ==----=-=-=-=-=-=-=-=-=- OPTION FOUR END ==----=-=-=-=-=-=-=-=-=- */

/* ==----=-=-=-XX=-=-=-=-=-=- OPTION FOUR END ==----=-=-XX=-=-=-=-=-=-=- */

/* ==----=-=-=-XX=-=-=-=-=-=- OPTION FIVE START ==----=-=-XX=-=-=-=-=-=-=- */

.detail-box {
  border: 2px solid #000000;
  /* height: 400px; */
  margin-top: 40px;
}

.detail-box .details-box-title {
  background: #000000;
  padding: 16px;
}

.detail-box .details-box-title p {
  text-align: center;
  margin: 0;
  font-family: gilroy-bold, sans-serif;
  font-weight: 600;
  letter-spacing: 2x;
  font-size: 18px;
  color: #ffffff;
}

.inner-part {
  padding: 50px;
  width: 100%;
}

/* SELECT BOX START */

.detail-box .inner-part p {
  font-family: gilroy-regular, sans-serif;
  font-weight: 600;
  letter-spacing: 2x;
  font-size: 16px;
  color: #000000;
}

.detail-box .inner-part .select-plus {
  display: flex;
}

.select-plus .custome-select {
  background: #f7f7f7;
  border: 1px solid #e7e7e7;
  position: relative;
  width: 80%;
  height: 35px;
  z-index: 3;
  display: flex;
}

.select-plus .custome-select select {
  background: #f7f7f7;
  outline: 0;
  border: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 0 10px;
  position: relative;
  font-family: gilroy-regular, sans-serif;
  font-weight: 600;
  letter-spacing: 2x;
  font-size: 16px;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custome-select select:hover,
.custome-select select:focus {
  cursor: pointer;
  outline: 0;
  border: 0;
  border-radius: 0;
}

.select-plus .custome-select:after {
  content: "\25bc";
  font-size: 10px;
  width: 14px;
  height: 18px;
  position: absolute;
  background-color: #ffffff;
  z-index: 2;
  right: 5px;
  top: 4px;
  text-align: center;
  justify-content: center;
  border-radius: 2px;
  color: #818181;
  opacity: 1;
  z-index: 500;
}

.select-plus .custome-select select option {
  background: #e6e6e6;
}

.select-plus .plus-box {
  background: #fdf103;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  margin-left: 24px;
  position: relative;
}

.select-plus .plus-box i {
  position: absolute;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.inner-part p.input-name {
  margin-top: 16px;
}

.inner-part input {
  background: #f7f7f7;
  outline: 0;
  border: 0;
  width: 80%;
  height: 35px;
  z-index: 2;
  padding: 0 10px;
  font-family: gilroy-regular, sans-serif;
  font-weight: 600;
  letter-spacing: 2x;
  font-size: 14px;
  color: #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* SELECT BOX END */

/* DRAG AND DROP START */

.detail-box .drop-zone {
  max-width: 100%;
  height: 180px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  border: 2px dashed #000000;
  background-color: #fafafc;
  position: relative;
}

.detail-box .drop-zone .txt-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.detail-box .drop-zone p {
  margin: 0;
  font-family: gilroy-bold, sans-serif;
  font-weight: 500;
  letter-spacing: 2x;
  font-size: 20px;
  color: #000000;
  margin: 0;
}

.detail-box .drop-zone .drop-zone__formats {
  font-size: 12px;
  color: #7a7a7a;
  margin-top: 16px;
}

.detail-box .drop-zone .drop-zone__formats span {
  font-weight: bold;
}

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}

/* DRAG AND DROP END */

.detail-box .btn39 {
  margin-top: 38px;
}

.detail-box .btn39 .mybtns-39 {
  width: 130px;
  height: 50px;
}

.detail-box .btn39 .mybtns-39 p {
  color: #595959;
  font-family: gilroy-bold, sans-serif;
  font-weight: 600;
}

.detail-box .btn39 .submit-btn p {
  color: #ffffff;
}

/* ==----=-=-=-XX=-=-=-=-=-=- OPTION FIVE END ==----=-=-XX=-=-=-=-=-=-=- */

/* ==========X====== OPTION CONTENT END =========X==== */

/* ====----=-=-=-=-X=-=-=-=-=- MANAGE DATA SECTION END ====----=-=-=-X=-=-=-=-=-=-*/

/* ================X============= TAB CONTENT END ======================X======= */

/* =====xxxxxx==== MAIN TAB CONTAINER + ITEM SECTION END =====xxxxx====== */

/* ====x=xxxxxx====  COLLAPSE MENU BAR END =====xxxxxx==x==  */

/* =========== FOOTERT SECTION START =========== */

#footer {
  margin: 10px 0 30px;
}

#footer .footer-inner {
  border-top: 2px solid #dadada;
}

#footer .footer-link {
  display: flex;
  margin: 24px 28px 0;
}

#footer .footer-link .terms {
  margin-right: auto;
}

#footer .footer-link .services {
  display: flex;
}

#footer .footer-link .services p {
  font-size: 14px;
  margin: 0 5px;
}

#footer a {
  text-decoration: none;
  color: #535353;
  font-family: gilroy-regular, sans-serif;
  font-size: 14px;
  font-weight: bold;
}

#footer a:hover {
  text-decoration: none;
  color: #2b2b2b;
}

#footer span {
  text-decoration: none;
  color: #535353;
  font-family: gilroy-regular, sans-serif;
  font-size: 14px;
  font-weight: bold;
}

#footer span:hover {
  text-decoration: none;
  color: #2b2b2b;
  cursor: pointer;
}
/* =========== FOOTERT SECTION END =========== */

/* Edited By Tanvir for responsive design  */
@media screen and (max-width: 1200px) {
  /* ======= OPTION ONE TAB STARTS ========*/
  .create-manage-tab .create-new-content {
    padding: 10px;
  }
  .create-new-content .tik-box {
    width: 40px;
    height: 40px;
  }
  .create-new-content .tik-box i {
    top: 27%;
    left: 28%;
  }
  .create-new-content .logo-img {
    width: 70px;
    height: 80px;
  }
  .create-new-content .logo-img img {
    width: 38px;
  }
}

@media screen and (max-width: 992px) {
  /* ======= OPTION ONE TAB STARTS ========*/
  .create-manage-tab .create-new-content {
    padding: 10px;
  }
  .create-new-content .tik-box {
    width: 35px;
    height: 35px;
  }
  .create-new-content .tik-box i {
    top: 25%;
    left: 25%;
  }
  .create-new-content .createpera {
    font-size: 20px;
    margin-left: 10px;
  }
  .create-new-content .logo-img {
    width: 50px;
    height: 60px;
  }
  .create-new-content .logo-img img {
    width: 30px;
  }
}

/* custom pagination by Ashik  */
/* PAGINATION START */

.pagination-table {
  margin: 36px 0;
}
/* .pagination-table .width-row-go .no-of-rows {
  display: flex;
} */

.width-pagination {
  display: flex;
}
.width-row-go {
  display: flex;
  width: 18%;
}
.pagination-table .paginationjs {
  display: flex;
  width: 82%;
}
.pagination-table .paginationjs .paginationjs-pages {
  width: 100%;
}
.pagination-table .paginationjs .paginationjs-pages ul {
  display: flex;
  justify-content: center;
  margin-right: 7%;
}
.pagination-table .paginationjs .paginationjs-page:not(:last-child) {
  margin: 0 10px;
}
.pagination-table .paginationjs .paginationjs-page,
.pagination-table .paginationjs .paginationjs-prev,
.pagination-table .paginationjs .paginationjs-next,
.pagination-table .paginationjs .paginationjs-ellipsis {
  text-decoration: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff !important;
  border: 1px solid #dbe2f5 !important;
  display: flex;
  font-size: 22px;
  color: #545d7a !important;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.pagination-table .paginationjs .paginationjs-pages ul li a {
  color: #545d7a;
  text-decoration: none !important;
}
.pagination-table .paginationjs .paginationjs-pages ul li.active a {
  color: #fff !important;
}
.pagination-table .paginationjs .paginationjs-pages ul li a:hover {
  color: #fff !important;
}
.pagination-table .paginationjs .paginationjs-pages ul li.paginationjs-prev a:hover,
.pagination-table .paginationjs .paginationjs-pages ul li.paginationjs-next a:hover {
  color: #000000 !important;
}
.pagination-table .paginationjs .paginationjs-ellipsis {
  line-height: 20px !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  margin: 0 10px;
}

.pagination-table
  .paginationjs
  .paginationjs-pages
  ul
  li.paginationjs-ellipsis
  a {
  padding-bottom: 22px;
  color: #000000 !important;
}
.pagination-table
  .paginationjs
  .paginationjs-pages
  ul
  li.paginationjs-ellipsis
  a:hover {
  color: #000000 !important;
}
.pagination-table .paginationjs .paginationjs-prev {
  margin-right: 40px;
  font-size: 24px;
  color: #cccccc;
}

.pagination-table .paginationjs .paginationjs-next {
  font-size: 24px;
  margin-left: 40px;
  color: #cccccc;
}

.pagination-table .paginationjs .paginationjs-prev:hover,
.pagination-table .paginationjs .paginationjs-next:hover {
  background: #ffffff !important;
  color: #000000 !important;
}

.pagination-table .paginationjs .paginationjs-page:hover {
  color: #fff !important;
  background-color: #1d1d1d !important;
  filter: drop-shadow(10.5px 18.187px 10.5px rgba(51, 56, 72, 0.23));
}
.pagination-table .paginationjs ul li.active {
  color: #fff !important;
  background-color: #1d1d1d !important;
  filter: drop-shadow(10.5px 18.187px 10.5px rgba(51, 56, 72, 0.23));
}

.pagination-table .paginationjs .paginationjs-go-button {
  line-height: 45px;
  text-align: center;
}

.pagination-table .paginationjs .paginationjs-go-button input {
  font-family: "gilroy-medium", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #ffffff;
  color: #545d7a;
  border: none;
  outline: none;
}

.pagination-table input#row-no1,
.pagination-table input#row-no3,
.pagination-table input#row-no4,
.pagination-table input#row-no5,
.pagination-table input.manRes-pagination-input,
.pagination-table input#row-mnAlert,
.pagination-table .paginationjs .paginationjs-go-input input {
  width: 60px;
  height: 43px;
  border-radius: 2px;
  text-align: center;
  margin-right: 10px;
  filter: drop-shadow(8.5px 14.722px 17.5px rgba(95, 84, 233, 0.14));
  background-color: #ffffff;
  border: 1px solid #dde3f5;
  font-family: gilroy-medium, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #545d7a;
}

@media screen and (max-width: 1250px) {
  .pagination-table .paginationjs .paginationjs-pages ul {
    margin-right: 3%;
  }
}
@media screen and (max-width: 1120px) {
  .width-row-go {
    width: 22%;
  }
  .pagination-table .paginationjs {
    width: 78%;
  }
  .pagination-table .paginationjs .paginationjs-pages ul {
    margin-right: 3%;
  }
  .pagination-table .paginationjs .paginationjs-prev {
    margin-right: 15px;
  }
  .pagination-table .paginationjs .paginationjs-next {
    margin-left: 15px;
  }
}

@media screen and (max-width: 950px) {
  .width-row-go {
    display: flex;
    width: 10%;
  }
  .pagination-table .paginationjs {
    display: flex;
    width: 90%;
  }
  .pagination-table .paginationjs .paginationjs-pages ul {
    margin-right: 0px;
  }
  .pagination-table .paginationjs .paginationjs-page:not(:last-child) {
    margin: 0 5px;
  }
  .pagination-table .paginationjs .paginationjs-ellipsis {
    margin: 0 5px;
  }
  .pagination-table .paginationjs .paginationjs-prev {
    margin-right: 10px;
  }
  .pagination-table .paginationjs .paginationjs-next {
    margin-left: 10px;
  }
  .pagination-table input#row-no1,
  .pagination-table input#row-no3,
  .pagination-table input#row-no4,
  .pagination-table input#row-no5,
  .pagination-table input.manRes-pagination-input,
  .pagination-table input#row-mnAlert,
  .pagination-table .paginationjs .paginationjs-go-input input {
    width: 50px;
    height: 35px;
    margin-right: 8px;
  }
  .pagination-table .paginationjs .paginationjs-go-button {
    line-height: 38px;
  }
}

/* Option Box Responsive  */
@media screen and (max-width: 1300px) {
  .option-box-row {
    margin: 0 30px;
  }
  .content .tab_2 .option_box {
    width: 180px;
    height: 230px;
  }
}

/* Option Box Responsive  */
@media screen and (max-width: 1120px) {
  .content .tab_2 .option_box {
    width: 160px;
    height: 200px;
  }
  .content .tab_2 .option_box img {
    width: 60px;
  }
}

@media only screen and (max-width: 1000px) {
  .option-box-row {
    margin: 0 20px;
  }
  .content .tab_2 .option_box {
    width: 140px;
    height: 175px;
  }
  .content .tab_2 .option_box img {
    width: 45px;
  }
  .content .tab_2 .option_box p {
    font-size: 20px;
    margin-top: 28px;
  }
}

@media only screen and (max-width: 790px) {
  .content .tab_2 .option_box {
    width: 115px;
    height: 135px;
  }
  .content .tab_2 .option_box img {
    width: 38px;
  }
  .content .tab_2 .option_box p {
    margin-top: 30px;
  }
}


/*======= Manage Account Style Starts ====== */
.account-content {
  width: 100%;
  background-color: #f2f2f2;
}

.account-content .content-inner {
  padding: 60px 0px;
}

.content-inner .hero-title {
  display: flex;
}

.content-inner .hero-title .hero-box {
  margin: auto auto 60px auto;
  display: flex;
}
.content-inner .hero-title .title-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000000;
  position: relative;
  margin-right: 18px;
}

.content-inner .hero-title .title-icon img {
  position: absolute;
  width: 22px;
  height: 28px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.content-inner .hero-title .mytitle {
  margin: auto;
}

.content-inner .hero-title .mytitle p {
  font-size: 36px;
  letter-spacing: 2px;
  margin: 0;
  line-height: normal;
  color: #312d4f;
  font-family: gilroy-bold, sans-serif;
  font-weight: bold;
  text-align: center;
} 

/* =====Account Form Container Design=====  */
.content-inner .account-form-container{
  background: #ffffff;
  padding: 50px 80px;
  margin: 0 3%;
}
.account-form-container .account-form-group{
  display: flex;
  margin-bottom: 20px;
}

.account-form-group .ac-width-50 {
  width: 50%;
  display: flex;
  height: 60px;
}

.account-form-group .ac-width-100{
  width: 100%;
  display: flex;
  height: 60px;
}

.account-form-group .ac-width-33{
  width: 33.33%;
  display: flex;
  height: 60px;
}

.account-form-group .ac-title{
  width: 200px;
}

.account-form-group .ac-input{
   width: calc(100% - 200px);
}

.account-form-group .ac-title p {
  margin-bottom: 0;
  padding-top: 8px;
  color: #181818;
  font-family: gilroy-medium, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
}

.account-form-group .ac-title p.diff-title{
  text-align: right;
  padding-right: 15px;
}

.account-form-group .ac-title p sup{
  color: red;
  font-size: 12px;
  font-weight: bold;
}
/*  Custom Input styling Starts  */
.account-form-group .ac-input .custom-input-success {
  background: #e6e6e6;
  position: relative;
  width: 100%;
  height: 40px;
  z-index: 3;
  border-radius: 6px;
}

.account-form-group .ac-input .custom-input-success input {
  background: #e6e6e6;
  color: #2e2c2c;
  outline: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
  padding: 5px 10px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #41e167 !important;
  border-radius: 4px;
  overflow: hidden;
}

.account-form-group .ac-input .custom-input-success input:hover,
.account-form-group .ac-input .custom-input-success input:focus {
  box-shadow: chartreuse;
}

.account-form-group .ac-input .custom-input-success:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  background-color: #e8ffed;
  z-index: 2;
  right: 10px;
  top: 10px;
  border-radius: 2px;
}

.account-form-group .ac-input .custom-input-success:before {
  content: "\2714";
  position: absolute;
  font-size: 11px;
  color: green;
  z-index: 3;
  right: 15px;
  top: 9px;
}

.account-form-group .ac-input .custom-input-success input {
  background: #ffffff;
}

/* Custom Input Danger */
.account-form-group .ac-input .custom-input-danger {
  background: #e6e6e6;
  position: relative;
  width: 100%;
  height: 40px;
  z-index: 3;
  border-radius: 6px;
}

.account-form-group .ac-input .custom-input-danger input {
  background: #e6e6e6;
  color: #2e2c2c;
  outline: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
  padding: 5px 10px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #fe7e7e !important;
  border-radius: 4px;
}

.account-form-group .ac-input .custom-input-danger input:hover,
.account-form-group .ac-input .custom-input-danger input:focus {
  box-shadow: red;
}

.account-form-group .ac-input .custom-input-danger:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  background-color: #ffe9e9;
  z-index: 2;
  right: 10px;
  top: 10px;
  border-radius: 2px;
}

.account-form-group .ac-input .custom-input-danger:before {
  content: "\2716";
  position: absolute;
  font-size: 11px;
  color: red;
  z-index: 3;
  right: 15px;
  top: 9px;
}

.account-form-group .ac-input .custom-input-danger input {
  background: #ffffff;
}

/* Custom Input Only */
.account-form-group .ac-input .custom-input-only{
  background: #e6e6e6;
  position: relative;
  width: 100%;
  height: 40px;
  z-index: 3;
  border-radius: 6px;
  box-shadow: 3px 5px 15px 0px #b0bcd4;
}

.account-form-group .ac-input .custom-input-only input{
  background: #ffffff;
  color: #2e2c2c;
  outline: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
  padding: 5px 10px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}
.account-form-group .ac-input .error-message p {
  font-size: 12px;
  color: red;
  padding-left: 4px;
}

/*  Custom Input styling Ends  */
/* ============================ */

/* Icon for show hide password  */
.field-icon {
  float: right;
  margin-right: 8px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.account-form-group .ac-width-33 span.field-icon{
  cursor: pointer;
}

.success-border{
  border: 1px solid #41e167 !important;
}

.danger-border{
  border: 1px solid #fe7e7e !important;
}

/*  Select box styling Starts  */
.account-form-group .custome-select {
  background: #e6e6e6;
  position: relative;
  width: 100%;
  height: 40px;
  z-index: 3;
  border-radius: 6px;
  box-shadow: 3px 5px 15px 0px #b0bcd4;
}

.account-form-group .custome-select select {
  background: #ffffff !important;
  color: #2e2c2c !important;
  /* font-family: gilroy-medium, sans-serif; */
  /* font-weight: 600; */
  font-size: 18px;
  outline: 0;
  border: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 0 10px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

.account-form-group .custome-select select:hover,
.account-form-group .custome-select select:focus {
  cursor: pointer;
  outline: 0;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

.account-form-group .custome-select:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  background-color: #F5F5F5;
  z-index: 2;
  right: 10px;
  top: 10px;
  border-radius: 2px;
}

.account-form-group .custome-select:before {
  content: "\25bc";
  position: absolute;
  font-size: 11px;
  color: #818181;
  z-index: 3;
  right: 14px;
  top: 9px;
}
.account-form-group .custome-select select option {
  background: #ffffff;
}

/* ....... Select box styling Ends ....... */

.account-content .account-form-container .ac-button-row{
  margin-top: 40px;
  height: 70px;
}
.account-content .account-form-container .ac-button-row .reset,
.account-content .account-form-container .ac-button-row .save  {
  box-shadow: none;
  width: 220px;
  height: 100%;
  font-family: gilroy-medium, sans-serif;
  font-size: 28px;
  background: #e9e9e9;
  color: #7b7b7b;
  transition: 150ms;
  outline: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}

.account-content .account-form-container .ac-button-row .save {
  background: #000000;
  color: #e6e6e6;
  float: right;
}

.account-content .account-form-container .ac-button-row .reset:hover{
  background: #000000;
  color: #e6e6e6;
}

.account-content .account-form-container .ac-button-row .save:hover{
  background: #e9e9e9;
  color: #7b7b7b;
}

.mybtns-39.submit-btn.btn-done{
  color: #ffffff;
  border: none;
  /* color: #595959; */
  font-family: gilroy-bold, sans-serif;
  font-weight: 600;
}

.mybtns-39.submit-btn.btn-done:hover{
  background: #afaaaa;
  color: #000000;
}
/* Terms and Condition STYLE START */
#tc-section .footer-page{
  margin: 22px 50px;
}
#tc-section .footer-page p{
  /* text-align: center; */
  margin: 0;
  font-family: gilroy-medium, sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  color: #0c0c0c;
  font-size: 16px;
}

.mynav .nav-items i:hover{
  cursor: pointer;
  color: #f6e802;
}

.title-terms{
  margin-top: 32px;
}
.title-terms .hero-title {
  display: flex;
}

.title-terms .hero-title .hero-box {
  margin: auto auto auto auto;
  display: flex;
}

.title-terms .hero-title .title-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000000;
  position: relative;
  margin-right: 18px;
}

.title-terms .hero-title .title-icon img {
  position: absolute;
  width: 22px;
  height: 28px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.title-terms .hero-title .mytitle {
  margin: auto;
}

.title-terms .hero-title .mytitle p {
  font-size: 32px;
  letter-spacing: 2px;
  margin: 0;
  line-height: normal;
  color: #312d4f;
  font-family: gilroy-bold, sans-serif;
  font-weight: bold;
  text-align: center;
}
/* Terms and Condition STYLE END */

.tooltip-inner {
  font-family: gilroy-medium, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 3em;
    max-width: 21em;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: .6ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -0.5em rgb(0 0 0 / 35%);
    background: #000000;
    color: #fff;
}
/* 
.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #f00;
} */

/* login Alert Popup design starts  */
#loginRequired .modal-dialog{
  width: 300px;
}
#loginRequired .modal-dialog .modal-content{
  border-radius: 2px;
  overflow: hidden;
  border: none;

  -webkit-box-shadow: 5px 5px 10px -4px rgba(51, 51, 51, 0.75);
  -moz-box-shadow: 5px 5px 10px -4px rgba(51, 51, 51, 0.75);
  box-shadow: 5px 5px 10px -4px rgba(51, 51, 51, 0.75);
  /* -webkit-box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 1);
  -moz-box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 10px 3px rgba(255, 255, 255, 1); */
}

#loginRequired .login-alert-header{
  height: 70px;
  line-height: 70px;
  padding: 10px;
  text-align: center;
  background-color: #fff011;
  color: #272727;
}

#loginRequired .login-alert-header i{
  font-size: 40px;
  color: #ff0101;
}

#loginRequired .modal-body{
  text-align: center;
}
#loginRequired .modal-body p{
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  font-family: gilroy-medium, sans-serif;
  /* color: #ff0000; */
  color: #000000;
}
#loginRequired .modal-body button{
  width: 100px;
  font-size: 16px;
  background: #000000;
  color: #e9e9e9;
  font-weight: bold;
  transition: 150ms;
  outline: none;
  border: 0 none;
  border-radius: 2px;
  cursor: pointer;
  padding: 4px 0px;
}
#loginRequired .modal-body button:hover{
  background: #312c2c;
  color: #ffffff;
  /* color: black; */
}
/* login Alert Popup design ends  */

.ac-loading{
  position: relative;
  background-color: #d8d8d8;
  overflow: hidden;
}

.ac-loading-animation.ac-loading{
  height: 100%;
  border-radius: 4px;
  margin: 30px 0px 30px 15px;
}

.ac-loading::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-image: linear-gradient(to left, transparent, rgba(255,255,255,0.5), transparent);

  animation: ac-loading 1s infinite;
}

@keyframes ac-loading{
  100%{
      transform: translateX(100%);
  }
}

#account_form_content{
  display: none;
}

#account_form_loading .ac-button-row{
  margin-top: 80px;
}

#loading_acSave{
  display: none;
}


/* Pagination animation for all table  */
.pagination-loading-container{
  display: flex;
  height: 45px;
  margin: 30px 0px;
}
.pagination-loading-container .row-per-page{
  width: 330px;
  display: flex;
}
.pagination-loading-container .row-per-page .row-input{
  height: 100%;
  width: 60px;
}
.pagination-loading-container .number-of-page{
  width: calc(100% - 530px);
  display: flex;
  justify-content: center;
}
.pagination-loading-container .number-of-page .page-num:not(:last-child) {
  margin: 0 12px;
}
.pagination-loading-container .number-of-page .page-num:first-child{
  margin-right: 40px;
  margin-left: 0px;
}
.pagination-loading-container .number-of-page .page-num:last-child{
  margin-left: 40px;
}
.pagination-loading-container .goto-page{
  width: 200px;
  display: flex;
  justify-content: flex-end;
}
.pagination-loading-container .goto-page .goto-input{
  height: 100%;
  width: 60px;
}
.pagination-loading-container .row-per-page p,
.pagination-loading-container .goto-page p{
  margin-left: 10px;
  margin-top: 12px;
}
.pagination-loading{
  position: relative;
  background-color: #d8d8d8;
  overflow: hidden;
}

.pagination-loading-animation.pagination-loading{
  height: 100%;
  border-radius: 4px;
}
.pagination-loading-animation.pagination-loading.page-num{
  height: 100%;
  width: 45px;
  border-radius: 50%;
}

.pagination-loading::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-image: linear-gradient(to left, transparent, rgba(255,255,255,0.5), transparent);

  animation: loading-pagination 1s infinite;
}

@keyframes loading-pagination{
  100%{
      transform: translateX(100%);
  }
}

.manage-exist-table-details{
  padding: 10px 0 5px 20px;
}
.table-records-wrap .table-records {
  display: flex;
}

.table-records-wrap .table-records p:first-child {
  font-family: gilroy-medium, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.table-records p:first-child span {
  margin: 0px 5px;
}

.table-records-wrap .table-records p:last-child {
  font-family: gilroy-regular, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.table-records p:last-child span {
  margin: 0px 5px;
}

.table-records p:last-child span:last-child {
  margin: 0;
  margin-left: 5px;
}

.table-records-loading{
  margin-bottom: 15px;
  height: 20px !important;
  width: 220px;
  display: none;
}

.checkbox-table-loading{
  margin: 4px 0px 0px 4px;
}

#noteswindow .checkbox-table-loading,
#noteswindow_style2 .checkbox-table-loading,
#rowdetails .checkbox-table-loading,
#rowdetails_style2 .checkbox-table-loading,
#viewtwo .checkbox-table-loading,
#viewtwo_style2 .checkbox-table-loading{
  margin: 0px;
}

.outer_scroll_doubleclick .checkbox-table-loading{
  margin: 0px;
  border-radius: 4px;
  display: none;
}

.popup-loading{
  position: relative;
  /* background-color: #b8b8b8; */
  /* background-color: #c8c8c8; */
  background-color: #d8d8d8;
  overflow: hidden;
}

.popup-loading-animation.popup-loading{
  margin-bottom: 4px;
  min-height: 23.5px;
  /* height: 100%; */
  /* border-radius: 4px; */
}

#noteswindow .popup-loading-animation.popup-loading,
#noteswindow_style2 .popup-loading-animation.popup-loading,
#rowdetails .popup-loading-animation.popup-loading,
#rowdetails_style2 .popup-loading-animation.popup-loading,
#viewtwo .popup-loading-animation.popup-loading,
#viewtwo_style2 .popup-loading-animation.popup-loading{
  min-height: 19px;
  border-radius: 2px;
}

.outer_scroll_doubleclick .popup-loading-animation.popup-loading{
  min-height: 23px;
  margin: 2px;
  border-radius: 2px;
}

.popup-loading::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-image: linear-gradient(to left, transparent, rgba(255,255,255,0.5), transparent);

  animation: popuploading 1s infinite;
}

@keyframes popuploading{
  100%{
      transform: translateX(100%);
  }
}

#option_2 .btn39 .back-btn,
#option_2 .btn39 .reset-btn,
#option_2 .btn39 .done-btn,
#option_2 .btn39 .submit-btn{
  border: none;
  font-family: gilroy-regular, sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #7b7b7b;
  transition: all 0.3s ease;
}
#option_2 .btn39 .back-btn:hover,
#option_2 .btn39 .reset-btn:hover{
  background: #b6b6b6;
  color: black;
}
#option_2 .btn39 .done-btn,
#option_2 .btn39 .submit-btn{
  margin-left: auto;
  background-color: black;
  color: #ffffff;
}
#option_2 .btn39 .done-btn{
  margin-right: 15px;
}
#option_2 .btn39 .done-btn:hover,
#option_2 .btn39 .submit-btn:hover{
  color: #ffffff;
  background-color: rgb(47, 45, 45);
}

#option_5 .row.btn39 .mybtns-39{
  border: none;
  width: 160px;
  height: 60px;
  font-size: 22px;
  font-family: gilroy-regular, sans-serif;
  font-weight: bold;
}
#option_5 .row.btn39 .mybtns-39:hover{
  color: #ffffff;
}
#option_5 .row.btn39 .btn-done{
  margin-left: auto;
  width: 180px;
}
#option_5 .row.btn39 .btn-done:hover{
  color: #000000;
}

button:disabled,
button[disabled]{
  /* border: 1px solid #999999 !important;
  background-color: #DDD !important;
  color: #999 !important; */
  pointer-events: none;
}

.text-edition-form .text-edition-box button:disabled{
  background-color: #fff011;
  color: #000000;
}

#ui-datepicker-div{
  -webkit-box-shadow: 5px 5px 10px -4px rgba(51, 51, 51, 0.75);
  -moz-box-shadow: 5px 5px 10px -4px rgba(51, 51, 51, 0.75);
  box-shadow: 5px 5px 10px -4px rgba(51, 51, 51, 0.75);
}

#tab_2 .option-content-box p:hover{
  text-decoration: underline;
}


.list-info-tooltip {
  position: absolute;
  /* left: 50%; */
  /* top: 50%; */
  left: 0;
  bottom: 0;
  z-index: 1500;
  height: fit-content;
  display: none;
}
.list-tooltip-wrap {
  font-family: gilroy-medium, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  width: 168px;
  min-height: 72px;
  overflow: hidden;
  padding: 3px;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -0.5em rgb(0 0 0 / 35%);
  background: #000000;
  color: #fff;
}
.list-tooltip-arrow-top:after {
  content: " ";
  position: absolute;
  left: 81px;
  top: -6px;
  border-top: none;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid black;
}
.list-tooltip-wrap p{
  margin-bottom: 0px;
  width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.disable-pointer{
  pointer-events: none;
  cursor: progress;
}