@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --main-yellow-color: #fc3;
  --main-green-color: #198754;
  --dark-black-color: #000;
  --dark-blue-color: rgb(24, 24, 24);
  --box-dark-color: #262626;
}
/** Global Theme Css **/
body {
  font-size: 16px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
p {
  font-size: 16px;
  font-weight: 400;
}
a {
  color: #4894fd;
  text-decoration: none;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
a:hover {
  color: #4894fd;
  transition: all 0.3s ease;
  text-decoration: underline;
}
li {
  list-style-type: none;
}
ul {
  padding: 0;
  margin: 0;
}
a:focus,
button:focus {
  outline: none;
}
.relative {
  position: relative;
}
/** Btn **/
.btn {
  font-size: 16px;
  border-radius: 40px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  padding: 10px 25px;
  font-weight: 600;
  min-height: 46px;
  line-height: 28px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.btn.btn-xl {
  min-width: 150px;
}
.btn:hover {
  text-decoration: none;
}
.btn.focus,
.btn:focus,
.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}
.btn-yellow {
  background-color: var(--main-yellow-color);
  color: #000;
}
.btn-yellow:hover {
  background: #e6c028 !important;
  color: #000 !important;
  text-decoration: none;
}
.btn-yellow-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--main-yellow-color);
}
.btn-yellow-outline:hover {
  background: var(--main-yellow-color);
  color: #000 !important;
  text-decoration: none;
}

.btn-green {
  background-color: var(--main-green-color);
  color: #fff;
}

.btn-green:hover {
  /* background: #e6c028 !important; */
  opacity: .8;
  color: #fff !important;
  text-decoration: none;
}

.btn-green-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--main-green-color);
}

.btn-green-outline:hover {
  background: var(--main-green-color);
  color: #000 !important;
  text-decoration: none;
}

.btn-blue {
  background: #005c7b;
  color: #fff !important;
}
.btn-blue:hover {
  background: #005c7b;
  color: #fff !important;
  text-decoration: none;
}
.btn-black {
  border: 1px solid #fff;
  color: #fff;
}
.btn-black:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}
.section {
  padding: 80px 0;
}
/** Headings **/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
.title1 {
  font-size: 36px;
  color: rgb(213, 214, 214);
  font-weight: 600;
}
.title1::after {
  content: "";
  width: 140px;
  height: 6px;
  background: rgb(213, 214, 214);
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
}
.title2 {
  font-size: 36px;
  color: #fff;
}
.title3 {
  font-size: 20px;
  color: #fff;
  line-height: normal;
}
.title4 {
  font-size: 18px;
  color: #fff;
}
.title5 {
  font-size: 24px;
  color: #fff;
}
/** Forms **/
.form-group label {
  color: rgb(213, 214, 214);
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}
.form-control {
  color: rgb(213, 214, 214);
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
  min-height: 48px;
  box-sizing: border-box;
  font-size: 14px;
  padding: 12px 18px;
}
.form-select {
  color: rgb(213, 214, 214);
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 12px 18px;
  min-height: 48px;
  font-size: 14px;
  background-color: transparent;
  background-image: url(../images/selectArrow.svg);
  text-align: left;
}
.form-select:disabled {
  color: #000;
}

.form-select option {
  color: #000;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--main-yellow-color);
}
.custom-checkbox .custom-control-label {
  cursor: pointer;
}
.form-control::placeholder {
  opacity: 0.5;
}
.form-control:focus-visible {
  text-shadow: none;
}
.form-control::placeholder {
  color: #fff;
  opacity: 0.5;
}
.form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: var(--main-yellow-color);
}
.form-control:disabled,
.form-control[readonly] {
  color: #000;
}
.bootstrap-timepicker-widget table td input {
  margin: 0;
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
  width: 45px;
  height: auto;
}

/*navbar CSS*/
.navbar {
  width: 100%;
  padding: 0;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 9;
  background-color: var(--box-dark-color);
}
.navbar-light .navbar-nav .nav-link {
  color: #fff;
  position: relative;
  font-weight: 600;
  font-size: 18px;
}
.navbar-light .navbar-nav .nav-link.active {
  color: var(--main-yellow-color);
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--main-yellow-color);
  text-decoration: none;
}
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-brand:hover {
  text-decoration: none;
}
.navbar-brand > img {
  width: 230px;
}
.nav-item {
  margin-right: 20px;
}
.btn-add-post {
  margin-right: 15px;
  margin-left: 20px;
}
.btn i {
  margin-right: 7px;
}
.navbar .navbar-nav .btn {
  padding-left: 20px !important;
  padding-right: 20px !important;
  min-width: 130px;
  background: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
}
.btn-sign .btn i {
  margin-right: 3px;
  margin-left: 3px;
}
.navbar-nav .dropdown-menu {
  padding: 15px 10px;
}
.navbar-nav .dropdown-item {
  font-size: 14px;
  padding: 7px 10px;
}
.navbar-nav .dropdown-item:hover {
  color: var(--dark-blue-color);
  background: #f0faff;
}
.navbar-light .navbar-toggler {
  color: #fff;
  border-color: rgb(255, 255, 255);
  background: #fff;
  z-index: 1;
  border-radius: 3px;
}
.navbar-toggler:focus {
  border-radius: 3px;
  box-shadow: none;
}
.topTeam.headerSticky {
  position: fixed;
  z-index: 9;
  width: 100%;
}
.topTeam.headerSticky .navbar {
  background: #00215f;
  padding: 12px 0;
}
.headerSticky .navbar-brand > img {
  width: 180px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.navbar .navbar-nav li {
}
/* .navbar-light .navbar-nav .nav-link::after{content:'';width:30px;height:30px;background:var(--main-purple-color);border-radius:50%;position:absolute;z-index:-1;left:0px;top:5px;transition:all 0.3s ease-in-out;opacity: 0;} */
.navbar-light .navbar-nav .nav-link.active::after {
  opacity: 1;
}
.navbar-light .navbar-brand {
  color: white;
  font-family: "Michroma", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
}
.navbar-brand span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0.3px;
  white-space: normal;
  color: var(--main-yellow-color);
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: white;
}
.btn-yellow.sm-btn {
  padding: 8px 16px;
}
.btn-user img {
  margin-right: 7px;
}
.navbar-Blue {
  padding-bottom: 10px;
}
.dropdown-item {
  font-size: 14px;
}
.registerPage {
  background-color: var(--dark-black-color);
}
.infolist {
  margin-bottom: 20px;
}
.infolist li {
  margin-bottom: 15px;
}
.infolist li::before {
  content: "\F589";
  color: var(--main-yellow-color);
  display: inline-block;
  width: 1em;
  margin-right: 10px;
  font-family: "bootstrap-icons";
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
}
.infolink {
  color: var(--main-yellow-color);
}
.infolink:hover {
  color: var(--main-yellow-color);
  text-decoration: underline;
}
.modal-content {
  background-color: #404044;
  border: #666 2px solid;
}
.btn-close {
  color: #000;
  border-radius: 0;
  opacity: 1;
  font-size: 24px;
  padding: 0;
  width: auto;
  height: auto;
}
.btn-close:hover {
  color: #a33;
}
.modal-title {
  font-weight: 600;
}
.modal-header {
  padding: 1rem 2rem;
}
.modal-body {
  padding: 2rem;
}
.modal-footer {
  padding: 0.75rem 2rem;
}
.bi-info-circle {
  cursor: pointer;
}
.registerForm {
  padding: 20px;
  background: var(--box-dark-color);
  margin-top: 40px;
  margin-left: 10em;
  margin-right: 10em;
  border-radius: 10px;
}

.registerForm .form-label {
  color: #fff;
}
.registerForm .form-label i {
  cursor: pointer;
}
.form-label em {
  font-style: normal;
  color: var(--main-yellow-color);
}
.registerPage .btn {
  min-width: 160px;
}
.centerlabel:after {
  margin-left: auto;
  margin-right: auto;
}
.textarea-white {
  background-color: #ffffff;
}
.form-check {
  color: #fff;
  display: inline-block;
  margin-left: 20px;
}
.link,
.registerPage .link {
  font-size: 14px;
  margin-top: 8px;
  display: inline-block;
}
.registerForm .title3 {
  color: #fff;
  margin-bottom: 20px;
}
.registerPage a.roleCol {
  border: 1px solid #fff;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: #ccc;
  opacity: 0.5;
  min-height: 200px;
}
.registerPage a.roleCol:hover {
  text-decoration: none;
}
.registerPage a.roleCol i {
  margin-bottom: 0px;
  font-size: 40px;
}
.registerPage a.roleCol.active {
  opacity: 1;
}
.userver p {
  color: #fff;
  text-align: justify;
}
.avatar-upload {
  position: relative;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 100%;
  height: 40px;
  background: transparent;
  border: 1px solid #686668;
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  text-align: center;
  line-height: 34px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.avatar-upload .avatar-preview {
  width: 100%;
  height: auto;
  position: relative;
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 22px;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 34px;
  background-color: #4d4949;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 4px;
  background-color: #bbb7ab;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #4d4949;
}
input:checked + .slider:before {
  -webkit-transform: translateX(11px);
  -ms-transform: translateX(11px);
  transform: translateX(11px);
  background-color: var(--main-yellow-color);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.submit-role-details p b {
  display: block;
}
.infolist.selectMethod {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.selectMethod li {
  padding: 15px 20px;
  background: var(--box-dark-color);
  border-radius: 3px;
  width: calc(33.3% - 10px);
  margin-right: 15px;
}
.selectMethod li:nth-child(3n) {
  margin-right: 0;
}

.homeBanner {
  background-color: var(--dark-black-color);
  padding: 100px 0;
}
.homeBanner h1 {
  margin-bottom: 0;
}
.homeBanner p {
  margin: 20px 0 30px;
  font-size: 20px;
  line-height: 36px;
  width: 90%;
  text-align: justify;
}

.productsRow {
  background-color: var(--dark-blue-color);
}
.titleRow {
  text-align: center;
}
.titleRow h2 {
  font-weight: 600;
  letter-spacing: 0.3px;
}
.titleRow p {
  text-align: center;
}
.pBox {
  color: #333;
  position: relative;
  box-shadow: 0 0.25rem 1.75rem rgba(0, 0, 0, 0.07);
  text-align: center;
  padding: 30px;
  min-height: 210px;
  border-radius: 5px;
  background-color: var(--box-dark-color);
  transition: 0.3s ease-in;
}
.pBox:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0px 20px 20px 2px rgba(0, 0, 0, 0.1);
}
.pBox::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0px;
  height: 4px;
  width: 0%;
  background: var(--main-yellow-color);
  transition: all 0.3s ease-in;
}
.pBox:hover::after {
  width: 100%;
}
.iconbox {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
}
.iconbox i {
  background: var(--main-yellow-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in;
}
.pBox h3 {
  font-size: 18px;
  width: 90%;
  margin: 0 auto;
  line-height: normal;
  color: #fff;
}
.servicesRow {
  background-color: var(--dark-black-color);
}
.ProfessionalUsers {
  background-color: var(--dark-blue-color);
}
.ProfessionalUsers p {
  color: #fff;
  margin: 20px 0 30px;
  font-size: 18px;
  line-height: 32px;
  width: 90%;
  text-align: justify;
}
.counterRow {
  background-color: var(--dark-black-color);
}
.puBox {
  color: #fff;
  position: relative;
  box-shadow: 0 0.25rem 1.75rem rgba(0, 0, 0, 0.07);
  margin-bottom: 25px;
  text-align: center;
  padding: 40px 30px;
  border-radius: 5px;
  background-color: var(--box-dark-color);
  transition: 0.3s ease-in;
  min-height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.puBox h3 {
  font-size: 36px;
}
.puBox p {
  letter-spacing: 0.5px;
}
.counterRow .table {
  border-color: var(--box-dark-color);
  color: white;
}
.counterRow .table .thDark {
  background: var(--box-dark-color);
  color: white;
}
.counterRow .table td,
.counterRow .table th {
  padding: 16px;
}

.loginBg {
  background: var(--box-dark-color);
  width: 420px;
  margin: 7em auto 0;
  padding: 35px;
  border-radius: 5px;
}
.loginBg h1 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.custom-modal .btn-close {
  position: absolute;
  width: auto;
  right: 10px;
  top: 0px;
  z-index: 999;
}
.custom-modal .modal-body {
  font-size: 1.3rem;
  max-height: 500px;
  overflow-y: auto;
}
.submitRoleContent p,
.infoRegisterContent p {
  text-align: justify;
}
#page-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  padding-left: 170px;
  transition: all 0.5s ease-out 0.1s;
}
.sidebar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1032;
  width: 240px;
  height: 100%;
  background-color: var(--box-dark-color);
  overflow-y: auto;
  transform: translateX(0) translateY(0) translateZ(0);
  -webkit-overflow-scrolling: touch;
  will-change: all;
  transition: all 0.5s ease-out;
  top: 87px;
  height: calc(100% - 48px);
}
.fixed {
  position: fixed;
  z-index: 11;
  box-shadow: 0 5px 20px #00000050;
}
#page-header .navbar-brand {
  padding: 0rem;
  display: block;
  margin-right: 0;
  color: white;
  font-family: "Michroma", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  margin-right: 20px;
  line-height: normal;
}
.content-side {
  padding: 1.25rem 1.25rem 1px;
}
.sidebar ul {
  padding-left: 0;
  list-style: none;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
.sidebar ul li a {
  padding: 0.8rem 1.25rem;
  min-height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #9faec1;
  display: flex;
}
.sidebar ul li a:hover,
.sidebar ul li a.active {
  text-decoration: none;
  background: #3b3b3c;
}
.sidebar ul li a i {
  flex: 0 0 auto;
  display: inline-block;
  margin-right: 0.625rem;
  min-width: 1rem;
  text-align: center;
  color: #8599b6;
  font-size: 1.3rem;
}
#page-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  min-width: 320px;
  max-width: 100%;
  width: auto;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.02);
  margin: 0 auto;
  background-color: var(--box-dark-color);
  padding-top: 15px;
  padding-bottom: 15px;
}
.content-header {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 4rem;
}
.content {
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px 40px 110px;
  margin: 0 auto;
  height: auto;
}
.nav-item.nav-profile img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
#main-container {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.navbar-light .navbar-nav .nav-profile a {
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: normal;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.navbar-light .navbar-nav .nav-profile a img {
  margin-right: 7px;
}
.navbar-light .navbar-nav .nav-profile a:hover {
  text-decoration: none;
}
.adminPage {
  background-color: #000;
}
.navbar-nav {
  flex-direction: row;
  align-items: center;
}
.navbar-nav li a {
  color: #fff;
}
.navbar-nav .dropdown-menu {
  background: #3e3d3d;
  border-radius: 0;
  border: 1px solid #666;
  box-shadow: 0 0 1.25rem rgb(31 45 61 / 5%);
  padding: 0px;
  margin: 15px 0 0 !important;
  min-width: 270px;
  right: 0;
  left: auto;
  top: 57px;
}
.navbar-nav .dropdown-menu.dropdown-menu-left {
  right: 100%;
  left: auto;
  top: 0;
  background: #2b2626;
}
.dropend .dropdown-toggle::after {
  margin-left: auto;
}
.navbar-light .navbar-nav .dropdown-menu .dropdown-item {
  padding: 10px 20px;
}
.dropdown-item {
  color: #9a9cab;
  padding: 9px 26px;
}
.dropdown-item i {
  margin-right: 10px;
  font-size: 20px;
  color: white;
}
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background: #312f2f;
}
.dropdown-divider {
  border-color: #2b2b3b;
}
.card {
  background: var(--box-dark-color);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.card-title {
  color: #fff;
  display: inline-block;
}
.card .table-dark-theme.table {
  margin-top: 15px;
}
.table-dark-theme.table,
.table-dark-theme.table thead th {
  color: #fff;
}
.table-dark-theme.table * {
  border-color: #404652 !important;
}
.table-dark-theme.table > :not(:first-child) {
  border-top: 1px solid currentColor;
}
.table-dark-theme.table td,
.table-dark-theme.table th {
  padding: 5px;
  vertical-align: middle;
}
.table-dark-theme.table tr:last-child td,
.table-dark-theme.table tr:last-child th {
  border-bottom: none;
}
.dashboard_bar {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 12px;
}
.unread {
  background: #f23507;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  font-size: 12px;
  line-height: normal;
}

.table-bordered {
  border: 1px solid #ffffff;
}

.menuBtn {
  font-size: 1.7rem;
  color: white;
  margin-right: 15px;
}
.menuBtn:hover,
.menuBtn:focus {
  color: white;
}
.sidebarFull #page-container,
.sidebarFull #page-header {
  padding-left: 0 !important;
}
.sidebarFull .sidebar {
  left: -240px;
}
.sidebarFull .content {
  padding: 50px 20px 50px 50px;
}
.nav-profile a em {
  display: block;
  font-style: normal;
  color: var(--main-yellow-color);
}
.nav-item.nav-profile {
  margin-right: 0;
  display: flex;
  align-items: center;
}
.tooltip {
  font-size: 1rem;
}
.actionBox {
  font-size: 1.2rem;
}
.actionBox:hover {
  text-decoration: none;
  color: var(--main-yellow-color);
}
.actionBox i {
  font-size: 50px;
}
.infoContentCenter {
  margin: 0 auto;
  padding: 30px;
  box-sizing: border-box;
}
.infoContentCenter label {
  font-weight: bold;
}
.page-title {
  font-size: 2rem;
}
.btn.btn-circle {
  padding: 0;
  border-radius: 100% !important;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  min-height: inherit;
  letter-spacing: 0;
  border: none;
}
.btn-circle i {
  margin-right: 0;
}
.bg-gray-800 {
  color: #fff;
  background-color: #343a40;
}
.datepicker-picker span {
  color: #000;
}
.date {
  position: relative;
}
.date i {
  position: absolute;
  right: 12px;
  top: 12px;
  pointer-events: none;
}
.nav-tabs .nav-item {
  margin-right: 0;
}
.nav-tabs .nav-link {
  color: #fff;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  padding: 20px 30px 20px 0px;
}
.nav-tabs .nav-link:hover {
  border-color: #e6c028;
}
.nav-tabs .nav-link.active {
  background-color: transparent;
  color: #e6c028;
  border-color: #e6c028;
}
.table-dark-theme.table * {
  border-color: #fff !important;
}
.periodTxt ul {
  margin-top: 15px;
}
.periodTxt li {
  padding-bottom: 5px;
}
.form {
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.form input[type="file"] {
  z-index: 999;
  line-height: 0;
  font-size: 50px;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity = 0);
  -ms-filter: "alpha(opacity=0)";
  cursor: pointer;
  _cursor: hand;
  margin: 0;
  padding: 0;
  left: 0;
}
.add-photo-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  background-color: var(--main-yellow-color);
  color: #000;
  display: flex;
  width: 197px;
  height: 48px;
  font-size: 18px;
  line-height: 30px;
  align-items: center;
  justify-content: center;
}
.form input {
  width: 100%;
  padding: 12px;
  border: none;
}
.table-responsive {
  scrollbar-color: #fff #fff;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
  width: 12px;
}
::-webkit-scrollbar:horizontal {
  height: 12px;
}
::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #464545;
}
.stretched-link,
.stretched-link:hover {
  color: white;
  text-decoration: none !important;
}
.btnclickable {
  position: relative;
  z-index: 99;
}
.custom-control span {
  font-size: 16px;
  cursor: pointer;
}
.custom-control.teleport-switch .teleport-switch-control-input {
  display: none;
}
.editButton {
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-control.teleport-switch .teleport-switch-control-indicator {
  display: inline-block;
  position: relative;
  margin: 0 10px;
  top: 4px;
  width: 32px;
  height: 20px;
  background: var(--main-yellow-color);
  border-radius: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: none;
  overflow: hidden;
  cursor: pointer;
}
.custom-control.teleport-switch .teleport-switch-control-indicator::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 3px;
  right: -14px;
  background: #fff;
}
.custom-control.teleport-switch .teleport-switch-control-indicator::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 3px;
  left: 3px;
  background: #fff;
}
.custom-control.teleport-switch
  .teleport-switch-control-input:checked
  ~ .teleport-switch-control-indicator {
  border-color: var(--color);
}
.custom-control.teleport-switch
  .teleport-switch-control-input:checked
  ~ .teleport-switch-control-indicator::before {
  right: 3px;
  background-color: #fff;
}
.custom-control.teleport-switch
  .teleport-switch-control-input:checked
  ~ .teleport-switch-control-indicator::after {
  left: -14px;
}
.datepicker-dropdown {
  z-index: 9999;
}
.moreDataEdit {
  display: none;
}
.openmoreDataEdit {
  display: block;
}
.infoContentCenter label {
  min-width: 170px;
}
.btn-find {
  background: #f23507;
  color: #fff;
  border-radius: 5px;
  min-height: inherit;
  line-height: normal;
  padding: 5px 20px;
}
.btn-find:hover {
  color: #fff;
  text-decoration: none;
}
.edit-unverified-cat {
  color: #fff;
}
.w-63 {
  width: 63%;
}
.user-summary-table th:first-child,
.user-summary-table td:first-child {
  width: 300px;
  border-right: 1px solid #ffffff;
}
/** Responsive Css **/

@media only screen and (max-width: 1360px) {
  .pBox {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .registerForm {
    margin-left: 0;
    margin-right: 0;
  }
  .registerPage a.roleCol {
    min-height: 160px;
  }
  .pBox {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .selectMethod li {
    width: calc(50% - 10px);
  }
  .selectMethod li:nth-child(3n) {
    margin-right: 15px;
  }
  .selectMethod li:nth-child(2n) {
    margin-right: 0px;
  }
  .section,
  .homeBanner {
    padding: 50px 0;
  }
  .ProfessionalUsers h2,
  .homeBanner img {
    margin-top: 30px;
  }
  .puBox {
    padding: 40px 30px;
  }
  .navbar-nav {
    flex-direction: column;
  }
  .dropdown-menu .dropdown-menu {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .navbar-nav .dropdown-menu {
    background: transparent;
    border: none;
  }
  .nav-item.nav-profile {
    flex-direction: column;
  }
  .navbar-nav {
    flex-direction: column;
    overflow-y: auto;
    max-height: 500px;
  }
  .mobileHide {
    display: none !important;
  }
  .btn-group-child .btn {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .selectMethod li {
    width: 100%;
    margin-right: 0px;
  }
  .selectMethod li:nth-child(2n),
  .selectMethod li:nth-child(3n) {
    margin-right: 0px;
  }
  .puBox {
    padding: 40px 40px;
    margin-bottom: 30px;
  }
  .homeBanner p {
    width: auto;
  }
  #page-container,
  #page-header {
    padding-left: 0;
  }
  .sidebar {
    left: -240px;
  }
  .sidebarFull .sidebar {
    left: 0px;
  }
  .content {
    padding: 50px 15px 50px 15px;
  }
  .sidebarFull .content {
    padding: 50px 15px 50px 15px;
  }
  .infoContentCenter {
    padding: 1rem 1rem 0;
  }
  .ProfilePage .btn {
    display: block;
    margin-bottom: 15px;
    width: 100%;
  }
  .add-photo-btn {
    height: 60px;
  }
  .table-dark-theme.table td,
  .table-dark-theme.table th {
    padding: 5px;
    vertical-align: top;
    text-align: center;
  }
  .btn.btn-circle {
    width: 40px !important;
    height: 40px !important;
    align-items: center;
    display: flex;
  }
  #RegisteredItems table .btn-circle {
    margin: 0 auto;
  }
  .form-control + .btn,
  .form-select + .btn {
    margin-bottom: 0;
  }
  .w-63 {
    width: 100%;
  }
}

@media only screen and (max-width: 479px) {
  .registerPage .btn {
    min-width: 120px;
  }
  .title1 {
    font-size: 24px;
  }
  .loginBg {
    width: auto;
    margin-top: 3em;
  }
  .pBox {
    min-height: inherit;
  }
  .puBox {
    padding: 30px;
  }
  .navbar-nav .badgestatus {
    display: none;
  }
  .infoContentCenter .d-flex {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .infoContentCenter .form-label {
    display: block;
  }
  #RegisteredItems h3 {
    margin-bottom: 20px;
  }
  #RegisteredItems .d-flex {
    flex-wrap: wrap;
  }
  .form-control + .btn,
  .form-select + .btn {
    margin-bottom: 0;
    margin-top: 15px;
  }
}

@media (min-width: 1em) {
  body {
    font-size: 1rem;
  }
  .navbar-light .navbar-nav .nav-link {
    font-size: 1rem;
  }
  .form-select,
  .form-control {
    font-size: 1rem;
  }
  .homeBanner p {
    font-size: 1rem;
    line-height: 2rem;
  }
  .btn {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
  .pBox h3 {
    font-size: 1rem;
  }
  .puBox h3 {
    font-size: 2.25rem;
  }
  .ProfessionalUsers p {
    font-size: 1.125rem;
  }
  .loginBg h1 {
    font-size: 1.5rem;
  }
  .title1 {
    font-size: 2rem;
  }
  .title3 {
    font-size: 1.2rem;
  }
  .registerPage .link {
    font-size: 0.875rem;
  }
  .registerPage a.roleCol {
    font-size: 1.125rem;
  }
  .ProfilePage,
  .ProfilePage p,
  .ProfilePage .btn {
    font-size: 1rem;
  }
  .card-title {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

@media (min-width: 1em) and (max-width: 35em) {
  .homeBanner p {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  body,
  p,
  .btn,
  .ProfessionalUsers p {
    font-size: 1.5rem;
  }
  .homeBanner h1 {
    font-size: 2.5rem;
  }
  .pBox h3 {
    font-size: 1.5rem;
  }
  .registerForm {
    padding: 30px 20px;
  }
  .form-select,
  .form-control {
    font-size: 1.2rem;
    padding: 0 10px;
  }
  .ProfilePage,
  .ProfilePage p,
  .ProfilePage .btn {
    font-size: 1.5rem;
  }
  .card-title {
    font-size: 1.2rem;
  }
  .infoContentCenter .col-sm-6.text-end {
    text-align: left !important;
  }
  .nav-tabs .nav-link {
    padding: 20px 20px 20px 0px;
    font-size: 1rem;
  }
}

@media all and (min-width: 992px) {
  .dropdown-menu li {
    position: relative;
  }
  .nav-item .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }
  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
}
