#show-sidebar{
  left: 0;
}
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes sonar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
body {
  font-size: 0.9rem;
}
.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*----------------page-wrapper----------------*/

.page-wrapper {
  height: 100vh;
}

.page-wrapper .theme {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 4px;
  margin: 2px;
}

.page-wrapper .theme.chiller-theme {
  background: #1e2229;
}

/*----------------toggeled sidebar----------------*/

.page-wrapper.toggled .sidebar-wrapper {
  left: 0px;
}
#mymodal_alert{
  background-color: #fff;
  padding: 17px;
  border-radius: 5px;
  width: 70%;
  height: 90%;
  margin: 0 auto;
  z-index: 1001;
  visibility: hidden;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translate(-50%, 0);
  top: 3%;
  overflow-y: scroll
}

#overlay_1 {
  position: fixed; 
  display: none; 
  width: 100%;
  height: 100%; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); 
  z-index: 1000;
  cursor: pointer;
  }
  @media (min-width:320px) and (max-width:566px){

    #mymodal {
      left: 1%;
      right: 1%;
      width: 98%;
    }
    #mymodal .body-page{
        padding: 0;
    }
    
    #mymodal_alert{
      width: 98%;
      overflow-x: scroll
    }
    #fp .h3_fs {
      font-size: 28px;
    }
    
    
    }
@media screen and (min-width: 993px) {
  .page-wrapper.toggled .page-content {
    padding-left: 280px;
  }
}
/*----------------show sidebar button----------------*/
#show-sidebar {
  position: fixed;
  left: 0;
  top: 25px;
  border-radius: 0 4px 4px 0px!important;
  transition-delay: 0.5s;
  z-index: 9;
  display: flex;
  align-items: center;
  font-size: 15px;
  background-color: var(--primary-color);
  /* background-color: var(--secondary-color); */
  border: none;
  padding: 8px!important;
}
.page-wrapper.toggled #show-sidebar {
  left: -40px;
}
/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
  width: 260px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 999;
}

.sidebar-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-wrapper a {
  text-decoration: none;
}

/*----------------sidebar-content----------------*/

.sidebar-content {
  max-height: calc(100% - 30px);
  height: calc(100% - 30px);
  /* overflow-y: auto; */
  position: relative;
}

.sidebar-content.desktop {
  overflow-y: hidden;
}

/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
  padding: 5px 20px;
  display: flex;
  align-items: center;
}

.sidebar-wrapper .sidebar-brand > a {
  text-transform: uppercase;
  font-weight: bold;
  flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
  cursor: pointer;
  font-size: 26px;
  transform: rotate(45deg);
}
/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
  padding: 20px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic {
  float: left;
  width: 60px;
  padding: 2px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
  float: left;
}

.sidebar-wrapper .sidebar-header .user-info > span {
  display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
  font-size: 12px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
  font-size: 11px;
  margin-top: 4px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
  font-size: 8px;
  margin-right: 4px;
  color: #5cb85c;
}

/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search > div {
  padding: 10px 20px;
}

/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
  padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
  display: flex;
  align-items: center;
  /* width: 100%; */
  text-decoration: none;
  position: relative;
  padding: 14px 30px 10px 10px;
  font-size: 16px;
  margin: 4px 4px 4px 8px;
  border-radius: 4px;
}

.sidebar-wrapper ul{
  width: 98%;
}

.sidebar-wrapper .sidebar-menu ul li a:hover {
  background-color: var(--white-color);
  color: var(--primary-color) !important;
}


.sidebar-wrapper .sidebar-menu ul li a i {
  margin-right: 14px;
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
  display: inline-block;
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 14px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  padding-left: 25px;
  font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 8px;
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
  transform: rotate(90deg);
  right: 17px;
}

/*--------------------------side-footer------------------------------*/

.sidebar-footer {
  position: absolute;
  width: 93%;
  left: 8px;
  bottom: 15px;
  display: flex;
  border-radius: 5px;
}

.sidebar-footer > a {
  flex-grow: 1;
  text-align: center;
  height: 30px;
  line-height: 30px;
  position: relative;
}

.sidebar-footer > a .notification {
  position: absolute;
  top: 0;
}

.badge-sonar {
  display: inline-block;
  background: #980303;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}

.badge-sonar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #980303;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}

/*--------------------------page-content-----------------------------*/

.page-wrapper .page-content {
  display: inline-block;
  width: 100%;
  padding-left: 0px;
  padding-top: 20px;
  background: #f1f1f1;
}

/* .page-wrapper .page-content > div {
  padding: 20px 40px;
} */

.page-wrapper .page-content {
  overflow-x: unset;
}

/*------scroll bar---------------------*/

::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: #525965;
}
::-webkit-scrollbar-thumb:active {
  background: #525965;
}
::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
  background: transparent;
}
::-webkit-scrollbar-track:active {
  background: transparent;
}
::-webkit-scrollbar-corner {
  background: transparent;
}


/*-----------------------------chiller-theme-------------------------------------------------*/

.chiller-theme .sidebar-wrapper {
    background: var(--primary-color);
}

/* .chiller-theme .sidebar-wrapper .sidebar-header,
.chiller-theme .sidebar-wrapper .sidebar-search,
.chiller-theme .sidebar-wrapper .sidebar-menu {
    border-top: 1px solid var(--white-color);
} */

.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
    border-color: transparent;
    box-shadow: none;
}

.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
.chiller-theme .sidebar-wrapper .sidebar-brand>a,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
.chiller-theme .sidebar-footer>a {
    color: var(--white-color);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover>a,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info,
.chiller-theme .sidebar-wrapper .sidebar-brand>a:hover,
.chiller-theme .sidebar-footer>a:hover i {
    color: #b8bfce;
}

.page-wrapper.chiller-theme.toggled #sidebar-new:hover #close-sidebar {
    opacity: 1;
}

.page-wrapper.chiller-theme #close-sidebar {
  color: #bdbdbd;
  position: absolute;
  right: 20px;
  top: 15px;
  transform: rotate(45deg);
  font-size: 25px;
  cursor: pointer;
  transition: all 0.6s ease;
  opacity: 0;
}

.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
    color: #ffffff;
    transform: rotate(315deg);
}

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus+span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
    color: var(--primary-color);
    text-shadow:0px 0px 10px rgb(13 69 105 / 50%);;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
    /* background: #3a3f48; */
    /* background: rgba( 255, 255, 255, 0.25 ); */
    box-shadow: 0 8px 32px 0 rgb(31 38 135 / 37%);
    backdrop-filter: blur( 5.5px );
    -webkit-backdrop-filter: blur( 5.5px );
    border-radius: 7px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.sidebar-menu li a.active i{
  border: 1px solid !important;
}
.sidebar-wrapper .sidebar-menu ul li a:hover i{
  border: 1px solid !important;
}

.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
    color: #6c7b88;
}

.chiller-theme .sidebar-footer {
    background: var(--secondary-color);
    /* box-shadow: 0px -1px 5px #282c33;
    border-top: 1px solid #464a52; */
}

.chiller-theme .sidebar-footer>a:first-child {
    border-left: none;
}

.chiller-theme .sidebar-footer>a:last-child {
    border-right: none;
    margin: 10px;
    font-size: 16px;
}
.sidebar-menu li a.active{
  background-color: var(--dark-white);
  color: var(--primary-color) !important;
}
main header{
  border-bottom: 1px solid var(--primary-color);
}
main{
  background-color: var(--dark-white);
}
body{
  background-color: var(--dark-white);
}

/* ----------------   */

.menu-container h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}
.menu-container:nth-child(3) {
  margin-top: 200px;
}
/* nav {
  width: 100%;
  display: flex;
  justify-content: center;
} */
.menu-container .menu {
  display: flex;
  justify-content: end;
}
.menu-container .dropdown {
  padding: 0px 20px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 16px;
  perspective: 1000px;
  z-index: 100;
}
.dropdown:hover {
  /* background: #2980b9; */
  cursor: pointer;
}
.dropdown:hover .dropdown_menu li {
  display: block;
  width: 170px;
  color: var(--primary-color);
}
.menu-container .dropdown li .img-div{
  width: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-container .dropdown li img{
  width: 15px;
  padding-right: 3px;
  margin-bottom: 1px;
}
.menu-container .dropdown li img.key-image{
  width: 20px;
  padding-right: 3px;
  margin-bottom: 1px;
}
.menu-container .dropdown li:nth-last-child(2) a img{
  width: 18px;
  padding-right: 4px;
  margin-bottom: 1px;
}
.menu-container .dropdown li:nth-last-child(1) a img{
  width: 18px;
  padding-right: 4px;
  margin-bottom: 0;
}
.dropdown_menu {
  position: absolute;
  right: 0px;
  top: 29px;
  width: unset;
  perspective: 1000px;
  z-index: -1;
  /* border: 1px solid black; */
  box-shadow: var(--bs-2);
  background-color: #ffffff;
}

.dropdown_menu li {
  display: none;
  color: #333;
  background-color: var(--white-color);
  padding: 1px 15px;
  font-size: 14px;
  opacity: 0;
}
/* .dropdown_menu li:hover {
  background-color: #2980b9;
} */
ul.dropdown_menu.dropdown_menu-4 li a{
  color: #333;
  color: var(--primary-color);
  display: flex;
  text-decoration: none;
}
/* ul.dropdown_menu.dropdown_menu-4 li:nth-last-of-type(1) a{
  color: var(--secondary-color);
} */
.menu-container .dropdown.dropdown-4 div{
  color: var(--primary-color);
}
li.dropdown_item-1{
  padding-top: 8px;
  font-size: 15px;
  font-weight: 700;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
li.dropdown_item-2{
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(13 69 105 / 25%);
  font-size: 13px;
}
li.dropdown_item-3{
  padding-top: 8px;
}
li.dropdown_item-4{
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(13 69 105 / 25%);
}
li.dropdown_item-5{
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.dropdown:hover .dropdown_menu--animated {
  display: block;
}
.dropdown_menu--animated {
  display: none;
}
.dropdown_menu--animated li {
  display: block;
  opacity: 1;
}
.dropdown_menu-6 {
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}
.dropdown_menu-7 {
  animation: rotateMenu 400ms ease-in-out forwards;
  transform-origin: top center;
}
.dropdown_menu-8 {
  animation: downOut 300ms ease-in-out forwards;
  transform-origin: center center;
}
.dropdown_menu-9 {
  animation: growOut 300ms ease-in-out forwards;
  transform-origin: top center;
}
.dropdown_menu-10 {
  animation: rotateY 300ms ease-in-out forwards;
  transform-origin: top center;
}
.dropdown_menu-1 .dropdown_item-1 {
  transform-origin: top center;
  animation: slideDown 300ms 60ms ease-in-out forwards;
}
.dropdown_menu-1 .dropdown_item-2 {
  transform-origin: top center;
  animation: slideDown 300ms 120ms ease-in-out forwards;
}
.dropdown_menu-1 .dropdown_item-3 {
  transform-origin: top center;
  animation: slideDown 300ms 180ms ease-in-out forwards;
}
.dropdown_menu-1 .dropdown_item-4 {
  transform-origin: top center;
  animation: slideDown 300ms 240ms ease-in-out forwards;
}
.dropdown_menu-1 .dropdown_item-5 {
  transform-origin: top center;
  animation: slideDown 300ms 300ms ease-in-out forwards;
}
.dropdown_menu-2 .dropdown_item-1 {
  transform-origin: top center;
  animation: rotateX 300ms 60ms ease-in-out forwards;
}
.dropdown_menu-2 .dropdown_item-2 {
  transform-origin: top center;
  animation: rotateX 300ms 120ms ease-in-out forwards;
}
.dropdown_menu-2 .dropdown_item-3 {
  transform-origin: top center;
  animation: rotateX 300ms 180ms ease-in-out forwards;
}
.dropdown_menu-2 .dropdown_item-4 {
  transform-origin: top center;
  animation: rotateX 300ms 240ms ease-in-out forwards;
}
.dropdown_menu-2 .dropdown_item-5 {
  transform-origin: top center;
  animation: rotateX 300ms 300ms ease-in-out forwards;
}
.dropdown_menu-3 .dropdown_item-1 {
  transform-origin: top center;
  animation: rotateZ 300ms 60ms ease-in-out forwards;
}
.dropdown_menu-3 .dropdown_item-2 {
  transform-origin: top center;
  animation: rotateZ 300ms 120ms ease-in-out forwards;
}
.dropdown_menu-3 .dropdown_item-3 {
  transform-origin: top center;
  animation: rotateZ 300ms 180ms ease-in-out forwards;
}
.dropdown_menu-3 .dropdown_item-4 {
  transform-origin: top center;
  animation: rotateZ 300ms 240ms ease-in-out forwards;
}
.dropdown_menu-3 .dropdown_item-5 {
  transform-origin: top center;
  animation: rotateZ 300ms 300ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-1 {
  transform-origin: top center;
  animation: scaleZ 300ms 60ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-2 {
  transform-origin: top center;
  animation: scaleZ 300ms 120ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-3 {
  transform-origin: top center;
  animation: scaleZ 300ms 180ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-4 {
  transform-origin: top center;
  animation: scaleZ 300ms 240ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-5 {
  transform-origin: top center;
  animation: scaleZ 300ms 300ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-1 {
  transform-origin: top center;
  animation: scaleZ 300ms 60ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-2 {
  transform-origin: top center;
  animation: scaleZ 300ms 120ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-3 {
  transform-origin: top center;
  animation: scaleZ 300ms 180ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-4 {
  transform-origin: top center;
  animation: scaleZ 300ms 240ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-5 {
  transform-origin: top center;
  animation: scaleZ 300ms 300ms ease-in-out forwards;
}
.dropdown_menu-4 .dropdown_item-6 {
  transform-origin: top center;
  animation: scaleZ 300ms 300ms ease-in-out forwards;
}
.dropdown_menu-5 .dropdown_item-1 {
  transform-origin: top center;
  animation: translateX 300ms 60ms ease-in-out forwards;
}
.dropdown_menu-5 .dropdown_item-2 {
  transform-origin: top center;
  animation: translateX 300ms 120ms ease-in-out forwards;
}
.dropdown_menu-5 .dropdown_item-3 {
  transform-origin: top center;
  animation: translateX 300ms 180ms ease-in-out forwards;
}
.dropdown_menu-5 .dropdown_item-4 {
  transform-origin: top center;
  animation: translateX 300ms 240ms ease-in-out forwards;
}
.dropdown_menu-5 .dropdown_item-5 {
  transform-origin: top center;
  animation: translateX 300ms 300ms ease-in-out forwards;
}
@-moz-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@-o-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@-moz-keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@-webkit-keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@-o-keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@-moz-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@-webkit-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@-o-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@-moz-keyframes growOut {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes growOut {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-o-keyframes growOut {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes growOut {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-moz-keyframes rotateY {
  0% {
    transform: rotateY(90deg);
  }
  80% {
    transform: rotateY(-10deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@-webkit-keyframes rotateY {
  0% {
    transform: rotateY(90deg);
  }
  80% {
    transform: rotateY(-10deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@-o-keyframes rotateY {
  0% {
    transform: rotateY(90deg);
  }
  80% {
    transform: rotateY(-10deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes rotateY {
  0% {
    transform: rotateY(90deg);
  }
  80% {
    transform: rotateY(-10deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@-webkit-keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@-o-keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@-moz-keyframes rotateZ {
  0% {
    opacity: 0;
    transform: translateZ(290px);
  }
  80% {
    transform: translateZ(10px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
@-webkit-keyframes rotateZ {
  0% {
    opacity: 0;
    transform: translateZ(290px);
  }
  80% {
    transform: translateZ(10px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
@-o-keyframes rotateZ {
  0% {
    opacity: 0;
    transform: translateZ(290px);
  }
  80% {
    transform: translateZ(10px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes rotateZ {
  0% {
    opacity: 0;
    transform: translateZ(290px);
  }
  80% {
    transform: translateZ(10px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
@-moz-keyframes scaleZ {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes scaleZ {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-o-keyframes scaleZ {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleZ {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes scaleZ {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes scaleZ {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-o-keyframes scaleZ {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleZ {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes translateX {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes translateX {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-o-keyframes translateX {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes translateX {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* ----------------   */

 /*------common table---------------------*/
 
table{
  /* border: 1.1px solid var(--primary-color) !important; */
  box-shadow: var(--bs-2) !important;
  background: #fff;
}
table thead{
  border: 1.1px solid var(--primary-color) !important;
}
.table td, .table th{
  border-bottom: 0 !important;
  /* border-top: .8px solid var(--primary-color) !important; */
  text-align: center;
  font-weight: 500;
  vertical-align: middle !important;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.table td{
  background-color: var(--white-color);
  color: #7d7d7d;
  vertical-align: middle !important;
  font-size: 13px;
  line-height: 20px;
}
/* .table thead th */


input,input::placeholder,select,textarea{
color: #666 !important;
}
#ah select{
  padding: 8px 22px 8px 5px !important;
}

select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: url("../img/icons/darrow.svg") 93% / 13px no-repeat #eee;
}

/* CAUTION: IE hackery ahead */
select::-ms-expand { 
  display: none; /* remove default arrow on ie10 and ie11 */
}

/* input[type=date] {
background: #ccc;
background: linear-gradient(90deg, #ddd, #ccc);
border: 3px solid #eee;
border-radius: 20px;
box-shadow: 0 3px 3px rgba(0,0,0,0.1);
color: #222;
font: 16px Helvetica,Arial,sans-serif;
left: 50%;
line-height: 20px;
margin: -15px 0 0 -100px;
outline: 0;
padding: 5px 10px;
position: absolute;
top: 50%;
width: 200px;
} */
input[type=date]::-webkit-calendar-picker-indicator {
color: red !important;
/* background-color: red !important; */
height: 25px;
position: relative;
width: 25px;
z-index: 0;
opacity: 50%;

}
input[type=date]::-webkit-calendar-picker-indicator:before {
background: #eee;
background: linear-gradient(90deg, #eee, #fff);
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
border-radius: 24px;
content: '';
display: block;
height: 22px;
left: -2px;
position: absolute;
top: -5px;
width: 22px;
z-index: -1;
}
/* input[type=date]::-webkit-calendar-picker-indicator:hover {
background: none;
} */
input[type=date]:focus {
border-color: #3399ff;
}

/* target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
  select {
      background:none\9;
      padding: 5px\9;
  } 
}


header{
position: sticky;
top: 0;
z-index: 5;
width: 100%;
/* box-shadow: var(--bs-1); */
background: #fff;
}




 /*------ home ---------------------*/
#home #box_section .box_{
  background-color: var(--white-color);
  padding: 10px 20px;
  box-shadow: var(--bs-2);
  border-radius: 4px;
}
#home #box_section .box_ img{
  margin-bottom: 9px; 
}
#home #box_section .box_ .price{
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700; 
}
#home #box_section .box .title{
  color: var(--primary-color);
}
#home #box_section .box_hoz{
  padding: 10px 20px;
  margin-bottom: 15px;
  box-shadow: var(--bs-2);
  border-radius: 4px;
}
#home #box_section .box_hoz .title{
  color: var(--primary-color);
}
#home #box_section .box_hoz .price{
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700;
}
#home #box_section :is(h1, h2){
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 17px;
  padding: 10px 0;
}
#home #box_section #box_section_right{
  background: #E7EDF0;
  padding: 0 15px;

}
#home .div_line{
  margin-top: 2px;
  border-bottom: 1px solid var(--primary-color);
}
#home #table h5{
  font-size: 16px;
}




 /*------ account history/ lead history ---------------------*/

 #ah #top_section .search_box span{
  position: absolute;
  right: 23px;
  font-size: 30px;
  top: -5px;
  color: #777;
 }

 #ah #top_section .date_section input[type="date"], #lh #top_section .date_section input[type="date"]{
  padding: 38px 7px 20px;
 }
 #ah #top_section .date_section span, #lh #top_section .date_section span{
  position: absolute;
  top: 5px;
  left: 25px;
  font-size: 12px;
  color: #666;
 }
 #ah #top_section .date_section span.date_icon::after,  #lh #top_section .date_section span.date_icon::after{
  content: '\1F4C5';
  width: 10px;
  position: absolute;
  left: 172px;
  top: 14px;
  font-size: 25px;
 }
 #ah :is(input[type="text"],select), #lh :is(input[type="text"],select){
  height: 40px;
 }
 #ah .bottom-section select,  #lh .bottom-section select{
  background: url(../img/icons/darrow.svg) 92% / 13px no-repeat #eee;
  padding: -39px 9px !important;
  padding-right: 20px !important;
  height: 38px;
  color: var(--primary-color) !important;
 }


 /* ---------------------------------------------------- */
 #ah .bottom-section select:focus-visible, #lh .bottom-section select:focus-visible{
  outline: none;
 }
 /* input::-webkit-calendar-picker-indicator {
  background: transparent I !important;
  cursor: pointer !important;
} */
#ah .dataTables_wrapper .dataTables_length select, #lh .dataTables_wrapper .dataTables_length select{
  height: unset !important;
  padding: 2px 22px 2px 4px !important;
  background: url(../img/icons/darrow.svg) 88% center / 13px no-repeat rgb(238, 238, 238);
} 
#ah .dataTables_wrapper .dataTables_paginate, #lh .dataTables_wrapper .dataTables_paginate{
  margin-bottom: 10px;
}

/*Table Design*/

#myTable1{
  margin-bottom: 20px;
}
#myTable1_wrapper .dataTables_paginate .paginate_button:hover{
  background: var(--primary-color) !important;
  color: var(--white-color) !important;
  border-radius: 7px;
}

#myTable1_wrapper :is(label,.dataTables_info,a) {
  color: var(--primary-color) !important;
} 
#myTable1_wrapper :is(a.current) {
  border-radius: 7px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white-color) !important;
}

#myTable1_filter input{
  padding: 6px 10px;
}
#myTable1_filter input:focus-visible{
  background-color: #fff;
  border: 1px solid var(--primary-color) !important;
  outline: 0;
  /* box-shadow: 0 0 0 0.2rem rgb(13 69 105 / 30%) !important; */
}  
 /* ---------------------------------------------------- */



 /* input#session-date-1{
  position:relative;
  overflow:hidden;
} */
/* input#session-date-1::-webkit-calendar-picker-indicator{
  display:block;
  top:0;
  left:0;
  background: #0000;
  position:absolute;
  transform: scale(12)
} */

  /*------ submit media ---------------------*/

  #sm h1{
    font-size: 24px;
    font-weight: 700;
  }
  #sm h2{
    font-size: 24px;
    font-weight: 700;
  }
  #sm #form_section{ 
    background-color: var(--white-color);
    padding: 25px 25px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 25%);
    border-radius: 10px;
  }
  #sm #box_section_right{
    background: #E7EDF0;
    padding: 10px 15px;

  }
  /* #home #box_section :is(h1, h2){
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 17px;
    padding: 10px 0;
  } */
  #sm #form_section label{
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--primary-color);
  }
  #sm #form_section :is(select, input){
    /* height: 44px; */
    background-color: #E7EDF0;
    border: 0;
    font-size: 14px;
  }
  #sm #form_section :is(select){
    color: var(--primary-color)!important;
  }
  #sm #form_section input::placeholder{
    font-size: 14px;
  }
  #sm #form_section select{
    font-size: 14px;
  }
  #sm #form_section .checkbox_sec input[type=checkbox]{
    width: 20px;
    height: 18px;
    cursor: pointer;
    margin-bottom: 9px;
    padding-right: 10px;
  }
  #sm #form_section .checkbox_sec label{
    padding-left: 5px;
    text-align: left;
  }
  #sm #form_section p{
    font-size: 16px;
    /* margin-bottom: 8px; */
  }

  .pp_mm_sm label{
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--primary-color);
  }
  .pp_mm_sm :is(select, input){
    height: 44px;
    background-color: #fff;
    border: 0;
    font-size: 14px;
  }
  .pp_mm_sm input::placeholder{
    font-size: 14px;
  }
  .pp_mm_sm select{
    font-size: 14px;
  }
  .pp_mm_sm .checkbox_sec input[type=checkbox]{
    width: 20px;
    height: 18px;
    cursor: pointer;
    margin-bottom: 9px;
    padding-right: 10px;
  }
  .pp_mm_sm .checkbox_sec label{
    padding-left: 5px;
    text-align: left;
  }
  .pp_mm_sm p{
    font-size: 16px;
    /* margin-bottom: 8px; */
  }
  .pp_mm_sm .sm_button{
    background-color: var(--primary-color);
    width: max-content;
    padding: 6px 50px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    color: var(--white-color)!important;
    margin: 0 auto;
    width: 100%;
  }

  #mm_left #tabs-nav {
    list-style: none;margin: 0px!important;padding: 0px;border-radius: 6px 6px 0 0;overflow: hidden;
    background: #d2dde4;
  }
  #mm_left #tabs-nav li{
    width: 50%;
  }
  #mm_left #tabs-nav li a{
    display: block;
    padding: 15px;
    background: #d2dde4;
    margin-bottom: 0px;
    color: #0d4569;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s ease;
  }
  #mm_left #tabs-nav li.active a{
    background: #0d4569;
    color: #fff;
    border-radius: 6px 6px 0 0;
  }

  @media screen and (max-width:460px){
    #mm_left #tabs-nav li a{
      font-size: 12px;
      padding: 10px;
    }
    
  }

    /*------ register business ---------------------*/

    #register_business h1, #register_business h3{
      font-size: 24px;
      font-weight: 700;
    }
    #register_business h2{
      font-size: 24px;
      font-weight: 700;
    }
    #register_business #form_section{ 
      background-color: var(--white-color);
      padding: 25px 25px;
      box-shadow: 0px 0px 20px rgb(0 0 0 / 25%);
      border-radius: 10px;
    }
    #register_business #box_section_right{
      background: #E7EDF0;
      padding: 10px 15px;
  
    }
    /* #home #box_section :is(h1, h2){
      font-size: 24px;
      font-weight: 700;
      padding-bottom: 17px;
      padding: 10px 0;
    } */
    #register_business #form_section label{
      /* margin-bottom: 4px; */
      font-size: 14px;
      color: var(--primary-color);
      margin-top: 6px;
      margin-left: 5px;
    }
    #register_business #form_section :is(select, input){
      height: 44px;
      background-color: #E7EDF0;
      border: 0;
      font-size: 14px;
    }
    #register_business #form_section input::placeholder{
      font-size: 14px;
    }
    #register_business #form_section select{
      font-size: 14px;
    }
    #register_business #form_section .checkbox_sec input[type=checkbox]{
      width: 20px;
      height: 18px;
      cursor: pointer;
      margin-bottom: 9px;
      padding-right: 10px;
    }
    #register_business #form_section .checkbox_sec label{
      padding-left: 5px;
    }
    #register_business #form_section p{
      font-size: 16px;
      /* margin-bottom: 8px; */
    }

    /*------ Marketing Material ---------------------*/

    #mm_left .inner_box .top_btn_sec{
      background-color: transparent;
      width: max-content;
      padding: 5px 16px;
      border: 2px solid var(--secondary-color);
      border-radius: 6px;
      color: var(--primary-color);
    } 
    #mm #mm_left .inner_box .bottom_btn_sec button{
      background-color: var(--secondary-color);
      width: max-content;
      padding: 6px 50px;
      border: 2px solid var(--secondary-color);
      border-radius: 6px;
      color: var(--white-color);
    }
    /* #mm #mm_left .inner_box .img_sec{
      display: unset !important;
      width: 300px;
      height: 300px;
    }
    #mm #mm_left .inner_box .img_sec img{
      width: 300px;
      height: 300px;
      margin: 0 auto
    } */

   /*------ view schemes * Pricing Overview---------------------*/

   #vs .head_section h1{
      font-size: 28px;
   }
   #vs .head_section p{
    font-size: 16px;
    color: var(--primary-color);
  }
  #vs .table_head h3{
    font-size: 26px;
    font-weight: 700;
  }
  #vs .table_head p{
    font-size: 16px;
    width: 100%;
    color: var(--primary-color);
    margin: 0;
  }
  #vs .small_table h3{
    font-size: 24px;
    font-weight: 700;
  }
  #vs :is(.small_table, .table_head) h3{
    color: var(--primary-color);
    margin-bottom: 14px;
  }
  #vs :is(.small_table, .table_head) h3 span{
    color: var(--secondary-color);
  }
  #vs table th{
    font-weight: 700;
  }
  /* #vs table td:nth-child(1){
    font-weight: 700 !important;
  } */
  .divide{
    border-top: 1px solid var(--black-color);
  }
  
/* ----------terms and conditions */


#terms #form_section{
  background: white;
  border-radius: 10px;
  padding: 16px 16px;
}
#terms #form_section h1{
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color) !important;
}

/* #terms #form_section ol li strong{
  color: var(--secondary-color) !important;
  font-weight: 500;
  font-size: 20px;
} */

/* #terms #form_section ol {
  list-style: none;
  counter-reset: item;
}
#terms #form_section li {
  counter-increment: item;
  margin-bottom: 5px;
}
#terms #form_section li:before {
  margin-right: 10px;
  content: counter(item);
  background: lightblue;
  border-radius: 100%;
  color: white;
  width: 1.2em;
  text-align: center;
  display: inline-block;
} */

/*------ Start Forget Password ---------------------*/
  
html,body{
  height: 100%;
}
#fp{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fp main{
  width: 530px;
}
#fp main form label{
  color: var(--primary-color);
  margin-bottom: 5px !important;
}
#fp main form input{
  height: 44px;
  background-color: #E7EDF0;
  border: 0;
  font-size: 14px;
  color: #666 !important;
  border: 1px solid var(--primary-color);
}
#fp main .bottom_section a{
  color: var(--secondary-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#fp main .bottom_section a span{
  margin-bottom: 1px;
}
#fp main .bottom_section a i{
  color: var(--secondary-color);
  font-size: 22px;
  padding-right: 4px;
}


#snp{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#snp main{
  width: 530px;
}
#snp main form label{
  color: var(--primary-color);
  margin-bottom: 2px !important;
}
#snp main form input{
  height: 44px;
  background-color: #E7EDF0;
  border: 0;
  font-size: 14px;
  color: #666 !important;
  border: 1px solid var(--primary-color);
}
#snp main .bottom_section a{
  color: var(--secondary-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#snp main .bottom_section a span{
  margin-bottom: 1px;
}
#snp main .bottom_section a i{
  color: var(--secondary-color);
  font-size: 22px;
  padding-right: 4px;
}
#snp span.error{
  color: var(--secondary-color);
  font-size: 14px;
}
span.error{
  color: red;
  font-size: 14px;
}

#cym{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cym main{
  width: 530px;
}
#cym main .bottom_section a{
  color: var(--secondary-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#cym main .bottom_section a span{
  margin-bottom: 1px;
}
#cym main .bottom_section a i{
  color: var(--secondary-color);
  font-size: 22px;
  padding-right: 4px;
}


#pcs{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#pcs main{
  width: 530px;
}
#pcs main .head_section{
  width: 90%;
  margin: 0 auto;
}
#pcs main .bottom_section a{
  color: var(--secondary-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#pcs main .bottom_section a span{
  margin-bottom: 1px;
}
#pcs main .bottom_section a i{
  color: var(--secondary-color);
  font-size: 22px;
  padding-right: 4px;
}


/**/

#ship_sender label{
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--primary-color);
  text-align: left;
  text-transform: capitalize;
  display: block;
}
#ship_sender :is(select, input, textarea){
  height: 44px;
  background-color: #E7EDF0;
  border: 0;
  font-size: 14px;
  margin-bottom: 10px;
}
#ship_sender input::placeholder{
  font-size: 14px;
}
#ship_sender select{
  font-size: 14px;
}
#ship_sender .checkbox_sec input[type=checkbox]{
  width: 20px;
  height: 18px;
  cursor: pointer;
  margin-bottom: 9px;
  padding-right: 10px;
}
#ship_sender .checkbox_sec label{
  padding-left: 5px;
  text-align: left;
}
#ship_sender p{
  font-size: 16px;
  /* margin-bottom: 8px; */
}
#ship_sender .sm_button{
  background-color: var(--primary-color);
  width: max-content;
  padding: 6px 50px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  color: var(--white-color)!important;
  margin: 0 auto;
  width: auto;
}

#LeadHistoryTable_wrapper .tb_button, #AccountHistorytable .tb_button{
  background-color: var(--secondary-color);
  width: max-content;
  padding: 2px 15px;
  border: 1px solid var(--secondary-color);
  border-radius: 6px;
  color: var(--white-color)!important;
  margin: 0 auto;
  width: auto;
  font-weight: bold;
  font-size: 12px;
  transition: all 0.6s ease;
}
#LeadHistoryTable_wrapper .tb_button:hover, #AccountHistorytable .tb_button:hover{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.pick_up_section .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.pick_up_section .accordion-item-body.active{
  max-height: unset;
}
.pick_up_section .accordion-item-body.active .accordion-item-body-content {
  padding: 15px;
  border: 1px solid #dadada;
  border-radius: 4px;
  margin-bottom: 10px;
  max-height: unset;
}


/* Pickup Page*/
.pick_up_section .accordion-item-header {
  padding: 10px;
  background: #d9ecf9;
  margin-bottom: 10px;
  color: #0d4569;
  border-radius: 4px;
  font-weight: bold;
  position: relative;
}

.pick_up_section .accordion-item-header.active {
  background: #0d4569;
  color: #fff;
}

.pick_up_section h1{
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 17px;
    margin: 0px;
    padding: 10px 0;
}
.pick_up_section label{
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--black-color);
  text-align: left;
  text-transform: capitalize;
  display: block;
  min-width: 160px;
}
.pick_up_section label span{
  color: red;
  margin-right: 2px;
}
.pick_up_section input[type="time"]{
  width: auto;
}
.pick_up_section :is(select, input, textarea){
  height: 44px;
  background-color: #E7EDF0;
  border: 0;
  font-size: 14px;
  margin-bottom: 10px;
}
.pick_up_section input::placeholder{
  font-size: 14px;
}
.pick_up_section select{
  font-size: 14px;
}
.pick_up_section .checkbox_sec input[type=checkbox]{
  width: 20px;
  height: 18px;
  cursor: pointer;
  margin-bottom: 9px;
  padding-right: 10px;
}
.pick_up_section .checkbox_sec label{
  padding-left: 5px;
  text-align: left;
}
.pick_up_section p{
  font-size: 16px;
  /* margin-bottom: 8px; */
}
.pick_up_section .sm_button{
  background-color: var(--primary-color);
  width: max-content;
  padding: 6px 50px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  color: var(--white-color)!important;
  margin: 0;
  width: auto;
}

.pick_up_section .sm_button.btn-danger{
  background: rgb(255, 0, 0);
  border-color: rgb(255, 0, 0);
}

/*Popup Box*/

.sm_ttol_tip_box {
  display: inline-block;
  vertical-align: top;
  position: relative;

}

.sm_ttol_tip_box img{
  cursor: pointer;
}
.sm_ttol_tip_box span {
  display: none;
  position: absolute;
  bottom: -24px;
  width: 180px;
  border-radius: 4px;
  background: #ffff;
  box-shadow: 0 0 4px 2px rgba(0,0,0,0.2);
  padding: 10px;
  font-size: 12px;
  line-height: 16px;
  /* right: 0px; */
  /* left: 0px; */
  left: 50%;
  /* margin: 0px auto; */
  transform: translateX(10px);
  color: var(--primary-color)!important;
}
.sm_ttol_tip_box:hover span{
  display: block;
}

.pick_up_section .accordion-item-header{
  cursor: pointer;
}

.pick_up_section .accordion-item-header::after {
  content: "";
  width: 12px;
  height: 2px;
  background: #0d4569;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 1px;
  transition: all 0.5s ease;
}

.pick_up_section .accordion-item-header::before {
  content: "";
  width: 12px;
  height: 2px;
  background: #0d4569;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 1px;
  transition: all 0.5s ease;
  transform: translateY(-50%) rotate(90deg)
}
.pick_up_section .accordion-item-header.active::before, .pick_up_section .accordion-item-header.active::after{
  background: #fff;
} 
.pick_up_section .accordion-item-header.active::before{
  transform: translateY(-50%) rotate(0deg)
}
/*------END Forget Password ---------------------*/


@media (min-width:320px) and (max-width:566px){
#sm header, #mm header, #home header, #ah header, #vs header, #terms header, #register_business header, #activate header{
  position: fixed;
}
main.page-content{
  margin-top: 60px;
}
#sm #form_section p {
  max-width: 200px;
}
#sm #form_section {
  padding: 17px 20px;
} 
#vs .head_section p {
  width: 100%;
}
main#sm{
  overflow-y: scroll;
  overflow-x: hidden;
}
.dropdown:hover .dropdown_menu li {
  width: 130px;
  margin-right: 10px;
}
#sm #center_section{
  display: block !important;
  justify-content: center !important;
}
#sm #center_section div{
  /* display: block !important; */
  margin-bottom: 17px;
}
#sm #center_section button{
  width: 100%;
}
#sm #form_section label {
  margin-top: 3px;
}
#home .box_hoz_right .btn_{
  width: min-content;
}
/* #mm #mm_left.col-12{
  padding: 0 !important;
} */
}
@media (min-width:567px) and (max-width:767px){
#sm header, #mm header, #home header, #ah header, #vs header, #terms header, #register_business header, #activate header{
  position: fixed;
}
main.page-content{
  margin-top: 60px;
}
#vs header{
  position: fixed;
}
#sm #form_section p {
  max-width: 100%;
}    
#sm #form_section {
  padding: 17px 20px;
}
main#sm{
  overflow-y: scroll;
  overflow-x: hidden;
}
.dropdown:hover .dropdown_menu li {
  width: 130px;
  margin-right: 10px;
}
} 
@media (min-width:768px) and (max-width:992px){
#sm header, #mm header, #home header, #ah header, #vs header, #terms header, #register_business header, #activate header{
  position: fixed;
}
main.page-content{
  margin-top: 60px;
}
#vs .head_section p {
  width: 100%;
}
main#sm{
  overflow-y: scroll;
  overflow-x: hidden;
}
.dropdown:hover .dropdown_menu li {
  width: 130px;
  margin-right: 10px;
}
#mm #mm_left .row_2 .box_para{
  height: 130px;
}
}
@media (min-width:992px) and (max-width:1034px){
#vs .table_head{
  height: 160px;
}
#mm #mm_left .box_para{
  height: 70px;
}
}
@media (min-width:1035px) and (max-width:1135px){
#vs .table_head{
  height: 155px;
}
#mm #mm_left .box_para{
  height: 80px;
}
#mm #mm_left .row_2 .box_para{
  height: 130px;
}
}
@media (min-width:1135px) and (max-width:1400px){
#vs .table_head{
  height: 145px;
}
}
@media (min-width:993px) and (max-width:1035px){
  #mm #mm_left .box_para{
    height: 100px;
  }
  #mm #mm_left .row_2 .box_para{
    height: 146px;
  }
}
@media (min-width:1035px) and (max-width:1200px){
  #mm #mm_left .box_para{
    height: 70px;
  }
  #mm #mm_left .row_2 .box_para{
    height: 126px;
  }
}

@media (min-width:1200px) and (max-width:1600px){
  #mm #mm_left .box_para{
    height: 66px;
  }
  #mm #mm_left .row_2 .box_para{
    height: 100px;
  }
}
@media (min-width:992px) and (max-width:1270px){
  #mm #mm_left{
    padding: 1.5rem 0 !important;
  }
  #mm .content_section{
    padding-left: .5rem !important;
    padding-right: 1rem !important;
  }
}

@media (min-width:993px) and (max-width:1999px){}
@media (min-width:1200x) and (max-width:1400px){}

.lang_div{
  bottom: 0;
}

/*------ activation page ---------------------*/

#activate #form_section{
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

#activate #form_section .card-title{
  font-weight: 700;
  font-size: 24px;
  line-height: 46px;
  /* identical to box height */
  color: #0E4669;
}
#activate #form_section .hr{
border: 1px solid #0E4669;
}
#activate #form_section .lead{
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 34px;
display: flex;
align-items: center;
text-align: center;
color: #F6921E;
margin-top: 0.75rem;
}
#activate #form_section button{
  background: #0E4669;
  border-radius: 5px;
  color:#FFFFFF;
}
.list_style_type_none{
  list-style-type: none;
}
.mh_52{
  min-height: 52px;
} 
.w-70{
  width: 70%!important;
}
.w-30{
  width: 30%!important;
}
.resetpasswordeyeicon{
  position: absolute;
    margin-top: -28px;
    margin-left: -10px;
    display: flex!important;
    justify-content: end;
}
input[type="date"]
{
  display:block;
  -webkit-appearance: none;
  -moz-appearance: none;
  display:flex; 
  display:-webkit-flex; 
  flex: 1 0 0; 
  -webkit-flex: 1 0 0; 
  border-radius: 4px; 
}
.mm_divider{
  border-bottom: 3px solid #0d4569;
}
.mm_heading{ font-size: 24px; line-height: 32px; font-weight: bold; color: #0d4569;}
.mm_heading span{color: rgb(246, 146, 30);}
#pp_side_right {background: rgb(231 237 240)}
#mm_social_media_section h2{
    font-size: 24px;
    font-weight: bold;
    color: #0d4569;
    line-height: 32px;
}
.mm_inner_mm_video_box video{
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
.mm_inner_mm_video_box a {
  background-color: var(--secondary-color);
  width: max-content;
  padding: 6px 50px;
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  color: var(--white-color) !important;
  margin: 0 0 0 auto;
  display: inline-block;
  text-decoration: none;
}

/*Alert Style*/
.toast {
  position: absolute;
  top: 25px;
  right: 30px;
  border-radius: 12px;
  background: #fff;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.toast.active {
  transform: translateX(0%);
}

.toast .toast-content {
  display: flex;
  align-items: center;
}

.toast-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #4070f4;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.message .text.text-1 {
  font-weight: 600;
  color: #333;
}

.toast .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.toast .close:hover {
  opacity: 1;
}

.toast .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;

}

.toast .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
}

.progress.active:before {
  animation: progress 7s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

.toast.active ~ button {
  pointer-events: none;
} 
#page_loader_pp{
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 9999999999;
  display: none;
}
#page_loader_pp.active{
  display: block;
}

#page_loader_pp_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 10px;
  background: #0d4569;
  border-radius: 5px;
  animation: load 1.8s ease-in-out infinite; 
}
#page_loader_pp_inner:before, #page_loader_pp_inner:after {
    position: absolute; 
    display: block;
    content: "";
    animation: load 1.8s ease-in-out infinite;
    height: 10px;
    border-radius: 5px;
    background: #f6921e;
  }
  #page_loader_pp_inner:before {
    top: -20px;
    left: 10px;
    width: 40px;
  }
  #page_loader_pp_inner:after {
    bottom: -20px;
    width: 35px;
  }
  #page_loader_pp_info {
    position: absolute;
    top: 60%;
    left: 5%;
    right: 0px;
    transform: translateY(-60%);
    width: auto;
    height: auto;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    /* background: #0d4569; */
    /* border-radius: 5px; */
    /* animation: load 1.8s ease-in-out infinite; */
}
@keyframes load {
  0% {
    transform: translateX(40px);
  }
  
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(40px);
  }
}
#userinfoModal .fs_12{
  font-size: 12px;
  line-height: 18px;
}
#userinfoModal .pop_close{
  background-color: var(--primary-color);
  width: max-content;
  padding: 6px 50px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  color: var(--white-color) !important;
  margin: 0;
  width: auto;
}

#flash-message.alert,#flash-message-script.alert {
  position: fixed;
  min-width: 280px;
  top: 15%;
  right: 20px;
  z-index: 99999;
  border-radius: 2px;
  box-shadow: 0 0 4px 2px rgba(0,0,0,0.1);
}

#flash-message.alert .progress,#flash-message-script.alert .progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background: transparent;
}

#flash-message.alert .progress:before,#flash-message-script.alert .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
}
#flash-message.alert.alert-success .progress:before,#flash-message-script.alert.alert-success .progress:before{
  background-color: #1d643b;
}
#flash-message.alert.alert-danger .progress:before,#flash-message-script.alert.alert-danger .progress:before{
  background-color: #761b18;
}
#flash-message.alert.alert-warning .progress:before,#flash-message-script.alert.alert-warning .progress:before{
  background-color: #857b26;
}
#flash-message.alert.alert-info .progress:before,#flash-message-script.alert.alert-info .progress:before{
  background-color: #385d7a;
}
#flash-message.alert.alert-primary .progress:before,#flash-message-script.alert.alert-primary .progress:before{
  background-color: #004085;
}
#flash-message.alert.alert-secondary .progress:before,#flash-message-script.alert.alert-secondary .progress:before{
  background-color: #383d41;
}
#flash-message.alert.alert-light .progress:before,#flash-message-script.alert.alert-light .progress:before{
  background-color: #818182;
}
#flash-message.alert.alert-dark .progress:before,#flash-message-script.alert.alert-dark .progress:before{
  background-color: #1b1e21;
}

.progress.active:before {
  animation: progress 7s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}
#sm_button:active,
#sm_button:hover,
#sm_button:focus{
  color: #fff!important;
}