@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #F7F8FA;
}

a {
  color: #CB2D74;
  transition: 0.5s;
  outline-style: none;
  text-decoration: none;
}

a:hover,
a:active,
a:visited,
a:focus {
  outline: none;
  text-decoration: none;
  color: #CB2D74;
}

p {
  padding: 0;
  margin: 0;
  color: #999999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

section {
  display: block;
  float: left;
  width: 100%;
}

.login_body {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #FEF3EE 0%, #B0E8FA 100%);
}
.login_main {
  display: block;
  float: left;
  width: 100%;
  margin: 30px 0;
  position: relative;
}
.login_logo_area
{
  float: left;
  width: 100%;
  padding: 0 25px;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
    align-items: center;
}
.login_logo_area img
{
  width: 100%;
  max-width: 350px;
}
.login_logo_section
{
  border-right: 1px solid #000;
}

.login_body .right_area {
  display: block;
  float: left;
  width: 80%;
  margin: 0 10%;
  padding: 40px;
  background: #F8F8F8;
  filter: drop-shadow(0px 5px 9.4px rgba(0, 0, 0, 0.33));
  border-radius: 15px;
}
.login_body .right_area p
{
  margin-top: 12px;
}
.login_form {
  display: block;
  float: left;
  width: 100%;
  margin-top: 20px;
}

.login_form .form-label {
  font-weight: 600;
}

.login_form .form-control {
  background: #fff;
  border: none;
  height: 50px;
  border: 1px solid #D1DADB;
}

.submit_but {
  display: block;
  float: left;
  width: 100%;
  background: #CB2D74;
  color: #fff;
  font-size: 20px;
  height: 54px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all .5s;
  transition-timing-function: ease-out;
}

.submit_but:hover {
  background: #000;
  color: #fff !important;
}
.login_copy
{
  float: left;
  width: 100%;
  text-align: center;
  margin: 40px 0 15px 0;
}
.login_copy p
{
  color: #000;
  font-size: 15px;
}



.left_pannel {
  display: block;
  float: left;
  width: 240px;
  background: #000;
  min-height: 100vh;
  transition: all .3s;
  transition-timing-function: ease-out;
  position: fixed;
}

.right_pannel {
  display: block;
  float: right;
  width: calc(100% - 240px);
  min-height: 100vh;
  position: relative;
  transition: all .3s;
  transition-timing-function: ease-out;
}

.right_pannel.active2 {
  width: 100%;
}

.left_pannel .inside {
  display: block;
  float: left;
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  left: 0;
  top: 0;

}

.left_pannel .inside::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px #a45a7b;
  background-color: #a45a7b;
}

.left_pannel .inside::-webkit-scrollbar {
  width: 5px;
  background-color: #CB2D74;
}

.left_pannel .inside::-webkit-scrollbar-thumb {
  background-color: #CB2D74;
}

.left_pannel .logo {
  display: flex;
  float: left;
  width: 100%;
  padding: 0 20px;
  height: 54px;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
}

.left_pannel .logo img {
  width: 100%;
  max-width: 180px;
}

.left_pannel .menu_area {
  display: block;
  float: left;
  width: 100%;
  padding: 10px 0;
  overflow-y: auto;
  height: calc(100% - 60px);
}

.left_pannel .nav-link {
  padding: 12px 15px;
  display: inline-block;
  width: 100%;
  color: #fefefe;
  border-radius: 0;
  margin: 5px 0;
  cursor: pointer;
}

.left_pannel .nav-link:hover {
  background: #CB2D74;
  color: #fff;
}

.left_pannel .nav-link i {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  object-fit: contain;
  object-position: left;
}

.left_pannel .active {
  background: #CB2D74;
  color: #fff;
}

.left_pannel .nav-link img {
  width: 20px;
  margin-right: 8px;
}

.left_pannel.active {
  margin-left: -240px;
}

.dropdown-menu {
  width: 100%;
  background: #151616;
  border-radius: 0;
  color: #fff;
}

.dropdown-item {
  color: #fff !important;
  font-size: 14px;
  padding: 10px 15px;
}

.dropdown-item i {
  margin-right: 10px;
}

.dropdown-item:hover {
  background: #CB2D74;
  color: #fff;
}

.right_top_header {
  display: flex;
  float: left;
  width: 100%;
  height: 54px;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  padding: 0 15px;
  z-index: 3;
}

.right_top_header .menu {
  display: block;
  float: left;
  cursor: pointer;
}

.right_top_header .header_right {
  display: flex;
  width: auto;
  align-items: center;
}

.top_header_profile {
  display: flex;
  vertical-align: top;
  width: auto;
  position: relative;
  align-items: center;
  cursor: pointer;
}

.top_header_profile p {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}

.top_header_profile .drop {
  display: none;
  float: left;
  width: 170px;
  position: absolute;
  right: 0;
  top: 34px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.top_header_profile:hover .drop {
  display: block;
}

.top_header_profile .drop ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.top_header_profile .drop ul i {
  margin-right: 5px;
}

.top_header_profile .drop ul li a {
  color: #000;
  padding: 5px;
  display: inline-block;
  vertical-align: top;
}

.top_header_profile .drop ul li a:hover {
  color: #CB2D74;
}

.notification_section {
  display: flex;
  width: 36px;
  height: 36px;
  position: relative;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background: #CB2D74;
  margin-right: 10px;
}

.notification_section img {
  height: 15px;
}

.notification_section span {
  position: absolute;
  top: -4px;
  right: -5px;
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #000;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.right_pannel .body {
  display: block;
  float: left;
  width: 100%;
  padding: 20px 20px 20px 20px;
  position: relative;
}

.profile_img2 {
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  overflow: hidden;
  background: #CB2D74;
  text-align: center;
  line-height: 34px;
  color: #fff;
  margin-right: 5px;
}

.profile_img2 p {
  margin: 0;
  font-size: 12px;
  width: 100%;
  height: 100%;
  color: #fff;
}

.profile_img2 img {
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page_main_heading {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.page_main_heading h2 {
  font-size: 18px;
  font-weight: 500;
}

.table_area {
  display: block;
  float: left;
  width: 100%;
}

.table_area .table_header {
  display: flex;
  flex-wrap: nowrap;
  float: left;
  width: 100%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  background: #CB2D74;
  border-radius: 4px;
}

.table_area .table_header>div {
  padding: 0 5px;
}

.table_area .table_body {
  display: flex;
  flex-wrap: nowrap;
  float: left;
  width: 100%;
  padding: 10px 10px;
  color: #000;
  font-size: 12px;
  align-items: center;
  transition: all .5s;
  transition-timing-function: ease-out;
  text-align: center;
  min-height: 56px;
  background: #fff;
  margin-top: 10px;
  border-radius: 4px;
}

.table_area .table_body p {
  color: #000;
}

.table_area .table_body>div {
  padding: 0 5px;
}

.table_area .table_body .mobile_heading {
  display: none;
  color: #809FB8;
  margin-right: 10px;
}

.enable_disable {
  display: inline-block;
}

.form-check {
  min-height: auto;
  margin-bottom: 0;
}

.enable_disable .form-check-input {
  background-color: #E3000B;
  background-image: url(../images/switch_white_round.svg) !important;
}

.user_block .form-check-input:checked {
  background-color: #E3000B !important;
  border-color: #E3000B !important;
}

.user_block {
  display: inline-block;
}

.user_block .form-check-input {
  background-color: #06ac00;
  background-image: url(../images/switch_white_round.svg) !important;
}


.form-switch .form-check-input {
  width: 30px;
}

.number {
  display: inline-block;
  vertical-align: top;
  background: rgba(33, 126, 253, 0.30);
  color: #217EFD !important;
  padding: 5px 8px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 10px;
}

.del {
  color: #CB2D74;
  background: #FFEBEC;
  border-radius: 5px;
  cursor: pointer;
  transition: all .5s;
  transition-timing-function: ease-out;
  width: 34px;
  height: 34px;
  display: inline-block;
  line-height: 34px;
  text-align: center;
}

.del:hover {
  color: #FFEBEC;
  background: #CB2D74;
}


.viewpop {
  color: #CB2D74;
  background: #FFEBEC;
  border-radius: 5px;
  cursor: pointer;
  transition: all .5s;
  transition-timing-function: ease-out;
  width: 34px;
  height: 34px;
  display: inline-block;
  line-height: 34px;
  text-align: center;
}

.viewpop:hover {
  color: #FFEBEC;
  background: #CB2D74;
}

.view {
  color: #6A798A;
  background: #D1DADB;
  border-radius: 5px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: inline-block;
  line-height: 34px;
}

.view:hover {
  color: #D1DADB;
  background: #6A798A;
}

.edit {
  color: rgba(70, 154, 73, 1);
  background: #deffdf;
  border-radius: 5px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: inline-block;
  line-height: 34px;
}

.edit:hover {
  color: #FFEBEC;
  background: rgba(70, 154, 73, 1);
}

.left_pannel .dropdown-menu
{
  padding: 0;
}
.card {
  display: block;
  float: left;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.feed_boxes
{
  display: block;
  float: left;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  padding: 10px;
}
.feed_boxes::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px #a45a7b;
  background-color: #a45a7b;
}

.feed_boxes::-webkit-scrollbar {
  width: 5px;
  background-color: #CB2D74;
}

.feed_boxes::-webkit-scrollbar-thumb {
  background-color: #CB2D74;
}



.feed_box1
{
  display: flex;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
.feed_box1 .left
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  float: left;
  width: 100%;
  border-radius: 10px;
  background: #FBFDFF;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  padding: 12px 15px;
  margin-right: 12px;
}
.feed_box1 .left p
{
  font-size: 14px;
  margin-right: 10px;
  word-break: break-all;
}
.feed_box1 .right
{
  display: flex;
  float: left;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  height: 54px;
  flex: 0 0 58px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.modal-header
{
  background: #CB2D74;
  color: #fff;
  padding: 6px 15px;
}
.modal-title
{
  font-size: 18px;
}
.btn-close
{
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 100%;
  background-size: 12px;
  opacity: 1;
}

.modal_top_text {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  text-align: center;
}
.modal_but_area {
display: inline-block;
vertical-align: top;
width: 100%;
text-align: center;
margin-top: 20px;
}

.but_style1 {
display: inline-block;
vertical-align: top;
padding: 8px 30px;
border-radius: 6px;
background: #CB2D74;
border: 1px solid #CB2D74;
color: #fff !important;
font-size: 13px !important;
transition: all .5s;
transition-timing-function: ease-out;
}
.but_style1:hover {
background: #333333;
}
.but_style1_line {
display: inline-block;
vertical-align: top;
padding: 8px 30px;
background: none;
border-radius: 6px;
border: 1px solid #CB2D74;
color: #CB2D74 !important;
font-size: 13px !important;
transition: all .5s;
transition-timing-function: ease-out;
}
.but_style1_line:hover {
background: #333333;
color: #fff !important;
}
.feed_add_bottom_section
{
  display: flex;
  float: left;
  width: 100%;
  border-top: 1px solid #b6b6b6;
  margin-top: 0;
  padding-top: 15px;
  padding: 15px 10px 0 10px;
}
.feed_add_bottom_section .form-control
{
  padding: 8px 0;
  border: none;
}
.feed_add_bottom_section .form-control:focus
{
  outline-style: none;
  box-shadow: none;
}
.feed_add_bottom_section .but_style1
{
  flex: 0 0 100px;
}

.setting_bottom_section
{
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-top: 0;
  padding-top: 15px;
  padding: 15px 10px 0 10px;
}
.setting_bottom_section .form-label
{
  color: #CB2D74;
  font-weight: 700;
}
.upload_section p
{
  color: #000;
}
.upload_section p i
{
  color: #CB2D74;
}

.add_place_upload_img_area_upload {
  display: block;
  float: left;
  width: 240px;
  height: 170px;
  position: relative;
  margin-top: 15px;
}
.add_place_upload_img_area_upload .img_area {
  display: block;
  float: left;
  width: 100%;
  height: 170px;
  position: relative;
  z-index: 1;
}
.add_place_upload_img_area_upload .img_area img {
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.add_place_upload_img_area_upload .upload-btn-wrapper
{
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
}
.add_place_upload_img_area_upload .upload-btn-wrapper .btn

{
  display: flex;
  width: 30px;
  height: 30px;
  background: #CB2D74;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}
.user_details_main_section
{
    display: flex;
    float: left;
    width: 100%;
    padding: 25px;
}
.user_details_main_section img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
  border: 5px solid #C0DAFF;
  background: #fff;
  flex: 100px 0 0;
}
.user_details_main_section .text_area
{
  display: block;
  float: left;
  width: 100%;
  margin-left: 15px;
}
.user_details_main_section .text_area p {
  text-align: left;
  padding: 12px 12px;
  position: relative;
  color: #000;
}
.user_details_main_section .text_area p:nth-child(odd) {
  background: rgba(171, 198, 220, 0.2);
}

.notification_box1
{
    display: block;
    float: left;
    width: 100%;
    border: 1px solid #E4E4E4;
    padding: 15px;
    border-radius: 10px;
    margin-top: 25px;
}
.notification_box1 .top_date
{
    display: flex;
    flex-wrap: wrap;
    float: left;
    width: 100%;
    justify-content: flex-end;
}
.notification_box1 .top_date p
{
    color: #CB2D74;
    font-weight: 600;
    margin-left: 20px;
    font-size: 15px;
}
.notification_box1 .mid_area
{
    display: flex;
    float: left;
    width: 100%;
}
.notification_box1 .mid_area .img
{
    display: block;
    float: left;
    height: 54px;
    flex: 54px 0 0;
    border-radius: 100%;
    overflow: hidden;
}
.notification_box1 .mid_area .img img
{
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.notification_box1 .mid_area .text
{
    display: block;
    float: left;
    width: 100%;
    padding-left: 12px;
}
.notification_box1 .mid_area .text h2
{
    font-size: 17px;
    color: #000;
    margin-top: 6px;
}



.profile_right_box1
{
    display: block;
    float: left;
    width: 100%;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    padding: 20px;
}
.profile_right_box1 .top_profile
{
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
}
.profile_right_box1 .top_profile img
{
    width: 120px;
    height: 120px;
    border-radius: 100%;
    border: 2px solid #CB2D74;
}
.profile_right_box1 .top_profile .upload_section
{
    display: block;
    float: left;
    width: 100%;
    margin-left: 15px;
}
.profile_right_box1 .top_profile .upload_section p
{
    color: #8E8E8E;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .upload-btn {
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    background: #CB2D74;
    border: none;
    cursor: pointer;
  }
  .upload-btn i
  {
    margin-right: 5px;
    cursor: pointer;
  }
  
  .upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
  }
  .profile_right_box1 .mid
{
    display: block;
    float: left;
    width: 100%;
}
.form-label
{
    font-size: 14px;
}
.change_password a
{
    font-weight: bold;
    text-decoration: underline;
}
.change_password a:hover
{
    text-decoration: none;
}


.card_search_pannel
{
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  margin: 15px 0 0 0;
  justify-content: space-between;
  align-items: center;
}
.password-container {
  position: relative;
}

.password-input-container {
  position: relative;
}

.password_eye {
  position: absolute;
  right: 5px;
  top: 35%;
  transform: translateY(-40%);
  cursor: pointer;
  z-index: 100;
}



.modal-content-container::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px #a45a7b;
  background-color: #a45a7b;
}

.modal-content-container::-webkit-scrollbar {
  width: 5px;
  background-color: #CB2D74;
}

.modal-content-container::-webkit-scrollbar-thumb {
  background-color: #CB2D74;
}
.description
{
  word-wrap: break-word;
}
.table_body_main
{
  display: block;
  float: left;
  width: 100%;
  max-height: 500px;
  overflow-y: auto;
}
.table_body_main::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px #a45a7b;
  background-color: #a45a7b;
}

.table_body_main::-webkit-scrollbar {
  width: 5px;
  background-color: #CB2D74;
}

.table_body_main::-webkit-scrollbar-thumb {
  background-color: #CB2D74;
}
