/*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;
}

/*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;
}

/*h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 p{
    font-family: var(--font-roboto-condensed);
    font-weight: 600;
    line-height: 1;
    margin-bottom: .5rem;
    color: var(--gt-md-gold);
}*/

.ck-rounded-corners .ck.ck-balloon-panel, .ck.ck-balloon-panel.ck-rounded-corners {
    z-index: 10055 !important;
}
