
/*
 * -- MENU STYLES --
 * I want to customize how my .pure-menu looks at the top of the page
 */

 html {
    font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Droid Sans,Helvetica Neue,sans-serif;
    font-size: 62.5%;
    line-height: 1.65;
    letter-spacing: .01em;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#main {
    font-size: large;
}

 .layout {
    font-size: 13px;

 }

 th {
    color: #000;
    background-color: #FFF;
 }

 .studio-menu {
    margin: 0;
    height: 60px;
    text-align: center;
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
    background: #FFF;
    border-bottom: 1px solid #E9E9E9;
}

.studio-menu .pure-menu-list {
    border: none;
}

.pure-menu.pure-menu-fixed {
    /* Fixed menus normally have a border at the bottom. */
    border-bottom: none;

    /* I need a higher z-index here because of the scroll-over effect. */
    z-index: 4;
}

.studio-menu .pure-menu-heading {
    color: white;
    font-weight: 400;
    font-size: 120%;
}

.studio-menu .pure-menu-selected a {
    color: white;
}

.studio-menu a {
    color: #6FBEF3;
}

.studio-menu li a:hover,
.studio-menu li a:focus {
    background: none;
    border: none;
    color: #AECFE5;
}

/* .studio-menu li {
    margin:0 20px;
} */

.header {
    padding: 0;
    height: 60px;
}

.studio-menu .header {
    margin: 0;
    color: #ccc;
    text-align: center;
    padding: 0;
    border-bottom: none;
    font-size: 125%;
}

.studio-menu .header h1 {
    margin: 0.2em 0;
    font-size: 3em;
    font-weight: 300;
}

.studio-menu    .header h2 {
    font-weight: 300;
    color: #827d7d;
    padding: 0;
    margin-top: 0;
}

/* td {
    white-space: nowrap;
} */

.content-actions img {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    cursor: pointer;
}

.menu a, .menu a:hover, .menu a:visited, a, a:hover, a:visited {
    color: #40474F;
}

.pure-menu-link {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center items */
}

.media-table td {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center items */
}

.pure-menu-link img {
    width: 1.5em; /* Adjust the size of the image */
    margin-right: 1em; /* Add some spacing between the image and link text */
}


.pure-table thead {
    color: #526066;
}


#studio {
    flex-grow: 1;

}

.pure-menu-item {
    height: 45px;

    /* border-right: silver; */

    /* padding: 5px 20px; */
    margin: 0;
}


.content {
    padding: 0;
}



#upload-container {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    position: relative; /* Add position relative to enable absolute positioning of the icon */
}

#upload-icon {
    position: absolute; /* Position the icon absolute relative to the container */
    top: 20px; /* Adjust top position as needed */
    left: 50%; /* Center the icon horizontally */
    transform: translateX(-50%); /* Center horizontally */
}


/* .pure-menu-list{
    border-top: 1px solid #E9E9E9;
} */


.content {
    width: 100%;
}

.pure-table {
    width: 100%;
}

.pure-table thead {
    background-color: #FFF;
}

.pure-table {
    border: 1px solid #F9F9F9;
}

.pure-table th, .pure-table td {
    font-weight: normal;
    border-top: 1px solid #F9F9F9;
    border-bottom: 1px solid #F9F9F9;
    line-height: 2em;
    padding: 0.5em 1em;
}
.pure-table thead {
    background-color: #fff;
    color: #333;
}

.pure-table img {
    border: 1px solid #ecebeb;
}

#platform-list {
    text-align: center;
}

.pure-button {
    border-radius: 10px; /* Makes the button round */
}

form {
    line-height: 2em;
}

#media-form input[type="text"],  #media-form textarea, #media-form select, #media-form input[type="datetime-local"] {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}

#media-form input[type="radio"] {
    /* width: 25%; */
    margin: 0 20px;
}

.pure-button-primary {
    background-color: #3F7AC0;
}

.pure-button, .pure-button-primary {
    padding: 0.5em 1.5em;
    margin: 1em 0;
}


.transparent-image {
    opacity: 0.5; /* Adjust the opacity value as needed (0.0 to 1.0) */
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 400px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -200px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* Style for the info icon */
.tooltip-info {
    margin-left: 5px;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0 0 0); /* Fallback color */
    background-color: rgb(0 0 0 / 40%); /* Black w/ opacity */
  }

  .modal-body{
    background-color: #FFF;
  }

  /* Modal Content/Box */
  .modal-content {
    background-color: rgb(0 0 0 / 40%);;
    margin: 10% auto; /* 15% from the top and centered */
    padding: 0;

    /* border: 1px solid #888; */
    width: 30%; /* Could be more or less, depending on screen size */
    min-width: 20em;
    position: relative;
    top:10%;
    /* height: 50%; */
  }

  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }



  .pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    margin: 2px;
    cursor: pointer;
}

.page-info {
    font-size: 18px;
    margin: 0 10px;
}

.sub_menu_account {
    display: none;
}

.profile_modal, .account_modal {
    display: none;
    background: #fff;
    border: 1px solid #ccc;

    /** add radius to corners **/
    border-radius: 5px;
    padding: 10px;
    width: 150px; /* Set a specific width for the element */
    position: absolute;
    top: 60px; /* Position at the top */
    right: 0; /* Position at the right */
}

.profile_modal ul, .account_modal ul {
    border-top: none;
}

.profile_modal .pure-menu-item, .account_modal .pure-menu-item {
    padding: 0;
}

.profile_modal a, .profile_modal a:hover, .account_modal a, .account_modal a:hover {
    color: #606060;
    border: none;
    padding: 0.6em 0 0.6em 0.6em;
}


button :hover {
    cursor: pointer;
}

.welcome {
    position: absolute; 
    display: flex; 
    flex-direction: column;
    z-index: 9999;
}

.welcome-title {
    font-size: 2em;
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: 0.2em;
}

.welcome-arrow {
    transform: rotate(0deg);
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: right;
    flex-direction: row-reverse;
    display: flex;
    position: relative;
    left: 120px;
    margin-bottom: 10px;
}

.welcome-info {
    text-align: left;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.75) 0px 0px 10px 0px;
    width: 200px;
}

.welcome-info h3 {
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    font-weight: 400;
}

.welcome-button {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}

.welcome-button button {
    text-align: right;
    margin: 0 auto;
    cursor: pointer;
}

#welcome-skip {
    background-color: #FFF;
    color: #4a90e2;
    float: left;
}

#welcome-next {
    background-color: #4a90e2;
    color: #FFF;
    float: right;
}


#media-form {
    padding: 0 20px;
}


.ig-post {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    line-height: 15px;
    font-family: "Arial", sans-serif;
    color:#000;
}

.ig-date {
    color: #757575;
}

.ig-post a {
    color: #0095F6;
    border: none;
    padding: 0.6em 0 0.6em 0.6em;
    text-decoration: none;
}

.ig-desc{
    font-weight: normal;
    color: #000;
    font-size: 11px;
}

.ig-menu {
    display: flex;
    width: 20px;
    height: 20px;
}

.ig-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ig-profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.ig-username {
    font-weight: bold;
    color: #000000;
    font-size: 12px;
}

.ig-action-right {
    float: right;
}

.ig-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.ig-actions {
    margin: 10px 0;
}

.ig-actions img {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    cursor: pointer;

}

.ig-caption {
    margin-bottom: 5px;
}

.ig-likes {
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.ig-comments {
    margin-bottom: 5px;
    color: #757575;
}

.ig-add-comment {
    margin-bottom: 5px;
    color: #757575;
}

.ig-comment {
    margin-bottom: 5px;
    font-size: 14px;
}

.ig-time {
    color: #757575;
    font-size: 12px;
}

.ig-video {
    background-color: #000;
}

.tw-tweet {
    background-color: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    line-height: 10px;
}

.tw-profile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tw-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.tw-username {
    font-weight: bold;
    font-size: 14px;
    color: #0F1418;
}

.tw-description {
    color: #0F1418;

}
.tw-video {
    margin: 15px 0;
    /* width: 510px; */
    background-color: #000;
    border-radius: 5px;
}

.tw-video video {
    width: 100%;
    border-radius: 5px;
}

.tw-tweet-content {
    font-size: 16px;
}

.tw-text {
    margin-bottom: 10px;
}

.tw-likes {
    color: #657786;
    margin-bottom: 5px;
}

.tw-comments {
    margin-bottom: 5px;
}

.tw-comment {
    color: #1da1f2;
    margin-bottom: 5px;
    font-size: 14px;
}

.tw-time {
    color: #657786;
    font-size: 12px;
}

.tw-menu {
    display: flex;
    width: 20px;
    height: 20px;
}

.tw-action {
    margin: 0 auto;
    width: 20px;
    height: 20px;;
}

.tw-actions {
    display: flex;
    justify-content: space-between;
}

.tw-bookmark-share {
    display: flex;
    margin-left: auto; /* Pushes the element to the right */
}

.tw-bookmark-share img {
    margin-left: 10px; /* Adjust as needed */
}

.yt-content {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    line-height: 15px;
    font-family: "Arial", sans-serif;
    color:#000;
}

.yt-video-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.yt-video-player {
    border-radius: 5px;
    background-color: #000;
}

.yt-video-title {
    font-weight: bold;
    color: #000000;
    margin: 10px 0;
    font-size: 16px;
}

.yt-video-info {
    align-items: center;
    margin-bottom: 10px;
    background-color: #F2F2F2;
}

.yt-video-logo {
    border-radius: 50%;
    margin-right: 10px;
}

.yt-video-logo img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

.yt-video-channel {
    color: #0F1418;
    line-height: 7px;
}

.yt-channel {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.yt-subscribers {
    font-size: 11px;
    color: #657786;
}

.yt-video-subscribe {
    margin: 0 20px;
    margin-right: auto; /* Pushes the element to the right */
}

.yt-subscribe {
    display: flex;
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    font-size: 11px

}

.yt-video-actions {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.yt-video-actions img {
    vertical-align: middle;
}

.yt-video-actions div {
    background-color: #F2F2F2;
    border-radius: 20px;
    margin: 0 5px;
    padding: 5px;
}

.yt-action {
    margin: 0 auto;
    width: 20px;
    height: 20px;;
}

.yt-video-info {
    margin-bottom: 10px;
    border-radius: 5px;
    line-height: 20px;
    padding: 10px;
    font-size: 12px;
}

.yt-video-data {
    display: flex;
    font-weight: bold;
}

.yt-views {
    font-weight: bold;;
    color: #0F0F0F;
    margin-bottom: 5px;
}

.yt-date {
    color: #0F0F0F;
    margin: 0 10px;
}

.yt-tags {
    font-weight: bold;
    color: #606060;
    margin-bottom: 5px;
}

.yt-video-description {
    color: #0F1418;
    margin-bottom: 5px;
}


.fb-reel-content {
    background-color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    line-height: 15px;
    font-family: "Arial", sans-serif;
    color:#FFF;
}

.fb-reel-content img {
    vertical-align: middle;
    -webkit-filter: invert(100%);
}

.yt-video-actions {
    display: flex;
    justify-content: space-between;
}

.yt-video-actions img {
    vertical-align: middle;
}

.yt-video-actions div {
    background-color: #F2F2F2;
    border-radius: 20px;
    margin: 0 5px;
    padding: 5px;
}

.yt-action {
    margin: 0 auto;
    width: 20px;
    height: 20px;;
}

.yt-video-info {
    margin-bottom: 10px;
    border-radius: 5px;
    line-height: 20px;
    padding: 10px;
    font-size: 12px;
}

.yt-video-data {
    display: flex;
    font-weight: bold;
}

.yt-views {
    font-weight: bold;;
    color: #0F0F0F;
    margin-bottom: 5px;
}

.yt-date {
    color: #0F0F0F;
    margin: 0 10px;
}

.yt-tags {
    font-weight: bold;
    color: #606060;
    margin-bottom: 5px;
}

.yt-video-description {
    color: #0F1418;
    margin-bottom: 5px;
}


.fb-reel-content {
    background-color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    line-height: 15px;
    font-family: "Arial", sans-serif;
    color:#FFF;
    font-size: 13px;
}

.fb-reel-video-player {
    border-radius: 5px;
    /* width: 590px;
    height: 590px; */
    background-color: #000;
    position: relative;
}

.fb-reel-video-header {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
}

.fb-reel-video-logo {
    border-radius: 50%;
    margin-right: 10px;
}

.fb-reel-video-logo img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}


.fb-reel-video-logo {
    border-radius: 50%;
    margin-right: 10px;
}

.fb-reel-video-logo img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    -webkit-filter: none;
}

.fb-reel-video-channel {
    line-height: 7px;
}

.fb-reel-channel {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.fb-reel-type {
    font-size: 11px;
}

.fb-reel-earth {
    width: 10px;
    height: 10px;
}

.fb-reel-date {
    font-size: 11px;
}

.fb-reel-video-settings {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
}

.fb-reel-video-settings img {
    vertical-align: middle;
    width: 25px;
    height: 25px;
    margin: 0 5px;
}

.fb-reel-mute {
    margin: 0 20px;
    margin-right: auto; /* Pushes the element to the right */
}

.fb-reel-video-info {
    border-radius: 5px;
    line-height: 10px;
    position: absolute;
    bottom: 0;
}

.fb-reel-video-title {
    margin: 10px 0;
}

.fb-reel-video-sound {
    margin: 10px 0;
    display: flex;
}

.fb-reel-sound-container {
    overflow: hidden;
    width: 200px;
}
.fb-reel-video-sound img {
    width: 10px;
    height: 10px;
    margin-right: 10px;

}

.fb-reel-sound {
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    animation: moveRightToLeft 5s linear infinite;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(to right, transparent, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, transparent);
}


@keyframes moveRightToLeft {
    0% {
        left: 100%;
        transform: translateX(-100%); /* Start from right of container */
    }
    100% {
        left: 0; /* Adjust the percentage or pixel value to move the element */
        transform: translateX(100%); /* Move to the left of container */
    }
}

@keyframes moveLeftToRight {
    0% {
        left: 0;
    }
    100% {
        left: 100%; /* Adjust the percentage or pixel value to move the element */
    }
}

.fb-reel-sound img {
    width: 10px;
    height: 10px;
    margin-right: 10px;
}

.fb-reel-video-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    right: 0;
    bottom: 0;
}

.fb-reel-video-actions img {
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin: 15px 0
}


.fb-reel-video-content {
    color: #FFF;
}

.video-player {
    background-color: #000;
}

#upload-button {
    width: 150px;
}

progress {
    vertical-align: middle;
    margin: 0 20px;
    width: 200px;
}

#media-form label {
    font-weight: bold;
}


.logo-platform {
    border-radius: 30%;
    vertical-align: middle;
    border: None;
}


.profile-icon{
    text-align:right;
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
}

.profile-icon img {
    margin: 0 10px;
    vertical-align: middle;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 1em;

}
.table-responsive table {
    width: 100%;

    border-left-width: 0;
    border-right-width: 0;

}

.table-responsive .mq-table {
    width: 100%;
    min-width: 44em;
}

.pure-table td {
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 80%;
}
/* Hide the column on smaller viewports */
@media (max-width: 57.99em) {
    .hide-on-small {
      display: none;
    }

    .welcome-arrow {
        display: none;
    }

    .welcome-info {
        display: none;
    }

    video {
        width: 100%; /* Set the video width to fill the container */
        height: auto; /* Maintain aspect ratio */
        /* Additional styles as needed */
      }
  }


  .charts {
    justify-content: center;
  }

  .chart {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    height: 100%; /* Set the height to 100% for flexbox to work */
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }


#platform-menu {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px 0;
}

#platform-menu img {
    width: 40px;
    height: 40px;
}

.preview-video {
    display: flex;
    align-items: center;
    justify-content: space-around;
}


#menu_right_container {
    padding: 5px;
}

.media-text-settings {
    font-size: 80%;
}
