/*
Template Name: Sironam.com
Template URI: 
Author: 
Author URI: 
Description: 
Version: 1.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------*/
html {
  font-size: 56%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 52.5%;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 58.5%;
  }
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}

body {
  background: #d3dab8;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.875;
  position: relative;
  z-index: 1;
}
body::before {
  content: "";
  position: fixed;
  background: url(../images/gradient-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  inset: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------------
    [ ## Others Typography ]
---------------------------------------------------*/
p {
  font-size: 1.6rem;
  line-height: 1.875;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.dropcap {
  display: block;
  float: left;
  margin: 15px 5px 0 0;
  font-weight: bold;
  font-size: 60px;
  color: #ccc;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.select2-results__option {
  font-size: 1.4rem;
}

.pe-cursor {
  cursor: pointer;
}

/*-------------------------------------------------
    [ ## Heading ]
---------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

/**
 * Hide text while making it readable for screen readers
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 */
.figure {
  display: block;
}

.input-group.mb-3.loading {
  position: relative;
  pointer-events: none;
}

.input-group.mb-3.loading:before {
  position: absolute;
  content: "\f3f4";
  left: 15px;
  top: 7px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  color: red;
  z-index: 99;
  text-align: center;
  font-size: 24px;
  line-height: normal;
}

.input-group.mb-3.loading:before {
  animation: spin 1500ms linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-green {
  font-size: 1.4rem;
  border: 0;
  color: #ffffff;
  line-height: normal;
  padding: 1.5rem 3rem;
  background-color: #00B260;
  border-radius: 0.4rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-green:hover {
  background-color: #009952;
  color: #ffffff;
}

.btn-blue {
  font-size: 1.4rem;
  border: 0;
  color: #ffffff;
  line-height: normal;
  padding: 1.5rem 3rem;
  background-color: #3858E9;
  border-radius: 0.4rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-blue:hover {
  background-color: #2145e6;
}

.btn-theme-sm {
  font-size: 1.4rem;
  border: 0;
  color: #ffffff;
  line-height: normal;
  padding: 0.8rem 1.2rem;
  background-color: #F9020B;
  border-radius: 0.4rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-theme-sm:hover {
  color: #ffffff;
}

.btn-dark-outline-sm {
  font-size: 1.4rem;
  border: 0;
  color: #000000;
  line-height: normal;
  padding: 0.7rem 1rem;
  border: 0.1rem solid #000000;
  border-radius: 0.4rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-dark-outline-sm:hover {
  color: #ffffff;
  background-color: #F9020B;
  border-color: #F9020B;
}

.floating_button {
  z-index: 99999999;
}
.floating_button a {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  background: #f00;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 576px) {
  .floating_button a {
    font-size: 2rem;
    bottom: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .floating_button a {
    font-size: 2.4rem;
    width: 6rem;
    height: 6rem;
  }
}

.switcher {
  width: 8rem;
}
.switcher label {
  width: 5.2rem;
  height: 2.6rem;
  background-color: #B7B7B7;
  border-radius: 4rem;
  position: relative;
  display: block;
  cursor: pointer;
}
.switcher label::before {
  content: "";
  position: absolute;
  right: 0;
  height: 2.2rem;
  width: 2.2rem;
  background-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  transform: translateX(-2.8rem) translateY(-50%);
  transition: all 0.2s;
}
.switcher input {
  display: none;
}
.switcher input:checked ~ label {
  background-color: #009BDA;
}
.switcher input:checked ~ label::before {
  transform: translateX(-0.2rem) translateY(-50%);
}

a {
  color: inherit;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:hover, a:active {
  outline: 0;
  text-decoration: none;
}

/*-------------------------------------------------
    [ ## Fields ]
---------------------------------------------------*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus {
  outline: none;
  box-shadow: none;
}

input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=date] {
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #000000 inset;
  -webkit-box-shadow: 0 0 0px 1000px #000000 inset;
  -webkit-text-fill-color: #000000 !important;
}

input:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px #000000 inset;
  -webkit-box-shadow: 0 0 0px 1000px #000000 inset;
  -webkit-text-fill-color: #000000 !important;
}

textarea.form-control {
  display: block;
  width: 100%;
  display: block;
  font-size: 1.6rem;
}
textarea.form-control:focus {
  outline: none;
  box-shadow: none;
}

input.form-control,
select.form-control {
  box-shadow: none;
  font-size: 1.4rem;
  outline: none;
  height: 5rem;
  border: 0.1rem solid #F0F1F3;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}
input.form-control:focus,
select.form-control:focus {
  box-shadow: none;
  border-color: #000000;
}

textarea.form-control:focus {
  box-shadow: none;
  border-color: #000000;
}

.form-floating > .form-control {
  border: none;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: none;
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.5) inset !important;
}

::-webkit-input-placeholder {
  color: #000000;
}

.widget_newsletter::-webkit-input-placeholder {
  color: #808080;
}

:-moz-placeholder {
  color: #000000;
  opacity: 1;
}

::-moz-placeholder {
  color: #000000;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #000000;
}

.form-check {
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  align-items: center;
}
.form-check label {
  position: relative;
  padding-left: 2.2rem;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}
.form-check label::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.3rem;
  border: 0.1rem solid #707070;
  transition: all 0.1s;
}
.form-check label::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.3rem;
  width: 1rem;
  height: 0.45rem;
  border: 0.15rem solid #ffffff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transition: all 0.1s;
  opacity: 0;
  visibility: hidden;
}
.form-check input {
  display: none;
}
.form-check input:checked + label::before {
  background-color: #707070;
}
.form-check input:checked + label::after {
  opacity: 1;
  visibility: visible;
}

.select2-container .select2-selection--multiple {
  padding-left: 0.8rem;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}
.select2-container .select2-selection--multiple .select2-selection__choice__remove {
  width: 20px;
  bottom: 0;
  text-align: center;
  color: #F9020B;
  font-weight: 400;
  font-size: 1.4rem;
  border-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.pagination {
  margin-top: 4rem;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
ul.pagination .page-link {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  border: 0;
  color: #000000;
  border-radius: 0.4rem;
  box-shadow: none;
  transition: all 0.05s ease;
}
ul.pagination .page-link:hover {
  background-color: #F9020B;
  color: #ffffff;
}
ul.pagination .page-item.active .page-link {
  background-color: #F9020B;
}

.modal {
  z-index: 999999;
}
.modal .modal-header {
  padding: 0;
  border: 0;
  height: 0;
  background-color: #ffffff;
}
.modal .modal-header .btn-close {
  opacity: 1;
  background-color: #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-size: 30%;
  margin: -2rem -3rem 0 auto;
  box-shadow: none;
  outline: none;
}
@media screen and (max-width: 575px) {
  .modal .modal-header .btn-close {
    margin: -5.2rem 0rem 0 auto;
  }
}
.modal .modal-content {
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.modal .modal-body {
  padding: 3rem;
}
@media screen and (max-width: 575px) {
  .modal .modal-body {
    padding: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .modal .modal-dialog {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .modal .modal-dialog {
    max-width: 600px;
  }
}
.modal .modal-dialog.modal-md {
  max-width: 700px;
}
@media screen and (min-width: 992px) {
  .modal .modal-dialog.modal-lg {
    max-width: 820px;
  }
}
@media screen and (min-width: 992px) {
  .modal .modal-dialog.modal-xl {
    max-width: 1024px;
  }
}
.modal.edit_news .news-information {
  content: "";
  display: table;
  margin-bottom: 1.8rem;
  width: 100%;
}
.modal.edit_news .news-thumbnail {
  float: left;
  margin-right: 2rem;
  border: 1px solid #F0F1F3;
}
.modal.edit_news .news-thumbnail img {
  max-width: 15rem;
}
.modal.edit_news .news_content {
  overflow: hidden;
  position: relative;
}
.modal.edit_news .news_content table {
  max-width: 80%;
}
.modal.edit_news .news_content table td {
  border: 0;
}
.modal.edit_news .news_content .edit_news {
  border: 1px solid #00B260;
  background-color: #ffffff;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  color: #00B260;
  transition: all 0.2s;
  position: absolute;
  top: 0;
  right: 0;
}
.modal.edit_news .news_content .edit_news:hover {
  background-color: #00B260;
  color: #ffffff;
}
.modal.edit_news .news_body {
  margin: 2rem 0;
}
.modal.edit_news .news_body p {
  font-size: 1.5rem;
  color: #707070;
}
.modal.edit_news .news_body p .para_title {
  user-select: none;
}
.modal.edit_news .news_body p + p {
  margin-top: 1rem;
}
.modal form .select2 {
  width: 100% !important;
}
.modal form .select2 .select2-selection--single {
  height: inherit;
  border: 0;
  background: #F8F9FB;
}
.modal form .select2 .select2-selection--single .select2-selection__rendered {
  font-size: 1.4rem;
  padding: 2px 12px;
}
@media screen and (min-width: 1200px) {
  .modal form .select2 .select2-selection--single .select2-selection__rendered {
    padding: 8px 12px;
  }
}
.modal form .select2 .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.modal form .btn-blue {
  font-size: 1.3rem;
  height: 4.15rem;
  padding: 0 3rem;
}
@media screen and (min-width: 1200px) {
  .modal form .btn-blue {
    height: 5rem;
  }
}
@media screen and (min-width: 1400px) {
  .modal form .btn-blue {
    height: 4.6rem;
  }
}
@media screen and (min-width: 768px) {
  .modal.edit_user .modal-dialog {
    max-width: 500px;
  }
}
.modal.edit_user .user_information .thumbnail {
  width: 15rem;
  height: 15rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  float: left;
  margin-right: 2rem;
}
.modal.edit_user .user_information .text-info {
  overflow: hidden;
}
.modal.edit_user .user_information .text-info table td {
  border: 0;
  font-size: 1.4rem;
}
.modal.edit_user form h4 {
  font-size: 1.4rem;
}
.modal.edit_user form select {
  font-size: 1.4rem;
  height: 4rem;
}
.modal.publish_news_modal .modal-header {
  height: inherit;
  padding: 1rem 3rem;
  border-bottom: 0.1rem solid #e2e2e2;
  position: relative;
}
.modal.publish_news_modal .modal-header .btn-close {
  margin: 0rem -1rem 0 auto;
}
.modal.publish_news_modal .modal-body {
  background-color: #F0F1F3;
}
.modal.publish_news_modal .field {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
}
.modal.publish_news_modal .field .label {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.modal.publish_news_modal .field p {
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #555555;
  line-height: 1.5;
}
.modal.publish_news_modal .field img.src-vendor {
  width: 12rem;
}
.modal.publish_news_modal .modal-footer {
  background-color: white;
  padding: 1.5rem 3rem;
}
.modal.publish_news_modal .modal-footer .button-groups {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal.publish_news_modal .modal-footer .form-control {
  max-width: 15rem;
  background-image: url(../images/down-arrow.png);
  background-size: 18px;
  background-position: 90% 50%;
  background-repeat: no-repeat;
}
.modal.news_log_modal .modal-header {
  height: inherit;
  padding: 1rem 3rem;
  border-bottom: 0.1rem solid #e2e2e2;
  position: relative;
}
.modal.news_log_modal .modal-header .btn-close {
  margin: 0rem -1rem 0 auto;
}
.modal.news_log_modal .activity_list {
  position: relative;
  z-index: 1;
}
.modal.news_log_modal .activity_list::before {
  content: "";
  position: absolute;
  left: 12rem;
  top: -2rem;
  bottom: 0;
  width: 0.1rem;
  background-color: #aaa;
  z-index: -4;
}
.modal.news_log_modal .activity_item {
  display: flex;
  gap: 2rem;
}
.modal.news_log_modal .activity_item .process_list {
  flex: 1;
}
.modal.news_log_modal .activity_item .date, .modal.news_log_modal .activity_item .stage {
  font-size: 1.4rem;
}
.modal.news_log_modal .activity_item .stage {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: -0.7rem;
}
.modal.news_log_modal .activity_item .icon {
  width: 4rem;
  height: 4rem;
  background: #ffffff;
  border: 0.1rem solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.8rem;
}
.modal.news_log_modal .activity_item .time_desc {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 5rem;
  font-size: 1.4rem;
}
.modal.news_log_modal .activity_item .time {
  position: relative;
  padding-left: 2rem;
}
.modal.news_log_modal .activity_item .time::before {
  content: "";
  position: absolute;
  left: -3rem;
  width: 3rem;
  top: 50%;
  transform: translateY(-50%);
  height: 0.1rem;
  background-color: #aaa;
}
.modal.news_log_modal .activity_item .time::after {
  content: "";
  position: absolute;
  left: 0rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 0.1rem solid #aaa;
}
.modal.news_log_modal .activity_item .desc {
  flex: 1;
  background-color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}
.modal.news_log_modal .activity_item + .activity_item {
  margin-top: 3rem;
}
.modal.media_information .modal-header {
  height: inherit;
  padding: 1rem 3rem;
  border-bottom: 0.1rem solid #e2e2e2;
  position: relative;
}
.modal.media_information .modal-header .btn-close {
  margin: 0rem -1rem 0 auto;
}
.modal.media_information .modal-body .media-item {
  border: 0.1rem solid #cdcdcd;
  border-radius: 1rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  min-height: 100%;
}
.modal.media_information .modal-body table th {
  font-size: 1.35rem;
  font-weight: 500;
  width: 10rem;
}
.modal.media_information .modal-body table td, .modal.media_information .modal-body table p {
  font-size: 1.35rem;
  word-break: break-all;
}
.modal.media_information .modal-body .media-alt-text {
  margin: 1rem 0;
}
.modal.media_information .modal-body .media-alt-text input {
  border: 0.1rem solid #ddd;
}
.modal.media_information .modal-body .media-alt-text button {
  border: 0;
  background: #00b260;
  color: #fff;
  height: inherit;
  padding: 0 1.6rem;
  font-size: 1.4rem;
}
.modal.media_information .modal-body .delete-media button {
  border: 0;
  padding: 0;
  line-height: normal;
  color: red;
  background-color: transparent;
  height: inherit;
}
.modal.create_new_board .modal-header {
  height: inherit;
  padding: 1.8rem 3rem;
  color: #6B7D94;
  border-bottom: 0.1rem solid #F0F2F4;
}
.modal.create_new_board .modal-header .btn-close {
  margin: 0;
}
.modal.create_new_board label {
  font-size: 1.4rem;
}
.modal.create_new_board .board_thumbnail_uploader {
  border: 0.1rem solid #cacbcd;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.modal.create_new_board .board_thumbnail_uploader p {
  font-size: 1.2rem;
}
.modal.create_new_board .board_thumbnail_uploader b {
  color: #2053D5;
}
.modal.create_new_board .board_thumbnail_uploader i {
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.create_new_board .modal-footer {
  padding: 0;
  margin-top: 2rem;
  border: 0;
}
.modal.create_new_board .modal-footer .btn-secondary {
  font-size: 1.4rem;
  border: 0;
  color: #000000;
  line-height: normal;
  padding: 0.8rem 1.2rem;
  background-color: #F0F2F4;
  border-radius: 0.4rem;
  transition: all 0.2s;
  display: inline-block;
}
.modal.create_new_board .select2-container--default .select2-selection--multiple {
  box-shadow: none;
  font-size: 1.6rem;
  outline: none;
  min-height: 5rem;
  border: 1px solid #F0F2F4;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.7);
}
.modal.create_new_board .select2-container--default .select2-selection--multiple:focus {
  box-shadow: none;
  border-color: #000000;
}
.modal.create_new_board .select2-container--default .select2-selection__rendered {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.modal.create_new_board .select2-container--default .select2-selection__rendered .select2-selection__choice {
  margin: 0;
}
.modal.create_new_board .select2-container--default .select2-selection__choice {
  background-color: #f8f8f8;
  border: 0.1rem solid #ccc;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  margin: 0.4rem 0.4rem 0 0;
  padding: 0 0.6rem 0 2.2rem;
  height: 2.4rem;
  line-height: 1.8;
  font-size: 1.3rem;
  position: relative;
}
.modal.create_new_board .select2-container--default .select2-selection__choice__remove {
  width: 2rem;
  bottom: 0;
  text-align: center;
  color: #F9020B;
  font-weight: 400;
  font-size: 1.4rem;
  border-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.update_post_modal {
  padding: 2rem !important;
}
.modal.update_post_modal .modal-dialog {
  max-width: 1400px;
}
.modal.update_post_modal .modal-header {
  height: inherit;
  padding: 1.8rem 3rem;
  color: #6B7D94;
  border-bottom: 0.1rem solid #F0F2F4;
}
.modal.update_post_modal .modal-header .btn-close {
  margin: 0;
}
.modal.update_post_modal .modal-footer {
  padding: 0;
  margin-top: 2rem;
  border: 0;
}
.modal.update_post_modal .modal-footer .btn-secondary {
  font-size: 1.4rem;
  border: 0;
  color: #000000;
  line-height: normal;
  padding: 0.8rem 1.2rem;
  background-color: #F0F2F4;
  border-radius: 0.4rem;
  transition: all 0.2s;
  display: inline-block;
}
.modal.update_post_modal .modal-footer > * {
  margin: 0;
}
.modal.update_post_modal .select2-container--default .select2-selection--multiple {
  box-shadow: none;
  font-size: 1.6rem;
  outline: none;
  min-height: 5rem;
  border: 1px solid #F0F1F3;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}
.modal.update_post_modal .select2-container--default .select2-selection--multiple:focus {
  box-shadow: none;
  border-color: #000000;
}
.modal.update_post_modal .select2-container--default .select2-selection__rendered {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.modal.update_post_modal .select2-container--default .select2-selection__rendered .select2-selection__choice {
  margin: 0;
}
.modal.update_post_modal label {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.modal.update_post_modal .form-control {
  background-color: #F8F9FB;
  border: 0;
  resize: none;
  font-size: 1.4rem;
  padding: 1rem;
}
.modal.update_post_modal .featured_imagePreview {
  position: relative;
  z-index: 1;
  border: 0.1rem dashed #000;
  padding: 1rem;
  border-radius: 0.4rem;
  overflow: hidden;
  margin: 1rem 0;
  background-color: rgba(255, 255, 255, 0.7);
  min-height: 8rem;
}
.modal.update_post_modal .featured_imagePreview label {
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.modal.update_post_modal .featured_imagePreview label::after {
  content: "Click to upload image.";
  color: #20a4f1;
  text-align: center;
  font-size: 1.2rem;
  padding: 0 1rem;
  line-height: 1.6;
}
.modal.update_post_modal .featured_imagePreview label::before {
  content: "\f0ee";
  font-family: "Font Awesome 5 Pro";
  font-size: 3rem;
  font-weight: 300;
}
.modal.update_post_modal .featured_imagePreview img {
  display: none;
}
.modal.update_post_modal .featured_imagePreview .remove_image {
  border: 0;
  padding: 0;
  transition: all 0.2s;
  display: none;
}
.modal.update_post_modal .featured_imagePreview.image_uploaded img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.modal.update_post_modal .featured_imagePreview.image_uploaded .remove_image {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  width: 3rem;
  height: 3rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal.update_post_modal .featured_imagePreview.image_uploaded label::before, .modal.update_post_modal .featured_imagePreview.image_uploaded label::after {
  display: none;
}
.modal.add_news_source .modal-header {
  height: inherit;
  padding: 1rem 3rem;
  border-bottom: 0.1rem solid #e2e2e2;
  position: relative;
}
.modal.add_news_source .modal-header .btn-close {
  margin: 0rem -1rem 0 auto;
}
.modal.add_news_source label {
  font-size: 1.4rem;
}
.modal.add_news_source .dropzone_wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .modal.add_news_source .dropzone_wrapper {
    align-items: center;
    flex-direction: column-reverse;
  }
}
.modal.add_news_source .dropzone_wrapper .image_wrap img {
  max-width: 6.5rem;
}
.modal.add_news_source .dropzone_wrapper .drop-input {
  flex: 1;
  background-color: #fff;
  border: 0.1rem solid #d0d7df;
  position: relative;
  z-index: 1;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 20rem;
  height: 10rem;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .modal.add_news_source .dropzone_wrapper .drop-input {
    min-width: 10rem;
  }
}
@media screen and (min-width: 1400px) {
  .modal.add_news_source .dropzone_wrapper .drop-input {
    font-size: 1.2rem;
  }
}
.modal.add_news_source .dropzone_wrapper .drop-input .fileInput {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.modal.add_news_source .dropzone_wrapper .remove_input {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background-color: #ffffff;
  color: #FF5757;
  border: 0.1rem solid #E2E8F0;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease;
  opacity: 0;
  z-index: 9;
  visibility: hidden;
}
.modal.add_news_source .dropzone_wrapper.image_placed span {
  display: none;
}
.modal.add_news_source .dropzone_wrapper.image_placed button {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  z-index: 99999;
}
.modal-backdrop + .select2-container {
  z-index: 999999;
}

.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  margin-top: 0;
}
.dataTables_wrapper .dataTables_filter input {
  background-color: #fff;
}
@media screen and (max-width: 575px) {
  .dataTables_wrapper .dataTables_filter input {
    width: 17rem;
  }
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.dataTables_wrapper .dataTables_length select, .dataTables_wrapper .dataTables_filter select {
  text-align: center;
  outline: none;
}
.dataTables_wrapper .dataTables_info {
  font-size: 1.4rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.dataTables_wrapper .dataTables_paginate span a.paginate_button {
  background-color: #ffffff;
  border: 0 !important;
  width: 4rem;
  height: 4rem;
  border-radius: 0.3rem;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
}
.dataTables_wrapper .dataTables_paginate span a.paginate_button.current, .dataTables_wrapper .dataTables_paginate span a.paginate_button:hover {
  background: #F9020B !important;
  color: #ffffff !important;
}
.dataTables_wrapper .dataTables_paginate span a.paginate_button:active {
  box-shadow: none;
}
.dataTables_wrapper #categoryTable th:nth-child(6),
.dataTables_wrapper #categoryTable th:nth-child(7), .dataTables_wrapper #subCategory th:nth-child(6),
.dataTables_wrapper #subCategory th:nth-child(7) {
  width: 20rem !important;
}

table.table {
  width: 100% !important;
  border: 0;
  background-color: rgba(255, 255, 255, 0.6);
}
table.table thead th {
  box-shadow: none;
  border: 0;
  padding-left: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000000;
  vertical-align: middle;
  padding: 2rem 2rem;
}
table.table thead th:last-child {
  text-align: center;
}
table.table tr.odd td {
  box-shadow: none;
}
table.table tr td {
  border: 0;
  padding: 1.8rem 1rem;
  padding-left: 2rem;
  font-size: 1.4rem;
  white-space: nowrap;
}
table.table .dropdown button {
  box-shadow: none;
}
table.table .dropdown button i {
  font-size: 2rem;
}
table.table .dropdown-menu {
  padding: 0.5rem 0;
  border: 0;
  min-width: 15rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
table.table .dropdown-menu a {
  display: block;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  line-height: normal;
  transition: all 0.2s;
}
table.table .dropdown-menu a i {
  margin-right: 0.5rem;
}
table.table .dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
table.table .dropdown-menu .btn-danger {
  width: 100%;
  display: block;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  line-height: normal;
  transition: all 0.2s;
}

.tooltip {
  z-index: 99999999;
}
.tooltip.bs-tooltip-top {
  padding: 0 0 0.7rem;
}
.tooltip .tooltip-inner {
  max-width: 200px;
  padding: 0.5rem 1rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
  font-size: 1.6rem;
}
.tooltip .tooltip-arrow {
  width: 1.2rem;
  height: 0.6rem;
}
.tooltip .tooltip-arrow::before {
  border-width: 0.6rem 0.6rem 0;
}

.popover {
  font-size: 1.5rem;
  z-index: 999999;
}
.popover .popover-header {
  font-size: 1.5rem;
}

.swal2-container .swal2-html-container {
  margin: 1rem 0 0;
  font-size: 1.6rem;
  font-weight: 400;
}
.swal2-container .swal2-popup {
  max-width: 40rem;
  padding: 3rem;
  font-size: 1.6rem;
}
.swal2-container .swal2-title {
  font-size: 2.4rem;
  font-weight: 600;
}
.swal2-container .swal2-icon {
  margin: 0 auto;
  font-size: 1rem;
}
.swal2-container .swal2-icon.swal2-success {
  border-color: #00B260;
  color: #00B260;
}
.swal2-container .swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #00B260;
}
.swal2-container .swal2-icon.swal2-success .swal2-success-ring {
  border-color: #00B260;
}
.swal2-container .swal2-icon.swal2-error {
  border-color: color__theme;
  color: color__theme;
}
.swal2-container .swal2-icon.swal2-error [class^=swal2-success-line] {
  background-color: color__theme;
}
.swal2-container .swal2-icon.swal2-error .swal2-success-ring {
  border-color: color__theme;
}
.swal2-container .swal2-actions button {
  font-size: 1.2rem;
  outline: none;
  box-shadow: none;
  font-weight: 300;
  padding: 0.6rem 1.5rem;
}
.swal2-container .swal2-actions button:focus {
  box-shadow: none;
}
.swal2-container .swal2-actions button.swal2-confirm {
  background-color: #00B260;
}
.swal2-container .swal2-icon-success .swal2-timer-progress-bar {
  background: #00B260;
}
.swal2-container .swal2-icon-error .swal2-timer-progress-bar {
  background: #F9020B;
}

.dtp {
  transition: all 0.3s ease;
}
@media screen and (min-width: 576px) {
  .dtp {
    left: 8rem;
  }
}
@media screen and (min-width: 992px) {
  .dtp {
    left: 30rem;
  }
  body.sidebar_mini .dtp {
    left: 8rem;
  }
}
.dtp > .dtp-content {
  max-width: 360px;
  max-height: inherit;
}
.dtp header.dtp-header {
  position: relative;
  height: inherit;
  display: block;
  margin: 0 !important;
  border: 0;
  background-color: #000;
}
.dtp .dtp-picker-month {
  display: none;
}
.dtp .dtp-date-view header.dtp-header {
  background-color: #6c757d !important;
}
.dtp .dtp-date-view .dtp-date {
  background-color: #F0F1F3;
}
.dtp .dtp-date-view .dtp-date * {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dtp .dtp-date-view .dtp-date .dtp-actual-year {
  color: #000;
}
.dtp .dtp-picker-year .year-picker-item.invisible {
  display: none;
}
.dtp table.dtp-picker-days tr td {
  font-size: 1.4rem;
  font-weight: 500;
}
.dtp table.dtp-picker-days tr td a {
  padding: 1rem;
}
.dtp table.dtp-picker-days tr td a.selected {
  background-color: #F9020B;
}
.dtp .dtp-buttons {
  background-color: #F0F1F3;
  padding: 2rem 1rem;
}
.dtp .dtp-buttons .btn {
  margin-left: 1rem;
  font-size: 1.4rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  background-color: #000;
  color: #fff;
}

/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
.dashboard header {
  height: 8rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.7rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-left: 0.1rem solid #F0F1F3;
  border-bottom: 0.1rem solid #F0F1F3;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1024;
  transition: all 0.2s ease;
}
@media screen and (min-width: 576px) {
  .dashboard header {
    height: 9rem;
    margin-left: 8rem;
    padding: 0 3rem;
  }
}
@media screen and (min-width: 992px) {
  .dashboard header {
    margin-left: 30rem;
  }
}
@media screen and (min-width: 1200px) {
  .dashboard header {
    padding: 0 4rem;
  }
}
.dashboard header .header-action-start {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
}
.dashboard header .header-action-start .hambargar {
  transition: all 0.2s;
}
.dashboard header .header-action-end {
  display: flex;
  align-items: center;
}
.dashboard header .header-action-end .dropdown + .dropdown {
  margin-left: 2.5rem;
}
.dashboard header .header-action-end .dropdown .dropdown-toggle {
  background-color: transparent;
  border: 0;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
  line-height: normal;
}
.dashboard header .header-action-end .dropdown .dropdown-toggle .avatar-img {
  border-radius: 100%;
  margin-right: 0.5rem;
}
.dashboard header .header-action-end .dropdown .dropdown-toggle::after {
  border: 0;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  vertical-align: middle;
}
.dashboard header .header-action-end .dropdown .dropdown-toggle.caret-none .fa-bell {
  position: relative;
  top: 0.3rem;
  font-size: 1.8rem;
}
.dashboard header .header-action-end .dropdown .dropdown-toggle.caret-none::after {
  display: none;
}
.dashboard header .header-action-end .dropdown .dropdown-toggle .count {
  position: absolute;
  background-color: #F9020B;
  color: #ffffff;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 50%;
  top: -0.1rem;
  right: -1rem;
}
.dashboard header .header-action-end .dropdown-menu {
  min-width: 35rem;
  max-width: 35rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.15);
  padding: 0;
  border: 0;
}
.dashboard header .header-action-end .dropdown-menu form {
  padding: 0;
}
.dashboard header .header-action-end .dropdown-menu .dropdown_title, .dashboard header .header-action-end .dropdown-menu .dropdown_more {
  background-color: #F0F1F3;
  padding: 1rem;
  margin: 1rem;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 0.4rem;
  display: block;
}
.dashboard header .header-action-end .dropdown-menu ul {
  margin: 1rem 0;
}
.dashboard header .header-action-end .dropdown-menu .max-height-scroll {
  max-height: 30rem;
  overflow-y: scroll;
}
.dashboard header .header-action-end .dropdown-menu .max-height-scroll::-webkit-scrollbar {
  width: 5px;
}
.dashboard header .header-action-end .dropdown-menu .max-height-scroll::-webkit-scrollbar-track {
  background-color: transparent;
}
.dashboard header .header-action-end .dropdown-menu .max-height-scroll::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 2rem #23a6d5;
}
.dashboard header .header-action-end .dropdown-menu .notification__single {
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
  margin: 0.5rem 0;
  padding: 1rem 1rem;
  position: relative;
}
.dashboard header .header-action-end .dropdown-menu .notification__single:hover {
  background-color: #f0f1f3;
}
.dashboard header .header-action-end .dropdown-menu .notification__single .notification_icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
}
.dashboard header .header-action-end .dropdown-menu .notification__single .notification__details {
  flex: 1;
}
.dashboard header .header-action-end .dropdown-menu .notification__single .notification__details p {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 25rem;
}
.dashboard header .header-action-end .dropdown-menu .notification__single .notification__details .time-published {
  opacity: 0.8;
  font-size: 1.2rem;
}
.dashboard header .header-action-end .dropdown-menu .notification__single.unread {
  background-color: rgba(0, 0, 0, 0.05);
}
.dashboard header .header-action-end .dropdown-menu .notification__single.unread p {
  text-shadow: 0 0 0.05rem #000000;
}
.dashboard header .header-action-end .dropdown-menu .notification__single .btn-markasread {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  font-size: 1.3rem;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 50%;
}
.dashboard header .header-action-end .dropdown-menu.custom-width {
  min-width: 25rem;
  padding: 1.5rem;
}
.dashboard header .header-action-end .dropdown-menu .author__info {
  margin-bottom: 1.5rem;
}
.dashboard header .header-action-end .dropdown-menu .author__info .author-img {
  width: 5rem;
  margin-bottom: 0.5rem;
}
.dashboard header .header-action-end .dropdown-menu .author__info .name {
  font-weight: 600;
  font-size: 1.6rem;
}
.dashboard header .header-action-end .dropdown-menu .author__info .designation {
  font-size: 1.4rem;
  font-weight: 300;
}
.dashboard header .header-action-end .dropdown-menu .author__options .button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.dashboard header .header-action-end .dropdown-menu .author__options .button-group .btn {
  font-size: 1.3rem;
  padding: 0.6rem 2.5rem;
  line-height: normal;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  box-shadow: none;
}

.user_authentication header {
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(7px);
  box-shadow: 0 0.4rem 2rem 1rem rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
    [ ## Sidebar ]
--------------------------------------------------------------*/
.dashboard .sidebar {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.7rem);
  width: 30rem;
  height: 100%;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -30rem;
  bottom: 0;
  z-index: 99999;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 575px) {
  .dashboard .sidebar {
    overflow-y: scroll;
    width: 25rem;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .dashboard .sidebar {
    width: 8rem;
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  .dashboard .sidebar {
    left: 0;
  }
}
.dashboard .sidebar .sidebar_header {
  flex-shrink: 0;
  height: 8rem;
  border-bottom: 0.1rem solid #F0F1F3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 2rem 3rem;
}
@media screen and (min-width: 576px) {
  .dashboard .sidebar .sidebar_header {
    height: 9rem;
  }
}
@media screen and (max-width: 991px) {
  .dashboard .sidebar .sidebar_header {
    padding: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .dashboard .sidebar .sidebar_header .sidebar-logo {
    width: 13rem;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .dashboard .sidebar .sidebar_header a {
    display: none;
  }
}
.dashboard .sidebar .sidebar_nav {
  margin: 2rem 1.5rem 2rem 1.5rem;
  height: calc(100% - 12rem);
  overflow-y: scroll;
}
.dashboard .sidebar .sidebar_nav::-webkit-scrollbar {
  width: 0;
}
.dashboard .sidebar .sidebar_nav::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.dashboard .sidebar .sidebar_nav::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.dashboard .sidebar .sidebar_nav li a {
  display: inline-flex;
  align-items: center;
  padding: 1.2rem 1.6rem;
  transition: all 0.2s;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  line-height: normal;
  gap: 0 1.5rem;
}
@media screen and (max-width: 575px) {
  .dashboard .sidebar .sidebar_nav li a {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .dashboard .sidebar .sidebar_nav li a {
    width: 100%;
  }
}
.dashboard .sidebar .sidebar_nav li a.active, .dashboard .sidebar .sidebar_nav li a:hover {
  background-color: #F9020B;
  color: #ffffff;
}
@media (min-width: 576px) and (max-width: 991px) {
  .dashboard .sidebar .sidebar_nav li a span, .dashboard .sidebar .sidebar_nav li a span + i {
    display: none;
  }
}
.dashboard .sidebar .sidebar_nav li + li {
  margin-top: 1rem;
}
.dashboard.sidebar_mini .sidebar {
  left: 0;
}
@media (min-width: 576px) and (max-width: 991px) {
  .dashboard.sidebar_mini .sidebar {
    width: 30rem;
  }
}
@media screen and (min-width: 992px) {
  .dashboard.sidebar_mini .sidebar {
    width: 8rem;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .dashboard.sidebar_mini .sidebar .sidebar_header a {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .dashboard.sidebar_mini .sidebar .sidebar_header a {
    display: none;
  }
}
.dashboard.sidebar_mini .sidebar .sidebar_nav li a {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .dashboard.sidebar_mini .sidebar .sidebar_nav li a {
    justify-content: center;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .dashboard.sidebar_mini .sidebar .sidebar_nav li a span, .dashboard.sidebar_mini .sidebar .sidebar_nav li a span + i {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .dashboard.sidebar_mini .sidebar .sidebar_nav li a span, .dashboard.sidebar_mini .sidebar .sidebar_nav li a span + i {
    width: 0;
    opacity: 0;
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .dashboard.sidebar_mini .dashboard_body, .dashboard.sidebar_mini header {
    margin-left: 8rem;
  }
}

/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer-block
--------------------------------------------------------------*/
footer.footer {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.7rem);
  padding: 2rem 1rem;
  font-size: 1.3rem;
  border-left: 0.1rem solid #F0F1F3;
  margin-top: auto;
}
@media screen and (min-width: 576px) {
  footer.footer {
    padding: 2rem 3rem;
  }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
.dashboard {
  position: fixed;
  inset: 0;
}
.dashboard .dashboard_body {
  padding: 8rem 0 0 0;
  height: 100%;
  transition: all 0.2s ease;
  overflow-y: scroll;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body {
    margin-left: 8rem;
    padding: 9rem 0 0 0;
  }
}
@media screen and (min-width: 992px) {
  .dashboard .dashboard_body {
    margin-left: 30rem;
  }
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body {
    padding: 9rem 0 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body::-webkit-scrollbar {
    width: 5px;
  }
  .dashboard .dashboard_body::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .dashboard .dashboard_body::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 2rem #212529;
  }
}
.dashboard .dashboard_body .body_content {
  backdrop-filter: blur(10px);
  padding: 2rem;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body .body_content {
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .body_content {
    padding: 4rem 4rem;
  }
}
.dashboard .dashboard_body .welcome_msg {
  margin: 3rem 0 4rem;
}
.dashboard .dashboard_body .welcome_msg .msg_inner {
  padding: 2rem 3rem 2rem 2.3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  border-radius: 1.2rem;
  position: relative;
  background: linear-gradient(120deg, #f9020b, #23a6d5, #212529);
  background-size: 400% 400%;
  animation: animate_gradient 15s ease infinite;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body .welcome_msg .msg_inner {
    padding: 3rem 3rem 3rem 17rem;
  }
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .welcome_msg .msg_inner {
    padding: 4rem 3rem 3.4rem 23rem;
  }
}
@keyframes animate_gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.dashboard .dashboard_body .welcome_msg .msg_inner::before {
  left: 0;
  content: "";
  position: absolute;
  width: 14rem;
  height: 13rem;
  background: url(../images/quote.png) no-repeat;
  z-index: 9;
  bottom: 0;
  background-size: cover;
  filter: saturate(0.7);
}
@media screen and (max-width: 575px) {
  .dashboard .dashboard_body .welcome_msg .msg_inner::before {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .welcome_msg .msg_inner::before {
    width: 18rem;
    height: 17rem;
  }
}
.dashboard .dashboard_body .welcome_msg .msg_inner p {
  line-height: 1.5;
  margin-top: 0.5rem;
}
.dashboard .dashboard_body .block-title {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 2rem;
}
.dashboard .dashboard_body .statistics-widget {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(var(--bg), 1) 100%);
  padding: 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 2px 4px rgba(126, 142, 177, 0.15);
  transition: all 0.2s;
  text-align: center;
  min-height: 100%;
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .statistics-widget {
    padding: 3rem 1rem;
  }
}
.dashboard .dashboard_body .statistics-widget .icons {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(var(--bg), 1);
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2.2rem;
}
.dashboard .dashboard_body .statistics-widget .widget-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.dashboard .dashboard_body .statistics-widget .counter {
  font-weight: 300;
  font-size: 3rem;
}
.dashboard .dashboard_body form {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
}
.dashboard .dashboard_body form label, .dashboard .dashboard_body form .label, .dashboard .dashboard_body form p, .dashboard .dashboard_body form .alert-body {
  font-size: 1.4rem;
}
.dashboard .dashboard_body form .select2-container {
  width: 100% !important;
}
.dashboard .dashboard_body form .select2-container .select2-selection--single {
  height: 5rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: transparent;
}
.dashboard .dashboard_body form .select2-container .select2-selection__arrow {
  position: relative;
}
.dashboard .dashboard_body form input, .dashboard .dashboard_body form .select2-container .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.5);
  border: 0.1rem solid #f0f2f4;
  padding: 0 1.5rem;
}
.dashboard .dashboard_body form textarea.form-control {
  background-color: rgba(255, 255, 255, 0.5);
  border: 0.1rem solid #f0f2f4;
  border-radius: 1rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body form input[type=date] {
  min-width: 8rem;
}
.dashboard .dashboard_body form button[type=submit] {
  padding: 1rem 3rem;
  font-size: 1.4rem;
  border: 0.1rem solid #ebebeb;
  color: #000000;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
}
.dashboard .dashboard_body form button[type=submit]:hover {
  background-color: white;
}
.dashboard .dashboard_body form input {
  font-size: 1.4rem;
}
.dashboard .dashboard_body .news_search_form, .dashboard .dashboard_body .filter_media {
  box-shadow: 0 0.4rem 2rem 1rem rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.dashboard .dashboard_body .news_search_form .input-item, .dashboard .dashboard_body .filter_media .input-item {
  flex: 1 0 13rem;
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .news_search_form .input-item, .dashboard .dashboard_body .filter_media .input-item {
    max-width: 20rem;
  }
}
@media screen and (min-width: 1600px) {
  .dashboard .dashboard_body .news_search_form .input-item, .dashboard .dashboard_body .filter_media .input-item {
    flex: 1 0 16rem;
  }
}
.dashboard .dashboard_body .news_search_form .input-item:last-child, .dashboard .dashboard_body .filter_media .input-item:last-child {
  flex: auto;
}
.dashboard .dashboard_body .news_search_form input, .dashboard .dashboard_body .news_search_form .select2-container .select2-selection--single, .dashboard .dashboard_body .filter_media input, .dashboard .dashboard_body .filter_media .select2-container .select2-selection--single {
  border-radius: 10rem;
  height: 3.2rem;
}
.dashboard .dashboard_body .news_search_form .select2-selection__rendered, .dashboard .dashboard_body .filter_media .select2-selection__rendered {
  padding: 0;
  max-width: 10rem;
}
.dashboard .dashboard_body .news_search_form button[type=submit], .dashboard .dashboard_body .filter_media button[type=submit] {
  height: 3.2rem;
  padding: 0 3rem;
  border-radius: 10rem;
}
.dashboard .dashboard_body .create_roles {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
}
.dashboard .dashboard_body .settings .nav {
  margin-bottom: 4rem;
  gap: 1rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(7px);
  box-shadow: 0 0.4rem 2rem 1rem rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}
.dashboard .dashboard_body .settings .nav .nav-link {
  background-color: #ffffff;
  border-radius: 0.6rem;
  color: #000000;
  border: 0;
  padding: 1.2rem 4rem;
  line-height: normal;
}
.dashboard .dashboard_body .settings .nav .nav-link.active {
  background-color: #F9020B;
  color: white;
}
.dashboard .dashboard_body .settings .nav .nav-link i {
  margin-right: 0.5rem;
}
.dashboard .dashboard_body .settings .tab-content {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(7px);
  box-shadow: 0 0.4rem 2rem 1rem rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  overflow: hidden;
}
.dashboard .dashboard_body .settings .tab-content form {
  background-color: rgba(255, 255, 255, 0.6);
}
.dashboard .dashboard_body .settings .tab-content .form-control, .dashboard .dashboard_body .settings .tab-content .select2-container {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
}
.dashboard .dashboard_body .settings .tab-content .select2-container .select2-selection__rendered {
  padding: 1rem 1.5rem;
}
.dashboard .dashboard_body .settings .tab-content .filepond--root {
  margin: 0;
  padding: 0 2rem;
}
.dashboard .dashboard_body .settings .tab-content .filepond--root * {
  box-sizing: border-box;
  box-shadow: none;
}
.dashboard .dashboard_body .settings .tab-content .filepond--root :not(text) {
  font-size: 1.6rem;
}
.dashboard .dashboard_body .settings .tab-content .filepond--browser.filepond--browser,
.dashboard .dashboard_body .settings .tab-content .filepond--root .filepond--credits,
.dashboard .dashboard_body .settings .tab-content .filepond--file-info {
  display: none;
}
.dashboard .dashboard_body .settings .tab-content .filepond--image-preview-overlay-idle {
  color: transparent;
}
.dashboard .dashboard_body .settings .tab-content .filepond--image-preview-wrapper {
  background: transparent;
}
.dashboard .dashboard_body .settings .tab-content .filepond--image-preview,
.dashboard .dashboard_body .settings .tab-content .filepond--item-panel {
  background-color: transparent;
}
.dashboard .dashboard_body .settings .tab-content .filepond--image-clip {
  width: auto !important;
  height: auto !important;
}
.dashboard .dashboard_body .settings .tab-content .filepond--image-clip .filepond--image-canvas-wrapper {
  transform: none !important;
}
.dashboard .dashboard_body .settings .btn-secondary {
  font-size: 1.4rem;
  line-height: normal;
  padding: 1rem 1.5rem;
  box-shadow: none;
  font-weight: 300;
  margin-top: 0.5rem;
}
.dashboard .dashboard_body .settings .open_blank_tab {
  position: relative;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}
.dashboard .dashboard_body .settings .social_link_item {
  position: relative;
  margin-bottom: 2.5rem;
}
.dashboard .dashboard_body .settings .footer-top-menu-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.dashboard .dashboard_body .settings .download_apps_button_item {
  position: relative;
  margin-bottom: 2.5rem;
}
.dashboard .dashboard_body .settings .footer-bottom-menu-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.dashboard .dashboard_body .settings .remove-field {
  position: absolute;
  right: -4rem;
  top: 1rem;
  background-color: #F9020B;
  color: #ffffff;
  border: 0;
  border-radius: 0.3rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard .dashboard_body .settings .social_link_dynamic .remove-field {
  top: 50%;
  transform: translateY(-50%);
}
.dashboard .dashboard_body .profile_settings {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  padding: 2rem;
  border-radius: 0.6rem;
}
@media screen and (min-width: 768px) {
  .dashboard .dashboard_body .profile_settings {
    padding: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .profile_settings {
    padding: 4rem;
  }
}
.dashboard .dashboard_body .profile_settings .edit-profile-form {
  max-width: 70rem;
  padding: 2rem 7rem 2rem 0rem;
}
.dashboard .dashboard_body .profile_settings .profile-thumb-name h4 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.dashboard .dashboard_body .profile_settings .profile-thumb-name p {
  color: #3F8FEA;
  font-size: 1.3rem;
  line-height: normal;
}
.dashboard .dashboard_body .profile_settings table td {
  border: 0;
  padding: 1rem 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 575px) {
  .dashboard .dashboard_body .profile_settings table td {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard_body .profile_settings table td:first-child {
    padding: 0;
  }
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body .profile_settings table td:first-child {
    text-align: end;
    padding-right: 2.5rem;
  }
}
.dashboard .dashboard_body .profile_settings .form-control {
  border-color: #D4D4D4;
  font-size: 1.4rem;
  height: 4rem;
}
.dashboard .dashboard_body .profile_settings .password_group {
  border: 0.1rem solid #D4D4D4;
  padding: 2rem;
  border-radius: 0.8rem;
}
.dashboard .dashboard_body .profile_settings .password_group .form-group {
  position: relative;
}
.dashboard .dashboard_body .profile_settings .password_group .form-group input {
  border: 0;
  border-bottom: 0.1rem solid #D4D4D4;
  border-radius: 0;
  height: 4rem;
}
.dashboard .dashboard_body .profile_settings .password_group .toggle_password {
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  cursor: pointer;
}
.dashboard .dashboard_body .media_wrapper {
  padding: 2rem;
  border-radius: 0.8rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(7px);
}
.dashboard .dashboard_body .media_wrapper .thumbnail {
  height: 100%;
  max-height: 15rem;
  min-height: 10rem;
}
.dashboard .dashboard_body .media_wrapper .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dashboard .dashboard_body form.create_new_news h3 {
  font-size: 1.4rem;
}
.dashboard .dashboard_body form.create_new_news .addon {
  border: 0;
  background-color: #6c757d;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 0 1.8rem;
  border-radius: 0 0.3rem 0.3rem 0;
}
.dashboard .dashboard_body form.create_new_news p {
  font-size: 1.4rem;
}
.dashboard .dashboard_body form.create_new_news .form-group label {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.dashboard .dashboard_body form.create_new_news .form-group textarea {
  border: 0;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0.8rem);
  border-radius: 1rem;
}
.dashboard .dashboard_body form.create_new_news .form-submit {
  font-size: 1.5rem;
  padding: 1.5rem;
  font-weight: 300;
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
  margin: 0;
}
.dashboard .dashboard_body form.create_new_news .form-submit:hover {
  box-shadow: none !important;
}
.dashboard .dashboard_body form.create_new_news .post-meta td {
  border: 0;
  font-size: 1.4rem;
}
.dashboard .dashboard_body form.create_new_news .post-meta td:last-child {
  max-width: 16rem;
  text-align: end;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
  border: 0.1rem dashed #000;
  border-radius: 0.4rem;
  overflow: hidden;
  margin: 1rem 0;
  padding: 1rem;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview label::after {
  content: "Click to upload image.";
  color: #20a4f1;
  text-align: center;
  font-size: 1.2rem;
  padding: 0 1rem;
  line-height: 1.6;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview label::before {
  content: "\f0ee";
  font-family: "Font Awesome 5 Pro";
  font-size: 2rem;
  font-weight: 300;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview img {
  display: none;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview .remove_image {
  border: 0;
  padding: 0;
  transition: all 0.2s;
  display: none;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview.image_uploaded img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview.image_uploaded .remove_image {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  width: 3rem;
  height: 3rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dashboard .dashboard_body form.create_new_news .featured_imagePreview.image_uploaded label::before, .dashboard .dashboard_body form.create_new_news .featured_imagePreview.image_uploaded label::after {
  display: none;
}
.dashboard .dashboard_body form.create_new_news .select2-container {
  width: 100% !important;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .dashboard .dashboard_body form.create_new_category .dropzone_wrapper {
    align-items: center;
    flex-direction: column-reverse;
  }
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .drop-input {
  flex: 1;
  background-color: #fff;
  border: 0.1rem solid #d0d7df;
  position: relative;
  z-index: 1;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 30rem;
  padding: 5rem;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body form.create_new_category .dropzone_wrapper .drop-input {
    padding: 2rem;
    min-width: 20rem;
  }
}
@media screen and (min-width: 1400px) {
  .dashboard .dashboard_body form.create_new_category .dropzone_wrapper .drop-input {
    padding: 5rem;
    font-size: 1.4rem;
  }
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .drop-input .fileInput {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .line {
  background-color: #d0d7df;
  align-self: center;
}
@media screen and (max-width: 575px) {
  .dashboard .dashboard_body form.create_new_category .dropzone_wrapper .line {
    height: 8rem;
    width: 0.1rem;
  }
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body form.create_new_category .dropzone_wrapper .line {
    flex: 1;
    height: 0.1rem;
  }
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box {
  border: 0.1rem solid #d0d7df;
  border-radius: 0.6rem;
  position: relative;
  width: 30rem;
  height: 22rem;
  background: #fff url(../images/placeholder.png) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box {
    width: 25rem;
  }
}
@media screen and (min-width: 992px) {
  .dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box {
    width: 30rem;
  }
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box .image_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box button {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background-color: #ffffff;
  color: #FF5757;
  border: 0.1rem solid #E2E8F0;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box.image_placed {
  background: #fff;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box.image_placed button {
  opacity: 1;
  visibility: visible;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box_icon {
  border: 0.1rem solid #d0d7df;
  border-radius: 0.6rem;
  position: relative;
  width: 30rem;
  height: 15rem;
  background: #fff;
  background-size: cover;
  background-position: center;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box_icon .image_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box_icon .image_wrap img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  object-position: center;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box_icon button {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background-color: #ffffff;
  color: #FF5757;
  border: 0.1rem solid #E2E8F0;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box_icon.image_placed {
  background: #fff;
}
.dashboard .dashboard_body form.create_new_category .dropzone_wrapper .preview_box_icon.image_placed button {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1680px) {
  .dashboard .dashboard_body form.create_new_category .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}
@media (min-width: 1680px) {
  .dashboard .dashboard_body form.create_new_category .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
.dashboard .dashboard_body form.permission input:not([type=checkbox]), .dashboard .dashboard_body form.permission .select2-selection--single {
  border-color: #ccc;
}
.dashboard .dashboard_body form.permission .select2-container {
  width: 100% !important;
}
.dashboard .dashboard_body form.permission .form-check {
  margin: 1.5rem 0;
}
.dashboard .dashboard_body .add_ads_campaign {
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 0.6rem;
  margin: 5rem 1rem;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body .add_ads_campaign {
    padding: 10rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .dashboard .dashboard_body .add_ads_campaign {
    max-width: 65rem;
    margin: 8rem auto;
    padding: 15rem 0;
  }
}
.dashboard .dashboard_body .create_ads_campaign {
  margin-bottom: 10rem;
}
.dashboard .dashboard_body .create_ads_campaign .steps {
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 0.5rem;
  text-align: center;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li a {
  font-size: 1.6rem;
  color: #5D5D5D;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard_body .create_ads_campaign .steps ul li a span:last-child {
    display: none;
  }
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li .step {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #F0F1F3;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .dashboard .dashboard_body .create_ads_campaign .steps ul li .step {
    margin-right: 1rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li.current a {
  color: #000000;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li.current .step {
  background-color: #F9020B;
  color: #ffffff;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li.done a {
  color: #000000;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li.done .step {
  background-color: #F9020B;
  color: #ffffff;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li .current-info {
  display: none;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li + li {
  position: relative;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li + li::before {
  content: "";
  width: 4.5rem;
  height: 0.1rem;
  background-color: #E3E3E3;
  display: inline-block;
  margin: 0 1rem;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body .create_ads_campaign .steps ul li + li::before {
    width: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .dashboard .dashboard_body .create_ads_campaign .steps ul li + li::before {
    width: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .dashboard .dashboard_body .create_ads_campaign .steps ul li + li::before {
    margin: 0 1rem 0 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .create_ads_campaign .steps ul li + li::before {
    width: 7.5rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li.current ~ *.done a {
  color: #5D5D5D;
}
.dashboard .dashboard_body .create_ads_campaign .steps ul li.current ~ *.done .step {
  background-color: #F0F1F3;
  color: #000000;
}
.dashboard .dashboard_body .create_ads_campaign .step_section .steps_title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 4rem 0;
}
.dashboard .dashboard_body .create_ads_campaign .step_section .step_inner {
  background-color: #ffffff;
  padding: 4rem 2rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 1400px) {
  .dashboard .dashboard_body .create_ads_campaign .step_section .step_inner {
    padding: 8rem 2rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  border: 0;
  gap: 0 3rem;
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard_body .create_ads_campaign .step_section .media_tab {
    gap: 1rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li input {
  display: none;
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li label {
  padding: 3.5rem 8rem;
  border-radius: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li label {
    padding: 1.5rem 3rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li label span {
  display: block;
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li label::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li label::before {
    width: 2rem;
    height: 2rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li label::after {
  content: "\f00c";
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: "Font Awesome 5 Pro";
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li label::after {
    top: 1.7rem;
    right: 1.5rem;
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li input {
  display: none;
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li input:checked + label::before {
  background-color: #0080FF;
  border-color: #0080FF;
}
.dashboard .dashboard_body .create_ads_campaign .step_section .media_tab li input:checked + label::after {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .create_ads_campaign .step_section.step2 .fieldset {
    margin: 0 5rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step3 .form-wrapper {
  max-width: 60rem;
  margin: 0 auto;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step3 .form-wrapper .input-group {
  gap: 0 2rem;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step3 .form-wrapper label {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  line-height: normal;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step3 .form-wrapper input {
  width: 15rem;
  height: 4.5rem;
  padding: 0 2rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  border-radius: 0.5rem !important;
  margin: 0 !important;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step4 .form-group label {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  position: relative;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0 0.8rem;
  width: 14rem;
  color: #000000;
  font-size: 1.6rem;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step4 .form-group label::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #E3E3E3;
  transition: all 0.2s;
  display: inline-block;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step4 .form-group label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: #ffffff;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background-color: #00B260;
  transition: all 0.2s;
  border-radius: 50%;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step4 .form-group input {
  display: none;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step4 .form-group input:checked + label {
  border-color: #00B260;
  background-color: #E1FFF1;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step4 .form-group input:checked + label::before {
  background-color: #00B260;
}
.dashboard .dashboard_body .create_ads_campaign .step_section.step4 .form-group input:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.dashboard .dashboard_body .create_ads_campaign.step .title {
  display: none;
}
.dashboard .dashboard_body .create_ads_campaign.step .actions {
  margin-top: 3rem;
}
.dashboard .dashboard_body .create_ads_campaign.step .actions ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0 1rem;
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard_body .create_ads_campaign.step .actions ul {
    justify-content: center;
  }
}
.dashboard .dashboard_body .create_ads_campaign.step .actions ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #F9020B;
  border-radius: 0.3rem;
  display: inline-block;
  padding: 1rem 3rem;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .dashboard .dashboard_body .create_ads_campaign.step .actions ul li a {
    font-size: 1.4rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign.step .actions ul li a:hover {
  background-color: #e0020a;
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .create_ads_campaign .step1 .feildset {
    margin: 0 5rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step1 .feildset .select2-container {
  width: 100% !important;
  height: 5rem;
  border: 1px solid #D4D4D4;
  border-radius: 0.4rem;
}
@media (min-width: 1400px) {
  .dashboard .dashboard_body .create_ads_campaign .step1 .feildset .ads_basic_information .form-group {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .dashboard .dashboard_body .create_ads_campaign .step1 .feildset .ads_basic_information .form-group > label {
    width: 15rem;
  }
}
@media (min-width: 1800px) {
  .dashboard .dashboard_body .create_ads_campaign .step1 .feildset .ads_basic_information .form-group > label {
    width: 18rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step1 .feildset .ads_basic_information .form-group input:not([type=file]) {
  border: 0.1rem solid #D4D4D4;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .feildset .ads_basic_information .form-group + .form-group {
  margin-top: 1.5rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .feildset .ads_basic_information label.upload_campaign_media {
  text-align: center;
  border: 1px solid #D4D4D4;
  padding: 4rem 2rem;
  border-radius: 0.8rem;
  background-color: #f3f3f3;
  width: 100%;
  cursor: pointer;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .upload_media_button {
  border: 0.1rem solid #D4D4D4;
  background-color: #F0F1F3;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0 0.8rem;
  cursor: pointer;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .upload_media_button i {
  position: relative;
  top: 0.2rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .preview_wrap {
  max-width: 40rem;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .dashboard .dashboard_body .create_ads_campaign .step1 .preview_wrap {
    margin-left: auto;
    margin-right: auto;
  }
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_lg .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_lg .ads_post_preview .ad_post_media {
  background-color: #eee;
  height: 20rem;
  display: flex;
  flex-direction: column;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_lg .ads_post_preview .ad_post_media .ads_image_large_preview {
  max-height: 17rem;
  object-fit: cover;
  object-position: center;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_lg .ads_post_preview .ad_post_media .button_preview {
  background-color: #3897F1;
  margin-top: auto;
  font-size: 1rem;
  color: #ffffff;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_lg .ads_post_preview .ad_post_media .button_preview span {
  line-height: 1;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_lg .ads_post_preview .ads_title {
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  user-select: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_lg .ads_post_preview .ad_post_footer {
  font-size: 1rem;
  margin-top: 1rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_lg .ads_post_preview .ad_post_footer ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_between_meta .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_between_meta .ads_post_preview .ad_post_footer {
  font-size: 0.7rem;
  margin-top: -1rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags {
  max-width: 45rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags .post_item {
  width: 65%;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags .ads_post_sidebar {
  width: 35%;
  padding: 0 0 0 1rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags .ads_post_sidebar h5 {
  font-size: 1.2rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags .ads_post_sidebar h6 {
  font-size: 0.7rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags .ads_post_sidebar .sponsor_view li .thumbnail {
  float: left;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags .ads_post_sidebar .sponsor_view li .side_info {
  overflow: hidden;
  padding-left: 1rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags .ads_post_sidebar .sponsor_view li .side_info p {
  font-size: 0.7rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_under_tags .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
  display: flex;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_single_cat .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_single_cat .ads_post_preview .post_item {
  height: 100%;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_single_cat .ads_post_preview .ad_post_media:not(.placeholder) {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_single_cat .ads_post_preview .ad_post_media:not(.placeholder) .image {
  height: 100%;
  background-size: cover;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_single_cat .ads_post_preview .ad_post_media .button_preview {
  background-color: #3897F1;
  margin-top: auto;
  font-size: 1rem;
  color: #ffffff;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_single_cat .ads_post_preview .ad_post_media .button_preview span {
  line-height: 1;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_single_cat .ads_post_preview .ad_post_footer {
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_4in1_category .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_4in1_category .ads_post_preview .post_item {
  height: 100%;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_4in1_category .ads_post_preview .ad_post_media {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_4in1_category .ads_post_preview .ad_post_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_4in1_category .ads_post_preview .ad_post_media:not(.placeholder) {
  display: flex;
  flex-direction: column;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_4in1_category .ads_post_preview .ad_post_media .button_preview {
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: auto;
  font-size: 1rem;
  color: #ffffff;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 0.3rem 0.3rem 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.dashboard .dashboard_body .create_ads_campaign .step1 .news_feed_4in1_category .ads_post_preview .ad_post_media .button_preview span {
  line-height: 1;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .age_range_slider input {
  border: 0;
  user-select: none;
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .age_range_slider .slider {
  margin: 1rem 0;
  border: 0;
  background-color: #EEEEEE;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .age_range_slider .slider .ui-slider-range {
  background-color: #00B3BC;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .age_range_slider .slider .ui-slider-handle {
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  top: -0.4rem;
  width: 2.8rem;
  cursor: pointer;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 6px #ebebeb, 1px 1px 4px rgba(0, 0, 0, 0.1);
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .age_range_slider .slider .ui-slider-handle::before, .dashboard .dashboard_body .create_ads_campaign .target_audience .age_range_slider .slider .ui-slider-handle::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 9px;
  background-color: #ddd;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .age_range_slider .slider .ui-slider-handle::after {
  left: auto;
  right: 1rem;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .select2-container .select2-selection--single {
  border-color: #aaa;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .select2-selection--multiple {
  min-height: 4.5rem;
  font-size: 1.4rem;
  max-height: 15rem;
  overflow-y: scroll;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .select2-selection--multiple .select2-selection__choice {
  background-color: transparent;
  font-size: 1.4rem;
  border: 0.1rem solid #ddd;
  font-weight: 300;
  margin-top: 7px;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .select2-selection--multiple .select2-selection__choice button {
  border-color: #ddd;
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .select2-selection--multiple .select2-search__field {
  margin-top: 0;
  vertical-align: middle;
}
@media (min-width: 1400px) {
  .dashboard .dashboard_body .create_ads_campaign .target_audience .form-group {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .dashboard .dashboard_body .create_ads_campaign .target_audience .form-group > label {
    width: 15rem;
    min-width: 15rem;
  }
}
@media (min-width: 1800px) {
  .dashboard .dashboard_body .create_ads_campaign .target_audience .form-group > label {
    width: 18rem;
    min-width: 18rem;
  }
}
.dashboard .dashboard_body .create_ads_campaign .target_audience .form-group + .form-group {
  margin-top: 1.5rem;
}
.dashboard .dashboard_body .ads_placement {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.7rem);
  padding: 3rem 2rem;
  border-radius: 0.8rem;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body .ads_placement {
    padding: 5rem;
  }
}
.dashboard .dashboard_body .ads_placement .table {
  max-width: 60rem;
}
.dashboard .dashboard_body .ads_placement .table td {
  padding: 1.5rem 1rem;
  font-size: 1.4rem;
  white-space: nowrap;
}
.dashboard .dashboard_body .ads_placement .table td:first-child {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .dashboard .dashboard_body .ads_placement .table td {
    font-size: 1.6rem;
  }
}
.dashboard .dashboard_body .ads_placement .quantity {
  border: 0.1rem solid #D4D4D4;
  padding-right: 3rem;
  border-radius: 0.6rem;
  overflow: hidden;
}
.dashboard .dashboard_body .ads_placement .quantity input {
  box-shadow: none;
  border: 0;
  height: 5rem;
  width: 6rem;
  font-size: 1.5rem;
  outline: none;
  -moz-appearance: textfield;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body .ads_placement .quantity input {
    width: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .dashboard .dashboard_body .ads_placement .quantity input {
    font-size: 1.6rem;
  }
}
.dashboard .dashboard_body .ads_placement .quantity input::-webkit-outer-spin-button, .dashboard .dashboard_body .ads_placement .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dashboard .dashboard_body .ads_placement .quantity button {
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 0;
  font-size: 2rem;
  padding: 0 12px;
  border-left: 0.1rem solid #D4D4D4;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.dashboard .dashboard_body .ads_placement .quantity button:hover {
  background-color: #D4D4D4;
}
.dashboard .dashboard_body .ads_placement .quantity button.plus {
  top: 0;
}
.dashboard .dashboard_body .ads_placement .quantity button.minus {
  bottom: 0;
  border-top: 0.1rem solid #D4D4D4;
}
.dashboard .dashboard_body .ads_placement .quantity.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.dashboard .dashboard_body .ads_info {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 0.85rem;
}
@media screen and (min-width: 1400px) {
  .dashboard .dashboard_body .ads_info {
    padding: 5rem;
  }
}
.dashboard .dashboard_body .ads_info table td:first-child {
  width: 13rem;
  padding-left: 0;
}
@media screen and (min-width: 576px) {
  .dashboard .dashboard_body .ads_info table td:first-child {
    width: 15rem;
  }
}
@media screen and (min-width: 1400px) {
  .dashboard .dashboard_body .ads_info table td:first-child {
    width: 20rem;
  }
}
.dashboard .dashboard_body .ads_info table td {
  font-size: 1.4rem;
}
@media screen and (min-width: 1200px) {
  .dashboard .dashboard_body .ads_info table td {
    font-size: 1.5rem;
  }
}
.dashboard .dashboard_body .ads_info .placement_preview {
  max-width: 30rem;
  margin: 3rem 0;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_lg .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_lg .ads_post_preview .ad_post_media {
  background-color: #eee;
  height: 16rem;
  display: flex;
  flex-direction: column;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_lg .ads_post_preview .ad_post_media .button_preview {
  background-color: #3897F1;
  margin-top: auto;
  font-size: 1rem;
  color: #ffffff;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_lg .ads_post_preview .ad_post_media .button_preview span {
  line-height: 1;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_lg .ads_post_preview .ads_title {
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  user-select: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_lg .ads_post_preview .ad_post_footer {
  font-size: 1rem;
  margin-top: 1rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_lg .ads_post_preview .ad_post_footer ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_between_meta .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_between_meta .ads_post_preview .ad_post_footer {
  font-size: 0.7rem;
  margin-top: -1rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags {
  max-width: 45rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags .post_item {
  width: 65%;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags .ads_post_sidebar {
  width: 35%;
  padding: 0 0 0 1rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags .ads_post_sidebar h5 {
  font-size: 1.2rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags .ads_post_sidebar h6 {
  font-size: 0.7rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags .ads_post_sidebar .sponsor_view li .thumbnail {
  float: left;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags .ads_post_sidebar .sponsor_view li .side_info {
  overflow: hidden;
  padding-left: 1rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags .ads_post_sidebar .sponsor_view li .side_info p {
  font-size: 0.7rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_under_tags .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
  display: flex;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_single_cat .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_single_cat .ads_post_preview .post_item {
  height: 100%;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_single_cat .ads_post_preview .ad_post_media:not(.placeholder) {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_single_cat .ads_post_preview .ad_post_media:not(.placeholder) .image {
  height: 100%;
  background-size: cover;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_single_cat .ads_post_preview .ad_post_media .button_preview {
  background-color: #3897F1;
  margin-top: auto;
  font-size: 1rem;
  color: #ffffff;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_single_cat .ads_post_preview .ad_post_media .button_preview span {
  line-height: 1;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_single_cat .ads_post_preview .ad_post_footer {
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_4in1_category .ads_post_preview {
  border: 0.1rem solid #D4D4D4;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_4in1_category .ads_post_preview .post_item {
  height: 100%;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_4in1_category .ads_post_preview .ad_post_media {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_4in1_category .ads_post_preview .ad_post_media:not(.placeholder) {
  display: flex;
  flex-direction: column;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_4in1_category .ads_post_preview .ad_post_media .button_preview {
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: auto;
  font-size: 1rem;
  color: #ffffff;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 0.3rem 0.3rem 0 0;
}
.dashboard .dashboard_body .ads_info .placement_preview .news_feed_4in1_category .ads_post_preview .ad_post_media .button_preview span {
  line-height: 1;
}
.dashboard .dashboard_body .reports_wrapper .chart-widget {
  border-radius: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0.7rem);
  padding: 2rem;
}

.ck-balloon-panel {
  display: none !important;
}

.ck-editor__editable {
  min-height: 20rem;
  box-shadow: none !important;
  border-color: #E2E8F0;
}
.ck-editor__editable.ck-focused {
  border: 0.1rem solid #E2E8F0 !important;
}

#circle_chart {
  max-width: 20rem;
  margin: 0 auto;
}
@media screen and (min-width: 1400px) {
  #circle_chart {
    max-width: 30rem;
  }
}

.foreground-circle {
  fill: none;
  stroke: #ff0000;
}

.foreground-circle-without-stroke-color {
  fill: none;
}

.background-circle {
  fill: none;
  stroke: #f0f1f3;
}

.circle-text {
  font-family: Arial, sans-serif;
  color: #aaa;
  font-size: 20px;
}

.circle-container {
  overflow: visible;
}

.point-circle {
  fill: #f0f8ff;
}

.circle-icon.fa {
  font-size: 30px;
  fill: #000;
}

.newTableStyle {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(7px);
  box-shadow: 0 0.4rem 2rem 1rem rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 32rem;
}

.newTableStyle table {
  border: 0;
  border-radius: 1rem;
  border-bottom: 0 !important;
}

.newTableStyle .table thead th {
  background-color: #fff;
  border: 0;
}
.newTableStyle .table thead th:first-child {
  border-top-left-radius: 1rem;
}
.newTableStyle .table thead th:last-child {
  border-top-right-radius: 1rem;
}

.newTableStyle tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.0431372549);
}

.newTableStyle td .status {
  padding: 0.2rem 1.5rem;
  border-radius: 2rem;
  text-align: center;
  display: inline-block;
}
.newTableStyle td .status.publish {
  background-color: #86e49d;
  color: #006b21;
}
.newTableStyle td .status.wfpublish {
  background-color: #d893a3;
  color: #b30021;
}
.newTableStyle td .status.schedule {
  background-color: #d893a3;
  color: #b30021;
}
.newTableStyle td .status.review {
  background-color: #ebc474;
}
.newTableStyle td .status.rewrite {
  background-color: #0057f9;
  color: #d5e6ff;
}
.newTableStyle td .status.pending {
  background-color: #ebc474;
  color: #000000;
}
.newTableStyle td .status.reviewed {
  background-color: #6fcaea;
}
.newTableStyle td .status.draft {
  background-color: #5b5f60;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .user_authentication {
    min-height: 100vh;
  }
}
.user_authentication .form_wrapper {
  margin: 6rem 0;
}
.user_authentication .form_wrapper .auth_form {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0.4rem 2rem 1rem rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .user_authentication .form_wrapper .auth_form {
    padding: 4rem 6rem;
  }
}
.user_authentication .form_wrapper .form-title h1 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #4D4D4D;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.user_authentication .form_wrapper .form-title p {
  font-size: 1.4rem;
  color: #050708;
}
.user_authentication .form_wrapper label {
  font-size: 1.6rem;
  color: #050708;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.user_authentication .form_wrapper input {
  border: 0.1rem solid #707070;
  border-radius: 0.3rem;
}
.user_authentication .form_wrapper .form-group + .form-group {
  margin-top: 1.5rem;
}
.user_authentication .form_wrapper button {
  box-shadow: none;
  outline: 0;
  border-radius: 0.3rem;
  padding: 1.4rem 0;
  line-height: normal;
  border: 0;
}
.user_authentication .form_wrapper button:active:focus {
  box-shadow: none;
}
.user_authentication .form_wrapper .line {
  text-align: center;
  position: relative;
}
.user_authentication .form_wrapper .line::before {
  content: "";
  height: 0.1rem;
  width: 100%;
  background-color: #C2C2C2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.user_authentication .form_wrapper .line span {
  background-color: #ffffff;
  padding: 0 1rem;
}
.user_authentication .form_wrapper ul li a {
  border: 0.1rem solid #707070;
  border-radius: 0.3rem;
  padding: 1.4rem 0;
  line-height: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.5rem;
  color: #050708;
}
.user_authentication .form_wrapper ul li + li {
  margin-top: 1.5rem;
}

.discussion {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(1rem);
  display: flex;
  flex-wrap: wrap;
  border-radius: 1rem;
  overflow: hidden;
  border: 0.1rem solid #E1E5EA;
  height: calc(100vh - 24rem);
}
.discussion .discussion_boards {
  flex: 0 0 28rem;
  border-right: 0.1rem solid #F0F2F4;
  height: 100%;
  overflow-y: auto;
}
.discussion .discussion_boards .searchDiscussion {
  margin-bottom: 2.5rem;
  border-radius: 0;
}
.discussion .discussion_boards .searchDiscussion button[type=submit] {
  height: inherit;
  border: 0;
  padding: 0 2rem 0 1rem;
  background-color: #ffffff;
}
.discussion .discussion_boards .searchDiscussion input {
  border: 0;
}
.discussion .discussion_boards .created_boards h6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  border-bottom: 0.1rem solid #F0F2F4;
  padding: 0.8rem 1rem 0.6rem;
  margin: 0 2rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.4rem;
}
.discussion .discussion_boards .board_list {
  margin-bottom: 2.5rem;
}
.discussion .discussion_boards .board_list button {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  border: 0;
  background-color: transparent;
  padding: 0 0.5rem;
  margin: 0;
  z-index: 2;
  transition: all 0.15s ease;
  opacity: 0;
}
.discussion .discussion_boards .board_list .name {
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: 0.25s ease;
  padding: 0.8rem 2rem 0.8rem 2.5rem;
  transition: all 0.25s ease;
  font-size: 1.4rem;
}
.discussion .discussion_boards .board_list .name.active {
  background-color: rgba(255, 255, 255, 0.8);
}
.discussion .discussion_boards .board_list > li:hover a {
  background-color: rgba(255, 255, 255, 0.8);
}
.discussion .discussion_boards .board_list > li:hover button {
  opacity: 1;
}
.discussion .discussion_boards .board_list .board_notifcation {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #F9020B;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
}
.discussion .discussion_boards .board_list .board_notifcation.notify {
  opacity: 1;
  visibility: visible;
}
.discussion .discussion_boards .board_list .dropdown-menu a {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
}
.discussion .discussion_boards .board_list .dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.discussion .discussion_contents {
  flex: 1;
  height: 100%;
}
.discussion .board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 0.1rem solid #F0F2F4;
  min-height: 7rem;
}
.discussion .board-header .board-name {
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: 0.25s ease;
  transition: all 0.25s ease;
  font-size: 1.4rem;
}
.discussion .board-header .action-button {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.discussion .board-header .action-button li {
  position: relative;
}
.discussion .board-header .action-button .action-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.15s ease;
}
.discussion .board-header .action-button .action-icon:hover {
  background-color: #F8F9FB;
}
.discussion .board-header .dropdown-menu {
  width: 32rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 0;
  box-shadow: 0 1.6rem 3.2rem -0.4rem rgba(33, 37, 44, 0.08), 0 0.8rem 1.6rem -0.2rem rgba(33, 37, 44, 0.06);
  right: 0;
}
.discussion .board-header .dropdown-menu.attachments .title {
  font-size: 1.4rem;
  color: #6B7D94;
}
.discussion .board-header .dropdown-menu.attachments .attachment_item {
  border: 0.1rem solid #F0F2F4;
  border-radius: 1rem;
}
.discussion .board-header .dropdown-menu.attachments .attachment_item p {
  font-size: 1.2rem;
  color: #6B7D94;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.discussion .board-header .dropdown-menu.attachments .attachment_item + .attachment_item {
  margin-top: 1rem;
}
.discussion .board-header .dropdown-menu.attachments .attachment_item .action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 0.1rem solid #F0F2F4;
}
.discussion .board-header .dropdown-menu.attachments .attachment_item .action a {
  flex: 1;
  text-align: center;
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
}
.discussion .board-header .dropdown-menu.attachments .attachment_item .action a:hover {
  background-color: #F0F2F4;
  color: #F9020B;
}
.discussion .board-header .dropdown-menu.attachments .attachment_item .action a + a {
  border-left: 0.1rem solid #F0F2F4;
}
.discussion .board-header .dropdown-menu.attachments .files li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  padding: 1rem 0;
  transition: all 0.15s ease;
  border-radius: 0.4rem;
}
.discussion .board-header .dropdown-menu.attachments .files li:hover {
  background-color: #F8F9FB;
}
.discussion .board-header .dropdown-menu.attachments .files .icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--icon-bg);
}
.discussion .board-header .dropdown-menu.attachments .files .more {
  margin-left: auto;
}
.discussion .board-header .dropdown-menu.board_members li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
  color: #4B5768;
  transition: all 0.15s ease;
  border-radius: 0.8rem;
}
.discussion .board-header .dropdown-menu.board_members li:hover {
  background-color: #F8F9FB;
}
.discussion .board-header .dropdown-menu.board_members li .avatar {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #9fabbb;
}
.discussion .board-header .dropdown-menu.board_members li .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.discussion .board-header .dropdown-menu.board_members li .active_status {
  width: 0.9rem;
  height: 0.9rem;
  background-color: #6b7d94;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 0.1rem solid #ffffff;
}
.discussion .board-header .dropdown-menu.board_members li .active_status.away {
  background-color: #F5C400;
}
.discussion .board-header .dropdown-menu.board_members li .active_status.active {
  background-color: #4FB059;
}
.discussion .board-header .dropdown-menu.board_members li .designation {
  border: 0.1rem solid #E1E5EA;
  font-size: 1.2rem;
  color: #6B7D94;
  border-radius: 5rem;
  margin-left: auto;
  padding: 0 1rem;
  background-color: #ffffff;
}
.discussion .news_disc_wrapper {
  display: flex;
  flex-wrap: wrap;
  height: calc(100% - 7rem);
}
.discussion .inboxList_wrpper {
  flex: 0 0 32rem;
  border-right: 0.1rem solid #F0F2F4;
  overflow-y: scroll;
  height: 100%;
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
}
.discussion .inboxList_wrpper::-webkit-scrollbar {
  width: 0;
}
.discussion .inboxList_wrpper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.discussion .inboxList_wrpper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.discussion .inboxList_wrpper .timeline-header {
  background-color: rgba(0, 0, 0, 0.05);
  color: #939393;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem 0.8rem 2.4rem;
}
.discussion .inboxList_wrpper .no-board,
.discussion .inboxList_wrpper .preload {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.6rem;
  transition: all 0.15s ease-in-out;
}
.discussion .inboxList_wrpper .no-board i,
.discussion .inboxList_wrpper .preload i {
  font-size: 3rem;
}
.discussion .inboxList_wrpper .search_panel {
  position: relative;
}
.discussion .inboxList_wrpper .search_panel ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 2rem;
}
.discussion .inboxList_wrpper .search_panel ul a {
  font-size: 1.4rem;
}
.discussion .inboxList_wrpper .search_panel .dropdown-menu {
  width: 100%;
  border: 0;
  background-color: #bac7d4;
  backdrop-filter: blur(2rem);
  padding: 0;
  border-radius: 1rem;
}
.discussion .inboxList_wrpper .search_panel .dropdown-menu form {
  background-color: transparent;
  backdrop-filter: blur(0);
}
.discussion .inboxList_wrpper .search_panel .dropdown-menu p {
  margin-top: 1rem;
  line-height: 1;
}
.discussion .inboxList_wrpper .search_panel input {
  border-radius: 0.5rem !important;
  height: 4rem;
}
.discussion .inboxList_wrpper .search_panel .input-group-text {
  border: 0;
  font-size: 1.8rem;
  position: absolute;
  background-color: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 1.5rem 0 0;
  z-index: 4;
}
.discussion .inboxList_wrpper .inboxList li {
  padding: 0.8rem 1.2rem 0.8rem 2.4rem;
  border-bottom: 0.1rem solid #F0F2F4;
  transition: all 0.1s ease;
}
.discussion .inboxList_wrpper .inboxList li a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.4rem;
  display: block;
}
.discussion .inboxList_wrpper .inboxList li .date_time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  color: #6B7D94;
}
.discussion .inboxList_wrpper .inboxList li .date_time span {
  color: #F9020B;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(249, 2, 11, 0.1);
  border-radius: 50%;
  font-weight: 500;
}
.discussion .inboxList_wrpper .inboxList li:hover, .discussion .inboxList_wrpper .inboxList li.active {
  background-color: #F8F9FB;
}
.discussion .inboxList_wrpper .inboxList + .timeline-header {
  margin-top: 3rem;
}
.discussion .messages_inner {
  flex: 1;
  height: 100%;
  position: relative;
}
.discussion .messages_inner .summery_collapse_title {
  padding: 1rem 2rem;
  background-color: #F8F9FB;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.discussion .messages_inner .summery_collapse_title p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.4rem;
}
.discussion .messages_inner .summery_collapse_title + .dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  box-shadow: 0 0.6rem 1.2rem -0.2rem rgba(33, 37, 44, 0.1);
  z-index: 9;
  padding: 0;
  border: 0;
  border-radius: 0 0 1.5rem 1.5rem;
}
@media screen and (max-height: 800px) {
  .discussion .messages_inner .summery_collapse_title + .dropdown-menu {
    max-height: 27rem;
    overflow-y: scroll;
  }
}
@media screen and (max-height: 700px) {
  .discussion .messages_inner .summery_collapse_title + .dropdown-menu label {
    font-size: 1.2rem;
  }
}
.discussion .messages_inner .news_summery {
  border-bottom: 0.1rem solid #F0F2F4;
  padding: 2rem;
}
.discussion .messages_inner .news_summery label {
  margin-bottom: 0.2rem;
}
.discussion .messages_inner .news_summery .form-control {
  background-color: #F8F9FB;
  border: 0;
  resize: none;
  font-size: 1.2rem;
}
.discussion .messages_inner .news_summery .update_post_btn {
  position: absolute;
  right: 2rem;
  top: 1rem;
  font-size: 1.4rem;
  background: #00b260;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 0.3rem;
}
.discussion .chat_area {
  height: calc(100% - 4.6rem);
  position: relative;
  z-index: 1;
}
.discussion .chat_area .msg-divider {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 1rem 0;
  gap: 1rem;
}
.discussion .chat_area .msg-divider::before {
  content: "";
  width: 10rem;
  height: 0.1rem;
  background: #F0F2F4;
}
.discussion .chat_area .msg-divider::after {
  content: "";
  width: 10rem;
  height: 0.1rem;
  background: #F0F2F4;
}
.discussion .chat_area .message_item {
  padding: 1rem 2rem;
  max-width: 75%;
}
.discussion .chat_area .message_item .msg-avatar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.discussion .chat_area .message_item .msg-avatar .name-time {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 600;
}
.discussion .chat_area .message_item .msg-avatar .name-time .time {
  font-size: 1.2rem;
  color: #6b7d94;
  font-weight: 400;
}
.discussion .chat_area .message_item .img {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(249, 2, 11, 0.1);
  border-radius: 50%;
}
.discussion .chat_area .message_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.discussion .chat_area .message_item .msg-content {
  margin-left: 4.5rem;
}
.discussion .chat_area .message_item .msg-content p {
  font-size: 1.4rem;
}
.discussion .chat_area .message_item .attachment {
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border-left: 0.3rem solid;
  margin: 1rem 0;
}
.discussion .chat_area .message_item .attachment .name {
  font-weight: 600;
  line-height: 1.2;
}
.discussion .chat_area .message_item .attachment .button-groups {
  margin-top: 0.5rem;
  line-height: normal;
}
.discussion .chat_area .message_item .attachment .button-groups a {
  font-size: 1.3rem;
  font-weight: 500;
}
.discussion .chat_area .message_item .attachment .button-groups a + a {
  margin-left: 1rem;
}
.discussion .chat_area .message_item .attachment.success {
  background-color: rgba(0, 178, 96, 0.05);
  border-color: rgba(0, 178, 96, 0.5);
}
.discussion .chat_area .message_item .attachment.danger {
  background-color: rgba(249, 2, 11, 0.05);
  border-color: rgba(249, 2, 11, 0.5);
}
.discussion .chat_area .message_item .attachment.warning {
  background-color: rgba(255, 173, 0, 0.05);
  border-color: rgba(255, 173, 0, 0.5);
}
.discussion .chat_area .message_item.outgoing-msg {
  margin-left: auto;
}
.discussion .chat_area .message_item.outgoing-msg .msg-avatar {
  flex-direction: row-reverse;
}
.discussion .chat_area .message_item.outgoing-msg .msg-avatar .name-time {
  flex-direction: row-reverse;
}
.discussion .chat_area .message_item.outgoing-msg .msg-content {
  margin-left: 0;
  margin-right: 4.5rem;
  text-align: right;
}
.discussion .chat_area .empty_chat,
.discussion .chat_area .preload {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.6rem;
  transition: all 0.15s ease-in-out;
}
.discussion .chat_area .empty_chat i,
.discussion .chat_area .preload i {
  font-size: 3rem;
}
.discussion .chat_area .chat-body {
  height: calc(100% - 6rem);
  overflow-y: scroll;
}
.discussion .chat_area .chat-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.discussion .chat_area .chat-footer form {
  background-color: #F8F9FB;
  padding: 0 2rem;
}
.discussion .chat_area .chat-footer input {
  background-color: transparent;
  border: 0;
  font-size: 1.4rem;
  padding: 0;
}
.discussion .chat_area .chat-footer button[type=submit] {
  height: 6rem;
  width: 6rem;
  border: 0;
  background-color: transparent;
  padding: 0 1rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discussion .chat_area .chat-footer #preview-container {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.discussion .chat_area .chat-footer #preview-container .attachment-item {
  position: relative;
  background-color: #ffffff;
  width: 5rem;
  height: 5rem;
}
.discussion .chat_area .chat-footer #preview-container .attachment-item .remove-attachment {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: #f00;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 0;
}
.discussion .chat_area .chat-footer .attachment_uploader {
  width: 4rem;
  height: 4rem;
  border-radius: 50% !important;
  background-color: #E1E5EA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7D94;
  font-size: 1.8rem;
  cursor: pointer;
}
.discussion .chat_area .chat-footer .preview-image {
  max-width: 5rem;
  height: 5rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0.4rem;
}

/*# sourceMappingURL=style.css.map */
