:root{
    --pd-red: #ea261b;
    --pd-green: #65aa30;
    --pd-light-green: #d8eacb;
    --pd-yellow: #ffd966;
    --pd-orange: #f27e2f;
    --pd-black: #333;
    --pd-light-gray: #f5f5f5;
}

@font-face {
    font-family: "Quicksand";
    src: url("../fonts/Quicksand-VariableFont_wght.ttf");
    font-weight: 300 700;
}

@font-face {
    font-family: "UbuntuMono";
    src: url("../fonts/UbuntuMono-Regular.ttf");
}

body{
	font-family: 'Quicksand', sans-serif;
	font-weight: 500;
	line-height: 1.2;
	font-size: 16px;
	color: #222;
}

#top-scroller{
    position: fixed;
    width: 4rem;
    height: 4rem;
    bottom: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    background-color: #333;
    color: white;
    z-index: 1000;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

#top-scroller.show{
    display: flex !important;
}

#top-scroller:hover{
    cursor: pointer;
    background-color: var(--pd-green);
}

.br-0{
	border-radius: 0px !important;
}

.radius, .br-2{
	border-radius: 2px !important;
}

.fs-06{
	font-size: 0.6rem !important;
}

.fs-07{
	font-size: 0.7rem !important;
}

.fs-08{
	font-size: 0.8rem !important;
}

.fs-09{
	font-size: 0.9rem !important;
}

.fs-1{
	font-size: 1rem !important;
}

.fs-11{
	font-size: 1.1rem !important;
}

.fs-12{
	font-size: 1.2rem !important;
}

.fs-15{
	font-size: 1.5rem !important;
}

.fs-20{
	font-size: 2rem !important;
}

.d-grid{
    gap: 1rem;
}

.d-grid.czos-row{
    gap: 0rem;
}

.gapless{
    gap: 0rem !important;
}

.block-gap-05 > *{
	margin-right: 0.5rem;
}

.pd-shadow{
	box-shadow: rgb(210, 210, 210) 0px 2px 5px;
}

.gap-05{
    gap: 0.5rem !important;
}

.gap-1{
    gap: 1rem !important;
}

.gap-15{
    gap: 1.5rem !important;
}

.gap-025{
    gap: 0.25rem !important;
}

.gap-01{
    gap: 0.1rem !important;
}

.gap-2{
	gap: 2rem !important;	
}

.row-gap-05{
    row-gap: 0.5rem !important;
}

.row-gap-1{
    row-gap: 1rem !important;
}

.row-gap-15{
    row-gap: 1.5rem !important;
}

.row-gap-025{
    row-gap: 0.25rem !important;
}

.row-gap-01{
    row-gap: 0.1rem !important;
}

.row-gap-2{
	row-gap: 2rem !important;	
}

.column-gap-05{
    column-gap: 0.5rem !important;
}

.column-gap-1{
    column-gap: 1rem !important;
}

.column-gap-15{
    column-gap: 1.5rem !important;
}

.column-gap-025{
    column-gap: 0.25rem !important;
}

.column-gap-01{
    column-gap: 0.1rem !important;
}

.column-gap-2{
	column-gap: 2rem !important;	
}

.grid-img{
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.grid-row-3{
    grid-template-rows: repeat(3, 1fr);
}

.grid-row-4{
    grid-template-rows: repeat(4, 1fr);
}

.grid-col-2{
    grid-template-columns: repeat(2, 1fr);
}

.grid-col-3{
    grid-template-columns: repeat(3, 1fr);
}

.grid-col-4{
    grid-template-columns: repeat(4, 1fr);
}

.grid-col-5{
    grid-template-columns: repeat(5, 1fr);
}

.grid-col-6{
    grid-template-columns: repeat(6, 1fr);
}

.grid-col-span-2{
    grid-column: span 2;
}

.grid-col-span-3{
    grid-column: span 3;
}

.grid-row-span-2{
    grid-row: span 2;
}

.grid-row-span-3{
    grid-row: span 3;
}

@media (min-width: 768px){

    #content{
        padding:  0rem 0rem 2rem 0rem;
    }

    .grid-md-row-3{
        grid-template-rows: repeat(3, 1fr);
    }

    .grid-md-row-4{
        grid-template-rows: repeat(4, 1fr);
    }

    .grid-md-col-2{
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-md-col-3{
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-md-col-4{
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-md-col-5{
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-md-col-6{
        grid-template-columns: repeat(6, 1fr);
    }

    .grid-md-col-span-2{
        grid-column: span 2;
    }

    .grid-md-col-span-3{
        grid-column: span 3;
    }

    .grid-md-row-span-2{
        grid-row: span 2;
    }
    
    .grid-md-row-span-3{
        grid-row: span 3;
    }

}

::-webkit-scrollbar {
    width: 7px;
}
 
::-webkit-scrollbar-track {
    background-color: #D2D2D2;
    margin: 1px 0px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: gray;
}

.col, .col-xl-1, .col-xl-2, .col-xl-3{
	padding-left: 1rem;
	padding-right: 1rem;
}

.wb-all{
	word-break: break-word;
}

.dash-spaced > * + *{
	border-top: dashed #e2e2e2 1px;
}

#logo{
	height: 48px;
	filter: drop-shadow(2px 2px 3px #888888) drop-shadow(-2px -2px 3px #888888)
}

#logo_button{
	position: relative;
	font-size: 1rem;
	margin-right: 0rem;
	height: 100%;
}

#logo_button.selected{
	background-color: #F5F5F5;
}

.help-tooltip > .tooltip-inner{
	max-width: 350px;
	width: 90%;
	padding: 15px;
	text-align: justify;
}

.tooltip, .tippy-tooltip{
	font-family: "Quicksand";
	font-weight: bold;
	z-index: 1100;
	font-size: 0.8rem;
}

.tooltip-arrow {
	visibility: visible;
}

.tree{
	font-size: 0.8rem;
	padding-top: 0.5rem;
	padding-right: 0.25rem;
}

.branch .branch{
	padding: 0.5rem 0rem 0.5rem 0.5rem;
}

.fs{
	position: relative;
}

.fs.visible{
	color: white;
    background-color: #333;
    padding: 4px 5px 3px 5px;
    border-radius: 3px;
}

.fs.show_icon::after{
	font-family: "FontAwesome"; font-weight: 900; content: " \f0b0 ";
}

.fs_tooltip{
	display: flex;
	align-items: center;
	position: relative;
}

.fs_tooltip .add_to_filters{
	position: relative;
}

.filter_plus{
	position:relative;
}

.fs_tooltip .fa-plus{
	position: absolute;
	top: 5px;
	right: -3px;
	font-size: 100%;
	color: #5bb12f;
}

.fs_tooltip .fa-filter{
	padding: 0px 3px;
	font-size: 150%;
}

.fs:hover{
	cursor: pointer;
	opacity: 0.8;
	font-weight: bold;
}

.count{
	color: white;
    border-radius: 2px;
    font-weight: bold;
    padding: 0rem 0.3rem;
}

.compounds-wrapper{
	display: grid;
	gap: 1rem;
}

.compounds-wrapper.simple{
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.compound-section{
	overflow: auto;
	box-shadow: 0px 2px 5px #D2D2D2;
	border-radius: 2px;
	border: solid #c2c2c2 1px;
	font-size: 0.8rem;
}

.compound-section-heading{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.25rem 0.25rem 0.25rem 0.5rem;
	background-color: #f5f5f5;
	margin: 0.25rem;
	color: black;
	font-weight: 700;
	box-shadow: rgb(210, 210, 210) 0px 2px 5px;
	border: solid #c2c2c2 1px;
	border-radius: 2px;
}

.compound-section-heading:has(.compound-section-count[data-count='0']){
	opacity: 0.5;
}

.compound-section-heading img{
	height: 1rem;
	filter: brightness(0) invert(0.1);
}

.alert-badges .pd-badge{
	background-color: var(--pd-red);
	color: white;
}

.invert{
	filter: brightness(0) invert(1) !important;
}

.compound-section-count{
	background-color: #888;
	color: white;
}

/*#filter_summary{
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 2px;
	padding: 5px;
	font-size: 90%;
	font-weight: bold;
	z-index: 100;
	display: flex;
	align-items: flex-start;
}

#filter_summary > .expression > .operator{
	font-size: 130%;
}

#filter_summary .range{
	font-size: 90%;
	font-style: italic;
	margin-left: 3px;
	white-space: nowrap;
}

#filter_summary .expression{
	font-size: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#filter_summary .count{
    padding: 0px;
    margin-left: 3px;
    font-weight: bold;
    font-size: 80%;
    margin-bottom: 8px;
}

#filter_summary .operator{
	font-size: 90%;
	font-weight: bold;
	color: white;
	padding: 1px 3px;
	border-radius: 2px;
	margin: 0px 5px;
}

#filter_summary .expression .group{
	background-color: #E2E2E2;
	border-radius: 1rem;
	padding: 0.2rem 0.5rem;
	margin: 3px;
}

#filter_summary .expression, #filter_summary .expression .set, #filter_summary .expression .group{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

#filter_summary .expression .set{
	padding: 3px 0px;
}

#filter_summary .label{
	text-align: center;
	white-space: nowrap;
}

#filter_summary .bracket{
	border-left: solid white 3px;
	height: 30px;
	margin: 0px 5px;
}*/

body a{
	color: #222;
	text-decoration: underline;
    text-decoration-color: var(--pd-green);
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
}

a:hover{
	text-decoration-thickness: 3px;
	color: #333;
	transition: 0.2s;
}

.pd-button, .pd-button-lg{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	background-color: #e2e2e2;
	/*border-bottom: none;*/
	text-decoration: none;
	font-weight:  bold;
	transition: 0.2s;
	border-radius: 2px;
	color: #333;
}

.pd-button .fa{
	margin-right: 0.5rem;
	font-size: 1.2rem;
}

.pd-button-lg .fa{
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.pd-button:hover, .pd-button-lg:hover{
	background-color: #333;
	color: white;
}

.index{
	background-color: var(--pd-black);
	padding: 0.25rem;
	min-width: 1.5rem;
	border-radius: 3px;
	color: white;
	font-weight: 700;
	font-size: 0.7rem;
	text-align: center;
}

#footer{
	padding: 30px 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 0.8rem;
	border-top: solid #D2D2D2 1px;
	background-color: white;
	font-weight: bold;
	margin-top: 15px;
}

#footer > *{
	padding: 5px 15px;
	/*opacity: 0.8;*/
	text-align: center;
}

#footer .logo > a:hover{
	opacity: 1;
}

#footer .logo > a{
	border-bottom: none;
}

#footer_openscreen_logo img, #footer_img_logo img{
	height: 25px;
}

#footer #disclaimer{
	text-decoration: none;
}

.help.fa{
	margin-left: 5px;
	font-size: 120%;
}

.ttp_div{
	max-width: 250px;
}

.page_title{
	margin-top: 25px;
	font-size: x-large;
	font-weight: bold;
	max-width: 300px;
	border-bottom: solid #65aa30 2px;
	padding: 0 0 5 5;
	display: flex;
	align-items: center;
}

.page_title .fa, .page_title img{
	font-size: 30px;
	height: 30px;
	margin-right: 8px;
}

.paragraph{
	padding: 15 0 0 10;
	line-height: 1.5;
}


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

.flex{
	display: flex;
	align-items: center;
}

.flex > label{
	margin-right: 8px;
}

.flex_start{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.flex_space_between{
	display: flex;
	justify-content: space-between;
	align-items: center;	
}

.gray_bg{
	background-color: #dcddcd !important;
}

.dark-gray_bg{
	background-color: gray  !important;
}

.gray{
	color: gray  !important;
}

#select_all_button.select{
	background-color: #65aa30;	
}

.light-green_bg{
	background-color: var(--pd-light-green) !important;
}

.light-gray_bg{
	background-color: var(--pd-light-gray) !important;
}

.light-gray{
	color: var(--pd-light-gray) !important;	
}

.light-black_bg{
	background-color: #666 !important;
}

.light-black{
	color: #666 !important;	
}

.black_bg{
	background-color: #333 !important;
}

.black{
	color: #333 !important;	
}

.green_bg{
	background-color: #65aa30 !important;
}

.green{
	color: #65aa30 !important;	
}

.white_bg{
	background-color: white !important;
}

.white{
	color: white !important;	
}

.red{
	color: #ea261b !important;
}

.red_bg{
	background-color: #ea261b !important;
}

.orange_bg{
	background-color: #f27e2f !important;
}

.khaki_bg{
	background-color: #d9f158 !important;
}

.yellow{
	color: #ffd966 !important;
}

.yellow_bg{
	background-color: #ffd966 !important;
}

.opacity-half{
	opacity: 0.5;
}

#spacer{
	width: 100px;
}

.circle-spacer{
	font-size: 0.4rem;
	margin: 0px 6px;
}

#main_title{
	font-size: 24px;
	margin-left: 10px;
}

#navigation{
	top: 0;
	width: 100%;
	background-color: #333333;
	/*border-bottom: solid white 1px;*/
	z-index: 100;
	box-shadow: 0px 1px 10px #999;
}

#navigation #search_input{
	min-width: 300px;
	padding: 6px;
}

.navbar-nav, #navbarNav{
	height: max-content;
}

.navbar-collapse.show li.nav-item, .navbar-collapse.collapsing li.nav-item{
	/*background-color: #D9D9D9;*/
}

.navbar-collapse.show li.nav-item.selected, .navbar-collapse.collapsing li.nav-item.selected{
	/*background-color: gray;*/
}

.navbar-collapse.show .navbar-nav img, .navbar-collapse.show .navbar-nav .fa, .navbar-collapse.collapsing .navbar-nav img, .navbar-collapse.collapsing .navbar-nav .fa{
	width: 60px;
	text-align: center;
}

.navbar-collapse .nav-link{
	color: #444;
	height: 60px;
}

#main_menu .nav-link{
	color: white;
	padding: 0rem 1rem;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
}

.navbar-collapse.show .nav-link, .navbar-collapse.collapsing .nav-link{
	color: #444;
	height: 40px;
	width: 100%;
}

.hidden{
	display: none;
}

#main_menu{
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 100;
}

#main_menu a{
	border-bottom: none;
}

#main_menu .fa{
	font-size: 24px;
	margin-right: 8px;
}

#logo_button.temp_main_menu_button img{
	padding: 0px 20px;
}

.main_menu_button + .main_menu_button{
	border-left: solid #a2a2a2 1px;
}

.main_menu_button, .temp_main_menu_button{
	height: 100%;
	display: flex;
	align-items: center;
}

.main_menu_button.hover:hover{
	background-color: #555555;
	/*text-decoration: underline;
	text-decoration-thickness: 3px;
	text-decoration-color: var(--pd-yellow);*/
	opacity: 1;
}

.main_menu_button.selected.hover:hover{
	/*background-color: #999999;*/
	opacity: 1;
}

.nav-item.main_menu_button.selected{
	background-color: #555555;
	/*text-decoration: underline;
	text-decoration-thickness: 3px;
	text-decoration-color: var(--pd-yellow);*/
}

.main_menu_button.selected > a{
	/*color: white !important;*/
}

.menu_icon{
	height: 1.5rem;
	margin-right: 0.5rem;
	filter: brightness(0) invert(1);
}

.main_menu_button > a, .help.sub_menu .option > a{
	text-decoration: none;
	color: #444444;
	/*height: 100%;*/
	padding: 0rem 1rem;
	display: flex;
	align-items: center;
}

.sub_menu .left{
	max-height: 50px;
	height: 50px;
}

.sub_menu{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid #c2c2c2 1px;
	position: sticky;
	top: 0px;
	z-index: 100;
	background-color: #F5F5F5;
	flex-wrap: wrap;
	padding: 0rem 0.5rem;
}

.sub_menu > *{
	display: flex;
	align-items: center;
}

.sub_menu .simple-pagination{
	padding: 0px 5px;
}

.subheader{
	margin-left: 30px;
	padding: 10px 0px;
}

.sub_menu > *{
	vertical-align: top;
}

.sub_menu.customset{
	background-color: #E9F6DF;
}

.help.sub_menu{
	justify-content: flex-start;
	font-weight: bold;
	font-size: medium;
	padding: 10px 25px;
}

.help.sub_menu > .option.selected a{
	color: #333333;
}

.help.sub_menu .option{
	padding: 10px 0px;
}

.help.sub_menu .option > a{
	color: #888888;
	display: flex;
	align-items: center;
	font-size: 14px;
	border-bottom: none;
	transition: .5s;
}

.help.sub_menu a:hover{
	color: #333333;
}

.help.sub_menu a .fa{
	margin-right: 6px;
}

#browser_detection .text{
	font-size: small;
	max-width: 1000px;
	white-space: normal;
	text-align: center;
}

#browser_detection > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10 30 10 30;
	border-top: solid #f15d58 3px;
	background-color: rgba(241,93,88, 0.4);
	font-weight: bold;
}

#browser_detection .warning{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

#browser_detection .warning > .fa{
	margin-right: 8px;	
}

#browser_detection .fa{
	font-size: x-large;
}

.subheading{
	font-size: 16px;
}

.rotate-90{
	transform: rotate(90deg);
}

.rotate-270{
	transform: rotate(270deg);
}

.hover{
	transition: .2s;
	text-decoration: none;
}

.hover-bw{
	transition: 0.2s;
}

.hover-bw:hover{
	background-color: var(--pd-black);
	color: white;
}

.hover:hover, .hover-bw:hover{
	cursor: pointer;
	opacity: 0.8;
}

.bold, .fw-700{
	font-weight: 700 !important;
}

.fw-300{
	font-weight: 300 !important;
}

.fw-400{
	font-weight: 400 !important;
}

.fw-500{
	font-weight: 500 !important;
}

.fw-600{
	font-weight: 600 !important;
}


.username{
	font-size: x-small;
	margin-left: 5px;
}

/*End compound selection*/

#upload_form{
	padding: 10px;
	width: 500px;
}

#upload_menu{
	padding: 5px;
	margin-left: 10px;
}

#upload_file_form .pure-control-group{
	margin-top: 10px;
}

#upload_view{
	display: flex;
	margin-left: 40px;
	margin-top: 20px;
}

#upload_help{
	margin-left: 50px;
}

#upload_help > .heading{
	color: gray;
	margin-bottom: 10px;
}

#upload_help *{
	font-size: 14px;
}

#upload_help .description{
	width: 400px;
	text-align: justify;
}

#upload_help > table{
	text-align: center;
}

.spacer{
	margin-left: 15px;
	margin-right: 15px;
}

#search_mode{
	font-size: smaller;
}

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

#todos{
	padding: 20px;
	margin-left: 40px;
	color: red;
	
}

.todo.done{
	color: green;
}

.admin{
	background-color: #bccf3d;
}

.smiles{
	position: relative;
}

#current_smiles{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* LOADING */
#loading{
	display:flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	align-items: center;
	opacity: 0.7;
	z-index: 1000;
	position: relative;
	background-color: white;
	padding-top: 100px !important;
}

#animated_border_div{
	width: 200px;
	height: 200px;
	border-right: solid gray 5px;
	border-radius: 50%;
	animation: roll 1s linear infinite;
	position: absolute;
}

@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loading_text{
	font-weight: bold;
	position: relative;
	top: 150px;
}

#loading img{
	height: 100px;
	width: 100px;
	position: relative;
	top: 50px;
	/*left: 50%;*/
}
/* END LOADING */

/* MANUAL TOOLTIP */
.manual_tooltip{
	position: absolute;
    z-index: 100;
    left: 0.25rem;
}

.manual_tooltip .tooltip_text{
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    margin-left: 0px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

#left_nav .manual_tooltip .tooltip_text{
	margin-left: -10px;
}

.report_table{
	margin: 30px;
}

#message{
	position: fixed;
	background-color: white;
	border: solid gray 2px;
	width: 300px;
	z-index: 9999;
}

#message .title{
	padding: 12px 15px 7px 15px;
	border-bottom: solid gray 1px;
	font-weight: bold;
}

#message .fa{
	font-size: 120%;
	margin-right: 5px;
	color: gray;
}

#message .button{
	padding: 10px 20px;
	background-color: #7db616;
	color: white;
	font-weight: bold;
	text-align: center;
	max-width: 150px;
	border-radius: 2px;
}

#message .text{
	font-size: 90%;
	text-align: justify;
	border-bottom: solid #D2D2D2 1px;
    padding: 15px;
    line-height: 1.5;
}

#message .bottom{
	padding: 10px;
	display: flex;
	justify-content: center;
}

.modal-dialog{
	width: clamp(350px, 90%, 1000px);
	max-width: 98%;
}

/*.modal-header{
	border-radius: 2px;
}*/

.pd-row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 6px;
	width: 100%;
	margin-right: 0px;
	margin-left: 0px;
}

.pd-row + .pd-row{
	border-top: solid #d2d2d2 1px;
}

.pd-table{
	border: solid #d2d2d2 1px;
    border-radius: 2px;
}

.pd-table > .pd-row:nth-child(odd){
	background-color: #f5f5f5;
}

.pd-row .label{
	font-weight: bold;
	padding: 2px 5px 3px 5px;
}

.pd-row .value{
	padding: 2px 5px 3px 5px;
}

.btn-sm, .btn-group-sm > .btn{
	font-size: 0.8rem;
}

.btn-success, .btn-success.active, .btn-success:active .btn-success:disabled{
    background-color: #65aa30;
    border-color: #65aa30;
    font-weight: bold;
}

.btn-success:active:focus, .btn-success:focus{
    /*box-shadow: 0 0 0 0.2rem rgba(247,142,29, .5) !important;*/
    background-color: #65aa30 !important;
    border-color: #65aa30 !important;
}


.btn-success:hover{
    background-color: gray;
    border-color: gray;
}

.help_ttp{
	margin: 0px 5px;
	color: #333;
}

#omnisearch #search_wrapper{
	padding: 10px 30px 10px 10px;
	/*background-color: #d9d9d9;*/
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

#omnisearch #search_input{
	border: solid #666666 1px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
    padding: 0.5rem;
    border-top: solid gray 4px;
}

#omnisearch #search_wrapper .fa, #omnisearch #search_wrapper img {
    height: 1.7rem;
    font-size: 1.7rem;
    color: white;
}

#search_wrapper{
	display: flex;
	align-items: center;
}

#search_input{
	width: -webkit-fill-available;
	padding: 3px;
	font-family: "Quicksand";
	font-size: 0.8rem;
}

#ketcher{
	width: 100%;
	height: 500px;
	padding: 0px 0px 0px 0px;
}

#ketcher_iframe{
	width: 100%;
	height: 100%;
}

#set_molecule_button{
	height: 38px;
}

#structure_search_form .form-row{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

#structure_search_form .col{
	padding: 0px 15px;
	min-width: 300px;
	font-weight: bold;
}

#structure_search_form label, #structure_search_form .inputs{
	font-size: 0.8rem;
}

#structure_div{
	display: flex;
	align-items: center;
}

.inputs{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}

.inputs .filter_value_type{
	font-weight: bold;
    font-size: 90%;
    padding: 3px 7px;
    font-style: italic;
    text-align: center;
}

.inputs > input{
	width: 60px;
	text-align: center;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

/* LIST FILTERS */

#filters_list .filter_type_lists{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

#filters_list .filter_type_list{
	width: 300px;
	margin: 10px;
	flex: 1 0 auto;
}

#filters_list .filter_type_list .list{
	height: 300px;
}

#filters_list .filter_type_list .title{
	background-color: #F5F5F5;
	color: #333;
}

#filters_list img{
	height: 20px;
}

.filter_type_list{
	background-color: white;
	/*border: solid gray 1px;*/
}

.filter_type_list .pd-row, #sets_tab .pd-row{
	justify-content: space-between;
	padding: 5px;
	flex-wrap: nowrap;
}

.filter_type_list .title{
	padding: 5px;
    border: solid gray 1px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    background-color: #666;
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.filter_type_list .count{
	color: white;
	font-family: "UbuntuMono";
    background-color: gray;
    border-radius: 3px;
    font-weight: bold;
    padding: 2px 5px;
}

.filter_type_list .title .left{
	display: flex;
	align-items: center;
}

.filter_type_list .title .count{
	font-size: 0.8rem;
	border-radius: 2px;
}

.filter_type_list .list{
	/*padding: 0px 5px;*/
	overflow-y: auto;
	font-size: 0.8rem;
	border-left: solid gray 1px;
	border-right: solid gray 1px;
	border-bottom: solid gray 1px;
}

.filter_type_list.scrollable .list{
	max-height: 300px;
}

.pd-badge, .sublabel{
	color: #333;
	padding: 0.15rem 0.4rem 0.1rem 0.4rem;
	border-radius: 1rem;
	font-weight: bold;
	background-color: #e2e2e2;
	width: fit-content;
	word-break: keep-all;
	gap: 0.1rem;
	display: inline-block;
	line-height: 1;
}

/*.pd-badge:has(.fa){
	padding-top: 0.2rem;
}*/

.pd-badge:has(img){
	display: flex;
	align-items: center;
	gap: 0.2rem;
}

a.pd-badge{
	text-decoration: none;
}

a.pd-badge[target='_blank']{
	background-color: var(--pd-light-green);
}

a.pd-badge:hover{
	transition: 0.2s;
	background-color: var(--pd-black) !important;
	color: white;
}

.sublabel{
	margin-left: 0.1rem;
	margin-top: 0.25rem;
}

/* END OF LIST FILTERS */

.pd-heading, .pd-heading > .left{
	font-size: larger;
	color: #444444;
	font-weight: bold;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.pd-heading{
	border-bottom: solid gray 3px;
	padding-bottom: 5px;
	padding-left: 5px;
	justify-content: space-between;
}

.pd-heading img{
	height: 30px;
	margin-right: 0.5rem;
}

.pd-heading .count{
	padding: 3px 7px;
	background-color: #444;
	border-radius: 3px;
	color: white;
}

.pd-heading > .left > .fa{
	margin-right: 0.5rem;
	font-size: 30px;
}

.pd-heading .comment{
	margin-left: 5px;
	font-size: 0.7rem;
	font-weight: normal;
	padding-top: 5px;
}

.pd-section > .values{
	font-size: 0.8rem;
	border: solid #d2d2d2 1px;
	border-top: none;
	padding: 10px;
	box-shadow: 0px 2px 5px #D2D2D2;
	max-height: 500px;
	overflow-y: auto;
}

.zoom {
  transition: all 0.4s;

}

.zoom-enter, .zoom-leave-to{
  opacity: 0;
  transform: scale(0);
}

.zoom-enter-to {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

.zoom-move {
  opacity: 1;
  transition: all 0.4s;
}

.show-enter-active,
.show-leave-enter {
    /*transform: translateX(0);*/
    transition: all .1s linear;
}
.show-enter,
.show-leave-to {
    transform: translateX(-100%);
}