@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap');
/*
[Table of contents]
1. Typography ----------------
2. Skip Content --------------
3. Header --------------------
4. Sidebar -------------------
5. Hero ----------------------
6. Footer --------------------
7. Modal --------------------
8. Cookie Alert -------------
*/

:root {
	--primary-color: #272966; /* Dark Blue */
	--secondary-color: #9ac5e0;/* Light Blue */
	--cta-primary-color: #d22525; /* Red */
	--cta-secondary-color: #fba738; /* Yellow */
	--text-primary-color: #262626;
	--text-color: #000;
	--text-light-color: #fff;
}

.baskervville-regular,
.filter-title .title,
.search .control-label,
.my-qoute .text,
.big-hero .title,
.hero-homepage .title,
.homepage-about .title,
.homepage-donaors .title,
.homepage-support .heading,
.footer-navigation .title,
.footer-submission .title {
  font-family: "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/******************************************************************************
  Main Content
*******************************************************************************/
.main-content{
	h1,
	h2,
	h3,
	h4,
	h5,
	h6{
		font-family: "Baskervville", serif;
		font-optical-sizing: auto;
		font-weight: 400;
		font-style: normal;
		color: var(--primary-color);
	}
	h1 {
		margin-bottom: 1.5rem;
	}
	h2 {
		margin-bottom: 1.2rem;
	}
	h3,
	h4,
	h5,
	h6{
		margin-bottom: 1rem;
	}
	ul li::marker {
	  color: var(--primary-color);
	}
	blockquote {
		padding-left: 1.5rem;
		border-left: 1px solid var(--primary-color);
	}
}

[id] {
	scroll-margin-top: 100px; /* Adjust as needed */
}

/* Remove default outline for all elements when focused, but not via keyboard */
*:focus:not(:focus-visible) {
	outline: none;
}

/* Apply a specific outline style when focused via keyboard */
:focus-visible {
	outline: 2px solid var(--cta-secondary-color) !important; 
	outline-offset: 2px;
	border-radius: 0 !important;
}


/******************************************************************************
  Typography
*******************************************************************************/
html {
	overflow-y: scroll;
}
body {
	font-family: Helvetica, sans-serif;
}
@media (max-width: 767.98px) {
	.is-hidden {
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}
}

input, select, button {
	color: var(--text-primary-color);
}

.btn-primary,
.btn-secondary,
.btn-transparent,
.btn-highlight {
	min-width: 170px;
	padding-top: 12px;
	padding-bottom: 12px;
	border-radius: 30px;
}

.btn-primary {
	color: var(--text-light-color);
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	
	&:focus,
	&:hover {
		color: var(--primary-color);
		background-color: var(--text-light-color);
		border-color: var(--primary-color);
	}
}

.btn-secondary {
	color: var(--primary-color);
	background-color: var(--text-light-color);
	border-color: var(--text-light-color);
	
	&:focus,
	&:hover {
		color: var(--text-light-color);
		background-color: var(--primary-color);
		border-color: var(--text-light-color);
	}
}

.btn-transparent {
	color: var(--text-light-color);
	background-color: var(--primary-color);
	border-color: var(--text-light-color);
	
	&:focus,
	&:hover {
		color: var(--primary-color);
		background-color: var(--text-light-color);
		border-color: var(--text-light-color);
	}
}

.btn-highlight {
	color: var(--primary-color) !important;
	background-color: var(--cta-secondary-color);
	border-color: var(--cta-secondary-color);

	&:focus,
	&:hover {
		border-color: var(--primary-color);
	}
}

.btn-chevron {
	position: relative;

	.fa-chevron-right {
		position: absolute;
		right: 1rem;
		top: 50%;
		transform: translateY(-50%);
	}
}

.link-more {
	color: var(--text-primary-color);
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2rem;
}

.link-default {
	color: var(--highlight-color);
	font-weight: bold;
	text-decoration: none;
}

.link-more:hover,
.link-default:hover {
	color: var(--primary-color);
	
	.fa-arrow-right-long {
		animation: arrow-float 0.5s ease-in-out infinite;
	}
}

.bg-primary {
	background-color: var(--primary-color) !important;
}
.bg-secondary {
	background-color: var(--secondary-color) !important;
}

@keyframes arrow-float {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 767.98px) {
	.btn-primary,
	.btn-secondary,
	.btn-highlight {
		min-width: 130px;
	}
}

/******************************************************************************
  Skip Content
*******************************************************************************/
a.skip {
	position: absolute;
	top: -1000px;
	left: -1000px;
	height: 1px;
	background: white;
	padding: 1rem 1.25rem 1.25rem 1.25rem;
    margin: .75rem 0 0 .75rem;
    box-shadow: 0 0 .875rem 0 rgba(15, 17, 17, .5);
	border-radius: .5rem;
	font-weight: bold;
	text-decoration: none;
	color: black;
	width: 1px;
	text-align: left;
	overflow: hidden;
	z-index: 999;
	
	&:active,
	&:focus,
	&:hover {
		left: 0;
		top: 0;
		width: auto;
		height: auto;
		overflow: visible;
		z-index: 1021;
	}
}

#skip-links {
	position: fixed;
    left: -625rem;
    top: 0;
    padding: 1rem 1.25rem 1.25rem 1.25rem;
	width: 150px;
    max-width: 26.25rem;
    border-radius: .5rem;
    background: white;
    margin: .75rem 0 0 .75rem;
    box-shadow: 0 0 .875rem 0 rgba(15, 17, 17, .5);
    z-index: 1500;
    line-height: 1.25rem;
    font-size: .875rem;
	
	&:focus-within {
		left: 0;
	}
	
	.heading {
		font-size: 1rem;
		font-weight: bold;
	}
	.list {
		margin-bottom: 0;
		padding-left: 0;
		list-style: none;
		
		li {
			margin-bottom: 0.25rem;
		}
	}
	.link {
		text-decoration: none;
	}
}

/******************************************************************************
  Header
*******************************************************************************/
.header-brand {
	margin-top: -0.5rem;
}
.header-brand img {
	width: 280px;
	transition: opacity 500ms ease-out;
	
	&:hover {
		opacity: 0.8;
	}
}
.header-menu {
	display: flex;

	.navbar-toggler {
		background-color: var(--secondary-color);
		padding: 0 1.5rem;
		cursor: pointer;
		font-size: 36px;
		line-height: 0;
		border: none;
		box-shadow: none;
		border-radius: 0;
		color: var(--text-light-color);
	}
}

.header-nav {
  	gap: 40px;
	
	li.active {
		position: relative;
		
		&:before {
			content: '';
			position: absolute;
			top: -35px;
			left: 0;
			width: 100%;
			height: 5px;
			background-color: var(--cta-primary-color);
		}
	}
}

.header-nav a {
	font-size: 1.2rem;
	text-decoration: none;
	color: var(--text-primary-color);
	
	&:hover{
		text-decoration: underline;
/* 		text-underline-offset: 1em;
		text-decoration-thickness: 2px;
		text-decoration-color: var(--highlight-color); */
	}
}

.navbar-menu {
	border: none;
	background: none;

	.fa-bars {
		font-size: 2rem;
	}
}

.navbar-toggler {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
	.header-navbar {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	.header-brand {
		margin-top: -1rem;
	}
	.header-brand img {
		width: 467px;
	}
	.header-link {
		width: 150px;
	}
}
@media (min-width: 992px) and (max-width: 1199.98px) {
	.header-brand img {
		width: 300px;
	}
	.header-nav li.active:before {
		top: -21px;
	}
}
/******************************************************************************
  Sidebar
*******************************************************************************/
.sidebar {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 5;
	top: 0;
	right: 0;
	background-color: var(--text-primary-color);
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;

	a {
		padding: 1rem 1rem 1rem 2rem;
		text-decoration: none;
		/* font-size: 25px; */
		color: #f1f1f1;
		display: block;
		transition: 0.3s;
		
		&:hover {
			/* color: #f1f1f1; */
			background-color: rgba(0, 0, 0, 0.2);
		}
	}

	.closebtn {
		position: absolute;
		top: 0;
		right: 0;
		padding: 1rem 2rem;
		font-size: 36px;
		line-height: 1;
		margin-left: 50px;
	}
}

.left-sidebar {
	background: var(--text-light-color);
	background: linear-gradient(0deg,var(--secondary-color) 0%, var(--text-light-color) 100%);
}
/******************************************************************************
  Hero
*******************************************************************************/

.big-hero {
	background-color: var(--primary-color);
}

/* @media (min-width: 768px) {
	.bg-hero {
		background-image: url('/_resources/images/hero-background.jpg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
} */


/******************************************************************************
  Homepage
*******************************************************************************/
/* .hero-homepage */
.hero-homepage {
    padding-top: 1.5rem;
	background: var(--text-light-color);
	background: linear-gradient(0deg, rgba(154, 197, 224, 1) 0%, rgba(255, 255, 255, 1) 50%);
	color: var(--primary-color);

	.sub-text-highlight {
		background-color: var(--cta-primary-color);
		color: var(--text-light-color);
		line-height: 2;
	}
	
    .tool-search {
        position: relative;
        width: 100%;
        max-width: 335px;
        margin: 0 auto;
    }
    .tool-ask-ai {
        position: relative;
        margin-top: 1rem;

        .btn {
            width: 100%;
            max-width: 335px;
        }
    }
    .form-control {
        padding: 16px 44px 16px 24px;
        border-radius: 30px;
		border-color: var(--primary-color);
    }
    .form-submit {
        background: none;
        border: none;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
		font-size: 1.25rem;
		color: var(--primary-color);
    }
    .figure {
        overflow: hidden;
        width: 100%;
        height: 200px;
		
		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
    }
	
	& + p {
		display: none;
	}
}

/* .homepage-about */
.homepage-about {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* .homepage-donaors */
.homepage-donaors {
	color: var(--primary-color);
	
    .list {
        .item {
            margin-bottom: 1rem;
        }
    }
}

/* .homepage-support */
.homepage-support {
	color: var(--primary-color);
	
	.block {
		padding: 1.5rem;
		/* background-color: #ffffffa1; */
	}
	.video {
        position: relative;
    }
}

/* .footer-submission */
.footer-submission {
	background-color: var(--primary-color);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
	text-align: center;
	color: var(--text-light-color);
	
	.title {
		color: var(--text-light-color);
	}

    .group-button {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
	
	& + p {
		display: none;
	}
}

/* .footer-navigation */
.footer-navigation {
    text-align: center;
    
    .block {
        padding: 1.5rem;
		background: linear-gradient(5deg, var(--secondary-color) 0%, rgb(252 252 252 / 100%) 70%);
    }

    .text {
        max-width: 500px;
        margin: 0 auto;
    }

/*     .nav-1 {
        background: #c2c2c2;
        background: linear-gradient(0deg,rgba(194, 194, 194, 1) 0%, rgba(235, 235, 235, 1) 100%);
    }

    .nav-2 {
        background: #EBEBEB;
        background: linear-gradient(0deg,rgba(235, 235, 235, 1) 0%, rgba(194, 194, 194, 1) 100%);
    }
	
	.nav-3 {
        background: #c2c2c2;
        background: linear-gradient(0deg,rgba(194, 194, 194, 1) 0%, rgba(235, 235, 235, 1) 100%);
    } */
	
	& + p {
		display: none;
	}
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hero-homepage {
        padding-top: 3rem;
		
		.title {
			max-width: 600px;
			margin: 0 auto;
		}

        .tools {
            display: flex;
            justify-content: center;
        }
        .tool-search {
            margin: 0;
        }
        .tool-ask-ai {
            padding-left: 30px;
            margin-top: 0;
            margin-left: 30px;

            .btn {
                width: auto;
                height: 100%;
            }

            &::before {
                content: "";
                position: absolute;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                width: 1px;
                height: 50%;
                background-color: rgba(0, 0, 0, 0.3);
            }
        }
        .form-control {
            padding: 16px 44px 16px 24px;
            border-radius: 30px;
        }
        .form-submit {
            background: none;
            border: none;
        }
        .form-submit {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
        }
        .figure {
            max-width: 1058px;
            height: 280px;
            vertical-align: bottom;
        }
    }

    .homepage-about {
        padding-top: 3rem;
        padding-bottom: 0;

        .block {
            padding-left: 3rem;
            padding-right: 3rem;

            &::after {
                content: "";
                position: absolute;
                bottom: -75px;
                left: 0;
                width: 100%;
                height: 75px;
                background: var(--primary-color);
                clip-path: polygon(50% 100%, 0 0, 100% 0);
            }
        }

    }

    .homepage-donaors {
        padding-top: calc(2rem + 75px) !important;

        .title {
            position: relative;

            &::after {
                content: "";
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                width: 100%;
                height: 1px;
                background-color: #6f6f6f; 
            }

            span {
                background-color: #0d6efd;
                padding: 0 15px;
                position: relative;
                z-index: 1;
            }
        }

        .list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px 50px;

            .item {
                flex: 0 0 auto;
            }
        }
    }

	.homepage-support {
		.block {
			padding: 3rem;
		}
		.content {
			display: flex;
			flex-direction: column;
			justify-content: center;
		}
	}

    .footer-submission {
        padding-top: 3rem;
        padding-bottom: 3rem;
        text-align: left;

        .block {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
		
		.title {
			max-width: 400px;
		}

        .group-button {
            flex-wrap: nowrap;
        }
    }
	
	.foot-navigation .block {
	  
	}

    .footer-navigation {
        .block {
            padding: 3rem;
			flex: 1 1 0;
        }
		
		/* Two elements */
		&:has(.block:nth-child(2):last-child) .block {
		  width: 50%;
		}

		/* Three elements */
		&:has(.block:nth-child(3):last-child) .block {
		  width: 33.33%;
		}
    }
}

/******************************************************************************
  About page
*******************************************************************************/
/* blockquote */
.my-qoute {
	.image {
		margin-top: 1.5rem;
		text-align: center;
	}
	
	.text {
		flex: 1;
		font-size: 1.5rem;
		border: none;

		&::before,	
		&::after {
			position: relative;
			display: inline-block;
			font-family: 'Font Awesome 6 Sharp';	
			font-weight: 900;
			font-size: 1.5em;
			color: var(--primary-color);
			line-height: 1;
		}
		&::before {
			content: '\f10d';
			top: -1rem;
			margin-right: 0.5rem;
		}	
		&::after {
			content: '\f10e';
			bottom: -1rem;
			margin-left: 0.5rem;
		}
	}
}

.team-member {
	.image {
		flex: 0 0 100px;
	}
}



@media (min-width: 992px) {
    .my-qoute {
        .image {
            order: 1;
            width: 320px;
			margin-top: 0;
        }
		.text {
			order: 2;
			font-size: 2rem;

			&::before,	
			&::after {
				font-size: 1.5em;
			}
		}
    } 
	
	.team-member {
		.image {
			flex: 0 0 220px;
		}
	}
}
/******************************************************************************
  Footer
*******************************************************************************/
.footer {
	border-top: 1px solid #ccc;
	color: var(--text-light-color);
	text-align: center;

	.footer-brand img {
		width: 200px;
	}
	
	.footer-links {
		display: flex;
		flex-wrap: wrap;
		
		li {
			width: 50%;
			text-align: center;
		}
	}
	.link {
		text-decoration: none;
		color: var(--text-primary-color);
		
		&:hover{
			text-decoration: underline;
			text-underline-offset: 0.2em;
		}
	}
	.footer-bottom {
		padding: 1rem 0;
		background-color: var(--text-primary-color);
		font-size: 0.7rem;
		
		.link {
			color: var(--text-light-color);
		}
	}
}

@media (min-width: 768px) {
	.footer {
		.footer-brand {
			margin-top: -1rem;
		}
		.footer-brand img {
			width: 380px;
		}
		.footer-links {
			gap: 20px;
			
			li {
				width: auto;
			}
		}
		.footer-bottom {
			font-size: 0.9rem;
		}
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.footer-brand {
		margin-top: 0;
	}
	.footer-brand img {
		width: 300px;
	}
}
/******************************************************************************
  Modal
*******************************************************************************/
.top-right {
	position: absolute;
	right: 0;
	top: 0;
}

/******************************************************************************
  Cookie Alert
*******************************************************************************/
.cookiealert {
    position: fixed !important;
    bottom: 0; 
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0 !important;
    transform: translateY(100%);
	transition: all 500ms ease-out;
    color: #ecf0f1;
    background-color: rgba(0,0,0,.9);
	font-size: 0.8rem;
}
@media (min-width: 768px) {
	.cookiealert,
	.cookiealert .btn {
		font-size: 1rem;
	}
}
.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
.cookiealert a {
    text-decoration: underline;
    color: var(--text-light-color) !important;
}
.cookiealert .acceptcookies {
    margin-left: 0px;
	min-width: 80px;
}
.cookiealert .declinecookies {
	min-width: 80px;
}
#cookie-popup-alert #decline-button.btn-cookies {
    padding: 0;
    text-decoration: underline !important;
}


/******************************************************************************
  Video
*******************************************************************************/
.load-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 112px;
	height: 112px;
	cursor: pointer;

	.icon {
		width: 100%;
		height: 100%;
	}
}

/******************************************************************************
  Search
*******************************************************************************/
/* Search Programs */
.programs-search {
	input, 
	select {
		width: 100%;
		padding: 1rem;
		border: none;
	}
	select {
		min-width: 200px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
	}
	.text-input-wrapper {
		position: relative;
	}
	.icon {
		width: 16px;
		position: absolute;
		top: 50%;
		right: 1rem;
		transform: translateY(-50%);
		color: var(--color-black);
		pointer-events: none;
	}
}
@media (max-width: 575.98px) {
	.programs-search {
		input, 
		select {
			padding: 0.5rem;
		}
	}
}

.show-more-btn {
	display: flex;
    align-items: center;
	text-decoration: none;
	color: var(--primary-color);
	
	&::after {
		content: '\f178';
		display: inline-block;
		font-family: 'Font Awesome 6 Pro'; 
		font-size: 1.2rem;
		color: var(--primary-color);
		line-height: 1;
		margin-left: 1rem;
	}
}

/* shows list */
.all-shows {
	margin-left: -1rem;
	margin-right: -1rem;

	.card {
		border: none;
	}
	
	.figure {
		min-height: 100px;
		background-color: var(--text-light-color);
	}

	.mix {
		/* width: 100%; */
		width: calc(100% / 2 - ((0.3rem) / 2));
		display: inline-block;
		vertical-align: top;
		/* margin-bottom: 1rem; */
	}
	
	.fail-message {
		text-align: center;
		opacity: 0;
		visibility: hidden;
	}
	&.mixitup-container-failed {
		.fail-message {
			opacity: 1;
			visibility: visible;
		}
	}
}
@media (max-width: 991.98px) {
	.all-shows { 
		margin-left: -0.3rem;
		margin-right: -0.3rem;
		
		.card-body {
			padding: 0.4rem 0.3rem;
		}
	}
	
}
@media (min-width: 992px) and (max-width: 1199.98px) {
	.all-shows .mix {
		width: calc(100% / 3 - ((1rem) / 3));
	}
}
@media (min-width: 1200px) {
	.all-shows .mix {
		width: calc(100% / 4 - ((1rem) / 4));
	}
}

.bio-name {
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
}

/******************************************************************************
  Image Hover Effects
*******************************************************************************/
.image-hover-01 {
	.figure {
		overflow: hidden;

		img {
			-webkit-transform: scale(1);
			transform: scale(1);
			-webkit-transition: .3s ease-in-out;
			transition: .3s ease-in-out;

			&:hover {
				-webkit-transform: scale(1.1);
				transform: scale(1.1);
			}
		}
	}
}

/* load-video */
.load-video {
	img {
		opacity: 1;
		-webkit-transition: .3s ease-in-out;
		transition: .3s ease-in-out;

		&:hover {
			opacity: 0.5;
		}
	}
}

/* scroll-margin-top */
.scroll-mt{
	scroll-margin-top: 60px;
	scroll-snap-margin-top: 60px; /* iOS 11 and older */
}
@media (min-width: 768px) {
	.scroll-mt  {
		scroll-margin-top: 80px;
	}
}


/******************************************************************************
  Search Page
*******************************************************************************/
.faculty-search {
	.checkbox-wrapper {
		max-height: 200px;
		overflow: hidden;
		
		&.is-active {
			max-height: none;
		}
		.form-check {
			margin-bottom: 0.1rem;
		}
	}
	
	.search-wrapper {
		padding: 1rem 0;
		background-color: var(--primary-color);
		background: linear-gradient(75deg,rgba(39, 41, 102, 1) 29%, rgba(39, 41, 102, 0.8) 61%, rgba(39, 41, 102, 1) 100%);
		color: #fff;
	}
	.filter-title {
		display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		padding: 1rem 0;
		
		.title {
			font-size: 1.3rem;
			border: 1px solid #888c8c;
			padding: 0.25rem 1rem;
			border-radius: 2rem;
		}
		.btn-link {
			color: var(--text-primary-color);
		}
	}
	.search {

		label {
			font-size: 1.5rem;
		}
	}
	.form-submit {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 42px;
		height: 42px;
		border: none;
		background: none;
		color: #BEBEBE;
		font-size: 1rem;
	}

	i[class*="fa-caret"] {
		font-size: 1rem;
	}
	h4[class*="js-order"] {
		cursor: pointer;
	}
}
.search-result {
	.row {
		padding: 1rem;
	}
	.row:nth-child(odd) {
		background-color: #27296610;
	}
	.head-row {
		padding-right: 0 !important;
		padding-left: 0 !important;
		background-color: var(--text-primary-color) !important;
		color: #fff !important;
	}
	.head-text {
		margin-bottom: 0;
		
		i[class^="fa"]{
			cursor: pointer;
		}
	}
}
#searchkey {
	padding: 0.5rem;
	font-size: 1rem;
}

@media (min-width: 768px) {
	.faculty-search {
		.search-wrapper {
			margin-bottom: 1.5rem;
			padding: 3rem 1.5rem;
		}
		.search label {
			min-width: 260px;
			font-size: 3rem;
		}
		.form-submit {
			width: 70px;
			height: 100%;
			font-size: 1.5rem;
		}
		.js-filter {
			pointer-events: none;
		}
		.filter-title {
			.title {
				border: none;
				padding: 0;
				border-radius: 0;
				font-size: 2rem;
			}
		}
	}
	.search-result {
		.row {
			padding: 1.5rem;
		}
		.head-row {
			padding-right: 1.5rem !important;
			padding-left: 1.5rem !important;
			padding-top: 1rem;
			padding-bottom: 1rem;
		}
		.head-text {
        	font-size: 1.25rem;
    	}
	}
	#searchkey {
		padding: 1rem;
		font-size: 1.5rem;
	}
}
@media (max-width: 767.98px) {
	.filter-wrapper {
        position: fixed;
		top: 0;
        left: 100%;
        right: 0;
		bottom: 0;
		width: 100%;
        height: 100vh;
        overflow: hidden;
		z-index: 1050;
    }
	.filter-wrapper.is-active {
		left: 0;
	}
	.filter-inner {
        padding-top: 100px;
		background: #0000008a;
    }
	.filter-checkbox {
		height: calc(100vh - 185px);
		padding: 0 1rem 4rem;
		overflow-x: hidden;
		overflow-y: auto;
		background: white;
	}
	.filter-result {
		background: white;
		padding: 1rem;
	}
}
/******************************************************************************
  Bio page
*******************************************************************************/
.sns {
	gap: 10px;
	z-index: 10;
	
	li {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: var(--secondary-color);
		border-radius: 5px;
		color: var(--text-light-color);
		position: relative;
		
		&.bg-fb {
			background-color: #4267B2;
		}
		&.bg-tw {
			background-color: #000000;
		}
		&.bg-em {
			background-color: #7d7d7d;
		}
	}
	
	.btn-sns,
	.twitter-share-button,
	.twitter-share-button-rendered,
	.twitter-tweet-button,
	.fb-share-button,
	.fb_iframe_widget{
		position: absolute !important;
		opacity: 0 !important;
	}
}

@media (min-width: 768px) {
	.sns {
		margin-bottom: -40px;
	}
}

/******************************************************************************
  Others
*******************************************************************************/
.responsive-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#directedit #de {
	color: var(--text-light-color);
	text-decoration: none;
	
	&:hover {
		text-decoration: underline;
	}
}