/* COLORS */
/*  green #6fc1a6  */
/*  grey   #2d374b  */


/*#region 
  BASE
*/

html {
  height: 100%;
}

.img-link { text-decoration: none; }

blockquote {
  font-weight: 400;
  margin: 0;
}

/*#endregion
  BASE
*/


/*#region 
  MISC
*/

/*#region misc general */
.no-scroll {
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.left { text-align: left !important; }
.right { text-align: right !important; }
/*#endregion misc general */

/*#region errors */
.error-list {
  list-style: none;
  margin: 0 !important;
  padding: 0;
}
  .error-list-item { margin: 0 0 1.25rem; }
  .error-list-item:last-child { margin: 0; }

  .error-name, .error-value { display: block; }
  .error-name {
    color: #9b1a37;
    font-weight: 800;
  }
/*#endregion errors */

/*#region image tools */
.img-area { 
  color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.img-area img {
  max-width: 100%;
  height: auto;
}
.img-area.fit img {
  height: auto;
  max-height: 100%;
}

.img-round {
  border-radius: 50%;
  overflow: hidden;
  max-width: 100%; 
}
div.img-round, span.img-round {
  align-items: center;
  display: flex;
  justify-content: center;
}
  .img-round img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
/*span.img-round { display: inline-block; }*/
.img-round > img { max-width: 100%; }
/*#endregion image tools */

/*#region bootstrap icons */
svg.bi {
  fill: currentColor;
  height: 1rem; width: 1rem;
}
svg.bi-24 { height: 1.5rem; width: 1.5rem; }
svg.bi-32 { height: 2rem; width: 2rem; }
svg.bi-48 { height: 3rem; width: 3rem; }
svg.bi-64 { height: 4rem; width: 4rem; }
.bi-va { vertical-align: -.125em; }
/*#endregion bootstrap icons */

/*#region bootstrap addons */
.rounded-4 { border-radius: .5rem; }
.rounded-5 { border-radius: 1rem; }

.ms-n2 { margin-left: -.5rem !important; }
/*#endregion bootstrap addons */

/*#endregion
  MISC
*/


/*#region 
  FORMS 
*/
  
  .required {
    font-size: .75rem;
    font-weight: 200;
  }

.form-submit {
  text-align: right;
}

.autocomplete {
  position: relative;
}
  .autocomplete .autocomplete-hits {
    background: #fff;
    border: 1px solid rgba(45, 55, 75, .2);
    border-top: none;
    border-radius: 0 0 5px 5px;
    color: rgba(45, 55, 75, .9);
    display: none;
    font-size: 1.4rem;
    left: .5rem;
    padding: .5rem;
    position: absolute;
    top: 100%;
    width: calc(100% - 1rem);
  }
    .autocomplete .autocomplete-hits > * {
      cursor: pointer;
      padding: .4rem .8rem;
    }
    .autocomplete .autocomplete-hits > :hover {
      background: rgba(45, 55, 75, .05);
    }

/*#region date and time controls */
.date-control { min-width: 10rem; }
.time-control { min-width: 8.125rem; }
/*#endregion date and time controls */

/*#region button general */
.btn-block {
  display: block;
  width: 100%;
}

/*#region icon button */
.btn-icon {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.0;
  min-height: 0;
  outline: none;
  padding: 0;
  text-align: left;
  text-transform: none;
}
/*#endregion icon button */

/*#region text button */
.btn-t {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-align: left;
  text-transform: none;
}
/*#endregion text button */

/*#endregion button general */

/*#region button specific */
.btn-primary {
  background-color: #6fc1a6;
  border-color: #6fc1a6;
  color: #2d374b;
}
  .btn-primary:hover, .btn-primary.active {
    background-color: #2d374b; 
    border-color: #2d374b;
    color: #6fc1a6;
  }

  .btn-outline-primary:hover {
    color: #2d374b;
  }

.btn-secondary {
  color: #6fc1a6;
}
  .btn-secondary:hover, .btn-secondary.active  {
    background-color: #6fc1a6;
    border-color: #6fc1a6;
    color: #2d374b;
  }

.btn-outline-secondary {
  color: #6fc1a6;
  border-color: #2d374b;
}
  .btn-outline-secondary:hover {
    color: #6fc1a6;
    background-color: #2d374b;
    border-color: #2d374b;
  }

  .btn-dark:hover, .btn-dark.active {
    color: #6fc1a6;
  }
/*#endregion button specific */

/*#endregion 
  FORMS 
*/

/*#region 
  HEADER
*/

.site-header {
  background: #fff;
  /*box-shadow: 0 2px 8px rgba(45, 55, 75, 0.2);*/
  padding: 1.5rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
}
  .site-logo-link {
    display: block;
    height: 1.625rem;
    overflow: hidden;
  }
    .site-logo-img {
      display: block;
      height: 100%;
      max-width: 100%;
      width: auto;
    }

/*#region navbar */
.navbar-main .navbar-collapse.show {
  background: #fff;
  position: absolute;
  top: 100%;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: calc(100% + 3rem);
  z-index: 2;
}
.navbar-main .dropdown-menu {
  /*background: none;*/
  border: none;
}
  .navbar-main .dropdown-item:hover { background: none; }

.navbar-main .navbar-toggler { box-shadow: none !important; }
.navbar-main .navbar-toggler:not(.active) .toggle-close { display: none; }
.navbar-main .navbar-toggler.active .toggle-open { display: none; }

.navbar-main .nav-link,
.navbar-main .nav-item .btn-lg {
  font-size: 1.25rem;
}

.navbar-main .dropdown-toggle::after {
  margin-left: .5em;
  vertical-align: .2em;
}
/*#endregion navbar */

/*#region site search */
.site-search {
  display: flex;
  align-items: center;
}
/*  .toggle-search {
    height: 24px;
  }*/

  .site-search-box {
    background: #fff;
    display: none;
    margin-top: 1rem;
    position: absolute; 
    right: 0;
    top: 100%;
    width: calc(100% + 1.5rem);
    margin-left: -.75rem;
    margin-right: -.75rem;
    padding: 0 .75rem .5rem;
    z-index: 1;
  }
  .site-search.show toggle-search { background: rgba(45, 55, 75, 0.1); }
  .site-search.show .site-search-box {
    display: block; 
  }

  .site-search .form-control {
    border: 1px solid rgba(45, 55, 75, 0.5);
    box-shadow: 2px 2px 10px rgba(45, 55, 75, 0.2);
  }
  .site-search .form-control:focus { 
    box-shadow: 2px 2px 10px rgba(45, 55, 75, 0.5);
  }

  .search-input {
    background: #fff;
    border: 1px solid #2d374b;
    border-radius: 25px;
    color: #2d374b;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.0;
    /*left: initial;*/
    outline: none;
    padding: 0.375rem .875rem 0.5rem 1.5rem;
    /*position: static;*/
    /*top: initial;*/
    width: 100%;
  }
  .search-input::placeholder {
    color: rgba(45, 55, 75, 0.8);
    font-weight: 200;
    line-height: normal;
  }
/*#endregion site search */


/*#region user menu */
  .btn-user .img-area {
    height: 2.25rem;
    width: 2.25rem;
  }
  .user-img-area {
    border: 2px solid #2d374b;
  }

.user-menu {
  box-shadow: 2px 2px 10px rgba(45, 55, 75, 0.5);
}
/*#region user menu */

/*#endregion 
  HEADER
*/


/*#region 
  FOOTER
*/

.site-footer {
  background: #2d374b;
  color: #fff;
  text-align: center;
  width: 100%;
}
    .social-media-links { text-align: center; }
      .social-media-link { display: inline-block; margin: 0 0.5rem; }
      .social-media-link,
      .social-media-link:hover { text-decoration: none; }

    .social-media-icon {
      color: #6fc1a6;
      height: 2rem;
      width: 2rem;
    }

    .social-media-link:hover .social-media-icon {
        color: #6fc1a6;
    }

.site-footer .links-list {
  min-width: 16.5rem;
}
  .site-footer .links-list a {
    color: inherit;
    text-decoration: none;
  }
    .site-footer .links-list a:hover { text-decoration: underline; }

.site-footer .contact-option > a {
  color: inherit;
}

/*#endregion 
  FOOTER
*/


/*#region
  PAGE COMPONENTS
*/

/*#region bg sections */
.bright-section {
  background: #6fc1a6;
}
  .bright-section a { color: inherit; }

.dark-section {
  background: #2d374b;
  color: #fff;
}
  .dark-section a { color: inherit; }

/*#region image section */
.image-section {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.image-section-overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background: rgba(45, 55, 75, 0.85);
}

.image-section-overlay.blur:before {
  backdrop-filter: blur(8px);
}

.image-section-content {
  position: relative;
  z-index: 1;
}

/*#endregion image section */

/*#endregion bg sections */

/*#region number badge */
.number-badge {
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  width: 3.5rem;
}
/*#endregion number badge */

/*#region shadow box */
.shadow-box {
  box-shadow: 0 3px 5px rgba(45, 55, 75, .25);
}
  .shadow-box-headline {
    background: #6fc1a6;
    box-shadow: 0 1px 5px rgba(45, 55, 75, .25);
    /*margin-top: -50%;*/
    margin: 0 -1.5rem;
    transform: translateY(-50%);
    text-align: center;
  }
/*#endregion shadow box */

/*#region profile link */
.profile-link {
  align-items: center;
  display: flex;
  text-decoration: none;
}
  .profile-link .profile-img-area {
    flex: 0 0 3rem;
    height: 3rem;
    margin-right: .5rem;
    width: 3rem; 
  }
/*#endregion profile link */

/*#region post list */
  .post {
    border: 1px solid rgba(45, 55, 75, 0.3);
    border-radius: .25rem;
    font-size: 1rem;
    margin: 0 0 2.5rem;
    overflow: hidden;
    padding: 1rem;
  }
    .post-byline {
      font-size: 1.125rem;
      padding-bottom: 1rem;
    }

    .post-content-area {
      margin: -1rem -1rem 1rem;
      position: relative;
    }
      .post-byline + .post-content-area { margin-top: 0; }

      .post-content-area .img-area { z-index: 1; }

      .video-preview-img { width: 100%; }
      .preview-img { max-width: 100%; }
      .image-preview .preview-img { max-height: 31.25rem; }
      .live-preview { min-height: 18.75rem; }
      .live-preview-img { max-height: 26.25rem; }

      .text-preview { margin-top: 1rem; }
        .preview-img.bi {
          color: #2d374b;
          height: 100%;
          width: 100%;
        }

    /*#region post countdown */
    .post-info-overlay, .post-countdown {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 0.25rem;
      color: #2d374b;
      left: 50%;
      max-width: 95%;
      padding: .625rem 0.25rem;
      position: absolute;
      text-align: center;
      top: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      z-index: 2;
    }
      .post-countdown-headline {
        font-size: 1.25rem;
        margin: 0;
      }
      .post-countdown-grp {
        display: inline-block;
        font-size: 1rem;
        padding: .625rem;
      }
        .post-countdown-grp > span {
          display: block;
          font-size: 1.5rem;
          font-weight: 700;
        }
    /*#endregion post countdown */

    /*#region live event */
    .live-event-msg { 
      color: #2d374b; 
      white-space: normal;
    }
    /*#endregion live event */

    .post-date .calendar-icon {
      margin-top: -3px;
    }

    .post-title {
      font-size: 1.5rem;
      font-weight: 700;
    }
      .post-title-link { text-decoration: none; }
      .post-title-link:hover { text-decoration: underline; }

      .package-item-img-area { height: 3.125rem; }
      .package-item-title {
        font-size: 1rem;
        font-weight: 700;
      }
      .package-item-options {
        text-align: right;
      }
        .package-item-options > .btn { margin-left: .5rem; }

    .post-price > p { margin-bottom: 0; }

    .post-actions { margin-top: .5rem; }

/*#endregion post list */

/*#region table */
.table { vertical-align: top; }
.table > tbody { vertical-align: inherit; }
.table td > ul { font-size: inherit; }

.def-table {
  border-collapse: collapse;
  /*font-size: 1.6rem;*/
  width: 100%;
}
.def-table thead {
  font-weight: 400;
  text-align: left;
}
.def-table th,
.def-table td {
  padding: 4px 7px;
}
.def-table thead th {
  border-bottom: 1px solid #2d374b;
  /*font-size: 1.6rem;*/
  font-weight: 400;
}
.def-table tbody td:first-child {
  white-space: nowrap;
}
/*#endregion table */

/*#region amount info */
.amount-info { opacity: 0.6; }
/*#endregion amount info */

/*#region earnings calculator */
.earnings-data-input {
  /*border: 2px solid #2d374b;
  border-radius: 0;*/
}
  .earnings-data-input label { min-width: 2.5rem; }
  .earnings-data-input input { border: none; }
  .earnings-data-input input:focus { box-shadow: none; }
/*#endregion earnings calculator */

/*#region percentage card */
.percent-tab {
  background: url(../img/charity-flap.svg) no-repeat 0 0;
  background-size: contain;
  color: #2d374b;
  font-family: "century-gothic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: -26px 0 0;
  padding-left: 23px;
  padding-bottom: 55px;
  text-align: center;
}
  .percent-tab-content {
    padding-top: 10px;
    padding: 20px 15px 0;
  }
  .percent-tab .percentage {
    font-size: 2.5rem;
  }
  .percent-tab .text {
    font-size: 1rem;
  }
/*#endregion percentage card */

/*#region help button */
.help-btn {
  position: fixed;
  z-index: 10;
  bottom: 1rem;
  right: 1rem;
}
/*#endregion help button */

/*#endregion
  PAGE COMPONENTS
*/


/*#region
  PAGES
*/

/*#region start page */

/*#region video player start */
.video-player-start {
  border-radius: 3rem;
  /*padding: 2.5rem;*/
  max-width: 52rem;
}
  .video-player-start .video-player {
    border-radius: .75rem;
    overflow: hidden;
    position: relative;
  }

.record-dot {
  background: #b81818;
  border-radius: 50%;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  right: .75rem;
  top: .75rem;
  z-index: 2;
}
/*#endregion video player start */

.blob-bg {
  background-image: url(../img/blob.svg);
  background-size: 1560px;
  background-position: 0 50%;
}

/*#region charity organisations */
  .charity-org-link {
    display: inline-block;
    margin: 0 1rem 1rem;
  }
    .charity-org-img {
      height: 3rem;
      max-width: 100%;
      width: auto;
    }
/*#endregion charity organisations */

/*#endregion start page */

/*#region artist page */
.artist-page-header {}

.artist-banner-area {
  position: relative;
  z-index: 1;
}
  .artist-banner {
    max-height: 15.625rem;
    min-height: 5.625rem;
    overflow: hidden;
  }

  .artist-img-area {
    background: #fff;
    border: .25rem solid #fff;
    height: 10rem;
    margin: 0 auto;
    margin-top: -5rem;
    position: relative;
    width: 10rem;
    z-index: 2;
  }

  .artist-name {
    margin-bottom: 0;
  }
  .artist-desc {
    margin-bottom: 0;
  }

  .artist-follow {
    margin-top: .625rem;
  }

  /*#region charity card */
  .charity-card {
    background: #fff;
    box-shadow: 0 20px 50px rgba(45, 55, 75, 0.1);
    border-radius: 25px;
    max-width: 400px;
    padding: 30px 30px 35px;

  }
  .charity-card p {
    color: rgba(45, 55, 75, 0.8);
    font-size: 1rem;
  }
    .charity-card-header {
      display: flex;
    }

      .charity-logo {
        flex: 0 1 50%;
      }

      .charity-size {
        background: url(../img/charity-flap.svg) no-repeat 0 0;
        background-size: contain;
        flex: 0 0 90px;
        font-family: "century-gothic", sans-serif;
        font-size: .625rem;
        font-weight: 700;
        height: 102px;
        margin: -48px 0 0 auto;
        padding: 10px 0 0 14px;
        text-align: center;
        width: 90px;
      }
        .charity-percentage {
          font-size: 1.625rem;
        }

  .charity-card .charity-name {
    font-size: 1.375rem;
    margin-bottom: .625rem;
    text-transform: uppercase;
  }

  .charity-card .btn {
    border-radius: 10px;
    font-family: "century-gothic", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 50px;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    width: 100%;
  }

  .charity-card .sm-text {
    color: rgba(45, 55, 75, 0.7);
    font-size: .75rem;
  }

  /*#endregion charity card */

/*#endregion artist page */

/*#region search results */
.search-result {
  margin-bottom: 1.25rem;
}
 .search-result:last-child { margin-bottom: 0; }

  .search-result-img-area {
    height: 3rem;
    width: 3rem;
  }
  .search-result-img {
    max-width: 100%;
  }

  .search-result-link {
    font-size: 1.25rem;
    font-weight: 400;
    text-decoration: none;
  }
  .search-result-desc {
    font-size: 1rem;
  }

  .no-of-devotees { 
    font-size: 1rem;
    text-align: center;
  }
  .no-of-devotees .count {
    display: block;
    font-weight: 700;
    line-height: 1.75rem;
  }
/*#endregion search results */

/*#region workspace pages shared */

/*#region user navigation */
.usr-nav {}

  .usr-menu-link {
    color: rgba(45, 55, 75, 0.7);
    display: block;
    font-size: 1rem;
    margin: 0 0 .625rem;
    text-decoration: none;
    text-transform: uppercase;
  }
    .usr-menu-link:hover,
    .usr-menu-link.active {
      color: rgba(45, 55, 75, 1.0);
      text-decoration: underline;
    }
/*#endregion user navigation */

/*#region workspace navigation */
.ws-nav {
  border-bottom: 2px solid #e2e0da;
  margin: 0 0 1rem;
  padding: 1.25rem 0 .5rem;
}
  .ws-nav-btn {
    align-items: center;
    background: #6fc1a6;
    border: none;
    border-radius: .25rem;
    color: #2d374b;
    display: flex;
    margin: 0 0 .25rem;
    overflow: hidden;
    padding: 0;
    width: 100%;
  }
    .ws-nav-btn:hover,
    .ws-nav-btn.active {
      background: #2d374b;
      color: #fff;
    }

    .ws-nav-btn-text {
      flex: 1 1 auto;
      font-family: "century-gothic", sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 0 .625rem;
      text-align: center;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .ws-nav-btn-icon {
      align-items: center;
      background: #2d374b;
      border-left: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      display: flex;
      justify-content: center;
      min-height: 2.875rem;
      padding: 0 .625rem;
      width: 2.875rem;
    }
      .ws-nav-btn-icon .text-icon {
        display: inline-block;
        font-size: 1.375rem;
        line-height: 1.0;
        margin-top: -.25px;
      }

    .ws-sub-nav-link {
      color: rgba(45, 55, 75, 0.7);
      display: inline-block;
      font-size: 1.125rem;
      margin-right: 1rem;
      text-decoration: none;
      text-transform: uppercase;
    }
      .ws-sub-nav-link:hover,
      .ws-sub-nav-link.active {
        color: rgba(45, 55, 75, 1.0);
        
      }
/*#endregion workspace navigation */

.ws-content {
  margin: 2rem 0;
}

/*#endregion workspace pages shared */

/*#region workspace profile page */
.my-profile-box .profile-img-area {
  height: 6rem;
  margin-bottom: .25rem;
  width: 6rem;
}
.my-profile-box .user-name {
  font-size: 1rem;
  margin: 0;
}

.profile-box {
  border: 1px solid rgba(45, 55, 75, 0.3);
  border-radius: .25rem;
  box-shadow: 1px 1px 3px rgba(45, 55, 75, .05);
  font-weight: 400;
  margin: 0 0 1rem;
  padding: 1rem;
}
  .pb-no-borders { border: 0; box-shadow: none; } 
  .profile-box h2 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  .profile-box-header {
    border-bottom: 1px solid rgba(45, 55, 75, 0.3);
    margin: -1rem -1rem 1rem;
    padding: 1rem;
  }
    .profile-box-header > h2 { margin: 0; }

  .profile-box > :last-child { margin-bottom: 0; }

.profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
  .profile-item { margin-bottom: .5rem; }
  .profile-item:last-child { margin-bottom: 0; }

.post-nav {
  border-bottom: 1px solid rgba(45, 55, 75, 0.3);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  padding: 0 1.25rem 1.25rem;
}

.no-followings {
  border: 1px solid rgba(45, 55, 75, 0.3);
  padding: 1.25rem;
  text-align: center;
}
.no-followings :last-child { margin-bottom: 0; }


.find-devoters .search-devoters-row {
  margin-top: .5rem;
  display: flex;
}
.find-devoters .search-input {
  flex: 0 1 auto;
	font-size: 1.25rem;
	padding: .5rem 1.25rem .75rem;
}
/*#endregion workspace profile page */

/*#region workspace content */
.content-list-search-input {
  max-width: 11.25rem;
}
.content-list-sort-select {
  min-width: 13.125rem !important;
}

.content-list {
  font-size: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
  .content-item {
    background: #f6f8f9;
    background: rgba(45, 55, 75, .03);
    border-radius: .5rem;
    padding: .625rem .125rem;
    margin: 0 0 1rem;
  }
  .content-item:hover { 
    background: rgba(45, 55, 75, .06);
  }
    .item-preview-img-area {
      max-height: 5.625rem;
      position: relative;
      width: 7.5rem;
    }
    .item-preview-icon-link {
      height: 100%;
    }
      .item-preview-img {
        max-width: 100%;
        z-index: 1;
      }
      .item-preview-img.bi {
        color: #2d374b;
        height: 100%;
        width: 100%;
      }
      .item-preview-icon.bi {
        background: rgba(0, 0, 0, 0.8);
        border-radius: .25rem;
        color: #fff;
        display: none;
        height: 1.375rem;
        padding: .25rem;
        position: absolute;
        right: 0;
        top: 0;
        width: 1.375rem;
        z-index: 2;
      }
      .item-preview-link:hover .item-preview-icon { display: block; }

    .item-title {
      font-size: 1.375rem;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .btn-toggle-status { min-width: 11.875rem; }

.content-list-paging {
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
}
  .content-list-paging .page {
    display: inline-block;
    padding: .25rem .625rem;
  }
  .content-list-paging a.page { text-decoration: none; }
  .content-list-paging a.page:hover { text-decoration: underline; }
  .content-list-paging .bi { margin-top: -.25rem; }
/*#endregion workspace content */

/*#region workspace content upload */
.create-content-header { margin-bottom: .25rem; }
.create-content-header h2 { margin-bottom: .5rem; }
.create-content-header p { font-size: 1rem; margin-bottom: 1rem; }

.content-price-info { opacity: 0.6; }
/*#endregion workspace content upload */

/*#region workspace content edit */

/*#endregion workspace content edit */

/*#region workspace profile settings */
.profile-form .col-form-label { font-weight: 700; }
.profile-form .required { display: inline-block; }

  .profile-url-input-area { display: flex; }
    .profile-url-input-area > .col-form-label { font-weight: 400; }
    .profile-url-input { flex: 1; min-width: 0; }

.profile-form .recommendation { font-size: 1rem; }

.profile-form .img-area {
  background: #f1f3f4;
  margin: .625rem 0;
}

.profile-form .profile-img-area {
  height: 8.125rem;
  max-width: 8.125rem;
}
/*#endregion workspace profile settings */

/*#region workspace economy */
.economy-form .col-form-label { font-weight: 700; }
.economy-form .required { display: inline-block; }

.economy-form .bank-account { min-width: 17.5rem; }

.payout-history-table {
  border-collapse: collapse;
  font-size: .875rem;
  width: 100%;
}

/*#endregion workspace economy */

/*#region site press */
.in-news-list {
  list-style: none;
  /*margin: 0;*/
  padding: 0;
}
  .news-item { margin-bottom: 3.125rem; }
  .news-img-area {
    background: #6fc1a6;
    height: 13.75rem;
    margin: 0 0 .625rem;
    max-height: 13.75rem;
    overflow: hidden;
  }
  .news-img {}

  .news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .25rem;
  }
    .news-title > a {
      text-decoration: none;
    }
  .news-excerpt {
    margin-bottom: 1rem;
  }
  .news-data {
    font-size: .875rem;
  }
    .news-source {
      text-decoration: none;
    }
/*#endregion site press */

/*#region admin pages */
.adm-menu-link {
  font-size: 1rem;
  font-weight: 700;
  margin-right: 1rem;
}
/*#endregion admin pages */

/*#endregion
  PAGES
*/


/*#region 
  POPUPS 
*/

/*#region loader */
.loader-backdrop {
	background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: fixed;
	z-index: 99998; /* make sure it's always on top of popup */
	text-align: center;
}

.loader {
  margin-left: -100px;
  margin-top: -100px;
	position: fixed;
	top: 50%;
	left: 50%;
  height: 200px;
  width: 200px;
	z-index: 99999; /* make sure it's always on top */
}
/*#endregion loader */

/*#region popup general */

.modal-open {
  overflow: hidden; 
}

.modal-backdrop {
  z-index: 1040;
  opacity: 0;
  transition: opacity .1s linear;
}
.modal-backdrop ~ .modal-backdrop { z-index: 1060; }
.modal-backdrop ~ .modal-backdrop ~ .modal-backdrop { z-index: 1080; }

.modal ~ .modal { z-index: 1070; }
.modal ~ .modal ~ .modal { z-index: 1090; }
.modal.show { opacity: 1; }

.modal-body {
  padding: 1.875rem; /* 1rem */
}

/*#region popup effects */
.modal-dialog {
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out,-webkit-transform .2s ease-out;
  -webkit-transform: translate(0,-50px);
  transform: translate(0,-50px);
}
/*#endregion popup effects */

.modal .close-btn {
  background: none;
  color: #ababab;
  cursor: pointer;
  border: none;
  padding: 0;
  position: absolute;
  right: -3px;
  top: -2px;
  z-index: 10;
}

.modal .close-btn:hover { color: #000; }
/*#endregion popup general */

/*#region popup integrity-policy */
.popup-integrity-policy .modal-dialog { max-width: 62.5rem; }
/*#endregion popup integrity-policy */

/*#region popup cookies */
.popup-terms-cookies .modal-dialog { max-width: 62.5rem; }
/*#endregion popup cookies */

/*#region popup cookies */
.popup-terms-viewer .modal-dialog,
.popup-terms-user .modal-dialog { max-width: 62.5rem; }
/*#endregion popup cookies */

/*#region registration popup */
.popup-registration .modal-dialog {}
/*#endregion registration popup */

/*#region login popup */
.popup-login .modal-dialog {}

.login-message {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 1rem 0 0;
}
/*#endregion login popup */

/*#region popup cookies */
.popup-account-settings .modal-dialog { max-width: 50rem; }
/*#endregion popup cookies */

/*#region popup cookies */
.popup-error .modal-dialog { max-width: 30rem; }
/*#endregion popup cookies */

/*#region popup feedback */
.popup-feedback .modal-dialog {}

.popup-feedback .modal-body { padding: 1.875rem; }

.feedback {
  display: flex;
  align-items: center;
}

.feedback p {
  font-size: 1.25rem;
}

.feedback > :last-child {
  margin-bottom: 0;
}
/*#endregion popup feedback */

/*#region media-content popup */
.popup-media-content .modal-dialog { max-width: 50rem; }

.blob-content { 
  font-size: 1rem;
  min-height: 1.75rem;
  overflow: hidden; 
}
/*#endregion media-content popup */

/*#region play media popup */
.popup-playMedia .modal-dialog { max-width: 50rem; }
/*#endregion play media popup */

/*#region purchase popup */
.popup-purchase .modal-dialog { max-width: 37.5rem; }
/*#endregion purchase popup */

/*#region create package popup */
.popup-create-package .modal-dialog { max-width: 56.25rem; }
/*#endregion create package popup */

/*#region edit package popup */
.popup-edit-package .modal-dialog { max-width: 56.25rem; }
/*#endregion edit package popup */

/*#region update package popup */
.popup-update-package .modal-dialog { max-width: 62.5rem; }

.package-table { /*font-size: 1.4rem;*/ }
.package-table thead th { 
  border-bottom: 1px solid rgba(45, 55, 75, 0.4);
  font-weight: 700;
}
.package-table tbody td:first-child { white-space: normal; }
.package-table .btn { min-height: initial; white-space: nowrap; }
.package-table .btn-icon .bi { height: 1.5rem; width: 1.5rem;}
.package-table th, .package-table td {
    padding: 4px 7px 4px 0;
}
/*#endregion update package popup */

/*#region create package popup */
.popup-create-live-event .modal-dialog { max-width: 53rem; }
/*#endregion create package popup */

/*#region create package popup */
.popup-update-live-event .modal-dialog { max-width: 53rem; }
/*#endregion create package popup */

/*#region delete content popup */
.popup-delete-content .modal-content { 
  margin: 0 auto;
  width: auto; 
}
/*#endregion delete content popup */

/*#region access popup (admin) */
.popup-access .modal-dialog { max-width: 50rem; }
/*#endregion access popup (admin) */

/*#region charity popup (admin) */
.popup-charity .modal-dialog { max-width: 50rem; }
/*#endregion charity popup (admin) */

/*#endregion 
  POPUPS 
*/


/*#region
	COOKIES
*/
/*.cookies-alert {
  background: #e0efff;
  border-bottom: 1px solid #b8daff;
  color: #002c5d;
  font-weight: 400;
  padding: 1.5rem 0;
}*/

.cookies-alert {
  background: #e0efff;
  border: none;
  color: #002c5d;
  padding: 1.875rem .625rem;
  position: fixed;
  bottom: 0;
  width: 62.5rem;
  left: 0;
  box-shadow: 0 0 30px rgba(45, 55, 75, 0.6);
  max-width: 100%;
  z-index: 999;
}
  
  .cookies-alert-content {
    display: flex;
    align-items: center;
  }

  .cookies-alert-content > .bi { margin-top: 2px; }

  .cookies-alert-content > p {
    flex: 1;
    font-size: .875rem;
    margin-bottom: 0;
  }

  .cookies-alert .more-info {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
  }

  .cookies-alert .btn {
    align-self: flex-start;
  }
/*#endregion
	COOKIES
*/


/*#region info icon */
.info-icon {
    cursor: help;
    position: relative;
}

.input-group-text.info-icon {
    position: initial;
}

.info-icon .info-msg {
    display: none;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99999;
    width: auto;
    white-space: normal;
    min-width: 9.5rem;
}

.input-group-text.info-icon .info-msg {
    max-width: 100%;
    min-width: auto;
}

.info-icon:hover .info-msg,
.info-icon:hover .info-msg {
    display: block;
}
/*#endregion info icon*/


.nav-tabs .nav-link {
    border-color: rgba(255, 255, 255, .2);
}
/*.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}*/
