/* Nav Bar Style */
.topnav .navbar-nav .nav-link { 
    font-size: 20px !important;
}

/* Video Play button Overlay */
.overlay {
    padding:10px;
    position:absolute;
    background-color:#8f8b8b;
    opacity:0.4;    /* -> transparency 50% */
    height:100%;   /* -> image_height - padding */
    width: calc(100% - 0.5rem);    /* -> image_width - padding */
    z-index:0;      /* -> put overlay over image */
}

/* Statistics Page Icons. */

.static {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 80px;
}

.static-fa-icon {
    font-size: 16px; 
    color: gray; 
    margin: 10px;
}

@media (max-width: 575px) {
    .static-fa-icon {
        margin: 4px 10px;
    }
}

/* ================= */

.hover-none{
  background-color: transparent !important;
}

/* Style for Upload Page */
/* .tooltip-inner{
  max-width: none;
  white-space: nowrap;
  background: red !important;
  
}

.tooltip-arrow::before {
  color: red;
  fill: red;
} */

.selected-tag {
  display: inline-block;
  color: #2c2c2c;
  border-color: rgba(116,120,141,.25);
  background-color: rgb(179 179 179 / 25%);
  padding: 7px 12px;
  border-radius: 0.25rem;
}

.deselect-tag {
  cursor: pointer;
}


/* Image Picker for avatar */

.profile-pic-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pic-holder {
    text-align: center;
    position: relative;
    border-radius: 20px;
    border: solid 2px;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .pic-holder .pic {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  
  .pic-holder .upload-file-block,
  .pic-holder .upload-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(90, 92, 105, 0.7);
    color: #f8f9fc;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  
  .pic-holder .upload-file-block {
    cursor: pointer;
  }
  
  .pic-holder:hover .upload-file-block {
    opacity: 1;
  }
  
  .pic-holder.uploadInProgress .upload-file-block {
    display: none;
  }
  
  .pic-holder.uploadInProgress .upload-loader {
    opacity: 1;
  }
  
  /* Snackbar css */
  .snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    transform: translateX(-50%);
  }
  
  .snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 30px;
      opacity: 1;
    }
  }
  
  @keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 30px;
      opacity: 1;
    }
  }
  
  @-webkit-keyframes fadeout {
    from {
      bottom: 30px;
      opacity: 1;
    }
    to {
      bottom: 0;
      opacity: 0;
    }
  }
  
  @keyframes fadeout {
    from {
      bottom: 30px;
      opacity: 1;
    }
    to {
      bottom: 0;
      opacity: 0;
    }
  }

  /* -------- Image Ecommerce Zoom Viewer ---------- */


  figure.zoom {
    background-position: 50% 50%;
    position: relative;
    width: 700px;
    overflow: hidden;
    cursor: zoom-in;
  }
  figure.zoom img:hover {
    opacity: 0;
  }
  figure.zoom img {
    transition: opacity 0.5s;
    display: block;
    width: 100%;
  }

  /* ============================== */

  .hover-success:hover {
    color: green;
  }

  .hover-danger:hover {
    color: red;
  }


  @media (max-width: 575px) {
    .dropdown-responsive {
        width: 280px;
    }

    .dropdown-item {
      white-space: initial !important;
    }
  }

  .hand-cursor {
    cursor: pointer;
  }

  .dropdown-item {
    cursor: pointer;
  }

  /* Style for Landing Page Search Section */

  .inner-icon-search {
    position: absolute;
    top: 28px;
    left: 10px;
  }

  .inner-select-type {
    position: absolute;
    right: 10px;
    top: 22px;
    font-size: 20px;
  }

  .search-section {
    height: 80vh;
  }

  .landing-page-content {
    margin-top: 30px !important;
  }

  .search-form-input {
    width: 50vw !important;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 35px;

    border: 1px solid #ced4da;
    font-size: 20px;
    border-radius: 10px;
  }

  .search-header{
    color: #5f6368;
    padding-bottom: 20px;
  }

  .search-subheader{
    color: #5f6368;
    padding-bottom: 20px;
  }

  .search-description{
    color: #5f6368;
    padding-top: 10px;
  }

  .d-sm-hide {
    display: block;
  }
  
  
  @media (max-width: 991.98px) {
    .search-section {
      height: 60vh;
    }

    .landing-page-content {
      margin-top: 70px !important;
      padding: 0px !important;
    }

    .landg-page-container-fluid  {
      padding: 0px !important;
    }

    .search-form-input {
      width: 90vw !important;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-right: 110px;
      font-size: 16px;
    }

    .inner-icon-search {
      top: 15px;
    }

    .inner-select-type {
      top: 10px;
      font-size: 16px;
    }
  } 


  @media (max-width: 575px) {
    .d-sm-hide {
      display: none;
    }

    .search-header{
      font-size: 24px;
    }
  }



  /* Image - Gallery Landing Page Style */

  .image-gallery .gallery-content {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
  }
  
  .image-gallery .gallery-content .content-overlay {
    background-image: linear-gradient(180deg, #54068f00 0%, #000000 100%);
    position: absolute;
    height: 32%;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  
  .image-gallery .gallery-content:hover .content-overlay{
    opacity: 1;
  }
  
  .image-gallery .content-image{
    width: 100%;
  }
  
  .image-gallery .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .image-gallery .gallery-content:hover .content-details{
    top: 85%;
    left: 50%;
    opacity: 1;
  }
  
  
  
  .image-gallery .content-details p{
    color: #fff;
    font-size: 14px;
  }
  
  .fadeIn-bottom{
    top: 80%;
  }
  
  .image-gallery {
     display: flex;
     flex-wrap: wrap;
     padding: 0 !important;
     margin: 0;
  
  }
  .image-gallery .container {
    padding: 0px;
  }

  .image-gallery  li {
     list-style: none;
     flex-grow: 1;
     cursor: pointer;
     margin: 3px;
  }
  .image-gallery  li img {
     height: 28vh;
     min-width: 100%;
     object-fit: cover;
     vertical-align: bottom;
     -webkit-transition: all 0.4s ease-In;
     -o-transition: all 0.4s ease-In;
     transition: all 0.4s ease-In;
  }
  .image-gallery  li video {
    height: 28vh;
    min-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
    -webkit-transition: all 0.4s ease-In;
    -o-transition: all 0.4s ease-In;
    transition: all 0.4s ease-In;
 }
  .image-gallery  li:last-child {
     flex-grow: 10;
  }
  .image-gallery  li:hover img {
     -webkit-filter: none;
     filter: none;
     transition: all 0.4s ease-In;
     -webkit-transition: all 0.4s ease-In;
     -o-transition: all 0.4s ease-In;
     transition: all 0.4s ease-In;
  }
   
  .image-gallery p {
     max-width: 460px;
     margin: 0 auto;
     transition: color 300ms linear;
     text-align: center;
     color: var(--color-dark);
     font-weight: 400;
     line-height: 1.5;
  }
  .overlay-text{
      text-decoration: none !important;
      background-color: #ffffff1a;
      padding: 0px 3px 0px 3px;
      color: white !important;
      border-radius: 5px;
      font-size: 16px;
  }
  .pd-top-10 {
     padding-top: 10px;
  }

  /* ========= Media PlayList Style =============== */
  
  /* Misc.
  ================================================== */

  .add-bottom { margin-bottom:2rem !important; }
  .left { float:left; }
  .right { float:right; }
  .center { text-align:center; }
  .hidden { display:none; }

  .no-support {
  margin:2rem auto;
  text-align:center;
  width:90%;
  }


  /* Audio Player Styles
  ================================================== */

  audio {
  display:none;
  }

  #audiowrap,
  #plwrap {
  margin:0 auto;
  }

  #tracks {
  font-size:0;
  position:relative;
  text-align:center;
  }

  #nowPlay {
  display:block;
  font-size:0;
  }

  #nowPlay span {
  display:inline-block;
  font-size:1.05rem;
  vertical-align:top;
  }

  #nowPlay span#npAction {
  padding:10px;
  width:100%;
  }

  #nowPlay span#npTitle {
  padding:10px;
  text-align:right;
  width:70%;
  }

  #plList {
    padding: 0px !important;
  }

  #plList li {
  cursor:pointer;
  display:block;
  margin:0;
  padding:21px 0;
  }

  #plList li:hover {
  background-color:rgba(0, 0, 0, .1);
  }

  .plItem {
  position:relative;
  }

  .plTitle {
  left:50px;
  overflow:hidden;
  position:absolute;
  right:65px;
  text-overflow:ellipsis;
  top:0;
  white-space:nowrap;
  }

  .plNum {
  padding-left:21px;
  width:25px;
  }

  .plLength {
  padding-left:21px;
  position:absolute;
  right:21px;
  top:0;
  }

  .plSel,
  .plSel:hover {
  background-color:rgba(0, 0, 0, .1);
  /* color:#fff; */
  font-weight: 600;
  cursor:default !important;
  }

  #tracks a {
  border-radius:3px;
  color:#0665a2;
  cursor:pointer;
  display:inline-block;
  font-size:2.3rem;
  height:40px;
  line-height:.2;
  /* margin:0 5px 30px; */
  padding:12px;
  text-decoration:none;
  transition:background .3s ease;
  }

  #tracks a:hover,
  #tracks a:active {
  background-color:rgba(0, 0, 0, .1);
  color:#fff;
  }

  #tracks a::-moz-focus-inner {
  border:0;
  padding:0;
  }

  .plyr--full-ui {
    width: 100%;
    padding-right: 10px;
  }

  /* Plyr Overrides
  ================================================== */

  .plyr--audio .plyr__controls {
  background-color:transparent !important;
  border:none;
  color:#fff;
  font-family:"Source Sans Pro", arial, sans-serif;
  padding:20px 20px 20px 13px;
  width:100%;
  }

  a.plyr__controls__item.plyr__control:hover,
  .plyr--audio .plyr__controls button:hover,
  .plyr--audio .plyr__controls button.tab-focus:focus,
  .plyr__play-large {
  background-color:rgba(0, 0, 0, .1);
  }

  .plyr__progress--played,
  .plyr__volume--display {
  color:rgba(0, 0, 0, .1);
  }

  .plyr--audio .plyr__progress--buffer,
  .plyr--audio .plyr__volume--display {
  background-color:rgba(0, 0, 0, .1);
  }

  .plyr--audio .plyr__progress--buffer {
  color:rgba(0, 0, 0, .1);
  }

  .plyr__controls .plyr__controls__item.plyr__time {
  font-size:14px;
  margin-left:7px;
  }

  /* Meida Single Player for User Dashboard and Statistic Page */
  .audio-card:hover, .audio-card:focus, .audio-card:active {
    -webkit-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.4);
    -webkit-transform: scale(1.001);
    -moz-transform: scale(1.001);
    transform: scale(1.001);
  }
  
  .audio-card {
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -moz-box-shadow: 2px 2px 4px 0px #006773;
    -webkit-box-shadow: 2px 2px 4px 0px #006773;
    box-shadow: 2px 2px 4px 0px #006773;
    -moz-border-radius: 7px 7px 7px 7px;
    -webkit-border-radius: 7px 7px 7px 7px;
    border-radius: 7px 7px 7px 7px;
  }


  /* Media Queries
  ================================================== */

  @media only screen and (max-width:600px) {
      /* #nowPlay span#npAction { display:none; } */
      #nowPlay span#npTitle { display:block; text-align:center; width:100%; }
  }
  #audioDetail{
    width: 120px;
  }
  @media (max-width:600px) {
/*     .plyr__progress {
      display: none;
    } */
    #audioDetail{
      width: 80px;
    }
    .user-dashboard.card-body {
      padding: 0.25rem;
    }
  }

/* ============================================ */

.min-width-100 {
  min-width: 100px;
}
@media (max-width:950px) {
  .my-100-md {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .card{
    margin-bottom: 4.25rem !important ;
  }
}

/* =========== Detail Media View =============== */
.media-content {
  position: relative;
}

.media-content .media-detail-overlay {
  background-image: linear-gradient(0deg, #54068f00 0%, #000000 100%);
  position: absolute;
  height: 15%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.media-content:hover .media-detail-overlay{
  opacity: 1;
}

@media (max-width:950px) {
  .media-content .media-detail-overlay {
    height: 45%;
  }
}

.bio-area{
  border: none;
  resize: none;
  background: transparent;
  width: 100%
}

.popover__menu:after {
  bottom: 100%;
  left: 2rem;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: rgb(30, 30, 30);
  border-width: 10px;
}

.grid-image{
  max-height: 230px;
}

@media (max-width:500px) {
  .grid-image{
    max-height: none !important;
  }

  .footer {
    height: 160px !important;
  }
}


.inactive-sidebar {
  color: gray;
}

.video-play-icon {
  position: absolute;
  font-size: 50px; 
  top: calc(50% - 25px); 
  left: calc(50% - 25px);
  z-index: 9999;
}

.video-play-icon:hover {
  font-size: 70px; 
  top: calc(50% - 35px); 
  left: calc(50% - 35px);
  -webkit-transition: all 0.1s ease-in-out 0s;
  -moz-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-in 0s;
}

.status-lamp {
  width: 16px;
  height: 16px;
  border-radius: 50% !important;
}

/* Copy Coffee link style */
.myTooltip {
  position: relative;
  display: inline-block;
}

.myTooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 16px;
}

.myTooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.myTooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.share-modal {
  background-color: #181a26;
  top: 40px;
  max-width: 360px;
  z-index: 9999;

  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.share-social {
  width: 60px;
  height: 60px;
  font-size: 40px;
  text-align: center;
  vertical-align: center;
}


.hero-action {
    position: absolute;
    right: 40px;
    bottom: 20px;
}

@media (max-width: 575px) {
  .hero-action {
      position: relative;
      right: 0px;
  }
}

@media (min-width: 1280px){
  /* .static-page-tab{
    width: 80%;
    padding-left: 10% !important;
  } */
}


/* Block UI created by Nemanja */

.block-ui {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: .75;
  display: flex;
  text-align: center;
  z-index: 1000;
}
.block-ui .loading:after {
  content: " ";
  background: black;
  opacity: 0.4;
  pointer-events: none;
  border-radius: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.block-ui .loading .loader {
  display: none;
  margin: auto;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
}
.block-ui .loading .loader div {
  background-color: white;
  height: 100%;
  width: 6px;
  display: inline-block;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
.block-ui .loading .loader .rect2 {
  animation-delay: -1.1s;
}
.block-ui .loading .loader .rect3 {
  animation-delay: -1s;
}
.block-ui .loading .loader .rect4 {
  animation-delay: -0.9s;
}
.block-ui .loading .loader .rect5 {
  animation-delay: -0.8s;
}
.block-ui .loading .loader.load2 .loader2 {
  display: block;
}
.block-ui .loading .loader.load3 .loader3 {
  display: block;
}
.block-ui .loading .loader.load4 .loader4 {
  display: block;
}
.block-ui.clear {
  animation: dissappear 1s 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.block-ui .loading-info {
  margin: auto;
  align-content: center;
  align-items: center;
  align-self: center;
}
.block-ui .loading-info .loading-text {
  display: block;
}
.block-ui .loading-info .loading-text .text {
  margin: 0 0 2em 0;
  position: relative;
  z-index: 9;
  color: white;
}
.block-ui .loading-info .loading-text button {
  margin-top: 15px;
  position: relative;
  z-index: 9;
}
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
 }
  20% {
    transform: scaleY(1);
 }
}
@keyframes dissappear {
  0% {
    opacity: 1;
 }
  99% {
    opacity: 0;
    display: none;
    width: 100%;
    height: 100%;
    margin-top: 0;
    margin-left: 0;
 }
  100% {
    width: 0;
    height: 0px;
    margin-top: -100000px;
    margin-left: -100000000px;
 }
}