:focus {
  outline: none;
}

input[type="text"],input[type="password"] {
  color: #333;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
}

.input-effect {
  float: left;
  position: relative;
  width: 100%;
  min-height: 60px;
}

.effect {
  border: 0;
  padding: 4px 0;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
  width: 100%;
}

.effect~.focus-border {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #4caf50;
  transition: 0.4s;
}

.effect:focus~.focus-border,
.has-val.effect~.focus-border {
  width: 100%;
  transition: 0.4s;
  left: 0;
}

.effect~label {
  position: absolute;
  left: 0;
  width: 100%;
  top: 9px;
  color: #000;
  transition: 0.3s;
  z-index: -1;
  letter-spacing: 0.5px;
  font-weight: normal;
}

.effect:focus~label,
.has-val.effect~label,.effect:valid~label {
  top: -16px;
  font-size: 13px;
  color: #4caf50;
  transition: 0.3s;
}

/*Select Start*/
.select {
  position: relative;
  width: 100%;
  min-height: 60px;
  max-height: 200px;
}

.select-text {
  position: relative;
  font-family: inherit;
  background-color: transparent;
  width: 100%;
  padding: 4px 10px 4px 4px;
  font-size: 15px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ccc;
}

.select-text::-webkit-scrollbar {
  background: #ccc;
  width: 5px;
}

.select-text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.select-text::-webkit-scrollbar-thumb:hover {
  background-color: #22c2f1;
  background-color: var(--side-li-color);
}

.select-text::-webkit-scrollbar-thumb {
  background-color: #777;
}

/* Remove focus */
.select-text:focus {
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

/* Use custom arrow */
.select,
.select .select-text {
  appearance: none;
  -webkit-appearance: none
}

select::-ms-expand {
  display: none;
}

.select:after {
  position: absolute;
  top: 10px;
  right: 10px;
  /* Styling the down arrow */
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.12);
  pointer-events: none;
}


/* LABEL ======================================= */
.select-label {
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 6px;
  transition: 0.2s ease all;
  margin-bottom: 0px;
}

/* active state */
.select-text:focus~.select-label,
.select-text:valid~.select-label {
  color: #4caf50;
  top: -16px;
  transition: 0.2s ease all;
  font-size: 14px;
}

/* BOTTOM BARS ================================= */
.select-bar {
  position: relative;
  display: block;
  width: 100%;
}

.select-bar:before,
.select-bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #4caf50;
  transition: 0.2s ease all;
}

.select-bar:before {
  left: 50%;
}

.select-bar:after {
  right: 50%;
}

/* active state */
.select-text:focus~.select-bar:before,
.select-text:focus~.select-bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/*Select End*/
/*Textarea Start*/
.form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
  margin-bottom: 40px;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d2d2d2;
  outline: 0;
  font-size: 16px;
  color: #212121;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
  resize: none;
  overflow-y: auto;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:placeholder-shown~.form__label {
  font-size: 13px;
  cursor: text;
  /* top: 20px; */
  font-weight: normal;
}

.form__group label,
.form__field:focus~.form__label,.has-val.form__field~label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 12px;
  color: #000;
}

.form__field:focus~.form__label,.has-val.form__field~label {
  color: #4caf50;
}

.form__field:focus {
  padding-bottom: 6px;
  border-bottom: 1.5px solid #4caf50;
}

/*Textarea End*/
/*Checkbox & Radio Start*/
.checkbox .form-help,
.form-radio .form-help,
.form-group .form-help {
  position: absolute;
  width: 100%;
}

.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}

.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}

.checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 1.6rem;
  text-align: left;
  color: #333;
  display: block;
}

.checkbox input,
.form-radio input {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
}

.radio {
  margin-bottom: 1rem;
}

.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #999;
}

.radio .helper::before,
.radio .helper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}

.radio .helper::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #337ab7;
  border-color: #337ab7;
}

.radio label:hover .helper {
  color: #337ab7;
}

.radio input:checked~.helper::after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.radio input:checked~.helper::before {
  color: #337ab7;
}

.checkbox {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  -webkit-transition: border-color 0.28s ease;
  transition: border-color 0.28s ease;
}

.checkbox .helper::before,
.checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #337ab7;
  display: block;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: '';
  -webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}

.checkbox .helper::before {
  top: 0.9rem;
  left: 0.45rem;
  -webkit-transform: rotate(-140deg);
  transform: rotate(-140deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}

.checkbox .helper::after {
  top: 0.5rem;
  left: -0.02rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox label:hover .helper {
  color: #337ab7;
}

.checkbox input:checked~.helper {
  color: #337ab7;
}

.checkbox input:checked~.helper::after,
.checkbox input:checked~.helper::before {
  opacity: 1;
  -webkit-transition: height 0.28s ease;
  transition: height 0.28s ease;
}

.checkbox input:checked~.helper::after {
  height: 0.5rem;
}

.checkbox input:checked~.helper::before {
  height: 1.0rem;
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}

.radio+.radio,
.checkbox+.checkbox {
  margin-top: 1rem;
}

/*Checkbox & Radio End*/
/* Ripple effect */
.ripple {
  border: none;
  border-radius: 2px;
  padding: 6px 18px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
  background-color: #2196f3;
  box-shadow: 0 0 4px #999;
  outline: none;
  background-position: center;
  transition: background 0.8s;
  min-width: 100px;
  margin: 15px 15px;
}

.ripple:hover {
  background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
}

.ripple:active {
  background-color: #6eb9f7;
  background-size: 100%;
  transition: background 0s;
}

.cancel {
  background-color: #ff3500;
}

.cancel:hover {
  background: #fc5f36 radial-gradient(circle, transparent 1%, #fc5f36 1%) center/15000%;
}

.cancel:active {
  background-color: #f87f5f;
  background-size: 100%;
  transition: background 0s;
}

.upload_btn {
  background-color: #ffb700;
}

.upload_btn:hover {
  background: #ffc533 radial-gradient(circle, transparent 1%, #ffc533 1%) center/15000%;
}

.upload_btn:active {
  background-color: #ffe9b2;
  background-size: 100%;
  transition: background 0s;
}

/*Image Upload Start*/
.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 15px auto;
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
  content: "\f030";
  font-family: 'Font Awesome 5 Free';
  color: #757575;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-style: normal;
  font-weight: 900;
  margin: auto;
}

.avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  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%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*Image Upload End*/
/*Calender Start*/
.calender_wrapper {
  box-shadow: 0px 4px 10px -1px rgba(0, 0, 0, 0.35);
}

.calender_wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0px;
}

.calender_wrapper > ul > li {
  text-align: center;
  margin: 4px 4px;
  width: 19.25%;
  height: 80px;
  position: relative;
  background: #fbfbfb;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 10px -5px rgba(0,0,0,0.5);
}
/*Events Start*/
.event_wrapper > ul > li {
  height: 180px;
}
.event_wrapper > ul > li .day {
  text-align: right;
  display: block;
  padding-right: 10px;
}
.event_wrapper > ul > li > div.date{
  top: 9% !important;
  left: 48%;
}
.event_wrapper > ul > li > div.date .mt {
top: -9px !important;
}
.event_wrapper > ul > li > div.date .year {
bottom: -22px !important;
}
.event_wrapper .events{
  position: absolute;
  bottom: 0;
  transform: none;
  left: 0;
  top: auto;
  text-align: left;
  padding: 4px;
  width: 100%;
  overflow-y: auto;
  max-height: 134px;
}
.event_wrapper .events ul li {
  background: #6c2be2;
  border-radius: 4px 10px 10px 4px;
    color: #fff;
    padding: 3px 20px 3px 4px;
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 2px;
}
.event_wrapper .events ul li span {
  position: absolute;
    background-color: #fff;
    border: 1px solid #6c2be2;
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50%;
    color: #6c2be2;
    text-align: center;
    top: 1px;
    padding: 1px;
    right: 0px;
}
.event_wrapper > ul > li.active div.date:before {
  top: -22px !important;
}
/*Events End*/
.calender_wrapper > ul > li:hover {
  cursor: pointer;
}

.calender_wrapper > ul > li .day {
  font-size: 85%;
}
.calender_wrapper > ul > li.active div.date:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f274";
  position: absolute;
  left: 5px;
  top: -38px;
}
.calender_wrapper > ul > li.active {
  background: #2196f3;
  color: #fff;
  box-shadow: 5px 5px 10px -5px rgb(6 168 244 / 50%);
}
.calender_wrapper > ul > li > div.date {
  position: absolute;
  top: 55%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  line-height: 14px;
}
.calender_wrapper > ul > li > div.date .dt{
  position: inherit;
  font-size: 2.8rem;
  left: 60px;
}
.calender_wrapper > ul > li > div.date .mt {
  position: inherit;
    top: -12px;
    font-size: 1.35rem;
    width: 60px;
    text-align: left;
    left: 100px;
}
.calender_wrapper > ul > li >div.date .year {
  position: inherit;
    bottom: -24px;
    font-size: 1.65rem;
    width: 60px;
    left: 100px;
    text-align: left;
}
/*Calender End*/
/*sign upload start*/
.sign-upload {
  position: relative;
  max-width: 300px;
  margin: 15px auto;
}
.sign-upload .sign-edit {
  position: absolute;
  right: -14px;
  z-index: 1;
  top: -12px;
}
.sign-upload .sign-edit input {
  display: none;
}
.sign_preview {
  width: 300px;
  height: 70px;
  border-radius: 4%;
  position: relative;
  border: 4px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.sign-upload .sign_preview > div {
  width: 100%;
  height: 100%;
  border-radius: 4%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  }
.sign-upload .sign-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.sign-upload .sign-edit input + label:after {
  content: "\f030";
  font-family: 'Font Awesome 5 Free';
  color: #757575;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-style: normal;
  font-weight: 900;
  margin: auto;
}
/*Sign upload end*/

.switch_wrapper {
position:relative;
}
.switch_wrapper .switch_name {
position: absolute;
left: 55px;
top: 3px;
}
.switch {
position: relative;
display: inline-block;
width: 50px;
height: 25px;
}

.switch input { 
opacity: 0;
width: 0;
height: 0;
}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}

.slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 2px;
bottom: 3px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}

input:checked + .slider {
background-color: #06ea2c;
}

input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
border-radius: 34px;
}

.slider.round:before {
border-radius: 50%;
}

/*Multi select Start*/
.multi_select {
width:100%;
}
.multi_select.open .dropdown-toggle {
box-shadow: none;
}
.multi_select .btn {
box-shadow: none;
background: transparent;
border-bottom: 1px solid #cccc;
border-radius: 0px; 
width: 100%;
text-align: left;
}
.multi_select:after {
position: absolute;
top: 12px;
right: 10px;
width: 0;
height: 0;
padding: 0;
content: '';
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid rgba(0, 0, 0, 0.12);
pointer-events: none;
}
.multi_focus {
position: absolute;
bottom: -2px;
left: 50%;
width: 0;
height: 2px;
background-color: #4caf50;
transition: 0.4s;
}
.multi_select .btn:focus ~ .multi_focus {
width: 100%;
transition: 0.4s;
left: 0;
}
.multi_select .dropdown-menu {
width: 100%;
}
/*Multi select End*/
/*Table Start*/
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
  content: "-";
  background-color: #d33333;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
  top: 33%;
  left: 5px;
  height: 1em;
  width: 1em;
  margin-top: -5px;
  display: block;
  position: absolute;
  color: white;
  border: .15em solid white;
  border-radius: 1em;
  box-shadow: 0 0 0.2em #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: "Courier New",Courier,monospace;
  line-height: 1em;
  content: "+";
  background-color: #31b131;
}
table.dataTable>tbody>tr.child ul.dtr-details {
  width: 100%;
}
.summery_report {
  padding: 0px 9px;
  border-radius: 5px;
  position: relative;
}
.summery_report table {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.summery_report table tbody tr {
  box-shadow: 0px 5px 7px -5px rgba(0,0,0,0.75);
}
.summery_report table tbody tr td {
  border: none;
  background-color: #fff;
}
.summery_report table tbody tr td:first-child {
  border-radius: 5px 0px 0px 5px;;
}
.summery_report table tbody tr td:last-child {
  border-radius: 0px 5px 5px 0px;;
}
.table_wrapper {
  margin: 15px 0px;
}
.table_wrapper:before,.table_wrapper:after {
  display: table;
  content: " ";
}
.table_wrapper .table {
  font-size: 0.85rem;
}
.table_wrapper .dataTables_length,.table_wrapper .dataTables_info {
  padding-left: 15px;
}
.table_wrapper .dataTables_filter,.table_wrapper .dataTables_paginate {
  padding-right: 15px;
}
.table_wrapper .table thead tr th {
  background:#4a5863;
  color: #fff;
  vertical-align: top;
}
.table_wrapper .table tbody tr td {
  padding: 0.5rem;
}
.table_wrapper .table tbody tr td a i.fa-edit {
  color: #22e316;
  transition: all 0.3s ease;
}
.table_wrapper .table tbody tr td a i.fa-edit:hover {
  color: #0cba0a;
}
.bg-table {
  background-color: #e5ffc9ad !important;
}
/*Table End*/
/*File Upload Start*/
.filelabel {
  min-width: 120px;
  border: 2px dashed grey;
  border-radius: 5px;
  display: block;
  padding: 5px;
  transition: border 300ms ease;
  cursor: pointer;
  text-align: center;
  margin: 0;
}
.filelabel i {
  display: block;
  font-size: 30px;
  padding-bottom: 5px;
}
.filelabel i,
.filelabel .title {
color: grey;
transition: 200ms color;
}
.filelabel:hover {
border: 2px solid #1665c4;
}
.filelabel:hover i,
.filelabel:hover .title {
color: #1665c4;
}
.FileInput {
  display: none;
}
#FileInput{
  display:none;
}
.post_content {
  background-color: #fafafa;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}
/*File Upload End*/