/*
* Author    : Kawindu Nirmal
* FaceBook  : https://www.facebook.com/kawindu12
* Company   : PixelSoftDigital
* Contact   : hello@pixelsoft.digital
* Website   : https://www.pixelsoft.digital
* Version: 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

::-webkit-scrollbar {
  width: 5px;
  height: 0;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Loader Styles */
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #f1faee;
  --outer-line-color: #a8dadc;
  --middle-line-color: #457b9d;
  --inner-line-color: #1d3557;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  /*   transform: translate(-50%, -50%); */
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}
.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

a {
  transition: 0.5s ease-in-out !important;
  color: var(--at-text-color) !important;
}

body {
  background: var(--at-theme-background);
  transition: 0.5s ease-in-out !important;
  font-family: "Mulish", sans-serif;
}

audio {
  height: 45px;
}

@media (min-width: 991.98px) {
  main {
    padding-left: 218px;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 58px 0 0; /* Height of navbar */
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
  width: 210px;
  z-index: 600;
}

.navbar {
  z-index: 999;
}

@media (max-width: 991.98px) {
  .sidebar {
    width: 100%;
  }
}
.sidebar .active {
  border-radius: 5px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.sidebar-sticky {
  position: relative !important;
  top: 0 !important;
  height: calc(100vh - 48px) !important;
  padding-top: 0.5rem !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.position-sticky {
  overflow: scroll;
  max-height: 500px;
}

#sidebarMenu {
  z-index: 600 !important;
}

.at-sticky-sidebar a {
  font-size: 14px !important;
}

button:focus {
  outline: 0 !important;
}

input:focus {
  outline: 0 !important;
}

.at-text-color {
  color: var(--at-text-color) !important;
  transition: 0.5s ease-in-out !important;
}

.at-bg-primary {
  background: var(--at-bg-panel) !important;
  transition: 0.5s ease-in-out !important;
  box-shadow: inherit !important;
}
.at-bg {
  background: var(--at-bg-panel) !important;
  transition: 0.5s ease-in-out !important;
}

.at-mode-switch {
  margin-left: 34px;
}

.at-mode-switch input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.at-mode-switch label {
  cursor: pointer;
  text-indent: -9999px;
  width: 40px;
  height: 20px;
  background: #c3c5c7;
  float: right;
  border-radius: 100px;
  position: relative;
}

.at-mode-switch label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 14px;
  background: #fff;
  border-radius: 90px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.at-mode-switch input:checked + label {
  background: #0c0c0c;
  transition: 0.5s ease-in-out !important;
}

.at-mode-switch input:checked + label:after {
  left: calc(100% - 5px);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.at-mode-switch label:active:after {
  width: 45px;
}

.navbar-brand img {
  width: 25px;
  vertical-align: -6px;
}
.navbar-brand {
  font-weight: 800;
  font-size: 20px;
}

.btn-primary {
  background: var(--at-theme-color) !important;
  border: var(--at-theme-color) !important;
}

.btn-primary:hover {
  color: #fff !important;
}

.btn-outline-primary {
  background: transparent !important;
  border: 1px solid var(--at-theme-color) !important;
}

.at-form-control {
  background: var(--at-second-item) !important;
  border-radius: 50px 0 0 50px;
  border: 2px solid var(--at-second-item) !important;
  transition: 0.5s ease-in-out !important;
  color: var(--at-text-color) !important;
}

.at-form-control-dt {
  background: var(--at-second-item) !important;
  border-radius: 4px;
  border: 2px solid var(--at-second-item) !important;
  transition: 0.5s ease-in-out !important;
  color: var(--at-text-color) !important;
}

.at-primary-btn {
  background: var(--at-theme-color);
  border-radius: 4px;
  color: #fff !important;
  position: relative;
  top: 0px;
  padding: 0 7px !important;
  margin-right: 0;
  line-height: 27px;
  height: 28px;
  font-weight: bold;
  font-size: 13px;
}

.at-primary-btn-none-bg {
  color: var(--at-text-color) !important;
  position: relative;
  top: 0px;
  padding: 0 7px !important;
  margin-right: 0;
  line-height: 27px;
  height: 28px;
  font-weight: bold;
  font-size: 13px;
}

/* Chrome/Opera/Safari */
.at-form-control::-webkit-input-placeholder {
  color: var(--at-text-color) !important;
  transition: 0.5s ease-in-out !important;
}

/* Firefox 19+ */
.at-form-control::-moz-placeholder {
  color: var(--at-text-color) !important;
  transition: 0.5s ease-in-out !important;
}

/* IE 10+ */
.at-form-control:-ms-input-placeholder {
  color: var(--at-text-color) !important;
  transition: 0.5s ease-in-out !important;
}

/* Firefox 18- */
.at-form-control:-moz-placeholder {
  color: var(--at-text-color) !important;
  transition: 0.5s ease-in-out !important;
}

.at-search-form-btn {
  background: var(--at-theme-background) !important;
  border: 2px solid var(--at-theme-background) !important;
  border-radius: 0 50px 50px 0;
  transition: 0.5s ease-in-out !important;
}

.section h5 {
  font-weight: 400 !important;
}

.at-card {
  margin: 3px;
}

.at-card img {
  width: 100%;
}

.at-card-slider {
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .at-card-slider {
    width: 100%;
  }
  audio {
    margin: 8px 0 !important;
    width: 100%;
  }

  .at-download-btn {
    display: block;
  }
}

.at-card-slider .at-slick-prev-icon svg,
.at-card-slider .at-slick-next-icon svg {
  fill: var(--at-second-color) !important;
  background: var(--at-slick-bg) !important;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%) !important;
  box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 50%) !important;
  border: 1px solid var(--at-slick-border) !important;
  transition: 0.5s ease-in-out !important;
}

.slick-next {
  right: 14px !important;
}
.slick-prev {
  left: 4px !important;
}

.slick-next svg {
  transform: rotate(180deg);
}

.slick-next .slick-next-icon:before {
  line-height: 50px !important;
}

.slick-prev .at-slick-prev-icon:before {
  line-height: 50px !important;
}

button.slick-prev.slick-arrow.slick-disabled,
button.slick-prev.slick-arrow {
  z-index: 1 !important;
}

.at-card-slider .slick-slide {
  padding: 0 10px;
}
.at-card-slider .card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  background-color: white;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.9);
  transition: all 0.1s linear;
  border-radius: 10px !important;
  background: transparent !important;
  border: none !important;
}

.slick-slide {
  margin: 0 -6px;
}

.card {
  box-shadow: inherit !important;
}

@media screen and (max-width: 600px) {
  .at-card-slider .card {
    height: auto;
  }
}
.at-card-slider .card .at-card-link {
  text-decoration: none;
  display: grid;
  flex-direction: column;
}
.at-card-slider .card .at-card-link:focus {
  outline: none;
}
.at-card-slider .card .at-card-link:focus .at-card-title {
  outline-offset: -4px;
  color: var(--at-theme-color);
  text-decoration: none;
}

.at-card-link img {
  height: 160px !important;
  width: 160px !important;
}

.at-card-link small {
  text-align: center !important;
  margin: 0 auto !important;
  display: block !important;
}

.at-card-slider .card .at-card-title {
  margin: 0;
  padding: 7px 0 0px 7px;
  font-size: 13px;
  font-weight: bold;
}
.at-card-slider .card .at-card-title:hover {
  text-decoration: none;
}
.at-card-slider .card .at-card-image {
  order: -1;
  position: relative;
  padding: 2px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.at-card-slider .card .at-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(0.5); */
  border-radius: 8px !important;
  transition: all 0.3s ease-in-out;
}
.at-card-slider .card .at-card-image:hover img {
  width: 100%;
  height: 100%;
}
.at-card-slider .card .at-card-artist-name {
  margin: 0px 0 -5px 7px;
  font-size: 14px;
  opacity: 0.8;
  color: var(--at-text-color);
}

.slick-next,
.slick-prev {
  top: 38% !important;
}

.at-card-slider .card:hover {
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.at-card-slider .card a:focus {
  outline: none;
}

.at-border-bottom {
  border-bottom: 1px solid var(--at-border-color) !important;
}
.at-border-right {
  border-right: 1px solid var(--at-border-color) !important;
}

.dropdown-menu > li > a:hover {
  background: var(--at-second-item) !important;
}

#sidebarMenu .list-group a:hover {
  background: var(--at-second-item) !important;
}

.at-text-limit {
  display: block;
  width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.at-text-limit2 {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.at-text-limit3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.at-list-group-item {
  cursor: pointer !important;
}

.at-list-group-item .fa-eye,
.at-list-group-item .fa-download {
  font-size: 13px;
}

.at-list-result:hover {
  box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 50%) !important;
}

.at-list-result img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.at-error-text {
  font-size: 25px;
}

.at-boder-left-4 {
  border-left: 4px solid var(--at-theme-color);
}

.at-song-image img {
  width: 100%;
  border-radius: 30px;
}

.at-download-btn {
  font-size: 14px;
  text-transform: capitalize;
}

.at-gray-color {
  color: var(--at-gray-color) !important;
}

.at-song-details h4 {
  font-size: 15px;
  margin: 2px;
}
.at-song-details h5 {
  font-size: 14px;
}

.at-song-details i {
  font-size: 16px;
  color: var(--at-text-color);
}

.page-item.active .page-link {
  background: var(--at-theme-color) !important;
}

.page-item.active .page-link:hover {
  background: var(--at-theme-color) !important;
}

.sub-img img {
  width: 200px;
  height: 200px;
}

.at-nav-small {
  padding: 12px;
}

.at-streaming-icons ul {
  list-style: none;
  display: block;
  padding: 4px;
}

.at-streaming-icons ul li {
  padding: 5px;
  display: contents;
}

.at-streaming-icons ul li a img {
  width: 30px;
}

.at-mw-50 {
  max-width: 500px;
}

.user-pages-image {
  width: 170px !important;
  height: 170px !important;
}

.swal-text {
  text-align: center !important;
}

.overflow-scroll {
  max-height: 500px;
  overflow-y: scroll;
}

.at-footer {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  width: 100%;
  text-align: left;
  padding: 20px;
}

.at-footer .at-footer-left p {
  color: var(--at-text-color) !important;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.at-footer p.at-footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease 0.25s;
}

.at-footer p.at-footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease 0.25s;
}

.at-footer .at-footer-links a:before {
  content: "";
  font-size: 20px;
  left: 0;
  color: #fff !important;
  display: inline-block;
  padding-right: 5px;
}

.at-footer .at-footer-links .link-1:before {
  content: none;
}

.at-footer .at-footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}

.at-footer .at-footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #fff !important;
  text-align: center;
  line-height: 35px;
  margin-left: 3px;
  transition: all 0.25s;
}

.at-footer .at-footer-right a:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.at-footer p.at-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .at-footer .at-footer-left,
  .at-footer .at-footer-right {
    text-align: center;
  }
  .at-footer .at-footer-right {
    float: none;
    margin: 0 auto 20px;
  }
  .at-footer .at-footer-left p.at-footer-links {
    line-height: 1.8;
  }
}

.contain {
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
}

.contact-wrapper {
  margin: auto 0;
}

.submit-btn {
  float: left;
}
.reset-btn {
  float: right;
}

.email-info {
  margin-top: 20px;
}

@media (min-width: 600px) {
  .contain {
    padding: 0;
  }
}
.at-contact-form-input {
  padding: 8px !important;
}

.at-contact-form-input,
textarea {
  width: 100%;
  border-radius: 5px;
}

@media (min-width: 700px) {
  .at-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .at-form-wrapper > * {
    padding: 2em 2em;
  }
}

.contacts {
  color: #212d31;
}

.at-contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.at-contact-form form label {
  display: block;
}
.at-contact-form form p {
  margin: 0;
}

.full-width {
  grid-column: 1 / 3;
}

.contacts ul li {
  list-style: none !important;
}

.rounded-50 {
  border-radius: 10px 50px !important;
}

.rounded-20 {
  border-radius: 20px !important;
}

#userUploads tr td {
  color: var(--at-text-color) !important;
}

.comment-skin {
  background: #302f2f;
  padding: 14px;
  border-radius: 10px;
}

.at-footer .at-footer-right a i {
  line-height: 35px !important;
}

.container-alert-message {
  position: fixed;
  top: 0%;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 85%);
  z-index: 999;
  overflow: hidden;
}
.box-alert-message {
  z-index: 1000;
  width: 400px;
  text-align: center;
  background: #fff;
  position: absolute;
  top: 100px;
  left: 50%;
  margin-bottom: 50px;
  margin-left: -200px;
  padding: 8px;
  color: #878787;
}

.box-alert-message img {
  width: 200px;
}
.box-alert-message > .header {
  font-size: 22px;
  margin: 30px 0 18px;
}
.box-alert-message > .message {
  font-size: 16px;
  margin-bottom: 18px;
  padding: 0 40px;
}

.__404-img {
  max-width: 100%;
  filter: grayscale(100%) brightness(200%);
}

.at-card {
  background: var(--at-bg-panel);
  border-radius: 10px;
  border: 1px solid var(--at-border-color);
  margin-bottom: 1rem;
}

.at-card-body {
  padding: 1rem;
}
.at-blog .at-card-body p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.at-card-img {
  height: 500px !important;
}
.at-card-img-page {
  height: 400px;
}

.at-card-img img {
  border-radius: 1rem;
  height: 100%;
  object-fit: cover;
}

.at-card-img-page img {
  border-radius: 1rem;
  height: 100%;
  object-fit: cover;
}

.at-card-content {
  margin-top: 0.75rem;
}

.at-blog-title h3 {
  font-size: 1.463rem;
}

.at-blog-description {
  font-size: 0.945rem;
  color: var(--at-gray-color);
}

.at-blog-btn {
  font-size: 0.812rem;
}

main {
  margin-top: 1rem !important;
}

.at-blog-option {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.at-blog-option li {
  margin: 0 0.5rem;
}

.at-blog {
  max-width: 700px;
  margin: 0 auto;
}

.at-sticky-bar {
  position: sticky;
  top: 20px;
}

.at-btn-default {
  background: transparent !important;
  outline: 0 !important;
  border: 0 !important;
}
.at-btn-default i.fa-user {
  color: var(--at-text-color) !important;
  font-size: 1.3rem;
}

.index-article-img {
  width: 100%;
  height: 160px !important;
}

.index-article-img img {
  height: 160px !important;

  border-radius: 1rem;
  object-fit: cover;
}

.at-card-link {
    display:grid;
}

.comment-input, .outer-comment {
    border: 1px solid var(--at-border-color) !important;
}
