/*
Theme Name: Optik Library
Version: 6.0
Theme URI: http://www.cyberoptik.net
Description: Customizable responsive Wordpress theme created by CyberOptik
Author: CyberOptik
Author URI: http://www.cyberoptik.net
Template: optik-theme
*/



/*
 * CUSTOMIZABLE CSS
 */



/* -----------------------------------------------------------------------------
 * TABLE OF CONTENTS:
 * -----------------------------------------------------------------------------
 *
 * 1 CSS IMPORTS
 *   1.1 FRAMEWORK
 *   1.2 MODULES
 *   1.3 STYLES
 *
 * 2 STRUCTURAL ELEMENTS
 *   2.1 UNIVERSAL STYLES
 *   2.2 BACK TO TOP BUTTON
 *
 * 3 CONTENT STYLES
 *   3.1 TEXT & LINKS
 *   3.2 HEADINGS
 *   3.3 BORDERS & DIVIDERS
 *   3.4 BUTTONS
 *   3.5 ICONS
 *   3.6 LIST STYLES
 *   3.7 FORM STYLES
 *
 * 4 HEADER STYLES
 *   4.1 SCROLL BAR
 *   4.2 TOP BAR
 *   4.3 HEADER 
 *   4.4 NAV BAR
 *   4.5 NAV MENUS
 *   4.6 DROPDOWN MENUS
 *   4.7 MOBILE NAV
 *
 * 5 BODY STYLES
 *   5.1 BANNER
 *   5.2 HEADLINE BAR
 *   5.3 PAGE NAV BAR
 *   5.4 MAIN
 *   5.5 ARCHIVE
 *   5.6 SINGLE
 *
 * 6 FOOTER STYLES
 *   6.1 CTA BAR
 *   6.2 FOOTER
 *   6.3 BOTTOM BAR
 *
 * 7 CUSTOM THEME STYLES
 *
 * ---------------------------------------------------------------------------*/





/******************************************************************************
 * * *  1 CSS IMPORTS  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

@import url("../optik-theme/style.css");



/***  MONTSERRAT  ***/

/* Normal */
@font-face {
	font-family: 'Montserrat';
	font-weight: normal;
	src: url('/fonts/Montserrat/Montserrat-Regular.ttf');
}

/* Italic */
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: normal;
	src: url('/fonts/Montserrat/Montserrat-Italic.ttf');
}

/* Semi-Bold */
@font-face {
	font-family: 'Montserrat';
	font-weight: 600;
	src: url('/fonts/Montserrat/Montserrat-SemiBold.ttf');
}

/* Bold */
@font-face {
	font-family: 'Montserrat';
	font-weight: bold;
	src: url('/fonts/Montserrat/Montserrat-Bold.ttf');
}

/* Black */
@font-face {
	font-family: 'Montserrat';
	font-weight: 900;
	src: url('/fonts/Montserrat/Montserrat-Black.ttf');
}





/******************************************************************************
 * * *  2 STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/


/***  2.1 UNIVERSAL STYLES  ***/

:root {
	--primary: #f4c563;
	--primary-dk: #dda631;
	--primary-lt: #fddc96;
	--secondary: #2c477d;
	--secondary-dk: #172b52;
	--secondary-lt: #8cb2fc;
	--dark-1: #222;
	--dark-2: #555;
	--dark-3: #888;
	--light-1: #e4e3e1;
	--light-2: #f3f2f1;
	--light-3: #F7F7F7;
	--radius-0: 50%;
	--radius-1: 6px;
	--radius-2: 24px;
	--radius-3: 48px;
	--gap-xs: 5px;
	--gap-sm: 10px;
	--gap-md: 15px;
	--gap-lg: 20px;
	--gap-xl: 30px;
	--spacer-xs: 20px;
	--spacer-sm: 60px;
	--spacer-md: 80px;
	--spacer-lg: 120px;
	--spacer-xl: 140px;
	--font-1: 'Montserrat', sans-serif;
}

html {font-size: 16px;}

body {
  line-height: 1.6em;
  font-family: var(--font-1);
  color: var(--dark-2);
  background-color: white;
}

p:empty:before {display: none !important;}

.section-container {max-width: 1300px;}



/***  2.2 BACK TO TOP BUTTON  ***/

.btt-button .fa {
  border-radius: var(--radius-0);
  background-color: var(--primary);
	font-weight: 300;
  color: var(--secondary-dk);
}

.btt-button:hover .fa {
  background-color: var(--primary-lt);
  color: var(--secondary-dk);
}





/******************************************************************************
 * * *  3 CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  3.1 TEXT & LINKS  ***/

a {color: var(--secondary-lt);}

a:hover {color: var(--secondary);}



/***  3.2 HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: var(--dark-1);
}

h1 {font-size: 3em;}
h2 {font-size: 2.25em;}
h3 {font-size: 1.75em;}
h4 {font-size: 1.35em;}
h5 {font-size: 1em;}
h6 {font-size: 0.85em;}



/***  3.3 BORDERS & DIVIDERS  ***/

hr, .divider {
    display: block;
	width: 100%;
    height: 1px;
    border: 0;
    border-top: 1px solid #e2e2e2;
    margin: 2.5em auto;
    padding: 0;
	clear: both;
}



/***  3.4 BUTTONS  ***/

.button, 
.wp-block-button__link {
  border-color: var(--primary);
	border-radius: var(--radius-3);
  background-color: var(--primary);
  font-weight: 600;
  color: var(--secondary-dk) !important;
}

.button:hover, 
.wp-block-button__link:hover {
  border-color: var(--primary-lt);
  background-color: var(--primary-lt);
  color: var(--secondary-dk) !important;
}

.button [class*="fa"], 
.wp-block-button__link [class*="fa"], 
.button:hover [class*="fa"], 
.wp-block-button__link:hover [class*="fa"] {color: var(--secondary-dk);}

/* Empty Button */

.button-empty {
  background: none;
  color: var(--secondary-dk) !important;
}

.button-empty:hover {
  border-color: var(--primary-lt);
  background: none;
  color: var(--secondary-dk) !important;
}



/***  3.5 ICONS  ***/

/*  Icon Colors  */

.fa, .fas, .far, .fal, .fab {color: var(--secondary);}

a .fa, a .fas, a .far, a .fal, a .fab {
  color: var(--primary-dk);
  webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {
	color: var(--secondary);
}

/*  Icon Backgrounds  */

.fa-bg {
  background-color: var(--secondary);
  color: white;
}

a .fa-bg {
  background-color: var(--primary-dk);
  color: white;
}

a:hover .fa-bg {
  background-color: var(--secondary);
  color: white;
}

/*  Icon Borders  */
.fa-br {border-color: var(--secondary);}
a .fa-br {border-color: var(--primary-dk);}
a:hover .fa-br {border-color: var(--secondary);}

/* Elementor Icons */

.elementor-view-stacked .elementor-icon {background-color: var(--primary);}
.elementor-view-stacked .elementor-icon i {color: white;}
.elementor-view-stacked .elementor-icon:hover {background-color: var(--secondary);}



/***  3.6 LISTS  ***/

/* Icon Lists */

.contact-list li a {color: var(--dark-3);}

.contact-list li a:hover {
	text-decoration: underline;
	color: var(--primary);
}

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before {
	color: var(--primary);
}



/***  3.7 FORM STYLES  ***/

/* Inputs */

input[type="text"], 
input[type="email"], 
input[type="number"], 
input[type="password"], 
input[type="search"], 
input[type="tel"], 
input[type="url"], 
input[type="date"], 
input[type="datetime-local"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
textarea, 
select {border-radius: var(--radius-1);}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {border-color: var(--primary);}

/* Buttons */

input[type="submit"], input[type="reset"], input[type="button"] {
  background-color: var(--primary);
  border-color: var(--primary);
	border-radius: var(--radius-1);
  color: var(--secondary-dk);
}

input[type="Submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  border-color: var(--primary-lt);
  background-color: var(--primary-lt);
  color: var(--secondary-dk);
}

input[type="Submit"]:active, input[type="reset"]:active, input[type="button"]:active {
  border-color:  var(--primary-dk);
  background-color:  var(--primary);
  color: var(--secondary-dk);
}

/* Ninja Forms */

.nf-before-form-content {display: none !important;}

.nf-field-element input[type="button"], 
.nf-field-element input[type="submit"] {height: 50px;}





/******************************************************************************
 * * *  4 HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  4.1 SCROLL BAR  ***/

.scroll-bar {
	background-color: var(--light-2);
	font-size: 0.94em;
}

.scroll-logo img {max-height: 60px;}



/***  4.2 TOP BAR  ***/

.top-bar {
	padding-top: 10px;
	padding-bottom: 10px;
  background-color: var(--secondary-dk);
	font-size: 0.9em;
	color: white;
}

.top-bar .button {
	margin-left: 15px;
  padding: 0.4em 1.2em;
}

.top-bar a .fab {
	margin-left: 2px;
	margin-right: 2px;
}



/***  4.3 HEADER  ***/

.masthead .logo-wrap:first-child:not(:last-child) {max-width: 100px;}

.logo {width: 100px;}

.masthead-link {align-items: center;}

.masthead-link .title, 
.masthead-link:hover .title {
	font-size: 1.6em;
	color: var(--dark-1);
}

.header-right {
	padding-top: 15px;
	padding-bottom: 15px;
}

@media screen and (max-width: 900px) {
.header-right {padding-top: 0;}
}

/* Menu Button */

.header .menu-button .fal, 
.header .menu-button:hover .fal {color: var(--dark-1);}

.header .menu-button.active .fal {
  background-color: var(--primary);
  color: var(--secondary-dk);
}



/***  4.4 NAVBAR  ***/

.navbar {
	background-color: var(--light-2);
}



/***  4.5 NAV MENUS  ***/

.nav-menu > li > a {
  padding: 20px;
  color: var(--dark-2);
	font-weight: 600;
}

.scroll-menu > li > a {
	padding-left: 10px;
	padding-right: 10px;
}

.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-item > a {color: var(--primary-dk);}

.nav-menu > li:hover > a {
	background-color: var(--primary);
	color: var(--secondary-dk);
}

.nav-menu > li.menu-item-has-children > a:after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  padding-bottom: 0.15em;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
	text-rendering: auto;
  font-size: 1em;
  line-height: 1;
  content: "\f107";
}

@media screen and (max-width: 1200px) {
.nav-menu > li > a {
	padding-left: 10px;
	padding-right: 10px;
}
}



/***  4.6 DROPDOWN MENUS  ***/

.nav-menu li ul {background-color: var(--light-2);}

.nav-menu > li > ul {font-size: 0.94em;}

.nav-menu li ul li:first-child {padding-top: 10px;}
.nav-menu li ul li:last-child {padding-bottom: 10px;}

.nav-menu li ul li a {
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
	color: var(--dark-3);
}

.nav-menu li ul li.current-menu-item > a {color: var(--primary-dk);}
.nav-menu li ul li:hover > a {
	background-color: var(--primary);
	color: var(--secondary-dk);
}

.nav-menu li ul li a .fal {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}



/***  4.7 MOBILE NAV  ***/

.mobile-nav {background-color: var(--secondary-dk);}

.mobile-menu li a, 
.mobile-menu li.menu-item-has-children:after {color: white;}

.mobile-menu li.current-menu-item > a {
	background-color: var(--primary);
	color: var(--secondary-dk);
}

.mobile-menu li ul {
	background-color: rgba(0,0,0,0.15);
	font-size: 0.94em;
}




/******************************************************************************
 * * *  5 BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  5.1 BANNER  ***/

.banner {
  background-color: var(--dark-1);
	text-align: center;
  color: white;
}

.banner-inner {
  padding-top: var(--spacer-md);
	padding-bottom:var(--spacer-md);
}

.banner a {color: var(--primary);}

.banner a:hover {color: var(--primary-lt);}



/***  5.2 HEADLINE BAR  ***/



/***  5.3 PAGE NAV BAR  ***/



/***  5.4 MAIN  ***/

.main, 
.section-spacer {
  padding-top: var(--spacer-md);
  padding-bottom: var(--spacer-md);
}

.section-spacer-top {padding-top: var(--spacer-md);}
.section-spacer-btm {padding-bottom: var(--spacer-md);}

.section-spacer-sm {
  padding-top: var(--spacer-sm);
  padding-bottom: var(--spacer-sm);
}

.section-spacer-top-sm {padding-top: var(--spacer-sm);}
.section-spacer-btm-sm {padding-bottom: var(--spacer-sm);}

.section-spacer-lg {
  padding-top: var(--spacer-lg);
  padding-bottom: var(--spacer-lg);
}

.section-spacer-top-lg {padding-top: var(--spacer-lg);}
.section-spacer-btm-lg {padding-bottom: var(--spacer-lg);}

@media screen and (min-width: 421px) {
.content .alignleft {margin: 0 20px 1em 0;}
.content .alignright {margin: 0 0 1em 20px;}
}

.aligncenter img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Sidebar */

.sidebar .page-menu {
	padding: 0;
	margin: 0; 
	list-style: none;
}

.sidebar .page-menu li:not(:last-child) {margin-bottom: 5px;}

.sidebar .page-menu li a {
	position: relative;
	display: block;
	padding: 10px 15px;
	background-color: var(--light-2);
	color: var(--dark-2);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.sidebar .page-menu li.current-menu-item > a, 
.sidebar .page-menu li a:hover {
	background-color: var(--primary);
	text-decoration: none;
	color: var(--secondary-dk);
}

.sidebar .page-menu li a .fal {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}



/***  5.5 ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
  border-radius: var(--radius-1);
  background-color: var(--light-2);
  overflow: hidden;
  color: var(--dark-2);
}

.entry-cols .entry-link:hover {transform: translateY(-3px);}

.entry-cols .entry-link .entry-title, 
.entry-cols .entry-link:hover .entry-title {color: var(--secondary-dk);}

.entry-cols .entry-text-wrap {padding: 20px;}

.entry-cols-more .entry-text-wrap {padding-bottom: 60px;}

.entry-cols .entry-meta, 
.entry-cols .entry-meta li {
  margin-left: 0;
  list-style: none;
}

.entry-cols .entry-meta li:not(:last-child) {margin-right: 10px;}

.entry-cols .entry-cats {
  position: absolute;
  top: 30px;
  left: 30px;
}

.entry-cols .entry-cats span {
  border-radius: var(--radius-1);
  padding: 5px 10px;
  margin: 0;
  margin-right: 4px;
  background: rgba(0,0,0,0.4);
  color: white;
}

.entry-cols-more .entry-more {
  left: 20px;
  bottom: 20px;
}

.entry-cols .entry-button {color: var(--primary-dk);}

.entry-cols .entry-link:hover .entry-button {color: var(--primary);}

/* Paging Nav */

.archive-nav a {
  padding: 0.6em 1.2em;
  border-radius: var(--radius-2);
	border: 1px solid var(--light-1);
  background: var(--light-2);
  color: var(--secondary-dk);
}

.archive-nav a:hover {
  background-color: var(--primary);
  color: var(--secondary-dk);
}



/***  5.6 SINGLE  ***/





/******************************************************************************
 * * *  6 FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  6.1 CTA BAR  ***/



/***  6.2 FOOTER  ***/

.footer {
  padding-top: var(--spacer-md);
  padding-bottom: var(--spacer-md);
  background-color: var(--secondary);
  font-size: 0.9em;
	color: white;
}

.footer h1, 
.footer h2, 
.footer h3, 
.footer h4, 
.footer h5, 
.footer h6 {color: white;}

.footer .wp-block-heading:first-child {margin-bottom: 30px;}

.footer a {color: var(--secondary-lt);}

.footer a:hover {
  color: var(--primary);
}

.footer a .fab {
	margin-left: 2px;
	margin-right: 2px;
}

/* Footer Menus */

.footer .menu {margin-top: -5px;}

.footer .menu a {
  display: block;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* Footer Icon List */

.footer .icon-list li:before, 
.footer .arrow-list li:before, 
.footer .check-list li:before, 
.footer .check-circle-list li:before, 
.footer .contact-list li:before {color: var(--primary);}

.footer .icon-list li a, 
.footer .arrow-list li a, 
.footer .check-list li a, 
.footer .check-circle-list li a, 
.footer .contact-list li a {
	display: inline-block;
	color: var(--secondary-lt);
}

.footer .contact-list .map-marker a {display: block;}

.footer .icon-list li a:hover, 
.footer .arrow-list li a:hover, 
.footer .check-list li a:hover, 
.footer .check-circle-list li a:hover, 
.footer .contact-list li a:hover {
	color: var(--primary);
}



/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
  padding-top: var(--spacer-xs);
  padding-bottom: var(--spacer-xs);
  background-color: var(--secondary-dk);
  font-size: 0.9em;
	color: white;
}

.bottom-bar a {color: var(--secondary-lt);}

.bottom-bar a:hover {
	text-decoration: underline;
  color: var(--primary);
}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/* Add custom theme styles here */



/***  HOURS  ***/

.opening-hours {
  width: 100%;
	margin-top: -3px;
}

.opening-hours tr th, 
.opening-hours tr td {
  padding-top: 3px;
  padding-bottom: 3px;
}

.opening-hours tr:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.opening-hours .day-name {text-align: left;}

.opening-hours .hours {text-align: right;}



/***  EVENTS  ***/

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container, 
#tribe-events, 
#tribe-events-pg-template, 
.tribe-events-pg-template, 
#tribe-events-content {
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: none;
}

.tribe-events-single-event-title {
	display: none;
	visibility: hidden;
}

.tribe-block__venue {font-family: var(--font-1);}

.tribe-block__venue .tribe-block__venue__meta .tribe-block__venue__name h3 {
	font-size: 1.15em;
	font-weight: bold;
}

/* Event List */

.event-list, 
.event-list .event {
	margin-left: 0;
	list-style: none;
}

.event-list .event:not(:last-child) {margin-bottom: 0.5em;}

.event-list .event-title {
	font-weight: bold;
}

.event-list .event-date {
	color: var(--dark-3);
	font-size: 0.94em;
}



/***  PAGE ENTRIES  ***/

.page-cols .cols {justify-content: center;}

.page-cols .page-link:hover {background-color: var(--primary);}

.page-cols .page-text-wrap {
	padding-top: var(--spacer-sm);
	padding-bottom:var(--spacer-sm);
	text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.page-cols .page-text-wrap:first-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.page-cols .page-text-wrap .page-title:first-child:last-child {
	display: flex;
	min-height: 100px;
	justify-content: center;
	align-items: center;
}

.page-cols-more .page-text-wrap {
	padding-bottom: calc(var(--spacer-sm) + 30px);
}

.page-cols .page-title .fal {margin-right: 10px;}

.page-cols-more .page-more {
	left: 50%;
	bottom: 50px;
	transform: translateX(-50%);
}

.page-cols-more .page-link:hover .page-more .page-button {color: var(--secondary);}



/***  HP COLS  ***/

.hp-box-cols .wp-block-column {
	background-color: var(--light-3);
	border-radius: var(--radius-1);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.hp-box-cols .wp-block-column:hover {
	background-color: var(--primary-lt);
}

.hp-box-cols a, 
.hp-box-cols a:hover {
	display: block;
	color: var(--dark-1);
	text-decoration: none;
}

.hp-box-cols img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.hp-box-cols .wp-block-image a {padding: 30px 20px 0;}

.hp-box-cols .wp-block-heading {margin: 0;}

.hp-box-cols .wp-block-heading a {padding: 10px 20px 30px;}



/***  HP INFO COLS  ***/

.hp-info-cols {margin-top: var(--spacer-md) !important;}

.hp-info-cols .wp-block-column {
	position: relative;
	padding-bottom: 50px;
}

.hp-info-cols .wp-block-buttons {
	position: absolute;
	bottom: 0;
	left: 0;
}



/*** POSTs  ***/

/* Post Cols */

.post-cols .post-text-wrap:first-child {
	padding: 30px;
}

.post-cols .post-meta {
	color: var(--dark-3);
	font-size: 0.94em;
}

.post-cols-more .post-text-wrap:first-child {
	padding-bottom: 70px;
}

.post-cols-more .post-text-wrap:first-child .post-more {
	left: 30px;
	bottom: 30px;
}

/* Post List */

.post-list, 
.post-list .post {
	margin-left: 0;
	list-style: none;
}

.post-list .post:not(:last-child) {margin-bottom: 0.5em;}

.post-list .post-title {
	font-weight: bold;
}

.post-list .post-date {
	color: var(--dark-3);
	font-size: 0.94em;
}



/***  TEAM  ***/

.member-cols .member-box {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.member-cols .member.active .member-box, 
.member-cols .member-box:hover {transform: translateY(-3px) scale(1.05);}

.member-cols .member-portrait {border-radius: var(--radius-1);}

.member-cols .member-title {
	color: var(--secondary-dk);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.member-cols .member-box:hover .member-title {color: var(--secondary);}

.member-cols .member-position {
	font-weight: 600;
	color: var(--primary-dk);
}

	



/*
 * END OF
 * CUSTOMIZABLE CSS
 */
