<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-----------------------
    Audio Player - AP
------------------------*/
.ap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  font-family: inherit;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-top: 1px solid #ccc;
  background: #f2f2f2;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  z-index: 99999;
}

.ap__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1440px;
  margin: auto;
}

.ap__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.ap__item--playback &gt; .ap__controls,
.ap__item--settings &gt; .ap__controls {
  -webkit-box-flex: 0;
  -webkit-flex: 0 25%;
      -ms-flex: 0 25%;
          flex: 0 25%;
}

@-webkit-keyframes fs {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fs {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.ap__item--track {
  -webkit-box-flex: 1;
  -webkit-flex: 1 40%;
      -ms-flex: 1 40%;
          flex: 1 40%;
  padding: 0 20px;
}

.track {
  position: relative;
  width: 100%;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  padding: 5px 0 0;
}

.track__title {
  position: absolute;
  width: 100%;
  overflow: hidden;
  padding-right: 80px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.track__time {
  position: absolute;
  top: 5px;
  right: 0;
}

.progress-container {
  position: relative;
  padding: 7px 0;
  margin-top: 15px;
  overflow: hidden;
  cursor: pointer;
}
.progress-container:hover .progress__bar:after {
  opacity: 1;
}

.progress {
  height: 3px;
  border-radius: 3px;
  background: #ddd;
}

.progress__bar,
.progress__preload {
  position: absolute;
  width: 0;
  height: 3px;
  border-radius: 3px 0 0 3px;
}

.progress__bar {
  background: steelblue;
  z-index: 1;
}
.progress__bar:after {
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 10px;
  margin-top: -3px;
  content: '';
  border-radius: 6px;
  background: steelblue;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.progress__preload {
  background: #c4c4c4;
  z-index: 0;
}

.ap__controls,
.ap button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  position: relative;
  display: block;
  height: 50px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
}
.ap__controls:active,
.ap button:active {
  background: rgba(0, 0, 0, 0.1);
}
.ap__controls:hover,
.ap button:hover {
  opacity: 1;
}

.icon-play &gt; path {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.is-playing .icon-play {
  fill: steelblue;
}

.volume-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.volume {
  position: absolute;
  left: 50%;
  bottom: 45px;
  width: 40px;
  margin-left: -20px;
  height: 120px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s cubic-bezier(0.17, 0.72, 0.26, 1.23);
  transition: all 0.3s cubic-bezier(0.17, 0.72, 0.26, 1.23);
  background: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 1px;
  z-index: 88888;
}
.volume::before, .volume::after {
  content: '';
  position: absolute;
  bottom: -12px;
  border: 7px solid transparent;
  border-top: 7px solid #f2f2f2;
  left: 50%;
  margin-left: -7px;
}
.volume::after {
  bottom: -14px;
  z-index: -1;
  border-top: 7px solid #ccc;
}

.volume-container:hover .volume ,.share-container:hover .volume {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}

.volume__track {
  position: relative;
  display: block;
  width: 3px;
  height: 100px;
  margin: 10px auto;
  background: #ddd;
  border-radius: 3px;
  overflow: hidden;
}

.volume__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: steelblue;
  height: 50%;
}

.icon-volume-off {
  display: none;
}

.has-muted .icon-volume-on {
  display: none;
}
.has-muted .icon-volume-off {
  display: inline;
  opacity: .7;
}

.ap__controls.is-active &gt; svg {
  fill: #827f7f;
  -webkit-filter: drop-shadow(0 0 3px rgba(70, 130, 180, 0.4));
          filter: drop-shadow(0 0 3px rgba(70, 130, 180, 0.4));
}

@media (max-width: 1024px) {
  .ap__item &gt; .ap__controls {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 580px) {
  .ap {
    min-width: 250px;
  }

  .ap, .ap__inner {
    height: auto;
  }

  .ap__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .ap__item--track {
    margin-bottom: 10px;
    /*ER@:18372 start*/
    padding: 0 30px;
    /*ER@:18372 end*/
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .ap__item--playback,
  .ap__item--settings {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 50%;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
/*-----------------------
    Playlist Player - PL
------------------------*/
.pl-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 50px;
  left: 0;
  overflow: auto;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  z-index: 77777;
}

.pl-ul {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  //float:right;
  padding: 30px 10px 100px 10px;
}

.pl-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  line-height: 40px;
}
.pl-list svg {
  fill: steelblue;
}

.pl-list + .pl-list {
  border-top: 1px solid #eee;
}

.pl-list:not(.pl-list--current):hover {
  background: #f6f6f6;
}

.pl-list__track {
  -webkit-box-flex: 0;
  -webkit-flex: 0 50px;
      -ms-flex: 0 50px;
          flex: 0 50px;
  text-align: center;
}

.pl-list__icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #555;
}

.pl-list__title {
  overflow: hidden;
  padding-right: 10px;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}




.pl-list__eq {
  display: none;
}

.pl-list--current {
  background: steelblue;
  color: #fff;
}

.pl-list--current svg {
  fill: #fff;
}
.pl-list--current .pl-list__eq {
  display: block;
}
.pl-list--current .pl-list__icon {
  display: none;
}

.pl-list:hover ,
.pl-list--current {
  opacity: 1;
}

.pl-list--current:hover {
  background: #3f75a2;
}

.pl-list--empty {
  color: #ccc;
}

@-webkit-keyframes eq {
  0% {
    height: 3px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 3px;
  }
}

@keyframes eq {
  0% {
    height: 3px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 3px;
  }
}
.eq {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.eq__bar {
  width: 4px;
  background: #fff;
  -webkit-filter: drop-shadow(0 0 5px #fff);
          filter: drop-shadow(0 0 5px #fff);
}

.eq__bar:nth-child(1) {
  -webkit-animation: eq .8s ease-in-out infinite 0s;
          animation: eq .8s ease-in-out infinite 0s;
}

.eq__bar:nth-child(2) {
  -webkit-animation: eq .8s ease-in-out infinite .2s;
          animation: eq .8s ease-in-out infinite .2s;
}

.eq__bar:nth-child(3) {
  -webkit-animation: eq .8s ease-in-out infinite .4s;
          animation: eq .8s ease-in-out infinite .4s;
}

.h-hide {
  display: none;
}

.h-show {
  display: block;
}

.shuffleimg{
opacity: 0.85;	
}
.track-item .pause-icon{
    display:none;
}
.current-track .pause-icon{
    display:block !important;
}
.track-item:hover .pause-icon{
    display:none;
}
.text-left{
text-align:left !important;
}
.ui-autocomplete.ui-menu li.ui-menu-item:hover{background: none !important; cursor: pointer !important;}
.ui-autocomplete.ui-menu li.ui-autocomplete-category:hover{background: #000 !important;color:#FFF !important;cursor: inherit !important;}
.ui-autocomplete.ui-menu li.ui-autocomplete-category{background:#000 !important; color:#FFF !important; cursor: inherit !important; font-style:italic;}
.shop_table {
     margin-top:50px;
     border:.5px solid #151c26;
}
.shop_table thead &gt; tr th.device-name {
     border:.5px solid #151c26 !important;
}
.shop_table thead &gt; tr th.device-name:hover, 
.shop_table tbody &gt; tr td:hover, 
.shop_table tbody &gt; tr td.device-name &gt; a:hover {
    color: #953f32;
}
#generalInfoModal .modal-body {
    padding:20px;
    position: relative;
}
.shop_table tbody &gt; tr td.device-name &gt; a {
    color:#aaa2a3;
}
.shop_table tbody &gt; tr td.device-name &gt; a.not-active, 
.shop_table tbody &gt; tr td.device-name &gt; a.not-active:hover, 
.shop_table tbody &gt; tr td.device-name &gt; a.not-active:focus{
    cursor:no-drop;
    color:rgba(170, 162, 163,0.5);
}
@media (max-width:640px){

.shop_table tbody &gt; tr td {
     font-size:12px;
}
}
@media (max-width:480px){
.modal-footer .btn.as-btn-accent {
    margin-left: 0px;
    margin-top:5px;
}
}
/*mantis : 10334 start*/
.related-content-item {
   
    width: 17%;
    float: left;
    padding: 0 15px;
}
@media (max-width: 1024px) {
    .related-content-item {
       width: 20%;
}  
}
@media (max-width: 768px) {
    .related-content-item {
       width: 25%;
     }
}
@media (max-width: 640px) {
.related-content-item {
       width: 50%;
}
}
/*mantis : 10334 End*/
/*0016219: User Notification feature (For all Template) R1 start*/
 #notification_msg_menu li.active-msg-menu h2, 
#notification_msg_menu li.active-msg-menu h4, 
#notification_msg_menu li:hover h2, 
#notification_msg_menu li:hover h4,  
#notification_msg_detail h2, 
#notification_msg_detail h4{
    color:#953f32;
}
#notification_msg_menu li:hover{
    border: 1px solid #953f32; 
    color:#953f32;
}
#notification_msg_menu .active-msg-menu{
    border: 1px solid #953f32; 
    color:#953f32;
    cursor: pointer;
}
#notification_msg_detail a._close {
    color: #953f32;
}

.usernotification_bell{
	font-size: 18px;
	position: relative;
}
 .count_new_notification {
    margin-left: 5px;
    position: absolute;
    top: -10px;
    right:-20px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    padding: 0px 0;
    height: 25px;
    font-size: 14px;
    width: 25px;
    color: #ffffff;
    background-color: #bf0000;
}
.alert.alert-success{
    position: relative;
}
.alert.alert-success button.close{
    position: absolute;
    right: 0;
    top: 0;
}
/*0016219: User Notification feature (For all Template) R1 end*/

/*12046: Increasing width on implementing 3rd party video in blog page. (start)*/
.blog-item p{
   clear: both;
}
 /*12046: Increasing width on implementing 3rd party video in blog page. (end)*/

/*18076: Update UX for Password change in Web- For all Template*/
.alert-success-msg{
   color: #00887c !important;
   background-color: #dff0d8;
   border-color: #d6e9c6;
}
#password_changes_message{
   border-radius: 8px;
   margin-bottom: 0;
   padding: 20px 25px;
   background-color: #11151d;
   border: 1px solid #1a1f2b;
   color: #aaa2a3; 
}
.profile-msg{
   display: none;
}
.position-relative{
    position: relative;
    padding-top: 20px;
}
/*18076: Update UX for Password change in Web- For all Template*/


 /*13550: Clear watch history for website - Classic, traditional, Audio templates (Jitendra Kumar Sahoo) start*/
.alert-msg{padding:15px;margin-bottom: 9px;border-radius: 6px;}
/*13550: Clear watch history for website - Classic, traditional, Audio templates (Jitendra Kumar Sahoo) end*/
/*25551:Audio template: Changing the setting icon quality and resolution*/
.ap__item--settings .volume-container .shareicon .list-inline&gt;li{
    display: block;
}
.volume-container.ap__controls{
     fill: #827f7f;
}
/*25551:Audio template: Changing the setting icon quality and resolution*/
.cardname_optional
{
    width: 41.666667%;
}

/* stripe SCA card design */
.StripeElement {
  box-sizing: border-box;
  height: 34px;
  padding: 7px 12px;
  border-bottom: 2px solid #4b4a4a;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
/* stripe SCA card design end block */

/*30818 starts*/
#all-monetization-plan-tab{    
    overflow-y: auto;
    max-height: 60vh;
    overflow-x: hidden;
}
/*30818 ends*/

.ElementsApp, .ElementsApp .InputElement {
    color: #000000;
}
a.clearQue{
display: none !important;
}
</pre></body></html>