:root {
	
	--font-family: 'Inter', 'Pretendard', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	-webkit-tap-highlight-color: transparent!important;
}

/* reset */
ul,ol,li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
	cursor: pointer;
}

button {
	line-height: 1;
	padding: 0;
	background-color: transparent;
	outline: none;
	border: none 0;
	border-radius: none 0;
}
button:focus{ 	
	border: none!important;
	outline:none!important;
}

textarea {
	width: 100%;
	height: auto;
	border: none 0;
	background-color: #fff;
	border-radius: 4px;
	outline: none;
	resize: none;
	font-family: 'Inter', 'Pretendard', sans-serif;
  color: #666;
	font-size: 1em;
}

input[type=text], input[type=password] {
	width: 70%;
	height: 30px;
	font-size: 1.1em;
	font-family: var(--font-family);
	color: #666;
	border-radius: 4px;
	outline: none;
	border: 1px solid #fff;
	padding: 0 4px;
}

input[type=text] + input[type=password] {
	margin-left: 6px;
}

input[type=submit] {
	float: right;
	outline: none;
	background: none;
	font-family: var(--font-family);
	font-size: 1.1em;
	font-weight: normal;
	line-height: 1;
	background-color: #fff;
	border-radius: 4px;
	color: #666;
	margin: 0;
	border: 1px solid #f3f3f3;
	padding: 4px 7px;
}

code {
	font-family: var(--font-family);
}

body {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	font-size: 10px;
	color: #2f2f33;
	font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-overflow-style: none;
	scrollbar-width: none;
	background: #fbfbfb;
}
body::-webkit-scrollbar {
	display: none;
}
@media (max-width: 768px) {
	body {
		background-color: #fff;
	}
}

/* wrap */
.wrap {
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 40px auto;
	padding: 50px;
	transition: 0.5s all ease-in-out;
	background-color: #fff;
	border-radius: 30px;
	/*border: 0.5px solid rgba(0,0,0,0.05);*/
}
@media (max-width: 768px) {
	.wrap {
		padding: 50px 40px;
		margin: 0 auto;
	}
	#tt-body-page .wrap {
		padding: 0;
	}
}

/* top */
.top {
	position: relative;
	display: flex;
	justify-content: space-between;
}

#tt-body-archive .top,
#tt-body-media .top,
#tt-body-page .top {
	display: none;
}

.left {
	width: 70%;
}

.blogTitle {
	font-family: 'Pretendard', sans-serif;
	font-weight: bolder;
	font-size: 24px;
	letter-spacing: -1.5px;
	margin-bottom: 40px;
	min-height: 31px;
	align-items: center;
	display: flex;
}

.blogTitle:empty {
	display: none;
}

/* profile */
.profiles {
	display: flex;
	margin-bottom: 40px;
	padding-bottom: 40px;
}

#tt-body-archive .profiles,
#tt-body-media .profiles,
#tt-body-page .profiles  {
	display: none;
}

.profile {
	position: relative;
	display: flex;
	align-items: flex-end;
}

.profile .text {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 8px;
	letter-spacing: -0.5px;
	cursor: pointer;
	padding: 7px 9px;
	margin-left: 15px;
	background-color: #e5e5ea;
	border-radius: 10px;
	font-weight: 500;
	background: #f6f5fa;
	color: #747378;
	margin-bottom: 5px;
}

.profile .text:before {
	border-bottom-right-radius: 12.8px 11.2px;
	border-left: 1rem solid #f6f5fa;
	left: -5.6px;
	transform: matrix(1, 0, 0, 1, 0, -1.6);
	bottom: -1.6px;
	content: "";
	height: 16px;
	position: absolute;
	z-index: -1;
}

.profile .text:after {
	z-index: -1;
	background-color: #fff;
	border-bottom-right-radius: 8px;
	left: 20px;
	transform: translate(-30px, -2px);
	width: 10px;
	bottom: -3px;
	content: "";
	height: 20px;
	position: absolute;
}

.profile .img {
	display: block;
	width: 75px;
	height: 75px;
	border-radius: 9px;
	overflow: hidden;
}

.profile .img img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.profile .name {
	display: flex;
	align-items: center;
	margin-top: 16px;
}

.profile .name h4 {
	font-size: 1.400em;
	font-weight: 900;
	margin-right: 3px;
}

.profile .name svg {
	width: 16px;
	height: 16px;
	fill:rgb(29, 155, 240);
}

.profile .desc p {
	font-size: 1em;
	color: #666;
	line-height: 1.4;
	margin-top: 10px;
}

.right {
  position: relative;
}

.right a {
  display: block;
	font-weight: 400;
	font-size: 10px;
	color: #686867;
	letter-spacing: -.5px;
	padding: 9px 5px;
}

.category svg {
  width: 14px;
	height: 14px;
}

.menuBtn {
	display: flex;
	align-items: center;
	font-size: 10px;
	letter-spacing: -0.5px;
	color: #fff;
	cursor: pointer;
	padding: 7px 9px 6.5px;
	margin-left: -10px;
	margin-top: 7px;
	background-color: #3887ff;
	border-radius: 20px;
	font-weight: 500;
}

.menuList {
	margin-top: 10px;
	right: 30px;
  top: 2px;
  position: absolute;
	z-index: 4;
	transition: margin 0.3s, opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  opacity: 0;
  background: #f7f8fa;
  border-radius: 9px;
	border: 0.5px solid rgba(0,0,0,0.05);
	background: #fff;
}

.menuList > div {
	min-width: 200px;
	padding: 20px;
}
.menuList > div:first-child {
	border-bottom: .5px solid #f4f4f4;
}

.menuList.active {
  visibility: visible;
  opacity: 1;
  margin-top: 25px;
}

.menuTitle {
	color: #31302e;
	margin-bottom: 15px;
	font-size: 10px;
}

.tt_category {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 100px;
  text-align: left;
}

.tt_category li {
  width: 100%;
}

.c_cnt {
	float:right;
	color: #565655;
	opacity: .7;
	font-size: 8px;
}

.search {
	position: relative;
	height: 27px;
}

.search input[type=text] {
	background-color: transparent;
	width: 100%;
	height: 100%;
	border: none 0;
	color: #949ba3;
	font-family: var(--font-family);
	font-size: 8px;
	background-color: #fafafa;
	border: .5px solid #f3f3f3;
	text-align: center;
}

.search input[type=text]::placeholder {
	color: #adb0b3;
	font-family: var(--font-family);
	font-size: 8px;
	font-weight: 500;
}

.main {
	width: 100%;
}

/* cover */
.main > section + section {
	margin-top: 40px;
}

.coverName {
	margin-bottom: 20px;
	font-size: 16px;
	letter-spacing: -1px;
}

.coverName:empty {
	display: none;
}

#mArticle > div {
	display: grid;
	border-radius: 9px;
	grid-template-columns: 1fr 1fr 1fr;
	overflow: hidden;
	gap: 1px;
}

.thumbnail_post {
	position: relative;
	display: flex;
	cursor: pointer;
}

.thumbnail_post::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
}

.thumbnail_post img{
	width: 100%;
	aspect-ratio:  1 / 1;
	object-fit: cover;
}


/* list */
.listName  {
	margin-bottom: 50px;
}

.listName span {
	font-weight: 500;
	font-size: 9px;
	letter-spacing: -.7px;
	color: #616161;
	border-radius: 20px;
	display: inline-block;
}

.list {
	z-index: 3;
}

.list ol {
	width: 100%;
}

.list li {
	overflow: hidden;
}

.list li a {
	display: flex;
}

.thumbnail {
	display: flex;
}

.thumbnail a {
	object-fit: cover;
}

.thumbnail img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.thumbnail ol{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1px;
	overflow: hidden;
	border-radius: 9px;
}

.thumbnail .basicBox {
	display: none;
}

.basic .basicBox {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.basic .pin {
	display: none;
}

.basic .listTitle {
	width: 80%;
	font-size: 12px;
	letter-spacing: -.7px;
	line-height: 1;
}

.basic .listDate {
	opacity: .8;
	letter-spacing: -.4px;
}

@media (max-width: 768px) {
	.thumbnail ol{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

.thumbnail2 ol {
	display: grid;
	gap: 40px;
}

.thumbnail2 .listItem {
	display: grid;
	grid-template-columns: 1.8fr 1.2fr;
}

@media (max-width: 486px) {
	.thumbnail2 .listItem {
			grid-template-columns: 1fr;
			grid-row-gap: 20px;
	}
}

.thumbnail2 .listItem img {
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
	border-radius: 9px;
}

.thumbnail2 .listTitle {
	margin-top: 15px;
	font-size: 15px;
	letter-spacing: -1px;
	padding-right: 40px;
	font-weight: bold;
}

.thumbnail2 .listDate {
	font-size: 10px;
	margin-top: 10px;
	font-weight: 400;
	color: #727176;
}

.thumbnail2 .pin {
	display: inline-block;
	font-size: 9px;
	letter-spacing: -0.5px;
	padding: 3px 8px;
	border-radius: 20px;
	font-weight: 500;
	border: .5px solid #e3e4e8;
	background-color: #fff;
	color: rgb(183 183 183);
}

.basic img {
	display: none;
}

.basic ol {
	display: grid;
	gap: 60px;
	margin-top: 40px;
}

.basic .listDate i {
	display: none;
}

.listDate i {
	margin-right: 3px;
}

/* article */
figure.imageblock.alignCenter {
    margin: 5px auto 5px;
}

.articleWrap {
	width: 100%;
	overflow: hidden;
}

.articleInfo {
	padding: 30px 20px;
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) {
	.articleInfo {
		padding: 0px 0px 30px;
	}
}

.articleInfo img {
	display: none;
	width: 100%;
	aspect-ratio: 5 / 7;
	object-fit: cover;
}

.articleCate {
	display: block;
	margin-top: 16px;
	opacity: .7;
	font-size: 10px;
	letter-spacing: -0.6px;
}

.articleTitle {
	font-size: 14px;
	letter-spacing: -0.8px;
}

.articleDate {
	margin-top: 10px;
	font-size: 10px;
	opacity: .6;
	letter-spacing: -0.6px;
}

.contents_style {
	padding: 0!important;
}

.article {
	word-break: break-all;
	line-height: 1.5;
	font-size: 1.2em;
	padding: 0 10px;
}

.article {
	padding: 0;
}

@media (max-width: 768px) {
	.contents_style > *:not(figure){
		padding: 0 20px;
	}
}

.previous {
	margin-bottom: 30px;
	opacity: .7;
}

.previous svg {
	width: 11px;
	margin-right: 3px;
}

.previous button {
	display: flex;
	align-items: center;
	font-size: 10px;
	/* text-decoration: underline; */
	background: #f6f5fa;
	padding: 2px 9px;
	border-radius: 46px;
	color: #747378;
	letter-spacing: -.8px;
	cursor: pointer;
}
@media (max-width: 768px) {
	.previous {
		margin-bottom: 0;
		padding: 30px 20px 0;
	}
}

.tagTrail {
	display: flex;
	align-items: center;
	margin-top: 20px;
	opacity: .5;
}

.tagTrail .pin {
	border: 0.5px solid #e3e4e8;
	background-color: #fff;
	color: rgb(183 183 183);
	margin-right: 5px;
}

.tagTrail i {
	font-size: 8px;
}

.tagTrail a {
	font-size: 11px;
	letter-spacing: -.4px;
}

.featured-item {
	display: grid;
	grid-template-columns: 2fr 1fr;
}

.featured-item + .featured-item {
	margin-top: 40px;
}

@media (max-width: 486px) {
	.featured-item {
		grid-template-columns: 1fr ;
		grid-row-gap: 20px;
	}
}

.featured-item h6 {
	font-size: 10px;
	margin-top: 10px;
	font-weight: 400;
	color: #727176;
}

.featured-item h3 {
	margin-top: 15px;
	font-size: 16px;
	letter-spacing: -1px;
	padding-right: 40px;
}

.featured-item img {
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
	border-radius: 9px;
}

.pin {
	display: inline-block;
	background-color: #fff8e1;
	color: #ffaf0d;
	font-size: 9px;
	letter-spacing: -0.5px;
	padding: 5px 9px;
	border-radius: 20px;
	font-weight: 500;
	background-color: #e1efff;
	color: #8bb8ff;
}

.tistoryProfileLayerTrigger, .link_tit {
	display: none!important;
}

#tt-body-guestbook .tt-comment-cont {
	margin: 0 0px;
}

@media (max-width: 768px) {
	.tt-comment-cont {
		margin: 0 20px 40px;
	}
}

.tt-box-total {
	display: none;
}

.tt-thumbnail {
	width: 35px!important;
	height: 35px!important;
}

.tt-box-textarea .tt-inner-g {
	padding:0!important;
	border: none 0!important;
	overflow-y: auto!important;
}

.tt-box-textarea .tt_txt_user,.tt_btn_prev_more {
	font-family: 'Inter', 'Pretendard', sans-serif!important;
	font-size: 12px!important;
	letter-spacing: -.7px;
	font-weight: 600;
}

.tt-box-textarea textarea, .tt-box-textarea div,
.tt-wrap-cmt .tt_desc,.tt-link-comment .tt_txt_g,.tt-wrap-cmt .tt_date {
	font-family: 'Inter', 'Pretendard', sans-serif!important;
	font-size: 12px!important;
	letter-spacing: -.7px;
}

.tt-link-comment .tt_txt_g,.tt-wrap-cmt .tt_date, 
.tt-area-write .tt-box-account input {
	font-family: 'Inter', 'Pretendard', sans-serif!important;
	font-size: 10px!important;
	letter-spacing: -.7px;
}

.tt-wrap-cmt .tt-link-user {
		font-family: 'Inter', 'Pretendard', sans-serif!important;
		font-size: 12px!important;
		letter-spacing: -.7px;
		font-weight: 600;
}

.tt-btn_register {
	font-family: 'Inter', 'Pretendard', sans-serif!important;
	font-size: 10px!important;
	width: 50px!important;
	height: 24px!important;
	padding: 4px 0;
}

.tt-box-write .tt-xe-label {
	margin-top: 0!important;
}

.tt-box-write .tt-xe-input-helper {
	margin-right: 7px!important;
}

.tt-btn_register:hover {
  background-color: #181818!important;
  border: 1px solid #181818!important;
}

.tt-btn_register:focus {
  background-color: #181818!important;
  border: 1px solid #181818!important;
}

.tt-link-comment .tt_txt_g {
	padding-top: 15px!important;
}

.tt-item-reply .tt-list-reply-comment,.tt-item-reply,.tt-list-reply {
	border:none 0!important;
}

.tt-area-write .tt-box-account input {
	border: none 0!important;
	padding: 0!important;
}

.tt-box-modify button {
	padding: 0;
}

/* paging */
.paging {
	margin-top: 50px;
	display: flex;
	width: 100%;
	text-align: center;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 768px) {
	.paging {
		margin-top: 50px;
		margin-bottom: 10px;
	}
}

.paging a {
	cursor: pointer;
}

.paging .numbox {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.paging .num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #4b4a4d;
	font-size: 10px;
}

.paging .selected {
	font-weight: bolder;
}

#tt-body-page .paging {
	display: none;
}

/* tagLog */
.taglog {
	width: 100%;
}

.taglog ul {
	display: flex; 
	flex-wrap: wrap;
}

.taglog ul li {
	margin: 0 10px 10px 0;
}

.taglog ul li a {
	font-size: 10px;
	display: inline-block;
	color: #666;
	margin-right: 8px;
	margin-bottom: 8px;
	padding: 4px 7px;
	border-radius: 6px;
	transition: all .3s ease-in-out;
	background-color: #f7f7f7;
}

.taglog ul li a:hover {
	background-color: #3887ff;
	color: #fff;
}

/* fileblock */
figure.fileblock a::after, #tt-body-page figure.fileblock a::after {
	content: '';
	background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' fill='%234E4E4E'/%3E%3Cpath d='M8 12L12 16L16 12' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 8V16' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important;
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 24px;
	top: 19px;
}

figure.fileblock, #tt-body-page figure.fileblock {
	border-radius: 12px;
	font-size: 12px;
	width: 90%!important;
}

figure.fileblock .desc, #tt-body-page figure.fileblock .desc {
	left: 24px;
}

figure.fileblock .filename, #tt-body-page figure.fileblock .filename {
	font-size: 12px;
}

figure.fileblock .size, #tt-body-page figure.fileblock .size {
	font-size: 10px;
}

figure.fileblock .image, #tt-body-page figure.fileblock .image {
	display: none;
}

blockquote[data-ke-style='box'], #tt-body-page blockquote[data-ke-style='box'], blockquote[data-ke-style='style3'], #tt-body-page blockquote[data-ke-style='style3'] {
	border-radius: 12px;
	background-color: #fff;
}

/* moreless */
.btn-toggle-moreless {
	font-family: 'Inter', 'Pretendard', sans-serif!important;
  font-size: 11px!important;
}

.btn-toggle-moreless::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	background-size: cover;
	background-position: center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23909090' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.moreless-content {
	padding: 8px;
	border-left: 3px solid var(--primary-color);
}

/* postbtn */
.container_postbtn {
	padding: 35px 20px!important;
}
@media (min-width: 768px) {
	.container_postbtn {
		padding: 35px 0px!important;
	}
}

.postbtn_ccl, 
.btn_share {
	display: none;
}

.container_postbtn .postbtn_like {
	border: none 0!important;
	padding: 0!important;
}

.uoc-icon {
	padding: 0 2px 0 0!important;
}

.container_postbtn .btn_post {
	outline: none;
}

.container_postbtn .btn_post .ico_etc {
	background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-more-horizontal'%3E%3Ccircle cx='12' cy='12' r='1'%3E%3C/circle%3E%3Ccircle cx='19' cy='12' r='1'%3E%3C/circle%3E%3Ccircle cx='5' cy='12' r='1'%3E%3C/circle%3E%3C/svg%3E");
	background-position: center!important;
	width: 16px!important;
	height: 16px!important;
	background-size: cover!important;
}

.container_postbtn .btn_post .ico_like {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='12' height='12' viewBox='0 0 12 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.4457 1.97011C10.1903 1.71918 9.8871 1.52012 9.55337 1.3843C9.21964 1.24849 8.86194 1.17859 8.5007 1.17859C8.13945 1.17859 7.78175 1.24849 7.44802 1.3843C7.11429 1.52012 6.81107 1.71918 6.55569 1.97011L6.02569 2.49065L5.49569 1.97011C4.97985 1.46348 4.28021 1.17885 3.55069 1.17885C2.82118 1.17885 2.12154 1.46348 1.60569 1.97011C1.08985 2.47675 0.800049 3.16389 0.800049 3.88038C0.800049 4.59687 1.08985 5.28401 1.60569 5.79065L2.13569 6.31118L6.02569 9.82145L9.91569 6.31118L10.4457 5.79065C10.7012 5.53983 10.9039 5.24203 11.0422 4.91426C11.1804 4.58649 11.2516 4.23517 11.2516 3.88038C11.2516 3.52559 11.1804 3.17427 11.0422 2.8465C10.9039 2.51873 10.7012 2.22093 10.4457 1.97011Z' fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	background-size: auto!important;
	margin: 2px 4px 0 0!important;
}

.container_postbtn .btn_post .like_on .ico_like {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='12' height='12' viewBox='0 0 12 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.4457 1.97011C10.1903 1.71918 9.8871 1.52012 9.55337 1.3843C9.21964 1.24849 8.86194 1.17859 8.5007 1.17859C8.13945 1.17859 7.78175 1.24849 7.44802 1.3843C7.11429 1.52012 6.81107 1.71918 6.55569 1.97011L6.02569 2.49065L5.49569 1.97011C4.97985 1.46348 4.28021 1.17885 3.55069 1.17885C2.82118 1.17885 2.12154 1.46348 1.60569 1.97011C1.08985 2.47675 0.800049 3.16389 0.800049 3.88038C0.800049 4.59687 1.08985 5.28401 1.60569 5.79065L2.13569 6.31118L6.02569 9.82145L9.91569 6.31118L10.4457 5.79065C10.7012 5.53983 10.9039 5.24203 11.0422 4.91426C11.1804 4.58649 11.2516 4.23517 11.2516 3.88038C11.2516 3.52559 11.1804 3.17427 11.0422 2.8465C10.9039 2.51873 10.7012 2.22093 10.4457 1.97011Z' fill='%23f15757' stroke='%23666' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important;
}

.article .container_postbtn .btn_post .txt_like {
	font-family: 'Inter', 'Pretendard', sans-serif!important;
	font-size: 11px!important;
	margin: 0!important;
	color: #666!important;
}

.btn_subscription {
	display: none;
}

.entryProtected {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 400px;
}

.entryProtected i {
	color: rgb(138, 138, 138);
	margin-bottom: 10px;
}

.entryProtected input[type=password] {
	background-color: transparent;
	width: 120px;
	height: 27px;
	border: none 0;
	color: #949ba3;
	font-family: var(--font-family);
	font-size: 8px;
	background-color: #fafafa;
	border: .5px solid #f3f3f3;
	text-align: center;
}

.entryProtected input[type=password]::placeholder {
	color: #adb0b3;
	font-family: var(--font-family);
	font-size: 8px;
	font-weight: 500;
}

.copyright {
	position: fixed;
	right: 5px;
	bottom: 5px;
	padding: 5px;
}


