/*Liberty's CSS*/
/*Put the following below in gt-general.css of the site*/

#block-nikola-views-block-3-pic-hero-banner-block-1{
	border-top: 1px solid #AC9B62;
	border-bottom: 1px solid #AC9B62;
}

/*Custom Buttons*/
/*Clear Button w/Gold Outline*/
.clear-custom-button a:link{
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #b3a369;
	border-radius: 5px;
    transition: all 0.2s ease-out;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    color: #b3a369;
    background-color: #fff;
	text-decoration: none;
}

.clear-custom-button a:visited{
  color: var(--gt-md-gold);
  text-decoration: none;
}

.clear-custom-button a:hover{
  color: var(--gt-black);
  background-color: transparent;
  text-decoration: underline;
}

/*Gold Button*/
.gold-custom-button a:link{
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #b3a369;
	border-radius: 5px;
    transition: all 0.2s ease-out;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    color: #000;
    background-color: #b3a369;
	text-decoration: none;
}

.gold-custom-button a:visited{
    color: #000;
    text-decoration: none;
}

.gold-custom-button a:hover{
  /*color: var(--gt-black);
  background-color: transparent;*/
  text-decoration: underline;
}

/*Blue Button*/
.blue-custom-button a:link{
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #003057;
	border-radius: 5px;
    transition: all 0.2s ease-out;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    color: #fff;
    background-color: #003057;
	text-decoration: none;
}

.blue-custom-button a:visited{
    color: #fff;
    text-decoration: none;
}

.blue-custom-button a:hover{
  color: var(--gt-black);
  background-color: transparent;
  text-decoration: underline;
}

/*Custom PDF Icon Style in Text Editor*/
.pdf-icon {
    background: transparent url('/sites/default/files/pdf-icon.png') no-repeat left center;
    padding: 1px 0 1px 20px;
}

/*Custom Large Text Style 22px font in Text Editor*/
.big-text {
	font-size: 22px;
}

.page-node-1 .layout--twocol-section h2{
    border: 1px solid #b3a369;
	border-radius: 5px;
    padding: 0.5rem 1rem;
}

#mercury .hg-title h2{
  font-family: var(--font-roboto);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gt-md-gold);	
  border: 1px solid #fff;
  border-radius: 5px;
}

.field--name-field-displayed-block-title {
    border: 1px solid #b3a369;
    padding: 0.5rem 1rem;
    font-size: 2.12rem;
    letter-spacing: 0.05rem;
    font-family: var(--font-roboto-condensed);
    font-weight: 600;
    line-height: 1;
    margin-bottom: .5rem;
    color: var(--gt-md-gold);
}

.field--name-field-body-classic {
    padding: 12px;
    background-color: #eeeeee;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
}

/*News and Events Blocks*/
.page-node-1 .layout__region--first .views-element-container {
    background-color: #eeeeee;
    padding: 12px;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
}

.page-node-1 .layout__region--second .views-element-container {
    background-color: #eeeeee;
    padding: 12px;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
}

#block-nikola-accessibilityinformation .field--name-field-body-classic h3 {
    color: var(--gt-black);
    float: left;
    margin-top: 6px;
    margin-left: 25%;
    margin-right: 10%;
}

@media only screen and (max-width: 600px) {
#block-nikola-accessibilityinformation .field--name-field-body-classic h3 {
    float: none;
    margin-top: 6px;
    margin-left: 25%;
    margin-right: 5%;
	font-size: 1.3rem;
  }
#block-nikola-accessibilityinformation .field--name-field-body-classic a:link {
    padding-left: 20%;
  }
}

/*START 3-Pic Hero Banner View*/
#block-nikola-views-block-3-pic-hero-banner-block-1 .view-content-wrap .item{
  display: grid;
  grid-template-columns: 65% 35%;
} 

@media only screen and (max-width: 600px) {
#block-nikola-views-block-3-pic-hero-banner-block-1 .view-content-wrap .item{
  display: block;
}
}

.views-field-field-hero-large-image { 
    /*Make this image start on row 1 column 1, and span 2 rows and 1 column:*/
	grid-area: 1 / 1 / span 2 / span 1;
} 

.views-field-field-hero-top-right-image { 
	/*Make this image start on row 1 column 2, and span 1 rows and 1 column:*/
	grid-area: 1 / 2 / span 1 / span 1;
	
}

.views-field-field-hero-bottom-right-image { 
	/*Make this image start on row 2 column 2, and span 1 rows and 1 column:*/
	grid-area: 2 / 2 / span 1 / span 1;
	
}

.views-field-field-hero-large-image:hover {
	transition: transform .5s ease-in-out;
	transform: scale(1.02);
}

.views-field-field-hero-top-right-image:hover {
	transition: transform .5s ease-in-out;
	transform: scale(1.02);
}

.views-field-field-hero-bottom-right-image:hover {
	transition: transform .5s ease-in-out;
	transform: scale(1.02);
}

.views-field-field-text-overlay-large-image {
    position: absolute;
    margin-left: 0%;
    margin-top: 25%;
    text-align: center;
	color: #fff;
	font-size: 24px;
    background-color: #0d000075;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369; 
	padding: 24px;
    width: 65%;
}

@media only screen and (max-width: 600px) {
.views-field-field-text-overlay-large-image{
    position: absolute;
	margin-left: 0%;
	margin-top: -30%;
	text-align: center;
    color: #fff;
	font-size: 14px;
    background-color: #0d000075;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369; 
	padding: 16px;
    width: 100%;
}
}


.views-field-field-text-overlay-top-right-ima{
    position: absolute;
    right: 0;
	text-align: center;
    color: #fff;
    font-size: 24px;
    background-color: #0d000075;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
    padding: 24px;
    width: 35%;
    margin-top: 6%;
}

@media only screen and (max-width: 600px) {
.views-field-field-text-overlay-top-right-ima{
    position: absolute;
	margin-left: 0%;
	margin-top: -30%;
	text-align: center;
    color: #fff;
	font-size: 14px;
    background-color: #0d000075;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369; 
	padding: 16px;
    width: 100%;
}
}

.views-field-field-text-overlay-bottom-right-{
    position: absolute;
    right: 0;
	text-align: center;
    color: #fff;
    font-size: 24px;
    background-color: #0d000075;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
    padding: 24px;
    width: 35%;
    margin-top: 22%;
}

@media only screen and (max-width: 600px) {
.views-field-field-text-overlay-bottom-right-{
    position: absolute;
	margin-left: 0%;
	margin-top: -30%;
	text-align: center;
    color: #fff;
	font-size: 14px;
    background-color: #0d000075;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369; 
	padding: 16px;
    width: 100%;
}
}
/*END 3-Pic Hero Banner View*/

.hg-title h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.hg-news-item #mercury .image {
	max-width: 25%;
	float: left;
	margin: 0;
	padding-right: 8px;
}

.hg-news-item #mercury .dateline {
	margin-top: 5%;
	font-size: 1.0rem;
    font-weight: 800;
}

.hg-news-item #mercury p {
	margin-top: 1px;
}

/******* Original CSS ********/

/*Custom Buttons*/
/*Clear Button w/Gold Outline*/
.clear-custom-button a:link{
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #b3a369;
	border-radius: 5px;
    transition: all 0.2s ease-out;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    color: #b3a369;
    background-color: #fff;
	text-decoration: none;
}

.clear-custom-button a:visited{
  color: var(--gt-md-gold);
  text-decoration: none;
}

.clear-custom-button a:hover{
  color: var(--gt-black);
  background-color: transparent;
  text-decoration: underline;
}

/*Gold Button*/
.gold-custom-button a:link{
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #b3a369;
	border-radius: 5px;
    transition: all 0.2s ease-out;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    color: #000;
    background-color: #b3a369;
	text-decoration: none;
}

.gold-custom-button a:visited{
    color: #000;
    text-decoration: none;
}

.gold-custom-button a:hover{
  /*color: var(--gt-black);
  background-color: transparent;*/
  text-decoration: underline;
}

/*Blue Button*/
.blue-custom-button a:link{
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #003057;
	border-radius: 5px;
    transition: all 0.2s ease-out;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    color: #fff;
    background-color: #003057;
	text-decoration: none;
}

.blue-custom-button a:visited{
    color: #fff;
    text-decoration: none;
}

.blue-custom-button a:hover{
  color: var(--gt-black);
  background-color: transparent;
  text-decoration: underline;
}

.page-node-1 .layout--twocol-section h2{
    border: 1px solid #b3a369;
	border-radius: 5px;
    padding: 0.5rem 1rem;
}

#mercury .hg-title h2{
  font-family: var(--font-roboto);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gt-md-gold);	
  border: 1px solid #fff;
  border-radius: 5px;
}

.field--name-field-displayed-block-title {
    border: 1px solid #b3a369;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    letter-spacing: 0.05rem;
    font-family: "Roboto Slab", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    line-height: 1;
    margin-bottom: .5rem;
    color: #ffffff;
	background-color: #575757;
}

.field--name-field-body-classic {
    padding: 12px;
    background-color: #eeeeee;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
	display: flex;
    flex-flow: wrap;
	justify-content: space-evenly;
}

/*News and Events Blocks*/
.page-node-1 .layout__region--first .views-element-container {
    background-color: #eeeeee;
    padding: 12px;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
}

.page-node-1 .layout__region--second .views-element-container {
    background-color: #eeeeee;
    padding: 12px;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
}

/*Faculty & Staff Page*/
/*.field--name-field-image-fac-staff{
	float: right;
}*/

.field--name-field-image-fac-staff {
    float: right;
    border: 1px solid #ddd;
    border-radius: 60%;
    padding: 5px;
    margin-right: 1%;
    width: 25%;
    height: 25%;
    overflow: hidden;
}

@media only screen and (max-width: 600px) {
.field--name-field-image-fac-staff{
	float: none;
}
}

.field--name-field-department-title-fac-staff {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--gt-md-gold);	
}

.field--name-field-email-fac-staff {
	margin-bottom: 8px;
}

.field--name-field-email-fac-staff .field__label{
	font-weight: bold;
}

.field--name-field-phone-fac-staff .field__label {
	font-weight: bold;
}

#block-sortfacultystaff .field--name-body{
	background-color: #eeeeee;
	padding: 12px;
	width: 50%;
}

.field--name-field-image-aff-fac{
	float: right;
	padding-left: 8px;
}

@media only screen and (max-width: 600px) {
.field--name-field-image-aff-fac{
	float: none;
	padding-left: 0px;
}
}

.field--name-field-school-aff-fac {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--gt-md-gold);	
}

.block-inline-blockimage .mb-4 {
	padding: 12px;
    background-color: #eeeeee;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;	
}

.block-inline-blockimage .mb-4 p{
	font-size: 1.0rem;
}

.block-inline-blockimage h3{
	border: 1px solid #b3a369;
    padding: 0.5rem 1rem;
}

.page-node-1 #gt-image-wrapper h3{
	font-size: 1.1rem;
}

table {
  border: 1px solid transparent;
  /*font-family: var(--font-abel);*/
  font-family: var(--font-roboto);
  font-size: 1rem;
  line-height: 1.2;
  margin: 10px 0 20px 0;
  vertical-align: top !important;
}

td {
  border: 1px solid transparent;
  padding: .5rem !important;
  vertical-align: none !important;
}


/*Tech to Teaching CSS for Indvidual Pages*/
.page-node-type-tech_to_teaching_on_campus .field__label{
	font-size: 1.2rem;
	font-weight: 800;
}

.page-node-type-tech_to_teaching_on_campus .layout--twocol-section{
	padding: 12px;
    background-color: #eeeeee;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
}

.page-node-type-tech_to_teaching_on_campus .layout--fourcol-section{
	padding: 12px;
    background-color: #eeeeee;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
}

/*Tech to Teaching CSS for Table*/
.center-v-h{
	font-size: 1.2rem;
	text-align: center !important;
	margin-top: 45px !important;
}

.center-v-h-words{
	font-size: 1.2rem;
	text-align: center !important;
	margin-top: 35px !important;
}

.page-node-1 #block-bannerbutton1 {
    margin-top: -6%;
    margin-right: 1%;
    float: right;
    position: relative;
}

@media only screen and (max-width: 600px) {
.page-node-1 #block-bannerbutton1{
	margin-top: 0;
    margin-right: 0;
    float: none;
    position: none;
}
}

/*.main-nav nav li:nth-child(4) .dropdown-menu {
    column-count: 2;
    max-width: 30rem;
}*/

.main-nav nav li:nth-child(4) .dropdown-menu.show {
    display: block;
    column-count: 2;
    max-width: 30rem;
}

@media only screen and (max-width: 600px) {
.main-nav nav li:nth-child(4) .dropdown-menu.show{
	column-count: 1;
    max-width: 30rem;
}
}

.page-node-1 #call-to-action .field--name-body a:link{
	color:#fff;
	font-weight:800;
	text-decoration: none;
}

.page-node-1 #call-to-action .field--name-body a:hover{
	color:#fff;
	font-weight:800;
	text-decoration: underline;
}

.page-node-1 #call-to-action .field--name-body a:visited{
	color:#fff;
	font-weight:800;
	text-decoration: none;
}

.xtra-small-width {
	width: 8px!important;
}

#webform-submission-spring-2022-future-faculty-job-s-form-ajax .description{
	font-size: .90rem;
	margin-bottom: 12px;
	background-color: #fff;
	padding: 12px;
	border-radius: 8px;
}

#webform-submission-spring-2022-future-faculty-job-s-form-ajax .active ol{
	font-size: .90rem;
	background-color: #fff;
	padding: 18px;
	border-radius: 8px;
}

/*.Table { 
	width: 85%; 
} 

.TableParagraph { 
	width: 50%; 
	text-align: center; 
}*/

/*Tech to Teaching CSS*/

.page-node-840 .views-field-title{
	text-align: center;
}

.page-node-840 .views-field-field-slide-quote a:link{
	color: #1a0dab;
	text-decoration: none;
}

.page-node-840 .views-field-field-slide-quote a:hover{
	color: #1a0dab;
	text-decoration: underline;
}

.page-node-840 .views-field-field-slide-quote a:visited{
	color: #1a0dab;
	text-decoration: none;
}

.page-node-840 .views-field-field-alumni-year{
	text-align: center;
}

.page-node-840 .views-field-field-slide-quote{
	text-align: center;
	color: #000;
    background-color: #fff;
	padding: 12px;
	border: 1px solid #b3a369;
	border-radius: 5px;
	font-size: .75rem;
	margin-top: 12px;
	
}

.page-node-840 .views-field-field-slide-quote p{
	background-color: #b3a369;
	color: #fff;
	text-align: left;
	padding: 12px;
	font-size: .85rem;
	border-radius: 5px;
	font-style: italic;
}

.page-node-840 .views-field-field-slide-image {
	border: 1px solid #ddd;
    border-radius: 60%;
    /*padding: 5px;*/
    margin-right: 1%;
    width: 50%;
    height: 50%;
    overflow: hidden;
	margin: auto;
}

.page-node-840 .views-field-field-slide-quote p::before{
	content: "\"";
}

.page-node-840 .views-field-field-slide-quote p::after{
	content: "\"";
}

.page-node-614 .views-field-title {
	margin-top: 3%;
}

.field--name-field-cirtl-link .field--label{
	font-weight:bold;
}

.page-node-1425 .views-field-field-slide-image{
	border: 1px solid #ddd;
    border-radius: 60%;
    margin-right: 1%;
    width: 50%;
    height: 50%;
    overflow: hidden;
    margin: auto;
}

.page-node-1425 .views-field-field-slide-quote{
	text-align: center;
    color: #000;
    background-color: #fff;
    padding: 12px;
    border: 1px solid #b3a369;
    border-radius: 5px;
    font-size: .75rem;
    margin-top: 12px;
}

.page-node-1425 .views-field-field-slide-quote .field-content p{
	/*background-color: #b3a369;*/
	background-color: #eeeeee;
    /*color: #fff;*/
	color: #222222;
	font-weight:bold;
    text-align: left;
    padding: 12px;
    font-size: .85rem;
    border-radius: 5px;
    font-style: italic;
}

.ttl_faculty .field--label{
    border: 1px solid #b3a369;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    letter-spacing: 0.05rem;
    font-family: "Roboto Slab", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
	background-color: #575757;
}

.ttl_faculty .field--name-field-where-has-this-work-been-p .field--label{
    border: 1px solid #b3a369;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    letter-spacing: 0.05rem;
    font-family: "Roboto Slab", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
	background-color: #575757;
	display: none;
}


.ttl_faculty .field__item{
	font-family: var(--font-roboto) !important;
	padding: 12px;
    background-color: #eeeeee;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
	margin-bottom: 18px;
}

.ttl_faculty .file-title{
	border: 1px solid #b3a369;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    letter-spacing: 0.05rem;
    font-family: "Roboto Slab", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
    background-color: #575757;
	margin-bottom: 18px;
}

.field--name-field-poster-image .field__item {
	background-color: #ffffff;
    border-top: none;
    border-bottom: none;
	margin-top: 18px;
	margin-bottom: 18px;
}

.field--name-field-faculty-name .field__item{
	text-align: center;
	font-size: 1.50rem;
	font-weight: 600;
	border-top: none;
    border-bottom: none;
	margin-bottom: 12px;
	/*width: 75%;*/
}

.field--name-field-faculty-quote .field__item{
	background-color: #ffffff;
    border-top: none;
    border-bottom: none;
}
	
 .field--name-field-faculty-quote{
	border-left: 1px solid rgba(0, 0, 0, .3);
    padding: 1rem 1rem 1rem 1.4rem;
    margin: 1.5rem;
    font-size: 1rem;
}

.field--name-field-faculty-quote p::before {
	content: '\201C';
}

.ttl_faculty .field_faculty_quote{
	background-color: #ffffff;
    border-top: none;
    border-bottom: none;
}

.field--name-field-faculty-quote p {
	font-style: italic;
	background-color: #ffffff;
    border-top: none;
    border-bottom: none;
}

.field--name-field-faculty-quote p::after {
	font-style: italic;
	content: '\201D';
}

.ttl_faculty .field--name-field-headshot-image .field__item{
	padding: 12px;
    background-color: #fff;
    border-top: none;
    border-bottom: none;
    margin-bottom: 18px;
	padding-left: 15%;
    padding-right: 15%;
}

.page-node-1440 .form-actions{
	margin-bottom: 12px;
}

.page-node-1440 .views-view-responsive-grid__item {
	border: 1px solid #b3a369;
    border-radius: 5px;
	padding: 12px;
	/*filter: drop-shadow(10px 8px 12px #747272);*/
	box-shadow: 0 8px 12px #747272;
	margin-bottom: 5%;
}

.page-node-1440 .views-field-field-tile-image{
    margin-bottom: 5%;
}

.page-node-1440 .views-field-title{
	/*margin-bottom: 10%;*/
	font-size: 1.2rem;
	text-align: center;
}

.page-node-1440 .js-form-type-textfield {
	width: 20%;
}

.page-node-1440 .form-item-field-college-target-id {
	width: 20%;
}

.page-node-1440 #views-exposed-form-ttl-projects-block-1{
	display: flex;
    flex-flow: wrap;
	justify-content: space-evenly;
}

.page-node-1440 .js-form-submit{
	/*margin-top: 50%;
    margin-left: 20%;*/
	margin-top: 10%;
    margin-left: 10%;
    height: 34px;
    width: 150px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

/*.page-node-1440 .form-text {
	display: block;
    font-size: 16px;
    color: #444;
    line-height: 1.3;
    padding: 0.6em 1.4em 0.5em 0.8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
	margin-right: 18px;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 0.5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
}

.page-node-1440 .select2-selection--single {
    display: block;
    font-size: 16px;
    color: #444;
    line-height: 1.3;
    padding: 0.6em 1.4em 0.5em 0.8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 0.5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23004f9f%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.page-node-1440 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: unset;
    border-style: unset;
    border-width: unset;
    height: unset;
    left: unset;
    margin-left: unset;
    margin-top: unset;
    top: unset;
    width: unset;
    top: unset;
    width: unset;
}

.page-node-1440 .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: unset;
    user-select: none;
    -webkit-user-select: none;
}


.page-node-1440 .select2-container {
    box-sizing: none;
    display: none;
    margin: 0;
    position: none;
    vertical-align: none;
}

*/
.page-node-1440 .form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    color: #212529;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select-node-1440 {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    color: #212529;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    /*border: 1px solid #ced4da;*/
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.page-node-1440 .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.page-node-1440 .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 34px;
    user-select: none;
    -webkit-user-select: none;
}

.page-node-1440 .select2-container{
    width: 25%;
}

.page-node-1440 .form-text {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
	height: 34px;
}

.page-node-1477 #views-exposed-form-ttl-projects-block-1{
	display: flex;
    flex-flow: wrap;
	justify-content: space-evenly;
}

