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

#block-nikola-views-block-3-pic-hero-banner-block-1 /*#block-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 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 p{
    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 /*#block-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 /*#block-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 /*#block-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*/

/*START Custom style for title in "Image" block*/
.block-layout-builder h3{
    background-color: transparent;
    padding: 8px;
    /*color: #262626 !important;*/
	color: var(--gt-md-gold);
    background-color: #fff !important;
    min-width: 200px;
    border: 1px solid #b3a369;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 10px;
}
/*END Custom style for title in "Image" block*/

#block-uropnews {
	margin-top: 16px;
}

/*Event Videos Page*/
.page-node-537 .layout__region h2{
    background-color: transparent;
    padding: 8px;
    /*color: #262626 !important;*/
	color: var(--gt-md-gold);
    background-color: #fff !important;
    min-width: 200px;
    border: 1px solid #b3a369;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 10px;
}

/*10 Steps to Get Involved*/
.page-node-541 #superblock{
	border: none;
}

/*How to Register*/
.page-node-542 .field--name-field-displayed-block-title{
    background-color: transparent;
    padding: 8px;
	color: #262626;
    background-color: #fff;
    min-width: 200px;
    border: 1px solid #b3a369;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 10px;	
}

.page-node-542 .field--name-field-body-classic{
    padding: 12px;
    background-color: #fff;
	border: 1px solid #b3a369;
    /*border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;*/	
}

/*Image Block Text (Overrights the default tiny text*/
.image-block-overright-text {
	font-size: 0.9em;
    padding: 12px;
	margin-top: 8px;
    background-color: #eeeeee;
    border-top: 2px solid #b3a369;
    border-bottom: 2px solid #b3a369;
}

/*Campus Orgs Page*/
.page-node-553 .block-layout-builder h3{
    background-color: transparent;
    padding: 8px;
    /*color: #262626 !important;*/
	color: var(--gt-md-gold);
    background-color: #fff !important;
    min-width: 200px;
    border: 1px solid #b3a369;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 10px;
}

/*PURA Side Menus*/
#block-upcomingdeadlinepura{
	margin-top: 13%;
	
}

#block-sidemenupuratravel{
	margin-top: 13%;
	
}

/*Research Option Side Menus*/
#block-researchoptionforms{
	margin-top: 13%;
	
}

/*URA Staff Page*/
#block-menubyterm{
	margin-top: 13%;
	
}

.page-node-579 #call-to-action .gt-text-black h3{
    background-color: transparent !important;
    padding: 0px !important;
    /*color: #262626 !important;*/
	color: var(--gt-md-gold);
    min-width: 200px;
    border: 0 !important;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 10px;
}

.page-node-579 .layout--threecol-section{
	width: 125%;
}	
@media only screen and (max-width: 600px) {
.page-node-579 .layout--threecol-section{
	width: 100%;
}
}

@media (min-width: 768px) {
.page-node-579 .layout--threecol-section{
	width: 110%;
}
}

.page-node-579 .layout--twocol-section{
	width: 125%;
}	
@media only screen and (max-width: 600px) {
.page-node-579 .layout--twocol-section{
	width: 100%;
}
}

@media (min-width: 768px) {
  .page-node-579 .layout--twocol-section {
	width: 100%;
  }
}

.page-node-579 .layout--onecol{
	width: 125%;
}	
@media only screen and (max-width: 600px) {
.page-node-579 .layout--onecol{
	width: 100%;
}
}

@media (min-width: 768px) {
.page-node-579 .layout--onecol{
	width: 100%;
}
}

#block-forfaculty{
	margin-top: 13%;
	
}
@media (min-width: 768px) {
.page-node-579 .layout--onecol{
	width: 100%;
}
}
/*Undergraduate Coordinators*/
@media (max-width: 600px) {
.page-node-554 .layout--twocol-section{
	width: 75%;
}
}

#block-upcomingdeadlinemst{
	margin-top: 13%;
	
}

#block-adminblock{
	margin-bottom: 12%;
	
}

/*START NEW Events Block*/
.page-node-1 .view-content-wrap .views-field-title {
	text-align: center;
	padding-left: 5%;
	margin-bottom: 3%;
}

.page-node-1 .view-content-wrap .views-field-title a:link{
	text-decoration: none;
}

.page-node-1 .views-field-field-hg-event-time {
	margin-left: 25%;
	margin-bottom: 1%;
	line-height: 250%;
    text-align: center;
	border-top: 0.5px solid #b3a369;
    border-bottom: 0.5px solid #b3a369;
	width: 50%;
	
}

.page-node-1 .views-field-field-hg-location {
	text-align: center;
	margin-bottom: 1%;
}

.page-node-1 .views-field-view-node {
	text-align: center;
	margin-bottom: 3%;
}

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

.page-node-1 .views-field-view-node a:hover{
	text-decoration: underline;
}

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

.page-node-1 .view-content-wrap{
	background-color: #eeeeee;
	padding: 12px;
	border-top: 2px solid #b3a369;
	border-bottom: 2px solid #b3a369;
}

.page-node-1 .layout__region h2{
	color: #fff;
	font-family: "Roboto Slab", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	margin: 0 0 5px 0;
	background-color: #646464;
    padding: 10px 20px;
}

/*END NEW Events Block*/

/*START NEW News Block*/
.news-block-title .views-field-title{
	text-align: none;
}

.news-block-title .views-field-field-hg-summary-sentence{
	margin-left: 12%;
    /*margin-bottom: 1%;
    line-height: 250%;*/
    text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
    border-top: 0.5px solid #b3a369;
    border-bottom: 0.5px solid #b3a369;
    width: 75%;
	margin-bottom: 18px;
}
/*END NEW News Block*/

/*One Pic Hero Image*/

/*.hero-image-bottom-right-top { 
	position: absolute; 
	bottom: 300px; 
	right: 150px; 
}*/

.hero-image-bottom-right-bottom { 
	position: absolute; 
	bottom: 200px; 
	right: 200px;  
}

@media only screen and (max-width: 600px) {
.hero-image-bottom-right-bottom{
	position: unset; 
	bottom: 0px; 
	right: 0px;
	padding-top: 8px;
}
}

.views-field-field-deadline {
	font-family: var(--font-roboto);
	text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gt-black)
}

.page-node-606 .views-field-body{
	text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gt-black)
}

/*START NEW Events Block*/
/*.page-node-606 .view-content-wrap .views-field-title {
	text-align: center;
	padding-left: 5%;
	margin-bottom: 3%;
}

.page-node-606 .view-content-wrap .views-field-title a:link{
	text-decoration: none;
}*/

.page-node-606 .views-field-field-hg-event-time {
	margin-left: 25%;
	margin-bottom: 1%;
	line-height: 250%;
    text-align: center;
	border-top: 0.5px solid #b3a369;
    border-bottom: 0.5px solid #b3a369;
	width: 50%;
	
}

.page-node-606 .views-field-field-hg-location {
	text-align: center;
	margin-bottom: 1%;
}

.page-node-606 .views-field-view-node {
	text-align: center;
	margin-bottom: 3%;
}

.page-node-606 .views-field-view-node a:link{
	text-decoration: none;
	color: #1a0dab;
}

.page-node-606 .views-field-view-node a:hover{
	text-decoration: underline;
}

.page-node-606 .views-field-view-node a:visited{
	text-decoration: none;
	color: #1a0dab;
}

.page-node-606 .view-content-wrap{
	background-color: #eeeeee;
	padding: 12px;
	border-top: 2px solid #b3a369;
	border-bottom: 2px solid #b3a369;
}

.page-node-606 .layout__region h2{
	color: #fff;
	font-family: "Roboto Slab", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	margin: 0 0 5px 0;
	background-color: #575757;
    padding: 10px 20px;
}

/*END NEW Events Block*/

/*START NEW News Block*/
.news-block-title .views-field-title{
	text-align: none;
}

.news-block-title .views-field-field-hg-summary-sentence{
	margin-left: 12%;
    /*margin-bottom: 1%;
    line-height: 250%;*/
    text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
    border-top: 0.5px solid #b3a369;
    border-bottom: 0.5px solid #b3a369;
    width: 75%;
	margin-bottom: 18px;
}

.page-node-606 .layout__region--first .field--name-body a:link{
	font-family: var(--font-roboto-condensed);
	font-size: 1.0rem;
    font-weight: 800;
    line-height: 1.2;
	text-decoration: none;
	color: #b3a369;
}

.page-node-606 .layout__region--first .field--name-body a:hover{
	text-decoration: underline;
}

.page-node-606 .layout__region--first .field--name-body a:visited{
	text-decoration: none;
	color: #b3a369;
}

.page-node-606 .layout__region--second .field--name-body a:link{
	font-family: var(--font-roboto-condensed);
	font-size: 1.0rem;
    font-weight: 800;
    line-height: 1.2;
	text-decoration: none;
	color: #b3a369;
}

.page-node-606 .layout__region--second .field--name-body a:hover{
	text-decoration: underline;
}

.page-node-606 .layout__region--second .field--name-body a:visited{
	text-decoration: none;
	color: #b3a369;
}
/*END NEW News Block*/

/*START NEW EVENTS BLOCK FOR EVENTS PAGE*/

.page-node-648 .views-view-grid .views-field-title h4{
	font-family: var(--font-roboto-condensed);
	text-align: center;
    padding-left: 5%;
    margin-bottom: 3%;
	font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.6;
	color: #b3a369;
}

.page-node-648 .views-field-field-hg-event-time {
	margin-left: 25%;
	margin-bottom: 1%;
	line-height: 250%;
    text-align: center;
	border-top: 0.5px solid #b3a369;
    border-bottom: 0.5px solid #b3a369;
	width: 50%;
	
}

.page-node-648 .views-field-field-hg-location {
	text-align: center;
	margin-bottom: 1%;
}

.page-node-648 .views-field-view-node {
	text-align: center;
	margin-bottom: 3%;
}

.page-node-648 .views-field-view-node a:link{
	text-decoration: none;
	color: #1a0dab;
}

.page-node-648 .views-field-view-node a:hover{
	text-decoration: underline;
}

.page-node-648 .views-field-view-node a:visited{
	text-decoration: none;
	color: #1a0dab;
}

.page-node-648 .views-view-grid{
	background-color: #eeeeee;
	padding: 12px;
	border-top: 2px solid #b3a369;
	border-bottom: 2px solid #b3a369;
}
/*END NEW EVENTS BLOCK FOR EVENTS PAGE*/

/*START NEW News Block for PAGE*/
.page-node-649 .views-view-grid .views-field-title h4{
	font-family: var(--font-roboto-condensed);
	text-align: center;
    padding-left: 5%;
    margin-bottom: 3%;
	font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.6;
	color: #b3a369;
}


.news-block-title .views-field-field-hg-summary-sentence{
	margin-left: 12%;
    /*margin-bottom: 1%;
    line-height: 250%;*/
    text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
    border-top: 0.5px solid #b3a369;
    border-bottom: 0.5px solid #b3a369;
    width: 75%;
	margin-bottom: 8px;
}

.page-node-649 .views-field-view-node {
	text-align: center;
	margin-bottom: 3%;
}

.page-node-649 .views-field-view-node a:link{
	text-decoration: none;
	color: #1a0dab;
}

.page-node-649 .views-field-view-node a:hover{
	text-decoration: underline;
}

.page-node-649 .views-field-view-node a:visited{
	text-decoration: none;
	color: #1a0dab;
}

.page-node-649 .views-view-grid{
	background-color: #eeeeee;
	padding: 12px;
	border-top: 2px solid #b3a369;
	border-bottom: 2px solid #b3a369;
}
/*END NEW News Block for PAGE*/

/*.page-node-606 .layout-builder__layout .views-element-container .view-content-wrap {
	-webkit-column-count: 2;
  	-moz-column-count: 2;
 	column-count: 2;
	width: 100%;
	margin-bottom: 10px;
	padding: 12px;
}*/

.page-node-606 .more-link a:link{
	font-size: 1.1rem;
	color: #003057;
	text-decoration: none;
}

.page-node-606 .more-link a:visited{
	font-size: 1.1rem;
	color: #003057;
	text-decoration: none;
}

/*.views-field-field-hg-summary-sentence .field-content{
	text-align: center;
    margin-left: 15%;
    margin-right: 15%;
}*/

.page-node-606 .field--name-body a:link{
	font-size: 1.1rem;
	color: #003057;
	text-decoration: none;
}

.page-node-606 .field--name-body a:visited{
	font-size: 1.1rem;
	color: #003057;
	text-decoration: none;
}

.page-node-606 .views-element-container h2{
	color: #fff;
    font-family: "Roboto Slab", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    margin: 0 0 5px 0;
    background-color: #575757;
    padding: 10px 20px;
}

.page-node-606 #block-getinvolvedbutton{
    margin-top: -7%!important;
    margin-left: 1%;
    position: relative;
}

@media only screen and (max-width: 600px) {
.page-node-606 #block-getinvolvedbutton{
    margin-top: 0;
    margin-left: 0;
}
}

/*HG News Block NEW*/
.page-node-606 .hg-title h3{
	font-size: 1.1rem;
	color: #003057;
}

.page-node-606 .views-field-field-hg-images {
    float: left;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 4px;
    margin-right: 8px;
	max-width: 25%;
}

.page-node-606 .views-field-field-hg-summary-sentence {
    margin-bottom: 12%;
}

.page-node-606 .views-field-title a:link{
	font-size: 1.0rem;
	text-decoration: none;
	color: #003057;
}

.page-node-606 .views-field-title a:visited{
	font-size: 1.0rem;
	color: #003057;
	text-decoration: none;
}

/*HG News Page NEW*/

.path-hg-news .views-field-field-hg-images{
    float: left;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 4px;
    margin-right: 8px;
}

.path-hg-news .views-field-body {
    margin-bottom: 15%;
}

.js-form-item h4 {
	color: var(--gt-md-gold)!important;
}