#myShowsSection {}
#myShowsSectionDiv {
     background-color: #F8F5F5;
     width: 60%;
     min-width: 835px;
     /* height: 600px; */
     height: 49%;
     padding: 20px;
     font-family: Arial;
}

#myShowsSectionDiv hr {
     height: 1px;
     background-color: #C3C1C1;
     border: none;
     margin: 0px;
}

#myShowsSectionDiv tag {
     height: 24px;
     /* background: #2F3139; */
     /* color: #FFF; */
     padding: 3px 17px;
     border-radius: 9px;
     position: relative;
     overflow: hidden;
     word-break: keep-all;
     white-space: nowrap;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 16px;
     /* border: 1px solid; */
     border: 1.4px solid;
}
#myShowsSectionDiv tag:not([disabled]):not([inactive]):hover {}
#myShowsSectionDiv tag:not([disabled]):not([inactive]):hover > .close-icon { opacity: 1.0; }
#myShowsSectionDiv tag .close-icon {
     transition: 200ms all linear;
     height: 100%;
     right: 3px;
     top: 1.5px;
     bottom: 0px;
     position: absolute;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0.0;
     background: #737375;
     border-radius: 50%;
     width: 24px;
     height: 24px;
     cursor: pointer;
     user-select: none;
}
#myShowsSectionDiv tag { margin-right: 5px; }
#myShowsSectionDiv tag[inactive] {
     background: #6c707d;
     color: #fff;
     opacity: 0.7;
     cursor: pointer;
}
#myShowsSectionDiv tag[inactive]:hover { background: #2F3139; opacity: 1.0; }



#myShowsNavBar { display: flex; justify-content: space-between; }
#myShowsNavBar > .left_side { display: flex; align-items: center; }
#myShowsNavBar > .right_side { display: flex; align-items: center; }
#myShowsNavBar > .right_side > button { border: 1px solid #CFD8FA; } /* width: 130px; */
#myShowsNavBar > .right_side > button:not(:last-child) { margin-right: 15px; }
#myShowsNavBar > .right_side > button > i { margin-left: 10px; }

#myShowsTitle {
     font-size: 33px;
}
#myShowsNavBarHr {
     width: 98%;
     margin: 8px auto !important;
     margin-bottom: 20px !important;
}

.myShowsNavSearchBarContainer {
     display: flex;
     align-items: center;
     height: 100%;
     margin-right: 15px;
}

#myShowsNavSearchBar {
     height: 30px;
     width: calc(100% - 8px); /* -8 is for the focus outline, otherwise it gets cut off */
     border: 1px solid #CFD8FA;
}

.myShowsNavSearchBarIcon {
     margin-left: 15px;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     /* background: purple; */
     border: 1px solid #CFD8FA;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
}
.myShowsNavSearchBarIcon:hover, .myShowsNavSearchBarIcon[selected] { }
.myShowsNavSearchBarIcon:focus {
     outline:none;
     border:1px solid #4D90FE;
     -webkit-box-shadow: 0px 0px 5px  #4D90FE;
     box-shadow: 0px 0px 5px  #4D90FE;
}
.myShowsNavSearchBarIcon > i { pointer-events: none; }

.myShowsNavSearchBarContainer { position: relative; }

.myShowsNavSearchBarContainer .myShowsNavSearchBoxOutter {
     display: inline-block;
     overflow: hidden;
     position: absolute;
     top: 0;
     bottom: 0px;
     right: 45px;
     width: 300px;
     transition: width 0.4s ease;
}

.myShowsNavSearchBarContainer .myShowsNavSearchBoxInner {
     /* width: 240px; */
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
}

.myShowsNavSearchBarContainer.collapsed .myShowsNavSearchBoxOutter { width: 0px; }

#myShowsSectionBodyContainer {
     display: flex;
     justify-content: space-between;
     height: calc(100% - 72px);
}

#myShowsLeftShowListDiv {
     height: 100%;
     width: 53%;
     overflow: scroll;
}
#myShowsList {
     padding: 0px;
     list-style: none;
}

.myShowsListItem {
     min-height: 95px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 0 10px;
     padding-top: 6px;
     border-radius: 7px;
     transition: 200ms ease-out;
     cursor: pointer;
     border: 2px solid;
     border-color: transparent;
     box-sizing: border-box;
}
.myShowsListItem:not(:first-child) {
     margin-top: 20px;
}
.myShowsListItem[selected] {
     background: #E5E7F0;
     /* background: #e7e8e9; */
     cursor: default;
     border-color: #2443cc;
}
.myShowsListItem:hover {
     background: #E5E7F0;
     /* background: #e7e8e9; */
}

.myShowsListItem hr {
     width: 90%;
     margin: 0 auto !important;
}
.myShowsListItemTitleSection {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
.myShowsListItemShowTitle {
     font-size: 23px;
     font-weight: 600;
     font-family: Open Sans;
     margin: 0;
}
.myShowsShowDate {
     font-size: 19px !important;
}

.myShowsListItemShowInfoSection {
     display: flex;
     opacity: 0.8;
}




#myShowsRightShowDetailDiv {
     width: calc(45% - 40px);
     height: calc(100% - 40px);
     background: #E5E7F0;
     /* background: #e7e8e9; */
     border-radius: 7px;

     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
     padding: 20px;
     position: relative;
}

#myShowsShowDetailContainer {
     width: 100%;
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
}

#myShowsShowDetailTitleDiv {
     width: 100%;
     min-height: 43px;
     display: flex;
     justify-content: space-between;
     align-items: center;
}

#myShowsSectionShowNameEditContainer {
     display: flex;
     width: 100%;
     margin-right: 10px;
}
#myShowsSectionShowNameEditInput {
     margin-right: 5px;
     width: 100%;
}
#myShowsSectionShowNameConfirmEditButton {
     margin: 0 5px;
     min-width: 60px;
}
#myShowsSectionShowNameEditCancelButton {
     margin-left: 5px;
     width: 60px;
     min-width: 60px;
     border: 1px solid #CFD8FA;
}

#myShowsSectionShowNameContainer {
     align-items: center;
     justify-content: flex-start;
     position: relative;
     border-radius: 7px 0 0 7px;
}

#myShowsSectionShowNameContainer:hover {
     background: #f1f4ff;
     box-shadow: 0px 2px 9px 2px rgba(0,0,0,0.4);
     padding-left: 5px;
}

#myShowsSectionShowNameContainer::before {
     content: '';
     position: absolute;
     right: -22px;
     top: 0px;
     height: 100%;
     width: 22px;
     /* background: green; */
     border-radius: 0 7px 7px 0;
     box-shadow: 0px 2px 9px 2px rgba(0,0,0,0.4);
     z-index: -1;
}

#myShowsSectionShowNameContainer:hover > #myShowsSectionShowNameEditButton {
     display: flex !important;
}

#myShowsSectionShowNameEditButton {
     margin-left: 10px;
     font-size: 22px;
     position: absolute;
     /* right: -22px; */
     right: -29px;
     top: calc(50% - 11px);
     z-index: 1;
     background: #f1f4ff;
     height: 100%;
     top: 0px;
     border-radius: 0 7px 7px 0;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 4px 2px 13px 1px rgba(0,0,0,0.4);
     cursor: pointer;
     clip-path: inset(-50px -50px -15px 0px);
     width: 30px;
}

#myShowsSectionShowName {
     font-family: Open Sans;
     font-size: 32px;
     font-weight: 600;
     margin: 0px;
     cursor: pointer;
}
/* #myShowShowDetailNumberOfCues {
     font-family: Open Sans;
     font-size: 20px;
     font-weight: 700;
     margin-right: 8px;
} */
.myShowsShowDetailNumberOfCues {
     font-family: Open Sans;
     font-size: 20px;
     font-weight: 700;
     margin-right: 8px;
}
.myShowShowDetailNumberOfCuesUnit {
     color: #32B662;
     font-family: Open Sans;
     font-size: 15px;
     transform: translateY(2px);
}

#myShowsShowDetailContentDiv {
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
}
#myShowsShowDetailContentDiv hr {
     width: 90%;
     margin: 12px auto;
     height: 2px;
}
#myShowsShowDetailEditedDiv { margin-bottom: 12px; }
#myShowsShowDetailCreatedOpenedDiv { display: flex; }
#myShowsShowDetailAttributesDiv { text-align: left; max-width: 100%; }

.myShowsShowDetailDate {
     margin: 0px;
     color: #656363;
     font-family: Open Sans;
     font-size: 16px;
}
.myShowsShowAttributeData {
     display: flex;
     align-items: center;
     font-family: Open sans;
     font-size: 20px;
     margin: 12px 0px;
     margin-top: 0px;
}
.myShowsShowAttributeDataGroup {
     display: inline-block;
     margin-top: 4px;
}
.myShowsShowDetailAttributesTag {
     /* margin-left: 8px; */
}
.myShowsShowDetailSeperator {
     width: 7px;
     height: 7px;
     background: #656363;
     border-radius: 50%;
     margin: auto 10px;
     transform: translateY(1px);
}

.myShowsShowAttributeCustomColumnsContainer { 
     max-width: 100%;
     height: 45px;
     /* overflow: scroll; */
     overflow-x: auto;
     overflow-y: hidden;
}
.myShowsShowAttributeCustomColumnsTagContainer { 
     display: flex;
     width: fit-content;
}

#myShowsShowDetailButtonDiv {
     width: 100%;
     display: flex;
     flex-direction: column;
}
#myShowsShowDetailButtonDiv button {
     width: 45%;
}
#myShowsShowDetailButtonDiv button > i {
     margin-right: 9px;
}
.myShowsShowDetailButtonContainer {
     display: flex;
     justify-content: space-around;
}
.myShowsShowDetailButtonContainer.top {
     margin-bottom: 15px;
}


.myShowsSectionEmptyStateContainer {
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
}
.myShowsSectionEmptyStateInnerContainer {
     /* width: 400px;
    height: 475px; */
     width: 375px;
     height: 450px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     background: #FFFFFF;
     border-radius: 24px;
     box-shadow: 0px 11px 23px 0px rgba(0,0,0,0.18);
}
.myShowsSectionEmptyStateIcon {
     margin-bottom: 45px;
}
.myShowsSectionEmptyStateTitle {
     font-family: Avenir Next, Open Sans;
     font-weight: bold;
     font-size: 20px;
     color: #4A4A4A;
}
.myShowsSectionEmptyStateDetails {
     font-family: Avenir Next, Open Sans;
     font-size: 20px;
     color: #4A4A4A;
     width: 340px;
}
.myShowsSectionEmptyStateCallToActionButton {
     margin-top: 60px;
     background: #5273F1;
     color: #fff;
     width: 290px;
     height: 55px;
     border-radius: 27.5px;
     box-shadow: 0px 6px 12px 0px rgb(27, 105, 253, 0.39);
     font-family: Avenir Next, Open Sans;
     font-size: 18px;
     font-weight: bold;
}

#myShowsQuickOpenPopup {
     top: -5px;
     left: 0px;
     box-shadow: 0px 2px 38px 4px rgba(0,0,0,0.5);
}

#myShowsQuickOpenPopup::after {
     left: -14px;
     top: 70px;
     transform: rotate(90deg);
}


.non-interactive-pill { pointer-events: none; }

.far_show_date_pill { background-color: #C6EFD4; border-color: #1E9B4C; color: #1E9B4C; }
/* .close_show_date_pill { background-color: #EFD8D8; border-color: #A94442; color: #A94442; } */
.close_show_date_pill { background-color: #FDE3C5; border-color: #F9931C; color: #F9931C; }
.past_show_date_pill { background-color: #CCEFFA; border-color: #5195B2; color: #5195B2; }

.firmware_version_pill { background-color: #516FE0; border-color: #516FE0 !important; color: #FFFFFF; }
.has_audio_pill { background-color: #CCEFFA; border-color: #5195B2; color: #5195B2; }
.has_custom_columns_pill { background-color: #FDE3C5; border-color: #F9931C; color: #F9931C; }

.number_of_cues_pill { background-color: #C6EFD4; border-color: #1E9B4C; color: #1E9B4C; }


/* .paid_pill { background-color: #c8d8c1; color: #356935; }
.trial_pill { background-color: #efe9cb; color: #8a6d3b; }
.expired_pill { background-color: #efd8d8; color: #a94442; }
.none_pill { background-color: #cacbd2; color: #2F3139; }
.banned_pill { background-color: #46465f; color: #ffffff; }

.missing_name_pill { background-color: #efd8d8; color: #a94442; }

.admin_pill { background-color: #46465f; color: #ffffff; }

.true_pill { background-color: #c8d8c1; color: #356935; }
.false_pill { background-color: #efd8d8; color: #a94442; }

.deleted_pill { background-color: #efd8d8; color: #a94442; }

.is_online_pill { background-color: #c8d8c1; color: #356935; }

.is_archived_pill { background-color: #efd8d8; color: #a94442; }

.activated_pill { background-color: #c8d8c1; color: #356935; }
.unactivated_pill { background-color: #efe9cb; color: #8a6d3b; }

.uses_audio_pill { background-color: #c8d8c1; color: #356935; }
.no_audio_pill { background-color: #efd8d8; color: #a94442; }

.has_custom_columns_pill { background-color: #c8d8c1; color: #356935; }
.no_custom_columns_pill { background-color: #efd8d8; color: #a94442; }

.sending_pill { background-color: #efe9cb; color: #8a6d3b; }
.delivered_pill { background-color: #c0deec; color: #31708f; }
.failed_pill { background-color: #efd8d8; color: #a94442; }
.opened_pill { background-color: #c8d8c1; color: #356935; } */

@media screen and (max-height: 1080px) {
     #myShowsSectionDiv {
          /* height: 600px; */
          min-height: 600px;
          height: 67%;
     }
}
/* @media screen and (min-height: 1081px) {
     #myShowsSectionDiv {
          min-height: 600px;
          height: 67%;
     }
} */
