/* Import Fonts & All CSS Files */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url(css/bootstrap.min.css);
@import url(css/animate.css);
@import url(css/owl.carousel.min.css);
@import url(css/jquery.animatedheadline.css);
@import url(css/font-awesome.min.css);
@import url(css/LineIcons.css);
@import url(css/apexcharts.css);
/* :: 6.1.0 Reboot */
* {
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "Roboto", sans-serif;
  color: #797494;
  overflow-x: hidden;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  scrollbar-width: thin;
}

/* 다크모드 */
[data-theme="dark"] body,
[data-theme="dark"] html {
  color: rgba(255, 255, 255, 0.7);
}

.row,
.at-row {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #020b10;
  letter-spacing: -0.5px;
}

p {
  color: #797494;
  font-size: 14px;
}

a,
a:hover,
a:focus {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-decoration: none;
  outline: 0 solid transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #020b10;
}

ul {
  margin: 0;
}
ul li {
  list-style: none;
  text-decoration: none;
}
ul li:hover, ul li:focus {
  list-style: none;
  text-decoration: none;
}

ol {
  margin: 0;
}

hr {
    display: block !important;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}



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



.line-clamp {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: break-word;
}

/* 줄 수별 설정 */
.line-1 { -webkit-line-clamp: 1 !important; }
.line-2 { -webkit-line-clamp: 2 !important; }
.line-3 { -webkit-line-clamp: 3 !important; }
.line-4 { -webkit-line-clamp: 4 !important; }
.line-5 { -webkit-line-clamp: 5 !important; }

/* Section Padding */
.section-padding-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-padding-0-30 {
  padding-top: 0;
  padding-bottom: 30px;
}

.section-padding-30-0 {
  padding-top: 30px;
  padding-bottom: 0;
}

.section-padding-30-14 {
  padding-top: 30px;
  padding-bottom: 14px;
}

/* Scrollup */
#scrollUp {
  bottom: 30px;
  font-size: 16px;
  right: 30px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border-radius: 6px;
  background-color: #020b10;
}
#scrollUp:hover, #scrollUp:focus {
  background-color: #e42f08;
}

.jarallax {
  position: relative;
  z-index: 0;
}
.jarallax .jarallax-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

input:required,
textarea:required {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

input:invalid,
textarea:invalid {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.no-boxshadow {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.badge {
  font-weight: 500;
}

/* :: 6.2.0 Shortcodes */
.h-100vh {
  height: 100vh !important;
}

.bg-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-overlay {
  position: relative;
  z-index: 1;
}
.bg-overlay::after {
  position: absolute;
  content: "";
  background: #e42f08;
  background: -webkit-gradient(linear, right top, left top, from(#e42f08), to(#0862fb));
  background: linear-gradient(to left, #e42f08, #0862fb);
  opacity: 0.85;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.bg-gray {
  background-color: #dcebfd !important;
}

.form-horizontal .form-group {
    margin-right: 15px;
    margin-left: 15px;
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem !important;
}

.form-group .control-label {
    margin-right: 10px;
}

.form-group .col-sm-3 {
    position: relative;
}

.form-control-feedback {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #28a745;
}

.form-control {
    padding-right: 30px; /* 아이콘 공간 확보 */
}

.form-control, .well, .btn, .alert, .input-group-addon, .label {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.btn,
.btn:hover,
.btn:focus {
  font-weight: 500;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn {
  padding: 0.375rem 1rem;
  font-size: 0.85rem !important;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
}

.btn-warning {
  color: #020b10;
  background-color: #ffaf00;
  border-color: #ffaf00;
}
.btn-warning:hover, .btn-warning:focus {
  color: #ffffff;
  background-color: #020b10;
  border-color: #020b10;
}

.btn-danger {
  background-color: #ea4c62;
  border-color: #ea4c62;
}
.btn-danger:hover, .btn-danger:focus {
  background-color: #020b10;
  border-color: #020b10;
}

.btn-primary {
  background-color: #e42f08 !important;
  border-color: #e42f08 !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #020b10 !important;
  border-color: #020b10 !important;
}

.btn-success {
  background-color: #00b894;
  border-color: #00b894;
}
.btn-success:hover, .btn-success:focus {
  background-color: #020b10;
  border-color: #020b10;
}

.btn-info {
  background-color: #21d6f1;
  border-color: #21d6f1;
}
.btn-info:hover, .btn-info:focus {
  background-color: #020b10;
  border-color: #020b10;
}

.bg-primary,
.badge-primary {
  background-color: #e42f08 !important;
}

.bg-danger,
.badge-danger {
  background-color: #ea4c62 !important;
}

.bg-warning,
.badge-warning {
  background-color: #ffaf00 !important;
}

.bg-info,
.badge-info {
  background-color: #21d6f1 !important;
}

.bg-success,
.badge-success {
  background-color: #00b894 !important;
}

.text-dark {
  color: #020b10 !important;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}
.section-heading h6 {
  margin-bottom: 0;
  color: #797494;
}
.section-heading p {
  margin-bottom: 0;
}

.card {
  border-color: #e6e6e6 !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(0, 0, 0, .125) !important;
}
.card .card-body {
  padding: 0.75rem;
}

.card-img-top {
  border-top-left-radius: calc(0.5rem - 1px) !important;
  border-top-right-radius: calc(0.5rem - 1px) !important;
}

.card-img-bottom {
  border-bottom-left-radius: calc(0.5rem - 1px);
  border-bottom-right-radius: calc(0.5rem - 1px);
}

.border,
.border-left,
.border-right,
.border-bottom,
.border-top {
  border-color: #e6e6e6 !important;
}

.mfp-iframe-holder .mfp-content {
  max-width: 1100px;
}


.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-right: 8px;
  padding-left: 8px;
}

.progress {
  height: 0.75rem;
}

/* :: 6.3.0 Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  top: 0;
  left: 0;
  background-color: #dcebfd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

/* :: 6.4.0 Demo */
.preview-hero-area {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 70px;
  background-color: #dcebfd;
}
.preview-hero-area .preview-content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}
.preview-hero-area .preview-content-wrapper .current-version {
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  background-color: #020b10;
  color: #ffffff;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.preview-hero-area .preview-content-wrapper .demo-title {
  font-size: 2.375rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .preview-hero-area .preview-content-wrapper .demo-title {
    font-size: 2rem;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .preview-hero-area .preview-content-wrapper .demo-title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width:767px) {
  .preview-hero-area .preview-content-wrapper .demo-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width:576px) and (max-width:767px) {
  .preview-hero-area .preview-content-wrapper .demo-title {
    font-size: 2rem;
  }
}
.preview-hero-area .preview-content-wrapper .demo-title span {
  color: #e42f08;
}
.preview-hero-area .preview-content-wrapper .demo-desc {
  font-size: 18px;
}
.preview-hero-area iframe {
  width: 375px;
  height: 667px;
  border: 4px solid #020b10;
  border-radius: 1rem;
  -webkit-box-shadow: 0 2px 12px 0 rgba(14, 14, 14, 0.25);
          box-shadow: 0 2px 12px 0 rgba(14, 14, 14, 0.25);
  margin-bottom: 70px;
}
@media only screen and (min-width:480px) and (max-width:767px) {
  .preview-hero-area iframe {
    width: 385px;
  }
}

.features-area {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}
.features-area ul li {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: #797494;
}
.features-area ul li i {
  padding-right: 0.5rem;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .features-area ul li {
    font-size: 14px;
  }
}
@media only screen and (max-width:767px) {
  .features-area ul li {
    font-size: 14px;
  }
}
.features-area ul li.active {
  color: #020b10;
}

.qr-code-wrapper {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  text-align: center;
  max-width: 15rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.qr-code-wrapper h6 {
  font-size: 14px;
  margin-top: 1rem;
}

.btn-mobile-live {
  margin-bottom: 70px;
}

.preview-footer-area {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.preview-footer-area .footer-nav li a {
  margin-left: 1rem;
  font-size: 14px;
  color: #797494;
}
.preview-footer-area .footer-nav li a:hover, .preview-footer-area .footer-nav li a:focus {
  color: #e42f08;
}
.preview-footer-area .footer-nav li:first-child a {
  margin-left: 0;
}
.preview-footer-area .footer-logo img {
  max-height: 50px;
}

/* :: 6.5.0 Header */
.header-area {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  background-color: #ffffff;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 12px rgba(116, 119, 148, 0.175);
          box-shadow: 0 2px 12px rgba(116, 119, 148, 0.175);
}

.search-form {
  position: relative;
  z-index: 1;
}
.search-form a {
  display: block;
  width: 28px;
  height: 28px;
  background-color: #dcebfd;
  border-radius: 6px;
  text-align: center;
  color: #100DD1;
}
.search-form a i {
  line-height: 28px;
  font-size: 1rem;
}

.navbar--toggler {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.navbar--toggler span {
  position: absolute;
  z-index: 15;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid #797494;
  border-radius: 2px;
}
.navbar--toggler span:nth-child(1) {
  top: 4px;
  left: 4px;
}
.navbar--toggler span:nth-child(2) {
  top: 4px;
  right: 4px;
}
.navbar--toggler span:nth-child(3) {
  bottom: 4px;
  left: 4px;
}
.navbar--toggler span:nth-child(4) {
  bottom: 4px;
  right: 4px;
}

.back-button a {
  color: #797494;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.back-button a i {
  font-size: 1rem;
}
.back-button a:hover, .back-button a:focus {
  color: #e42f08;
}

.page-heading h6 {
  color: #797494;
}

.logo-wrapper a {
  display: block;
}

/* :: 6.6.0 Sidenav */
.sidenav-wrapper {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: -250px;
  height: 100%;
  background-color: #dcebfd;
  overflow-y: auto;
  width: 240px;
}
.sidenav-wrapper .go-home-btn {
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  position: fixed;
  bottom: 30px;
  left: 170px;
  background-color: #e42f08;
  width: 40px;
  height: 35px;
  border-radius: 0.25rem;
  text-align: center;
  color: #ffffff;
  line-height: 37px;
  z-index: 10;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  font-size: 1.25rem;
}
.sidenav-wrapper .go-home-btn:hover, .sidenav-wrapper .go-home-btn:focus {
  background-color: #020b10;
}
.sidenav-wrapper.nav-active {
  left: 0;
}
.sidenav-wrapper.nav-active .go-home-btn {
  visibility: visible;
  opacity: 1;
}
.sidenav-wrapper.filter-nav {
  background: #dcebfd;
}

.time-date-weather-wrapper {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
}
.time-date-weather-wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(220, 235, 253, 0.1)), color-stop(50%, rgba(220, 235, 253, 0.5)), to(#dcebfd));
  background: linear-gradient(to bottom, rgba(220, 235, 253, 0.1) 0%, rgba(220, 235, 253, 0.5) 50%, #dcebfd 100%);
}
.time-date-weather-wrapper .weather-update .icon {
  font-size: 3rem;
  color: #ffffff;
}
.time-date-weather-wrapper .weather-update h4 {
  color: #ffffff;
}
.time-date-weather-wrapper .weather-update p {
  color: #020b10;
}
.time-date-weather-wrapper .time-date #dashboardDate {
  color: #020b10;
  font-size: 14px;
  font-weight: 500;
}
.time-date-weather-wrapper .time-date .running-time {
  color: #020b10;
  font-size: 1rem;
  font-weight: 300;
}
.time-date-weather-wrapper .time-date .running-time span {
  padding: 0 2px;
}

.sidenav-black-overlay {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  width: 100%;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(2, 3, 16, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
.sidenav-black-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidenav-nav {
  margin: 2rem 1rem;
  position: relative;
  z-index: 1;
}
.sidenav-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #020b10;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  font-size: 14px;
  font-weight: 500;
}
.sidenav-nav li a i {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.25rem;
  color: #797494;
}
.sidenav-nav li a .red-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e42f08;
}
.sidenav-nav li a:hover, .sidenav-nav li a:focus {
  color: #e42f08;
  font-weight: 500;
}
.sidenav-nav li:last-child a {
  margin-bottom: 0;
}

/* :: 6.7.0 Random */
.page-content-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 0px;
  margin-bottom: 0px;
}

.privacy-policy-wrapper,
.about-content-wrapper,
.contact-form-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 25px;
  padding-bottom: 30px;
}

.for-you-news-wrapper,
.news-today-wrapper,
.trending-news-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 30px;
}

.all-pages-wrapper,
.user-all-article-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 0px;
  padding-bottom: 30px;
}

.page-nav {
  position: relative;
  z-index: 1;
}
.page-nav li a {
  color: #020b10;
  display: block;
  padding: 0.75rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  border-radius: 5rem;
  background-color: #dcebfd;
  font-size: 14px;
}
.page-nav li a i {
  margin-left: auto;
  font-size: 1rem;
}
.page-nav li a:hover, .page-nav li a:focus {
  color: #ffffff;
  background-color: #e42f08;
}
.page-nav li:last-child a {
  margin-bottom: 0;
}

.newsten-title {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.line-height-1 {
  line-height: 1;
}

.video-icon {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e42f08;
  text-align: center;
  color: #ffffff;
}
.video-icon i {
  line-height: 30px;
  padding-left: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e42f08;
}
.video-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -5;
  content: "";
  background-color: rgb(244, 245, 255);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: videoicon 3s linear 0s infinite;
  animation: videoicon 3s linear 0s infinite;
}

@-webkit-keyframes videoicon {
  0% {
    width: 0%;
    height: 0%;
    opacity: 1;
  }
  70% {
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    opacity: 0;
  }
  100% {
    width: 0%;
    height: 0%;
    opacity: 0;
  }
}
@keyframes videoicon {
  0% {
    width: 0%;
    height: 0%;
    opacity: 1;
  }
  70% {
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    opacity: 0;
  }
  100% {
    width: 0%;
    height: 0%;
    opacity: 0;
  }
}
.flashing-effect {
  -webkit-animation: flashingeffect 2s linear 1s infinite;
  animation: flashingeffect 2s linear 1s infinite;
}

@-webkit-keyframes flashingeffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flashingeffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.error-content {
  padding-bottom: 30px;
}

/* :: 6.8.0 Hero */
.intro-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.get-started-btn {
  position: fixed;
  z-index: 10;
  bottom: 40px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.hero-slides {
  position: relative;
  z-index: 1;
}


.hero-slides .single-hero-slide .background-shape .circle2 {
  -webkit-transition-duration: 1500ms;
  transition-duration: 1500ms;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(244, 245, 255, 0.1);
  position: absolute;
  top: -400px;
  right: -400px;
  z-index: 1;
}
.hero-slides .single-hero-slide .background-shape .circle3 {
  -webkit-transition-duration: 1000ms;
  transition-duration: 1000ms;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(244, 245, 255, 0.1);
  position: absolute;
  top: -400px;
  right: -400px;
  z-index: 2;
}
.hero-slides .active .single-hero-slide .background-shape .circle2 {
  top: -190px;
  right: -170px;
}
.hero-slides .active .single-hero-slide .background-shape .circle3 {
  top: -70px;
  right: -220px;
}

.single-hero-slide {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center center;
  border-radius: 1.5rem;
  overflow: hidden;
}
.single-hero-slide::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #0C153B;
  opacity: 0.55;
  content: "";
  position: absolute;
  border-radius: 1.5rem;
}
.single-hero-slide .slide-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.single-hero-slide .bookmark-post {
  position: absolute;
  z-index: 99;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  font-size: 1.25rem;
}
.single-hero-slide .bookmark-post:hover, .single-hero-slide .bookmark-post:focus {
  color: #ffaf00;
}
.single-hero-slide .post-catagory {
  padding: 0.25rem 0.75rem;
  background-color: #e42f08;
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-weight: 500;
  border-radius: 30px;
}
.single-hero-slide .post-catagory:hover, .single-hero-slide .post-catagory:focus {
  background-color: #00b894;
  color: #ffffff;
}
.single-hero-slide .post-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.single-hero-slide .post-title:hover, .single-hero-slide .post-title:focus {
  text-decoration: underline;
  color: #ffaf00;
}
.single-hero-slide .post-meta a,
.single-hero-slide .post-meta span {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  margin-right: 1rem;
}
.single-hero-slide .post-meta a i,
.single-hero-slide .post-meta span i {
  color: #ffaf00;
  font-size: 14px;
}
.single-hero-slide .post-meta a:hover, .single-hero-slide .post-meta a:focus {
  color: #ffaf00;
}
.single-hero-slide .video-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 42;
}

/* :: 6.9.0 Footer */
.footer-nav-area {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  background-color: #ffffff;
  width: 100%;
  height: 58px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 -2px 12px rgba(116, 119, 148, 0.175);
          box-shadow: 0 -2px 12px rgba(116, 119, 148, 0.175);
}

.newsten-footer-nav ul {
  width: 100%;
}
.newsten-footer-nav ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  width: 20%;
  position: relative;
  z-index: 1;
  height: 100%;
}
.newsten-footer-nav ul li a {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  color: #797494;
  height: 100%;
}
.newsten-footer-nav ul li a::after {
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  position: absolute;
  min-width: 24px;
  width: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  content: "";
  bottom: -5px;
  left: 50%;
  z-index: 10;
  background-color: #e42f08;
  opacity: 0;
  visibility: hidden;
}
.newsten-footer-nav ul li a i {
  font-size: 1.375rem;
  line-height: 58px;
}
.newsten-footer-nav ul li a:hover, .newsten-footer-nav ul li a:focus {
  color: #e42f08;
}
.newsten-footer-nav ul li a:hover::after, .newsten-footer-nav ul li a:focus::after {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.newsten-footer-nav ul li.active a {
  color: #e42f08;
}
.newsten-footer-nav ul li.active a::after {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

/* :: 6.10.0 Search */
.search-post-wrapper {
  background: #ffffcc;
  background: -webkit-gradient(linear, left top, right top, from(#fff2cc), to(#ffffcc));
  background: linear-gradient(to right, #fff2cc, #ffffcc);
  position: relative;
  z-index: 1;
  padding-top: 2.125rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}
.search-post-wrapper h4 {
  font-weight: 300;
  font-size: 1.75rem;
}
.search-post-wrapper .shape1 {
  position: absolute;
  z-index: -5;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 175, 0, 0.5);
  border-radius: 50%;
  top: -300px;
  right: -250px;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}
.search-post-wrapper .shape2 {
  position: absolute;
  z-index: -5;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 175, 0, 0.5);
  border-radius: 50%;
  top: -350px;
  right: -300px;
}
.search-post-wrapper .shape3 {
  position: absolute;
  z-index: -5;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 175, 0, 0.5);
  border-radius: 50%;
  top: -400px;
  right: -350px;
}
.search-post-wrapper .shape4 {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: -5;
  border: 20px solid #ffaf00;
  border-radius: 50%;
  left: -3rem;
  bottom: -2rem;
}
.search-post-wrapper .shape5 {
  width: 160px;
  height: 160px;
  position: absolute;
  z-index: -5;
  border: 1px solid rgba(255, 175, 0, 0.5);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.search-page-form {
  position: relative;
  z-index: 1;
}
.search-page-form .search-via-voice {
  position: absolute;
  z-index: 100;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.25rem;
  color: #100DD1;
  font-size: 1.25rem;
}
.search-page-form form {
  position: relative;
  z-index: 1;
}
.search-page-form form input {
  background-color: #ffffff;
  border: 0;
  border-radius: 3rem;
  padding-left: 3rem;
  -webkit-box-shadow: 0 2px 2px 0 rgba(16, 13, 209, 0.175);
          box-shadow: 0 2px 2px 0 rgba(16, 13, 209, 0.175);
  font-size: 13px;
}
.search-page-form form input:focus {
  -webkit-box-shadow: 0 2px 2px 0 rgba(16, 13, 209, 0.175);
          box-shadow: 0 2px 2px 0 rgba(16, 13, 209, 0.175);
}
.search-page-form form button {
  position: absolute;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  outline: none;
  color: #e42f08;
}
.search-page-form form button i {
  line-height: 40px;
}

/* :: 6.11.0 Register */
.login-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 10;
  overflow-y: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow-x: hidden;
  background-color: #ffffff;
}
.login-wrapper .success-check {
  margin: 0 auto;
}
.login-wrapper .success-check i {
  font-size: 4rem;
  background: -webkit-linear-gradient(#100DD1, #00b894);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login-wrapper .btn {
  border-radius: 5rem;
}
.login-wrapper .login-shape img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -10;
}
.login-wrapper .login-shape2 img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
}

.login-text {
  position: relative;
  z-index: 1;
}
.login-text h3 {
  color: #020b10;
  font-size: 1.375rem;
  margin-top: 2rem;
}
.login-text .login-img {
  max-width: 10rem;
  margin: 0 auto;
}
.login-text .shape1 {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 8px solid #dcebfd;
  border-radius: 50%;
  top: -30%;
  left: 13%;
  z-index: -2;
}
.login-text .shape2 {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 5px solid #00b894;
  border-radius: 50%;
  top: -47%;
  right: 15%;
  z-index: -2;
}
.login-text .shape3 {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #100DD1;
  border-radius: 50%;
  top: -21%;
  right: 46%;
  z-index: -2;
}
.login-text .shape4 {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #ea4c62;
  border-radius: 50%;
  top: 0;
  right: 0;
  z-index: -2;
}
.login-text .shape5 {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #ffaf00;
  border-radius: 50%;
  bottom: 22%;
  left: 18%;
  z-index: -2;
}
.login-text .shape6 {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #e6e6e6;
  border-radius: 50%;
  bottom: 20%;
  right: 10%;
  z-index: -2;
}
.login-text .shape7 {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #dcebfd;
  border-radius: 50%;
  bottom: 65%;
  left: 5%;
  z-index: -2;
}
.login-text .shape8 {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #090909;
  border-radius: 50%;
  top: 35%;
  right: 10%;
  z-index: -2;
}

.register-form {
  position: relative;
  z-index: 1;
}
.register-form .form-group {
  position: relative;
  z-index: 1;
}
.register-form .btn {
  border-radius: 5rem;
}
.register-form span {
  font-size: 12px;
  display: block;
}
.register-form form > .form-group > label {
  position: absolute;
  text-align: center;
  z-index: 100;
  right: 1.5rem;
  font-size: 14px;
  margin-bottom: 0;
  top: 10px;
  height: 30px;
  border-radius: 50%;
  color: #e42f08;
}
.register-form form > .form-group > label i {
  line-height: 30px;
}
.register-form .form-control {
  border-radius: 0.5rem;
  border: 2px solid #dcebfd;
  font-size: 13px;
  font-weight: 300;
  height: 50px;
  padding: 0.5rem 1.5rem;
  background-color: #dcebfd;
}
.register-form .form-control:focus {
  border-color: #e42f08;
}
.register-form .progress {
  width: calc(100% - 0.5rem);
  height: 3px;
  border-radius: 1rem;
  margin: 1rem 0.25rem 0.25rem;
  background-color: #dcebfd;
}
.register-form .password-score {
  font-size: 12px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0.25rem;
}
.register-form .password-recommendation {
  display: none !important;
}
.register-form #password-recommendation-heading {
  font-weight: 700;
  color: #00b894;
  font-size: 16px;
}

.login-meta-data a {
  font-size: 14px;
}
.login-meta-data a:hover, .login-meta-data a:focus {
  color: #e42f08;
}
.login-meta-data p a:hover, .login-meta-data p a:focus {
  color: #e42f08;
}

.change-password-card {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 0.75rem;
}
.change-password-card .card-body {
  padding: 1.5rem;
}
.change-password-card span {
  font-size: 13px;
  margin-bottom: 0.375rem;
  display: block;
}
.change-password-card .form-control {
  height: 35px;
  background-color: #ffffff;
}
.change-password-card .form-control:focus {
  border-color: #100DD1;
}

/* :: 6.12.0 Contact */
.form-group label {
  word-break: keep-all;
  font-size: 14px;
  padding: 0px 5px 0px 5px;
}

.form-control {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border-color: #e6e6e6;
  height: 50px;
  padding: 0.75rem 1rem;
  font-size: 14px;
  background-color: #dcebfd;
}
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* :: 6.13.0 Blog */
.single-trending-post {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #dcebfd;
  border-radius: 1rem;
  border: 1px solid #dcebfd;
}
.single-trending-post:last-child {
  margin-bottom: 0;
}
.single-trending-post .post-thumbnail {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  max-width: 80px;
  width: 80px;
}
.single-trending-post .post-thumbnail .video-icon {
  position: absolute;
  z-index: 42;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.single-trending-post .post-thumbnail img {
  border-radius: 1rem;
}
.single-trending-post .post-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 80px);
  flex: 0 0 calc(100% - 80px);
  max-width: calc(100% - 80px);
  width: calc(100% - 80px);
  padding-left: 1rem;
}
.single-trending-post .post-content .post-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: block;
}
.single-trending-post .post-content .post-title:hover, .single-trending-post .post-content .post-title:focus {
  color: #e42f08;
}
.single-trending-post .post-content .post-meta a {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 1.5rem;
  color: #797494;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.single-trending-post .post-content .post-meta a:hover, .single-trending-post .post-content .post-meta a:focus {
  color: #e42f08;
}
.single-trending-post .post-content .post-meta a:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  right: -15px;
  z-index: 1;
  background-color: #749491;
}
.single-trending-post .post-content .post-meta a:first-child {
  background-color: #ea4c62;
  padding: 0.125rem 0.5rem;
  border-radius: 30px;
  font-size: 10px;
  color: #ffffff;
}
.single-trending-post .post-content .post-meta a:first-child:hover, .single-trending-post .post-content .post-meta a:first-child:focus {
  background-color: #0C153B;
}
.single-trending-post .post-content .post-meta a:last-child {
  margin-right: 0;
}
.single-trending-post .post-content .post-meta a:last-child::after {
  display: none;
}
.single-trending-post:nth-child(3n+1) .post-content .post-meta a:first-child {
  background-color: #00b894;
}
.single-trending-post:nth-child(3n+1) .post-content .post-meta a:first-child:hover, .single-trending-post:nth-child(3n+1) .post-content .post-meta a:first-child:focus {
  background-color: #0C153B;
}
.single-trending-post:nth-child(3n+0) .post-content .post-meta a:first-child {
  background-color: #ffaf00;
}
.single-trending-post:nth-child(3n+0) .post-content .post-meta a:first-child:hover, .single-trending-post:nth-child(3n+0) .post-content .post-meta a:first-child:focus {
  background-color: #0C153B;
}

.tabs-news-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}
.tabs-news-wrapper .nav-tabs {
  border-bottom: 0;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(15, 16, 19, 0.175);
          box-shadow: 0 1px 2px 0 rgba(15, 16, 19, 0.175);
}
.tabs-news-wrapper .nav-tabs .nav-item {
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.tabs-news-wrapper .nav-tabs .nav-item.nav-link {
  border: 0;
  border-radius: 0.25rem;
  font-size: 14px;
}
.tabs-news-wrapper .nav-tabs .nav-item.nav-link.active {
  background-color: #e42f08;
  color: #ffffff;
}

.single-news-post {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
}
.single-news-post:last-child {
  margin-bottom: 0;
}
.single-news-post .post-thumbnail {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  max-width: 70px;
  width: 70px;
  border-radius: 50%;
}
.single-news-post .post-thumbnail .video-icon {
  position: absolute;
  z-index: 42;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.single-news-post .post-thumbnail img {
   width: 100%;
   aspect-ratio: 1 / 1;
   object-fit: cover; 
  border-radius: 50%;
}
.single-news-post .post-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 70px);
  flex: 0 0 calc(100% - 70px);
  max-width: calc(100% - 70px);
  width: calc(100% - 70px);
  padding-left: 1rem;
}
.single-news-post .post-content .post-title {
  font-size: 14px;
  margin-bottom: 0.25rem;
  display: block;
}
.single-news-post .post-content .post-title:hover, .single-news-post .post-content .post-title:focus {
  color: #e42f08;
}
.single-news-post .post-content .post-meta a {
  font-size: 12px;
  margin-right: 1.5rem;
  color: #797494;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.single-news-post .post-content .post-meta a:hover, .single-news-post .post-content .post-meta a:focus {
  color: #e42f08;
}
.single-news-post .post-content .post-meta a:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  right: -15px;
  z-index: 1;
  background-color: #749491;
}
.single-news-post .post-content .post-meta a:last-child {
  margin-right: 0;
}
.single-news-post .post-content .post-meta a:last-child::after {
  display: none;
}

.single-recommended-post {
  position: relative;
  z-index: 1;
  background-color: #0C153B;
  border-radius: 1rem;
}
.single-recommended-post .video-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 42;
}
.single-recommended-post .bookmark-customize-option {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 60;
}
.single-recommended-post .bookmark-customize-option .btn {
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  background-color: rgba(244, 245, 255, 0.2);
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 50%;
}
.single-recommended-post .bookmark-customize-option .btn i {
  line-height: 29px;
}
.single-recommended-post .bookmark-customize-option .btn::after {
  display: none;
}
.single-recommended-post .bookmark-customize-option .btn:hover, .single-recommended-post .bookmark-customize-option .btn:focus {
  background-color: #e42f08;
}
.single-recommended-post .bookmark-customize-option .dropdown-menu {
  border: 0;
  min-width: 110px;
  max-width: 140px;
}
.single-recommended-post .bookmark-customize-option .dropdown-menu .dropdown-item {
  padding: 0.25rem 0.75rem;
  color: #797494;
  font-size: 12px;
}
.single-recommended-post .bookmark-customize-option .dropdown-menu .dropdown-item:hover {
  background-color: #dcebfd;
}
.single-recommended-post .bookmark-post {
  position: absolute;
  z-index: 99;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  font-size: 1rem;
}
.single-recommended-post .bookmark-post:hover, .single-recommended-post .bookmark-post:focus {
  color: #ffaf00;
}
.single-recommended-post .post-thumbnail {
  position: relative;
  z-index: 1;
}
.single-recommended-post .post-thumbnail::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  content: "";
  background-color: #0C153B;
  position: absolute;
  border-radius: 1rem;
  opacity: 0.45;
}
.single-recommended-post .post-thumbnail img {
  border-radius: 1rem;
}
.single-recommended-post .post-content {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 49;
  padding: 1rem;
}
.single-recommended-post .post-content .post-catagory {
  font-size: 11px;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #ffaf00;
}
.single-recommended-post .post-content .post-title {
  font-size: 14px;
  display: block;
  color: #ffffff;
}
.single-recommended-post .post-content .post-title:hover, .single-recommended-post .post-content .post-title:focus {
  text-decoration: underline;
  color: #ffffff;
}

/* :: 6.14.0 Editorial */
.editorial-choice-news-wrapper {
  position: relative;
  z-index: 1;
  background: #0C153B;
  background: -webkit-gradient(linear, left top, right top, from(#242644), to(#0C153B));
  background: linear-gradient(to right, #242644, #0C153B);
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}
.editorial-choice-news-wrapper .bg-shape1 img {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: -3;
}
.editorial-choice-news-wrapper .bg-shape2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  width: 90px;
  height: 100%;
  background-repeat: repeat;
}

.editorial-choice-title {
  position: relative;
  z-index: 1;
}
.editorial-choice-title i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
  color: #ffaf00;
}
.editorial-choice-title h6 {
  color: #ffffff;
  margin-bottom: 0;
}

.single-editorial-slide {
  position: relative;
  z-index: 1;
}
.single-editorial-slide .bookmark-post {
  position: absolute;
  z-index: 99;
  top: 0.5rem;
  left: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  background-color: #ea4c62;
}
.single-editorial-slide .bookmark-post i {
  line-height: 30px;
}
.single-editorial-slide .bookmark-post:hover, .single-editorial-slide .bookmark-post:focus {
  color: #ffffff;
}
.single-editorial-slide .post-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  width: 40%;
  border-radius: 1rem;
}
.single-editorial-slide .post-thumbnail .video-icon {
  position: absolute;
  z-index: 42;
  bottom: 1rem;
  left: 1rem;
}
.single-editorial-slide .post-thumbnail img {
  border-radius: 1rem;
}
.single-editorial-slide .post-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
  width: 60%;
  padding-left: 1rem;
  padding-top: 6px;
}
.single-editorial-slide .post-content .post-catagory {
  background-color: #00b894;
  padding: 0.25rem 0.75rem;
  border-radius: 3rem;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 0.25rem;
  display: inline-block;
}
.single-editorial-slide .post-content .post-catagory:hover, .single-editorial-slide .post-content .post-catagory:focus {
  background-color: #e42f08;
}
.single-editorial-slide .post-content .post-title {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.single-editorial-slide .post-content .post-title:hover, .single-editorial-slide .post-content .post-title:focus {
  color: #ffaf00;
}
.single-editorial-slide .post-content .post-meta a {
  font-size: 12px;
  text-transform: capitalize;
  margin-right: 1.5rem;
  color: #797494;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.single-editorial-slide .post-content .post-meta a:hover, .single-editorial-slide .post-content .post-meta a:focus {
  color: #e42f08;
}
.single-editorial-slide .post-content .post-meta a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  right: -14px;
  z-index: 1;
  background-color: #797494;
}
.single-editorial-slide .post-content .post-meta a:last-child {
  margin-right: 0;
}
.single-editorial-slide .post-content .post-meta a:last-child::after {
  display: none;
}

.editorial-choice-news-slide {
  position: relative;
  z-index: 1;
}
.editorial-choice-news-slide .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  padding-left: calc(40% + 1rem);
  bottom: 6px;
}
.editorial-choice-news-slide .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(244, 245, 255, 0.2);
  margin: 0 3px;
}
.editorial-choice-news-slide .owl-dots .owl-dot.active {
  background-color: #ffaf00;
}

/* :: 6.15.0 Catagory */
.top-catagories-wrapper {
  position: relative;
  z-index: 1;
  background: #ffffcc;
  background: -webkit-gradient(linear, left top, right top, from(#fff2cc), to(#ffffcc));
  background: linear-gradient(to right, #fff2cc, #ffffcc);
  padding-top: 20px;
  padding-bottom: 30px;
  overflow: hidden;
}

[data-theme="dark"] .top-catagories-wrapper {
  background: linear-gradient(to right, #404455, #0c153b);
}

.top-catagories-wrapper .catagory-title {
  position: relative;
  left: 1rem;
  z-index: 10;
  font-weight: 700;
  text-transform: uppercase;
}
.top-catagories-wrapper .bg-shapes .shape1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid #ffaf00;
  border-radius: 50%;
  top: -200px;
  left: -130px;
  z-index: -1;
}
.top-catagories-wrapper .bg-shapes .shape2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid #ffaf00;
  border-radius: 50%;
  top: -230px;
  left: -130px;
  z-index: -1;
}
.top-catagories-wrapper .bg-shapes .shape3 {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid #ffaf00;
  border-radius: 50%;
  top: -260px;
  left: -130px;
  z-index: -1;
}
.top-catagories-wrapper .bg-shapes .shape4 {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid #ffaf00;
  border-radius: 40%;
  bottom: -150px;
  right: -140px;
  z-index: -1;
}
.top-catagories-wrapper .bg-shapes .shape5 {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid #ffaf00;
  border-radius: 30%;
  bottom: -175px;
  right: -150px;
  z-index: -1;
}

.catagory-card {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  background-color: transparent;
}
.catagory-card a {
  position: relative;
  border-radius: 1rem;
  display: block;
  z-index: 1;
  overflow: hidden;
}
.catagory-card a::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  content: "";
  background-color: #0C153B;
  opacity: 0.4;
  border-radius: 1rem;
}
.catagory-card a img {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border-radius: 1rem;
  position: relative;
  z-index: -5;
}
.catagory-card a h6 {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  font-size: 12px;
  margin-bottom: 0;
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  z-index: 100;
  color: #ffffff;
  background-color: #e42f08;
  padding: 0.25rem 0.625rem;
  border-radius: 2rem;
}
.catagory-card a h6:hover, .catagory-card a h6:focus {
  background-color: #020b10;
}
.catagory-card a:hover img, .catagory-card a:focus img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.catagory-slides {
  width: calc(100% + 3rem);
  margin-left: 0rem;
}
.catagory-slides .owl-stage .owl-item:nth-child(3n+1) .catagory-card a::after {
  background-color: #100DD1;
}
.catagory-slides .owl-stage .owl-item:nth-child(3n+1) .catagory-card a h6 {
  background-color: #ea4c62;
}
.catagory-slides .owl-stage .owl-item:nth-child(3n+1) .catagory-card a h6:hover, .catagory-slides .owl-stage .owl-item:nth-child(3n+1) .catagory-card a h6:focus {
  background-color: #020b10;
}
.catagory-slides .owl-stage .owl-item:nth-child(3n+0) .catagory-card a::after {
  background-color: #ea4c62;
}
.catagory-slides .owl-stage .owl-item:nth-child(3n+0) .catagory-card a h6 {
  background-color: #ffaf00;
  color: #020b10;
}
.catagory-slides .owl-stage .owl-item:nth-child(3n+0) .catagory-card a h6:hover, .catagory-slides .owl-stage .owl-item:nth-child(3n+0) .catagory-card a h6:focus {
  background-color: #020b10;
  color: #ffffff;
}

.all-catagory-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 14px;
}
.all-catagory-wrapper .catagory-card a h6 {
  left: 1rem;
  bottom: 1rem;
  padding: 0.25rem 0.75rem;
}

.catagory-posts-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 30px;
}

/* :: 6.16.0 Blog Details */
.single-blog-thumbnail {
  position: relative;
  z-index: 1;
  width: 100%;
}
.single-blog-thumbnail .post-bookmark {
  width: 36px;
  height: 36px;
  position: absolute;
  z-index: 10;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #e42f08;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
}
.single-blog-thumbnail .post-bookmark i {
  line-height: 36px;
}
.single-blog-thumbnail .post-bookmark:hover, .single-blog-thumbnail .post-bookmark:focus {
  color: #ffffff;
  background-color: #0C153B;
}

.single-blog-info {
  position: relative;
  z-index: 1;
  padding-top: 0px;
  padding-bottom: 80px;
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 0;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
}
.single-blog-info .post-like-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75px;
  flex: 0 0 75px;
  max-width: 75px;
  width: 75px;
  text-align: center;
  padding: 1rem 0;
  background-color: #dcebfd;
  border-radius: 0.25rem;
}
.single-blog-info .post-like-wrap span {
  font-size: 12px;
  text-transform: uppercase;
  color: #797494;
  margin-top: 0.5rem;
}
.single-blog-info .post-like-wrap .line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #00b894;
  margin: 0.5rem auto 0.75rem;
}
.single-blog-info .post-content-wrap {
  position: relative;
  z-index: 1;
  padding-left: 1rem;
}
.single-blog-info .post-share {
  width: 30px;
  height: 30px;
  background-color: #ffaf00;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  z-index: 10;
  display: block;
  margin: 0 auto;
}
.single-blog-info .post-share i {
  line-height: 30px;
}
.single-blog-info .post-share:hover, .single-blog-info .post-share:focus {
  color: #ffffff;
  background-color: #e42f08;
}
.single-blog-info .post-meta a {
  color: #797494;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 1rem;
}
.single-blog-info .post-meta a:hover, .single-blog-info .post-meta a:focus {
  color: #e42f08;
}
.single-blog-info .post-catagory {
  padding: 0.125rem 0.75rem;
  font-size: 12px;
  color: #ffffff;
  border-radius: 3rem;
  background-color: #00b894;
}
.single-blog-info .post-catagory:hover, .single-blog-info .post-catagory:focus {
  background-color: #0C153B;
}
.single-blog-info .post-love {
  width: 30px;
  height: 30px;
  background-color: #ea4c62;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
  font-size: 1rem;
}
.single-blog-info .post-love i {
  line-height: 32px;
}
.single-blog-info .post-love:hover, .single-blog-info .post-love:focus {
  background-color: #020b10;
}

.related-post-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 30px;
}

.blog-description {
  position: relative;
  z-index: 1;
  padding-bottom: 12px;
}

#scrollIndicator {
  position: fixed;
  height: 2px;
  background-color: #100DD1;
  bottom: 58px;
  z-index: 100;
}

.social-share-btn a {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  max-width: 40px;
  width: 40px;
  height: 40px;
  display: block;
  margin: 0.5rem;
  border-radius: 50%;
  border: 2px solid #e6e6e6;
  text-align: center;
}
.social-share-btn a i {
  line-height: 36px;
}
.social-share-btn a:hover, .social-share-btn a:focus {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.social-share-btn a.btn-facebook {
  color: #3b5998;
  border-color: #3b5998;
}
.social-share-btn a.btn-twitter {
  color: #00acee;
  border-color: #00acee;
}
.social-share-btn a.btn-instagram {
  color: #3f729b;
  border-color: #3f729b;
}
.social-share-btn a.btn-whatsapp {
  color: #4FCE5D;
  border-color: #4FCE5D;
}
.social-share-btn a.btn-linkedin {
  color: #0e76a8;
  border-color: #0e76a8;
}
.social-share-btn a.btn-tumblr {
  color: #34526f;
  border-color: #34526f;
}
.social-share-btn a.btn-quora {
  color: #B92B27;
  border-color: #B92B27;
}

/* :: 6.17.0 Profile */
.profile-content-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  background: #ffffcc;
  background: -webkit-gradient(linear, left top, right top, from(#fff2cc), to(#ffffcc));
  background: linear-gradient(to right, #fff2cc, #ffffcc);
}

.profile-settings-option a {
  display: block;
  position: absolute;
  top: 2rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 99;
  -webkit-box-shadow: 0 1px 16px 0 rgba(16, 13, 209, 0.175);
          box-shadow: 0 1px 16px 0 rgba(16, 13, 209, 0.175);
}
.profile-settings-option a i {
  line-height: 32px;
}
.profile-settings-option a:hover, .profile-settings-option a:focus {
  background-color: #100DD1;
  color: #ffffff;
}

.user-meta-data {
  position: relative;
  z-index: 1;
}
.user-meta-data .user-thumbnail {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  max-width: 100px;
  width: 100px;
}
.user-meta-data .user-thumbnail img {
  border-radius: 1rem;
}
.user-meta-data .user-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
  max-width: calc(100% - 100px);
  width: calc(100% - 100px);
  padding-left: 1rem;
}
.user-meta-data .user-content > p {
  background-color: #e42f08;
  padding: 0.125rem 0.5rem 0.1rem;
  border-radius: 4px;
  font-size: 12px;
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
}
.user-meta-data .user-content .user-meta-data p {
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
}
.user-meta-data .user-content .user-meta-data p span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #797494;
}
.user-meta-data .user-content .user-meta-data p span.counter {
  font-size: 18px;
  margin-bottom: 0.375rem;
  font-weight: 700;
  color: #020b10;
}

.my-visitors-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 30px;
}

.user-total-count-chart {
  position: relative;
  z-index: 1;
  background-color: #dcebfd;
  border-radius: 0.5rem;
  padding: 1rem 1rem 0.5rem 0.5rem;
}

.traffic-source-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}

.traffic-source-chart {
  position: relative;
  z-index: 1;
  background-color: #dcebfd;
  border-radius: 0.5rem;
  padding: 1rem 1rem 1rem 0.5rem;
}

/* :: 6.18.0 Comment */
.live-video-comments {
  position: relative;
  z-index: 1;
  padding-top: 25px;
  padding-bottom: 4px;
}

.comment-sorting-option {
  position: relative;
  z-index: 2;
}
.comment-sorting-option .btn {
  background-color: #dcebfd;
  padding: 0.125rem 0.5rem 0.1rem;
  text-align: center;
  font-size: 1rem;
  color: #020b10;
  line-height: 1;
  border-radius: 2rem;
}
.comment-sorting-option .btn::after {
  display: none;
}
.comment-sorting-option .btn:hover, .comment-sorting-option .btn:focus {
  background-color: #e42f08;
  color: #ffffff;
}
.comment-sorting-option .dropdown-menu {
  border: 1px solid #e6e6e6;
  min-width: 140px;
  max-width: 180px;
  -webkit-box-shadow: 0 2px 12px rgba(15, 16, 19, 0.175);
          box-shadow: 0 2px 12px rgba(15, 16, 19, 0.175);
}
.comment-sorting-option .dropdown-menu .dropdown-item {
  padding: 0.25rem 0.75rem;
  color: #020b10;
  font-size: 13px;
  font-weight: 500;
}
.comment-sorting-option .dropdown-menu .dropdown-item:hover {
  background-color: #dcebfd;
}

.single-comment-wrap {
  position: relative;
  z-index: 1;
}
.single-comment-wrap .comment-author {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  max-width: 40px;
  width: 40px;
  border-radius: 50%;
}
.single-comment-wrap .comment-author img {
  border-radius: 50%;
}
.single-comment-wrap .comment-meta {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 40px);
  flex: 0 0 calc(100% - 40px);
  max-width: calc(100% - 40px);
  width: calc(100% - 40px);
  padding-left: 1rem;
}
.single-comment-wrap .comment-meta .comments-author-name {
  font-size: 14px;
  margin-bottom: 0.25rem;
}
.single-comment-wrap .comment-meta .post-date {
  display: block;
  font-size: 12px;
  color: #797494;
  font-weight: 400;
}
.single-comment-wrap .comment-meta .comment-text {
  font-size: 14px;
  color: #797494;
  margin-bottom: 0.5rem;
}
.single-comment-wrap .comment-meta .like-count span {
  font-size: 14px;
}
.single-comment-wrap .comment-meta .like-count a {
  font-size: 14px;
  display: inline-block;
  color: #797494;
  border: 1px solid #e6e6e6;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-left: 0.5rem;
}
.single-comment-wrap .comment-meta .like-count a i {
  line-height: 29px;
}
.single-comment-wrap .comment-meta .like-count a:hover, .single-comment-wrap .comment-meta .like-count a:focus {
  color: #ffffff;
  background-color: #ea4c62;
  border-color: #ea4c62;
}
.single-comment-wrap .comment-meta .reply {
  font-size: 12px;
  color: #797494;
  font-weight: 700;
}
.single-comment-wrap .comment-meta .reply:hover {
  color: #100DD1;
}

.children-comments-list {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid #e6e6e6;
}

.comment-form {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.comment-form textarea {
  border-radius: 0.5rem;
  width: 100%;
  height: 45px;
  background-color: #dcebfd;
  color: #020b10;
  font-size: 13px;
  border: 0;
  padding: 0.75rem 1rem;
}
.comment-form button {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  outline: none;
}
.comment-form.reply-comment-form {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: fixed;
  width: calc(100% - 2rem);
  margin-bottom: 0;
  left: 1rem;
  right: 1rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  bottom: 74px;
}
.comment-form.reply-comment-form.show {
  opacity: 1;
  visibility: visible;
}
.comment-form.reply-comment-form textarea {
  border-radius: 0.375rem;
  height: 55px;
  font-size: 12px;
  padding: 0.5rem 1rem;
  border: 1px solid #e6e6e6;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 24px rgba(16, 13, 209, 0.175);
          box-shadow: 0 2px 24px rgba(16, 13, 209, 0.175);
}

/* :: 6.19.0 Live */
.live-video-url {
  position: relative;
  z-index: 1;
}

.live-video-info {
  position: relative;
  z-index: 1;
  background: #ffffcc;
  background: -webkit-gradient(linear, left top, right top, from(#fff2cc), to(#ffffcc));
  background: linear-gradient(to right, #fff2cc, #ffffcc);
  padding-top: 30px;
  padding-bottom: 30px;
}
.live-video-info .viwer-count {
  font-size: 14px;
}
.live-video-info .video-time {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.live-video-info .video-time span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ea4c62;
  display: inline-block;
}

.live-video-description {
  position: relative;
  z-index: 1;
  padding-top: 26px;
  padding-bottom: 11px;
}

/* :: 6.20.0 Tags */
.popular-tags-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 10px;
}

.popular-tags-list a {
  border-radius: 42px;
}

/* :: 6.21.0 Element */
.element-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 10px;
}

.newsten-owl-carousel-slides {
  position: relative;
  z-index: 1;
}
.newsten-owl-carousel-slides .owl-prev {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: 15px;
  width: 30px;
  height: 30px;
  background-color: #e42f08;
  color: #ffffff;
  text-align: center;
  border-radius: 0.125rem;
}
.newsten-owl-carousel-slides .owl-prev i {
  line-height: 30px;
}
.newsten-owl-carousel-slides .owl-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: #e42f08;
  color: #ffffff;
  text-align: center;
  border-radius: 0.125rem;
}
.newsten-owl-carousel-slides .owl-next i {
  line-height: 30px;
}
.newsten-owl-carousel-slides .owl-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 15px;
}
.newsten-owl-carousel-slides .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 3px;
}
.newsten-owl-carousel-slides .owl-dots .owl-dot.active {
  background-color: #e42f08;
}

.newsten-media {
  position: relative;
  z-index: 1;
}
.newsten-media img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  max-width: 70px;
  width: 70px;
  border-radius: 8px;
}

.list-unstyled {
  padding: 0.375rem 0.5rem;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
}

.pagination .page-link {
  color: #020b10;
  border: 1px solid #e6e6e6;
}
.pagination .page-link:hover, .pagination .page-link:focus {
  background-color: #dcebfd;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #100DD1;
}
.pagination .page-item.active .page-link {
  background-color: #100DD1;
  border-color: #100DD1;
  color: #ffffff;
}

.progress {
  background-color: #dcebfd;
  border-radius: 5rem;
}

.alert {
  font-size: 14px;
}

.modal-open {
  padding-right: 0 !important;
}
.modal-open .modal {
  padding-right: 0 !important;
}

.post-share-modal .close {
  border: 1px solid #e6e6e6;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
}
.post-share-modal .close i {
  font-size: 14px;
  line-height: 28px;
}
.post-share-modal h6 {
  font-size: 14px;
  margin-top: 0.25rem;
}

.modal-content {
  border: 0;
  border-radius: 0.5rem;
}

/* :: 6.22.0 Settings */
.settings-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}

.settings-card {
  margin-bottom: 1rem;
  background-color: #dcebfd;
  border-radius: 2rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.settings-card:last-child {
  margin-bottom: 0;
}

.single-settings {
  position: relative;
  z-index: 1;
}
.single-settings .title {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-settings .title i {
  display: inline-block;
  color: #100DD1;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.single-settings .title span span {
  font-size: 10px;
  margin-left: 0.25rem;
}
.single-settings .data-content {
  font-size: 12px;
  font-weight: 700;
}
.single-settings .data-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-settings .data-content i {
  margin-left: 0.25rem;
  font-size: 1rem;
}
.single-settings .toggle-button-cover {
  position: relative;
  z-index: 1;
}
.single-settings .knobs,
.single-settings .layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.single-settings .button.r {
  position: relative;
  width: 45px;
  height: 21px;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.single-settings .button.r,
.single-settings .button.r .layer {
  border-radius: 100px;
}
.single-settings .checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.single-settings .knobs {
  z-index: 2;
}
.single-settings .layer {
  width: 100%;
  background-color: transparent;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  z-index: 1;
}
.single-settings .knobs:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  background-color: #100DD1;
  border-radius: 50%;
  -webkit-transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
.single-settings .checkbox:active + .knobs:before {
  width: 45px;
  border-radius: 100px;
}
.single-settings .checkbox:checked:active + .knobs:before {
  margin-left: -26px;
}
.single-settings .checkbox:checked + .knobs:before {
  content: "";
  left: 24px;
  background-color: #e42f08;
}
.single-settings .checkbox:checked ~ .layer {
  background-color: #ffffff;
}

/* :: 6.23.0 Night Mode */
#previewPage[data-theme=dark] {
  background-color: #ffffff;
}
#previewPage[data-theme=dark] body {
  background-color: #ffffff;
}
#previewPage[data-theme=dark] .preview-iframe-wrapper .preview-hero-area .preview-content-wrapper .demo-title {
  color: #020b10;
}
#previewPage[data-theme=dark] p {
  color: #797494;
}
#previewPage[data-theme=dark] h1,
#previewPage[data-theme=dark] h2,
#previewPage[data-theme=dark] h3,
#previewPage[data-theme=dark] h4,
#previewPage[data-theme=dark] h5,
#previewPage[data-theme=dark] h6 {
  color: #020b10;
}
#previewPage[data-theme=dark] .preview-hero-area .preview-content-wrapper .current-version {
  color: #ffffff;
}

[data-theme=dark] {
  background-color: #0C153B;
}
[data-theme=dark] body {
  background-color: #0C153B;
}
[data-theme=dark] p {
  color: rgba(255, 255, 255, 0.7);
}
[data-theme=dark] #preloader {
  background-color: #0C153B;
}
[data-theme=dark] a,
[data-theme=dark] a:hover,
[data-theme=dark] a:focus {
  color: #ffffff;
}
[data-theme=dark] h1,
[data-theme=dark] h2,
[data-theme=dark] h3,
[data-theme=dark] h4,
[data-theme=dark] h5,
[data-theme=dark] h6 {
  color: rgba(255, 255, 255, 0.8);
}
[data-theme=dark] .header-area {
  background-color: #0C153B;
  -webkit-box-shadow: 0 3px 12px rgba(255, 255, 255, 0.175);
          box-shadow: 0 3px 12px rgba(255, 255, 255, 0.175);
}
[data-theme=dark] .footer-nav-area {
  background-color: #0C153B;
  -webkit-box-shadow: 0 -3px 12px rgba(255, 255, 255, 0.175);
          box-shadow: 0 -3px 12px rgba(255, 255, 255, 0.175);
}
[data-theme=dark] .card {
  border-color: #242644;
  background-color: #242644;
}
[data-theme=dark] .newsten-footer-nav ul li a {
  color: rgba(255, 255, 255, 0.7);
}
[data-theme=dark] .newsten-footer-nav ul li.active a {
  color: #ffaf00;
}
[data-theme=dark] .newsten-footer-nav ul li a:hover,
[data-theme=dark] .newsten-footer-nav ul li a:focus {
  color: #ffaf00;
}
[data-theme=dark] .top-search-form form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.125);
}
[data-theme=dark] .btn-warning:hover, [data-theme=dark] .btn-warning:focus {
  color: #ffffff;
  background-color: #282958;
  border-color: #282958;
}
[data-theme=dark] .btn-danger:hover, [data-theme=dark] .btn-danger:focus {
  background-color: #282958;
  border-color: #282958;
}
[data-theme=dark] .btn-primary:hover, [data-theme=dark] .btn-primary:focus {
  background-color: #282958;
  border-color: #282958;
}
[data-theme=dark] .btn-success:hover, [data-theme=dark] .btn-success:focus {
  background-color: #282958;
  border-color: #282958;
}
[data-theme=dark] .btn-info:hover, [data-theme=dark] .btn-info:focus {
  background-color: #282958;
  border-color: #282958;
}
[data-theme=dark] .page-nav li a {
  background-color: #332858;
  color: #ffffff;
}
[data-theme=dark] .page-nav li a:hover,
[data-theme=dark] .page-nav li a:focus {
  color: #ffaf00;
}
[data-theme=dark] .back-button a {
  color: #ffffff;
}
[data-theme=dark] .back-button a:hover,
[data-theme=dark] .back-button a:focus {
  color: #ffaf00;
}
[data-theme=dark] .single-settings .button.r {
  border-color: rgba(255, 255, 255, 0.15);
}
[data-theme=dark] .single-settings .data-content a:hover, [data-theme=dark] .single-settings .data-content a:focus {
  color: #ffaf00;
}
[data-theme=dark] .search-form a {
  background-color: rgba(255, 255, 255, 0.15);
}
[data-theme=dark] .top-catagories-wrapper .catagory-title {
  color: rgba(255, 255, 255, 0.8);
}
[data-theme=dark] .catagory-card {
  background-color: transparent;
  border-color: transparent;
}
[data-theme=dark] .single-trending-post {
  background-color: #282958;
  border-color: #282958;
}
[data-theme=dark] .single-trending-post .post-content .post-title:hover, [data-theme=dark] .single-trending-post .post-content .post-title:focus {
  color: #ffaf00;
}
[data-theme=dark] .tabs-news-wrapper.bg-gray {
  background-color: #282958 !important;
}
[data-theme=dark] .tabs-news-wrapper .nav-tabs {
  background-color: transparent;
  -webkit-box-shadow: 0 1px 18px 10px rgba(255, 255, 255, 0.125);
          box-shadow: 0 1px 18px 10px rgba(255, 255, 255, 0.125);
}
[data-theme=dark] .single-news-post {
  background-color: #0C153B;
}
[data-theme=dark] .single-news-post .post-content .post-title:hover, [data-theme=dark] .single-news-post .post-content .post-title:focus {
  color: #ffaf00;
}
[data-theme=dark] .single-news-post.bg-gray {
  background-color: #282958 !important;
}
[data-theme=dark] .single-news-post.bg-gray .post-content .post-title:hover, [data-theme=dark] .single-news-post.bg-gray .post-content .post-title:focus {
  color: #ffaf00;
}
[data-theme=dark] .single-blog-info .post-catagory:hover, [data-theme=dark] .single-blog-info .post-catagory:focus {
  background-color: #282958;
}
[data-theme=dark] .modal-content {
  background-color: #282958;
}
[data-theme=dark] .user-meta-data .user-content h6 {
  color: #020b10;
}
[data-theme=dark] .profile-settings-option a {
  color: #020b10;
}
[data-theme=dark] .profile-settings-option a:hover, [data-theme=dark] .profile-settings-option a:focus {
  color: #ffffff;
}
[data-theme=dark] .border,
[data-theme=dark] .border-left,
[data-theme=dark] .border-right,
[data-theme=dark] .border-bottom,
[data-theme=dark] .border-top {
  border-color: rgba(255, 255, 255, 0.175) !important;
}
[data-theme=dark] .children-comments-list {
  border-left-color: rgba(255, 255, 255, 0.175);
}
[data-theme=dark] #scrollIndicator {
  background-color: #ffaf00;
}
[data-theme=dark] .newsten-footer-nav ul li a::after {
  background-color: #ffaf00;
}
[data-theme=dark] .single-comment-wrap .comment-meta .like-count a {
  color: #ffaf00;
  border-color: rgba(255, 255, 255, 0.175);
}
[data-theme=dark] .single-comment-wrap .comment-meta .like-count a:hover, [data-theme=dark] .single-comment-wrap .comment-meta .like-count a:focus {
  color: #ffffff;
  border-color: #ea4c62;
  background-color: #ea4c62;
}
[data-theme=dark] .video-title {
  color: #020b10;
}
[data-theme=dark] .search-post-wrapper h4 {
  color: #ffaf00;
}
[data-theme=dark] .search-page-form .search-via-voice {
  color: #020b10;
}
[data-theme=dark] .single-recommended-post .bookmark-customize-option .dropdown-menu {
  background-color: #0C153B;
}
[data-theme=dark] .single-recommended-post .bookmark-customize-option .dropdown-menu .dropdown-item:hover, [data-theme=dark] .single-recommended-post .bookmark-customize-option .dropdown-menu .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.125);
}
[data-theme=dark] .comment-sorting-option .btn {
  background-color: rgba(255, 255, 255, 0.125);
  color: #ffffff;
}
[data-theme=dark] .comment-sorting-option .dropdown-menu {
  border-color: transparent;
  background-color: #282958;
}
[data-theme=dark] .comment-sorting-option .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.7);
}
[data-theme=dark] .comment-sorting-option .dropdown-menu .dropdown-item:hover, [data-theme=dark] .comment-sorting-option .dropdown-menu .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.125);
}
[data-theme=dark] .comment-form textarea {
  background-color: rgba(255, 255, 255, 0.175);
  color: #ffffff;
}
[data-theme=dark] .change-password-card .form-control {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}
[data-theme=dark] .change-password-card .form-control:focus {
  border-color: #ffaf00;
}
[data-theme=dark] .login-wrapper {
  background-color: #0C153B;
}
[data-theme=dark] .login-wrapper .login-shape2 img {
  opacity: 0.15;
}
[data-theme=dark] .login-wrapper .login-shape img {
  opacity: 0.15;
}
[data-theme=dark] .register-form .form-control {
  border-color: rgba(255, 255, 255, 0.175);
  background-color: rgba(255, 255, 255, 0.175);
  color: #ffffff;
}
[data-theme=dark] .register-form .form-control:focus {
  border-color: #ffaf00;
}
[data-theme=dark] .register-form form > .form-group > label {
  color: #ffaf00;
}
[data-theme=dark] .login-meta-data a:hover, [data-theme=dark] .login-meta-data a:focus {
  color: #ffaf00;
}
[data-theme=dark] .single-settings .title i {
  color: #ffffff;
}
[data-theme=dark] .form-control {
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.125);
  color: #ffffff;
}
[data-theme=dark] .accordion .card .btn {
  color: #ffffff;
}
[data-theme=dark] .custom-select option {
  background-color: #0C153B;
}
[data-theme=dark] .list-unstyled {
  border-color: rgba(255, 255, 255, 0.125);
}
[data-theme=dark] .modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.125);
}
[data-theme=dark] .modal-footer {
  border-top-color: rgba(255, 255, 255, 0.125);
}
[data-theme=dark] .close {
  color: #ffffff;
}
[data-theme=dark] .pagination .page-link {
  color: #ffffff;
  border-color: #282958;
  background-color: #282958;
}
[data-theme=dark] .pagination .page-link:hover, [data-theme=dark] .pagination .page-link:focus {
  color: #ffaf00;
}
[data-theme=dark] .search-page-form form input {
  background-color: #ffffff;
  color: #020b10;
}
[data-theme=dark] .sidenav-wrapper {
  background-color: #0C153B;
}
[data-theme=dark] .time-date-weather-wrapper::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(12, 21, 59, 0.25)), color-stop(50%, rgba(12, 21, 59, 0.75)), to(#0c153b));
  background: linear-gradient(to bottom, rgba(12, 21, 59, 0.25) 0%, rgba(12, 21, 59, 0.75) 50%, #0c153b 100%);
}
[data-theme=dark] .time-date-weather-wrapper .weather-update p {
  color: #ffffff;
}
[data-theme=dark] .time-date-weather-wrapper .time-date #dashboardDate,
[data-theme=dark] .time-date-weather-wrapper .time-date .running-time {
  color: #ffaf00;
}
[data-theme=dark] .sidenav-nav li a {
  color: rgba(255, 255, 255, 0.7);
}
[data-theme=dark] .sidenav-nav li a:hover, [data-theme=dark] .sidenav-nav li a:focus {
  color: #ffaf00;
}
[data-theme=dark] .single-blog-info {
  background-color: #0C153B;
}
[data-theme=dark] .alert-dismissible .close {
  color: #020b10;
}

.page-title {
    text-align: center;
    padding: 20px 20px 0px 20px;
}
.page-desc{
    text-align: center;
    font-size: 0.8em;
    padding-bottom: 20px ;
}

.at-container {
    margin: 0px auto;
    padding: 0px;
}

.panel-footer{
    padding-bottom: 20px ;
}

[data-theme=dark] .talk-bubble {
    background: #0C153B;
}

[data-theme=dark] .btn {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme=dark] #fchulsuk .msg-content .msg-cell.msg-submit {
    background: #0C153B;
}

/********************************************************
■ Mobile Menu : 모바일 메뉴 (Swipe Version)
********************************************************/
.m-menu {margin-top:0px; overflow:hidden; background:#fff; position:relative; z-index:20;-webkit-box-shadow: 0 2px 12px rgba(116, 119, 148, 0.175);}

[data-theme="dark"] .m-menu {background:#0C153B;}

[data-theme="dark"] .table
 {
    color: rgba(255, 255, 255, 0.7);
}


[data-theme="dark"] .search-post-wrapper {
    background: linear-gradient(to right, #0c153b, #282958);
}

.m-menu .m-wrap {}

.m-menu .m-table {
    display:table;
    width:100%;
    table-layout:fixed;
    min-width:300px;
    border-collapse:collapse;
}

.m-menu .m-icon,
.m-menu .m-list {
    display:table-cell;
    vertical-align:middle;
    font-size:15px;
    border:0px solid #eee;
    border-top:0;
    border-bottom:0;
}

.m-menu .m-icon {width:44px; text-align:center; font-size:18px;}
.m-menu .m-icon a {display:block; position:relative;}

.m-menu .m-icon .label {
    position:absolute;
    top:15%;
    right:5px;
    text-align:center;
    font-size:9px;
    font-weight:300;
    padding:2px 3px;
    line-height:0.9;
    border-radius:.25em !important;
}

/* 핵심 : 네이버식 가로 스와이프 */
.m-menu .m-nav {
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    margin:0 15px 0 5px;
}

.m-menu .m-nav ul {
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-wrap:nowrap;
}

.m-menu .m-nav ul li {
    flex:0 0 auto;
    padding:0 12px;
    white-space:nowrap;
}

.m-menu .m-nav ul li a {
    display:block;
    padding:12px 0;
    font-weight:bold;
}

.m-menu .m-nav ul li a:hover {color:#ba3d2e;}
.m-menu .m-nav ul li.active a {
    color:#ba3d2e;
    border-bottom:2px solid #ba3d2e;
}

[data-theme="dark"] .m-menu .m-nav ul li.active a {
    color:rgb(233, 27, 35);
    border-bottom:2px solid rgb(233, 27, 35);
}

/* 스크롤바 숨기기 */
.m-menu .m-nav::-webkit-scrollbar {display:none;}
.m-menu .m-nav {scrollbar-width:none; -ms-overflow-style:none;}


/* 서브메뉴 */
.m-menu .m-sub {
    background:#fafafa;
    border-top:1px solid #ddd;
    font-size:15px;
    height:44px;
    line-height:40px;
    border:1px solid #eee;
    border-bottom:1px solid #eee;
}

[data-theme="dark"] .m-menu .m-sub {
    background:#0C153B;
    border-top:1px solid rgba(255, 255, 255, 0.2);
    border:1px solid rgba(255, 255, 255, 0.2);
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] i.light-circle, img.light-circle, .fix-icon.light-circle i, .fix-icon.light-circle img {
    border-width: 1px;
    border-style: solid;
    background-color: #0C153B;
    color: #fff;
}


[data-theme="dark"] .div-title-underbar {
    border-bottom: 0px solid #cccccc;
}

[data-theme="dark"] .basic-category .ca-sub2 {
    background: none;
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .basic-category .ca-sub1 {
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .member, .guest {
    color: rgba(255, 255, 255, 0.7);
}

.m-menu .m-nav-sub {
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
}

.m-menu .m-nav-sub ul {
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-wrap:nowrap;
}

.m-menu .m-nav-sub ul li {
    flex:0 0 auto;
    padding:0 12px;
    white-space:nowrap;
}

.m-menu .m-nav-sub ul li a {
    display:block;
    font-weight:bold;
}

.m-menu .m-nav-sub ul li a:hover {color:orangered;}
.m-menu .m-nav-sub ul li.active a {
    color:orangered;
    border-bottom:2px solid orangered;
}

/* 스크롤바 숨기기 */
.m-menu .m-nav-sub::-webkit-scrollbar {display:none;}
.m-menu .m-nav-sub {scrollbar-width:none; -ms-overflow-style:none;}

@media all and (max-width:991px){
    .responsive .m-menu {display:block;}
}

.widget-side {
    padding-top: 120px;
    padding-bottom: 50px;
}

/* 모바일 */
@media (max-width: 768px) {
    .widget-side {
        padding-top: 0px;
    }
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3071a9;
  border-color: #285e8e;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}
.btn-success {
  color: #fff !important;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff !important;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff !important;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff !important;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #428bca;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: 0;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
.pull-left {
    padding-right: 10px !important;
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-right: none;
}
.btn-sm, .btn-group-sm>.btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.col-sm-10 {
    flex: initial !important;
    max-width: 83.333333% !important;
}
.input-group-sm>.form-control, .input-group-sm>.input-group-append>.btn, .input-group-sm>.input-group-append>.input-group-text, .input-group-sm>.input-group-prepend>.btn, .input-group-sm>.input-group-prepend>.input-group-text {
    font-size: 12px;
}
                        .search-btn {
    background-color: #2c7be5;   /* 버튼 배경 */
    color: #fff;                 /* 글자색 */
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

/* 공통 */
.swipe10 .swiper-tab .swiper-wrapper,
.swipe20 .swiper-tab .swiper-wrapper{
    display:flex;
    justify-content:space-between; /* 메뉴 간 간격 동일 */
}

/* 메뉴 폭 글자 기준 */
.swipe10 .swiper-tab .swiper-slide,
.swipe20 .swiper-tab .swiper-slide{
    width:auto !important;
    flex:0 0 auto;
    padding:12px 20px 5px 20px !important; /* 좌우 여백 */
}

[data-theme="dark"]  #sidebar-box .sidebar-search {
    background: none;
}

[data-theme="dark"] .search-box
 {
    background: none;
}


[data-theme="dark"] .view-good-box a {
    background: #1e2851;
}

/* swipe10 */
.swipe10 {margin-bottom: 50px;width:100%; }
.swipe10 .swiper-tab {position: fixed;margin-top: 50px; width:100%; background:#fff; z-index: 100;border-bottom: 1px solid #eee;}
[data-theme="dark"] .swipe10 .swiper-tab {border-bottom: 1px solid rgba(255,255,255,0.2)}
[data-theme="dark"] .swipe10 .swiper-tab {
    background-color: #0c153b;
}

.swipe10 .swiper-tab .active { color:#3f63bf; border-bottom:3px solid #3f63bf; }
.swipe10 .swiper-tab .swiper-slide {
    height: 50px;
    text-align:center;
    cursor:pointer;
    font-weight:bold;
    font-size:16px;
}
.swipe10 .swiper-body {padding-top: 110px; width:100%; }
.swipe10 .swiper-body .swiper-slide { width:100%; }

/* swipe20 */
.swipe20 { border:1px solid #ddd; width:100%; }
.swipe20 .swiper-tab { width:100%; background:#fff; border-bottom:1px solid #ddd; }
.swipe20 .swiper-tab .active { color:#3f63bf; border-bottom:3px solid #3f63bf; }
.swipe20 .swiper-tab .swiper-slide {
    text-align:center;
    cursor:pointer;
    font-weight:bold;
    font-size:13px;
}
.swipe20 .swiper-body { background:#fff; width:100%; }
.swipe20 .swiper-body .swiper-slide { padding:15px; width:100%; }


/* 네비게이션 영역 */
.owl-carousel .owl-nav{
    position:absolute !important;
    top:40% !important;
    left:0 !important;
    width:100% !important;
    transform:translateY(-50%) !important;
    z-index:9999 !important;
}

/* 이전 버튼 */
.owl-carousel .owl-prev{
    position:absolute !important;
    left:5px !important;
    width:30px !important;
    height:30px !important;
    line-height:25px !important;
    text-align:center !important;
    background:rgba(0,0,0,0.6) !important;
    color:#fff !important;
    font-size:20px !important;
    border-radius:50% !important;
    cursor:pointer !important;
    transition:all .3s !important;
    box-shadow: 0 0 6px rgba(255,255,255,0.8) !important; /* 부드러운 외곽선 */
}

/* 다음 버튼 */
.owl-carousel .owl-next{
    position:absolute !important;
    right:5px !important;
    width:30px !important;
    height:30px !important;
    line-height:25px !important;
    text-align:center !important;
    background:rgba(0,0,0,0.6) !important;
    color:#fff !important;
    font-size:20px !important;
    border-radius:50% !important;
    cursor:pointer !important;
    transition:all .3s !important;
    box-shadow: 0 0 6px rgba(255,255,255,0.8) !important; /* 부드러운 외곽선 */
}

/* hover 효과 */
.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
    background:#3f63bf !important;
    transform:scale(1.1) !important;
}

.doc-content-area {
    padding: 30px 0 0 !important;
}

.div-carousel{
    padding-top:0px;
}

.box_g {
    overflow: hidden;
    margin-top: 0px;
    border-radius: var(--radius-box-g);
}
.carousel.div-carousel:hover .carousel-control
{
    display: none;
}
.badge-wrapper {
    position: relative;
    display: inline-block;
}

.badge-wrapper .badge {
    position: relative;
    top: -15px;
    right: 10px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 50%;
    min-width: 10px;
    text-align: center;
    line-height: 1;
    font-weight: bold;
}

.sns-share-icon img {
    width: 30px;
    height: 30px;
    border-radius:50%;
    object-fit: contain; /* 비율 유지 */
}

/* header */
.head_tit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    line-height: 1;
    font-size: inherit;
    box-sizing: border-box;
}

.box_rtnews .head_tit {
    margin-bottom: -8px;
}

.box_rtnews .head_tit:after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    border-bottom: 1px solid rgba(0,0,0,.04);
}

.head_tit .tit_subject {
    flex: 1;
    min-width: 0; /* ✅ flex 깨짐 방지 */
    overflow: hidden;
    font-size: 1.125em;
    line-height: 1.15;
    margin-bottom: 0;

    /* ✅ 1줄 말줄임 */
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* list */
.box_rtnews .list_txt {
    padding: 4px 16px;
}

.list_txt.news {
    margin-bottom: 0rem;
}

.ta_txt {
    display: flex;
    width: 100%;
    min-height: 42px;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.04);
}

[data-theme=dark] .ta_txt {
    border-top: 1px solid rgba(255,255,255,.2) !important;
}

.ta_txt:first-child {
    border: 0;
}

.box_rtnews .ta_txt {
    overflow: hidden;
    position: relative;
}

/* link */
.ta_txt .link_txt {
    display: block;
    overflow: hidden;
    min-height: 18px;
    padding: 11px 0;
    line-height: 1.25;
    letter-spacing: 0;

    /* ❌ 제거 (모바일 line-clamp 깨짐 원인) */
    /* white-space: nowrap; */
    /* text-overflow: ellipsis; */

    min-width: 0; /* ✅ flex 대응 핵심 */
}

.box_rtnews .ta_txt .link_txt {
    padding: 12px 0;
}

/* 텍스트 래퍼 */
.item_txt {
    min-width: 0; /* ✅ 필수 (모바일 flex 버그 방지) */
}

/* title (핵심) */
.item_txt .tit_news {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* ✅ 원하는 줄 수 (1 or 2 추천) */
    overflow: hidden;

    font-weight: 400;
    letter-spacing: 0;
    word-break: break-word;
}

/* info */
.info_cp {
    overflow: hidden;
    padding: 6px 0 0;
    font-size: .875em;
    color: #0000007a;
    line-height: 1.21;
}

/* 다크모드 */
[data-theme="dark"] .info_cp {
    color: rgba(255, 255, 255, 0.7);
}

.ta_txt .info_cp {
    display: flex;
    max-width: 100%;
    padding-bottom: 0px;
}

.ta_txt .info_cp .txt_info {
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    max-width: calc(100% - 20px);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta_txt .info_cp .txt_info + .txt_info {
    flex: 1;
}

.info_cp .txt_info + .txt_info {
    padding-left: 11px;
}

.info_cp .txt_info + .txt_info:before {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 2px;
    height: 2px;
    margin-top: -1px;
    background-color: #00000029;
    border-radius: 50%;
    content: "";
}

.info_cp .txt_info {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: calc(100% - 20px);
    letter-spacing: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ta_txt .info_cp .txt_info {
    flex-shrink: 0;
}

/* 기타 */
.box_g .ico_help {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-position: -110px -200px;
    text-align: left;
}

.box_g .btn_help {
    position: relative;
    border: 0;
    height: 42px;
    padding: 12px;
    margin: -12px;
    vertical-align: top;
    z-index: 20;
}

[data-theme="dark"] #sidebar-box .sidebar-menu {
    border-top: 1px solid rgb(51, 51, 51);
}

[data-theme="dark"] #sidebar-box .sidebar-menu .ca-head {
    border-bottom: 1px solid rgb(51, 51, 51);
}

[data-theme="dark"] #sidebar-box .sidebar-list a {
    border-bottom: 1px solid rgb(51, 51, 51);
}

/* 다크모드 */
[data-theme="dark"] #sidebar-box{
    background: #0C153B !important;
}

[data-theme="dark"] #sidebar-box .sidebar-wing-close {
    background: #0C153B;
}

[data-theme="dark"] #sidebar-box p{
    color: rgba(255, 255, 255, 0.7);
}

/* 링크 */
[data-theme="dark"] #sidebar-box a,
[data-theme="dark"] #sidebar-box a:hover,
[data-theme="dark"] #sidebar-box a:focus{
    rgba(255, 255, 255, 0.7);
}
.sidebar-icon-tbl{
    background-color: aliceblue
}

[data-theme="dark"] .sidebar-icon-tbl{
    background-color: #252e53;
}

[data-theme="dark"] .form-box .form-body {
   background: none;
}

[data-theme="dark"] .form-box {
   background: none;
}

[data-theme="dark"] .swipe10 .swiper-tab .active {
    color: #ff0000;
    border-bottom: 3px solid #dc3545;
}