/* Text Color: #152242 */

html {
     font-family: 'Open Sans';
     background-color: #EFF4F6;
}
body {
     margin: 0px;
     /* height: 200vh; */
     border: 1px solid transparent; /*Fixes bug where .content_body's margin-top pulled the body down.*/
     /* width: calc(100vw - 40px); */
}
h1, h2, h3, h4, h5, h6, p { margin: 0px; }
a {
     color: none;
     text-decoration: none;
}

a {
     --initialTextColor: #5273F1;
     --slideTextColor: #0035ff;

     --initialBgColor: transparent;
     --slideBgColor: #ccd5ff;

     color: var(--initialTextColor);

     background-image: linear-gradient(90deg,
          var(--initialBgColor) 0%,
          var(--initialBgColor) 50%,
          var(--slideBgColor) 50%,
          var(--slideBgColor) 100%);
     background-size: 300%;
     transition: background-position .3s cubic-bezier(.47, .1, 1, .63),
          color .2s linear;
     transition-delay: 0.0s, 0.15s;

     padding: 0 9px;
     border-radius: 3px;
}

a:hover {
 color: var(--slideTextColor);
 cursor: pointer;
 background-position: -50% 100%;
}

.no_scroll {
     overflow: hidden;
}

/* Navigation */
nav {
     height: 60px;
     padding: 0 20px;
     background: linear-gradient(#F7F9FA,#F5F8F9);
     box-shadow: 0px -1px 6px 0px rgba(0,0,0,0.5);
     position: fixed;
     width: calc(100vw - 40px);
     z-index: 100;
     overflow: hidden
}
.nav_section {
     height: 100%;
     display: flex;
     align-items: center;
}
.nav_left_section {
     float: left;
}
.nav_right_section {
     float: right;
     width: 218px; /* width of both buttons added togeather then add 10px to that for the space inbtween them.*/
     justify-content: space-between;
}
.nav_text {
     color: #152242;
     font-weight: normal;
}
.nav_button {
     border-radius: 8px;
     background-color: #E6EAFC;
     border: 1px solid #CFD8FA;
     height: 40px;
     padding: 5px 6px 5px 13px; /*Top, Right, Bottom, Left*/
     cursor: pointer;
     display: flex;
     align-items: center;
}
.nav_icon {
     font-size: 30px !important;
     color: #7D8D9F;
     margin-right: 20px;
}
#navFireworkName {
     height: 100%;
     display: flex;
     align-items: center;
     -webkit-transform: translateY(60px);
     transition: all 100ms linear;
}
.button_text {
     font-weight: 500;
     font-size: 18px;
     color: #5273F1;
     transition: 200ms all linear;
}
.button_icon {
     color: #5273F1;
     margin-left: 12px;
     transition: 200ms all linear;
}
button {
     border-radius: 8px;
     background-color: #E6EAFC;
     border: 1px solid #CFD8FA;
     height: 40px;
     padding: 5px 6px 5px 13px; /*Top, Right, Bottom, Left*/
     cursor: pointer;
     display: flex;
     align-items: center;
}
button[center] {
     margin: auto;
}
button:not([disabled]):hover {
     background-color: #ccd5ff;
     border-color: #a1b5ff;
}
button:not([disabled]):hover > * { color: #0035ff; }
button[disabled] {
     background-color: #e5e8f3;
     border-color: #CFD8FA;
     cursor: default;
}
button[disabled] > * { color: #3251c74d; }
.delete_button:not([disabled]):hover {
     background-color: #F6DBDB !important;
     border-color: #FACFCF !important;
}
.delete_button:not([disabled]):hover > * { color: #E06B4D !important; }

.description_text {
     font-weight: 500;
     font-size: 14px;
     color: #152242;
     padding: 0 20px;
     margin-top: 5px;
}

/* Body */
.content_body {
     padding: 20px 20px 0 20px;
     /*margin-top: 60px;*/ /*Offset height of fixed nav*/
}

/* Content */
.content_container {
     border-radius: 8px;
     background-color: #F6F8F9;
     border: 1px solid #DDE2E7;
     overflow: hidden;
     margin-bottom: 20px;
}
.content_header {
     height: 55px;
     padding: 0 20px;
     display: flex;
     align-items: center;
     font-weight: 500;
     font-size: 24px;
     color: #636B81;
}
.table_container {
     background-color: #fff;
     border-top: 1px solid #DDE2E7;
     overflow: auto;
}
.content {
     background-color: #fff;
     border-top: 1px solid #DDE2E7;
}

.information {
     text-align: center;
     margin: 10px 0;
}

table {
     width: 100%;
     border-collapse: collapse;
}
table tr { height: 45px; }
tr{ border-bottom: 1px solid #EBEFF4; }

table th, td {
     /* text-align: right; */
}

.header_row {}
.sorting_indicator {}
.sorting_indicator::before { content: URL('../images/Sortable.png'); margin-right: 5px; display: none;}
.sorting_indicator[ascending]::before { content: URL('../images/Ascending.png'); display: none;}
.sorting_indicator[decending]::before { content: URL('../images/Decending.png'); display: none;}


.column_title {
     color: #66778A;
     font-weight: 300;
     font-size: 15px;
}
.bold-title {
     color: #3A3E42;
     font-weight: 700;
     font-size: 15px;
}

.select_box_column { width: 50px; text-align: center; }
.name_column { width: auto; text-align: left;}
.uploaded_column { width: 105px; text-align: center; }
.event_time_column { width: 120px; text-align: center; }
.event_type_column { width: 50px; text-align: center; }
.universe_column { width: 75px; text-align: center; }
.channel_column { width: 60px; text-align: center; }
.cue_column { width: 60px; text-align: center; }
.firework_name_column { text-align: center; } /*width: 330px;*/

.file_name {
     color: #152242;
     font-weight: 600;
     font-size: 14px;
}
.file_upload_date, .file_size {
     color: #3A3E42;
     font-weight: 500;
     font-size: 14px;
}
.select_button {
     height: 28px;
     width: 80px;
     border-radius: 8px;
     background-color: #E6EAFC;
     border: 1px solid #CFD8FA;
     cursor: pointer;
}
.select_button_text {
     font-weight: 500;
     font-size: 16px;
     color: #5273F1;
}
.more_menu_icon {
     cursor: pointer;
     position: relative;
     z-index: 0;
}
.more_menu_icon::before {
     content: " ";
     width: 100%;
     height: 100%;
     border-radius: 50%;
     position: absolute;
     z-index: -1;
     transition: transform 400ms linear, background-color 200ms ease-out;
}
.more_menu_icon:hover::before {
     transform: scale(1.3);
     background-color: #dedede;
}

#audio_file_table_empty_state {
     display: flex;
     justify-content: center;
     align-items: center;
     height: 60px;
}
#audio_file_table_empty_state span {
     font-size: 17px;
     color: #636B81;
}


[type=checkbox] {
     -webkit-appearance: none;
     width: 20px;
     height: 20px;
     border: 1px solid #DFE1E1;
     border-radius: 3px;
     margin-left: 12px;
     cursor: pointer;
}
[type=checkbox]:checked {
     background: #5273F1;
}
[type=checkbox]:checked::after {
     content: '\2714';
	font-size: 14px;
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     color: white;
	/* position: absolute; */
	/* top: 0px; */
	/* left: 3px; */
	/* color: #99a1a7; */
}
.checkbox_container, .more_menu_icon_container {
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
}
input[type="text"] {
     height: 40px;
     border-radius: 8px;
     width: 300px;
     background-color: #e8ebf7;
     font-family: 'Open Sans';
     font-size: 14px;
     text-indent: 8px;
     border: 1px solid #d5ddfb;
}

.detail_title {
     font-weight: 600;
     font-size: 15px;
     color: #959DAE;
}
.detail_value {
     font-weight: 500;
     font-size: 22px;
     color: #152242;
}

grid { display: flex; }
left-column { width: calc(100% / 3); /* 1/3 or 33% */ }
right-column { width: calc(100% / 3 * 2); /* 2/3 or 66% */ }

left-column > section { border-left: none; }
right-column > section { border-right: none; }

left-column > section:last-child { border-bottom: none; }
right-column > section:last-child { border-bottom: none; }





/* Footer content */
.under_content_container {
     display: flex;
     justify-content: space-between;
     padding: 0 20px;
     margin-top: 2px;
}
.powered_by_text {
     font-weight: 500;
     font-size: 11px;
     color: #959DAE;
     letter-spacing: 0.15px;
}
.view_custom_data_container {
     display: flex;
     /* align-items: center; */
}
.view_custom_data_text {
     font-size: 11px;
     letter-spacing: 0.15px;
     color: #5273F1;
     font-weight: 500;
}
.view_custom_data_icon {
     /* color: #959DAE; */
     color: #9ba7bf; /*Makes it look like the same font-size as the text*/
     /* font-size: 20px !important;
     margin-top: -2px;
     margin-right: 2px; */
     margin-top: -4px;
     margin-right: 0px;
}

#more_menu {
     top: 225px;
     right: 25px;
     width: 165px;
     position: absolute;
     background: #F6F8F9;
     border: 1px solid #DDE2E7;
     border-radius: 4px;
     box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.25);
}
#more_menu::after {
     content: "";
     right: 7px;
     top: -10px;
     width: 0;
     height: 0;
     border-style: solid;
     /* border-width: 10px 10px 0 10px; */
     border-width: 10px 14.5px 0 14.5px;
     border-color: #DDE2E7 transparent transparent transparent;
     /* border-color: #F6F8F9 transparent transparent transparent; */
     position: absolute;
     transform: rotate(-180deg)
}
.more_menu_item {
     height: 45px;
     display: flex;
     justify-content: flex-start;
     align-items: center;
     padding-left: 23px;
     cursor: pointer;
}
.more_menu_item:hover {
     background-color: #E6EAFC;
}
.more_menu_item:not(:last-child) {
     border-bottom: 1px solid #DAE0E6;
}
.more_menu_item_text {
     font-weight: 600;
     color: #4D6CE1;
     font-size: 16px;
}

modal {
     position: absolute;
     top: 0px;
     left: 0px;
     right: 0px;
     bottom: 0px;
     background: rgba(0,0,0,0.1);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 100;
}
.modal_content {
     width: 525px;
     /* height: 400px; */
     background: #F6F8F9;
     border: 1px solid #DDE2E7;
     border-radius: 12px;
     box-shadow: 1px 1px 13px 1px rgba(0,0,0,0.5);
     overflow: hidden;
}
.modal_header {
     font-weight: 600;
     font-size: 24px;
     color: #636B81;
     height: 75px;
     display: flex;
     align-items: center;
     padding-left: 30px;
}
.modal_body {
     /* width: 100%; */
     width: calc(100% - 40px);
     padding: 0 20px;
     height: calc(100% - 75px);
     background: #fff;
     border-top: 1px solid #EBEFF4;
}
.modal_container {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding-top: 8px;
}
.modal_text {
     margin: 0px;
     color: #152242;
     font-size: 17px;
     font-weight: 500;
     margin-bottom: 10px;
     margin-top: 5px;
}
.modal_buttons_container {
     display: flex;
     justify-content: flex-end;
     width: 100%;
     margin-top: 17px;
     margin-bottom: 10px;
}
.modal_button {
     border-radius: 8px;
     background-color: #E6EAFC;
     border: 1px solid #CFD8FA;
     height: 40px;
     padding: 5px 6px 5px 13px; /*Top, Right, Bottom, Left*/
     cursor: pointer;
     display: flex;
     align-items: center;
}

/* #upload_file_input {
     border-radius: 8px;
     background: #E6EAFC;
     height: 40px;
     width: 400px;
} */
/* #upload_file_input {
     width: 0.1px;
     height: 0.1px;
     opacity: 0.0;
     overflow: hidden;
     position: absolute;
     z-index: -1;
}
#upload_file_input + label {
     font-size: 1em;
     color: #5273F1;
     display: inline-block;
     cursor: pointer;
}

#upload_file_input:focus + label,
#upload_file_input + label:hover {
     background-color: red;
}
#upload_file_input:focus + label {
     outline: 1px dotted #000;
     outline: -webkit-focus-ring-color auto 5px;
}
#upload_file_drop_box {
     background-color: #E6EAFC;
     outline: 2px dashed #5273F1;
     outline-offset: -10px;
     height: 200px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 5px;
     position: relative;
}
#upload_file_drop_box.is-dragover {
     background-color: #ccd5ff;
     border-color: #a1b5ff;
}
#upload_file_drop_box.is-dragover > {
     color: #0035ff;
}
#uploaded_files_container {
     position: absolute;
     top: 15px;
     left: 15px;
     display: flex;
     align-items: center;
}
.uploaded_file {
     height: 25px;
     background: white;
     padding: 3px 10px;
     border-radius: 3px;
} */

/* Selection Window */
#previously_upload_audio_files {}
selection-window {
     position: absolute;
     top: 10px;
     left: 10px;
     width: 300px; /* 250px */
     max-height: 390px; /* 400px */
     overflow: hidden;
     overflow-y: scroll;
     border-radius: 6px;
     background: white;
     box-shadow: 0px 5px 12px rgba(0,0,0,0.3);
     border: 1px solid lightgray;
     border-top: none;
}
.file_list {
     display: flex;
     width: 100%;
     height: 100%;
     overflow-y: scroll;
     flex-direction: column;
}
.file_list_item {
     display: flex;
     align-items: center;
     /* justify-content: space-around; */
     justify-content: space-between;
     padding: 4px 4px;
}
.file_list_item:not(:last-child) { border-bottom: 1px solid lightgray; }
.file_list_item:hover { background-color: rgba(0,0,0,0.05); }
.file_list_item_name { margin-left: 10px; padding-right: 5px; }
.file_list_item_button { height: 36px; margin-right: 7px; }



#deleteAllSelectedButton {
     margin-right: 10px;
     transition: 200ms all linear;
     transform: translateX(0px);
     opacity: 1;
}
#deleteAllSelectedButton.hidden {
     transform: translateX(130px);
     opacity: 0;
     z-index: -1;
}

#delete_all_modal_content { width: 600px; }
.files_to_delete_container { width: 100%; }
#audio_file_names_to_delete {
     list-style: none;
     padding: 0;
     margin: 0px;
     width: 100%;
     text-align: left;
     column-fill: balance;
     column-count: auto;
     column-gap: 30px;
     column-width: 200px;
}
.audio_file_name_li {
     padding-left: 1.3em;
     padding-top: 20px;
}
.audio_file_name_li:before {
     content: "done"; /* FontAwesome Unicode */
     font-family: 'Material Icons';
     display: inline-block;
     margin-left: -1.3em; /* same as padding-left set on li */
     width: 1.3em; /* same as padding-left set on li */
}

.show_elements_container {
     display: grid;
     grid-template-areas: "first-left first-right" "second-left second-right" "third-left third-right";
     grid-template-columns: 50%;
     grid-column-gap: 20px;
     grid-row-gap: 13px;
     /* margin: 40px 30px; */
     margin: 40px 80px;
     /* margin: 40px 8% 40px 15%; */
}
.show_elements_container label {
     display: flex;
     flex-direction: column;
}
.inforamtion_name {
     font-weight: 600;
     font-size: 15px;
     color: #959DAE;
}
.inforamtion_span {
     font-weight: 500;
     font-size: 22px;
     color: #152242;
}

.information_group {
     display: grid;
     grid-column-gap: 15px;
     grid-row-gap: 10px;
     grid-template-columns: auto auto;
     margin-top: 5px;

     background: #f8f9ff;
     padding: 10px 6px;
     border-radius: 3px;
     border: 1px solid #DDE2E7;
}
.information_group_item {
     display: flex;
     align-items: center;
     justify-content: space-between;
}
.information_group_item > .information_name { color: #515765; }
.information_group_item > .inforamtion_span { font-size: 18px; }

.table_action_container {
     border: 1px solid #DDE2E7;
     padding: 10px;
     border-right: none;
     border-left: none;
     background: rgba(0,0,0,0.03);
}

.successfully_imported_container {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content:
     space-around;
     min-height: 135px;"
}

.success-icon {
     opacity: 0.0;
     transform: rotate(-45deg);
     transition: all 500ms linear;
}
.success-icon.shown {
     opacity: 1.0;
     transform: rotate(0deg);
}

/* PROGRESS BAR */
.progress_bar_container {}
.progress_content { width: 100%; margin-bottom: 20px;}
.progress_bar_outline {
     background: #E6EAFC;
     height: 26px;
     border-radius: 12px;
     overflow: hidden;
     position: relative;
     display: flex;
     align-items: center;
}
.progress_bar_inner_bar {
     background: #5273F1;
     /* width: 67%; */
     height: 26px;
     border-radius: 12px;
     display: inline-block;
     transition: 300ms all linear;
}
.progress_bar_percentage {
     position: absolute;
     /* left: 68%; */
     font-weight: 500;
     font-size: 14px;
     letter-spacing: 0.15px;
     transition: 300ms all linear;
     font-family: Arial;
}
.progress_bar_percentage[dark] { color: #636981; margin-left: 6px; }
.progress_bar_percentage[light] { color: #fff; margin-right: 6px;}
.progress_bar_percentage[beginning] { margin-left: 12px;}
.progress_bar_percentage[end] { margin-right: 9px;}

.progress_bar_details_container {
     display: flex;
     justify-content: space-between;
     padding: 0 8px;
}
.progress_bar_status, .progress_bar_data_transfered {
     color: #636B81;
     /* font-weight: 500; */
     /* font-size: 13px; */

     font-weight: 600;
     font-size: 13px;
     /* font-size: 14px; */
     -webkit-font-smoothing: antialiased;
}
progress-bar[indeterminate] .progress_bar_percentage { display: none; }
progress-bar[indeterminate] .progress_bar_data_transfered { display: none; }
progress-bar[indeterminate] .progress_bar_inner_bar { width: 100% !important; position: relative; }
progress-bar[indeterminate] .progress_bar_inner_bar::after {
     content: '';
     position: absolute;
     top: 0px; left: 0px; right: 0px; bottom: 0px;
     background-image: linear-gradient(
          -45deg,
          rgba(255, 255, 255, .2) 25%,
          transparent 25%,
          transparent 50%,
          rgba(255, 255, 255, .2) 50%,
          rgba(255, 255, 255, .2) 75%,
          transparent 75%,
          transparent
     );
     z-index: 1;
     background-size: 50px 50px;
     animation: move 2s linear infinite;
}

@keyframes move {
     0% { background-position: 0 0; }
     100% { background-position: 50px 50px; }
}

.distructive {
     background-color: #F6DBDB;
     border-color: #FACFCF;
     color: #E06B4D !important;
}

.errorText {
     margin-bottom: 5px;
     margin-top: 5px;
     padding: 5px;
     border-radius: 4px;
     padding-left: 10px;
     padding-right: 10px;
     border: 1px solid;
     background-color: #f5e0e0;
     border-color: #FACFCF;
     color: #E06B4D;
     font-size: initial;
}
.successText {
     margin-bottom: 5px;
     margin-top: 5px;
     padding: 5px;
     border-radius: 4px;
     padding-left: 10px;
     padding-right: 10px;
     border: 1px solid;
     color: #3c763d;
     background-color: #dff0d8;
     border-color: #d6e9c6;
     font-size: initial;
}
.warningText {
     margin-bottom: 5px;
     margin-top: 5px;
     padding: 5px;
     border-radius: 4px;
     padding-left: 10px;
     padding-right: 10px;
     border: 1px solid;
     color: #8a6d3b;
     background-color: #fcf8e3;
     border-color: #faebcc;
     font-size: 16px;
}
