@charset "UTF-8";

/* print setting */
@media print {
  body {
  -webkit-print-color-adjust: exact;
  top:0 !important;
  left:0 !important;
  width:200mm !important;
  height:290mm !important;
  }
  .wrap{
    overflow:visible;
    }
  }

/*===================================
  
  共通CSS

===================================*/

html {
	min-height: 100vh;
}

body {
	background: url('../img/bg.png') repeat-y center top;
	line-height: 1.2;
	padding-top: 50px;
	color: #333;
}

@media screen and (max-width:991px) {
	body {
		padding: 20px;
	}
}

img {
	max-width: 100%;
}

#wrapper {
	background: #fff;
	border: 1px solid #DECDAA;
	border-radius: 20px;
	box-shadow: 0px 8px 0px #DECDAA;
}

@media screen and (max-width:991px) {
	#wrapper {
		padding: 0;
	}
}

.cmn_flex_horizon {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

input::placeholder {
	font-family: "M PLUS 1p";
	color: #c7c7c7;
}
input.error::placeholder {
	color: #ff7c7c;
}

button {
	margin: 20px 10px 0;
	height: 50px;
	border-radius: 10px;
	color: #fff;
	max-width: 230px;
	width: 100%;
	border: none;
	font-size: 2.2rem;
	transition: .5s;
}

@media screen and (max-width:991px) {
	button {
		margin: 30px 10px 0;
		font-size: 1.6rem;
		height: 46px;
	}
}

button:hover {
	cursor: pointer;
	transition: .5s;
}

button:disabled {
    background: #b7b7b7 !important;
    border: 2px solid #b7b7b7 !important;
}

button:disabled:hover {
	cursor: unset;
	color: #fff !important;
    background: #b7b7b7 !important;
    border: 2px solid #b7b7b7 !important;
}

button.button_01 {
	font-weight: bold;
	background: #EC5DA4;
	border: 2px solid #EC5DA4;
	letter-spacing: 0.2em;
}

button.button_01:hover {
	background: #fff;
	color: #EC5DA4;
}

button.button_02 {
	font-weight: bold;
	background: #CFB06F;
	border: 2px solid #CFB06F;
}

button.button_02:hover {
	background: #fff;
	color: #CFB06F;
}

button.button_03 {
	background: #FF6E00;
	border: 2px solid #FF6E00;
}

button.button_03:hover {
	background: #fff;
	color: #FF6E00;
}

button.button_04 {
	background: #4BCB2C;
	border: 2px solid #4BCB2C;
}

button.button_04:hover {
	background: #fff;
	color: #4BCB2C;
}

button.button_05 {
	background: #2693FF;
	border: 2px solid #2693FF;
}

button.button_05:hover {
	background: #fff;
	color: #2693FF;
}

button .ico {
	width: 2.2rem;
	margin-right: 1em;
	vertical-align: middle;
	transition: inherit;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

button:hover .ico {
	transition: inherit;
	-webkit-filter: brightness(1) invert(0);
	filter: brightness(1) invert(0);
}

#cmn_title_button {
	font-size: 1.5rem;
	height: auto;
	color: #333;
	margin: 35px 0 0 40px;
	background: none;
	border-radius: unset;
	max-width: unset;
	width: auto;
	position: relative;
}

@media screen and (max-width:991px) {
	#cmn_title_button {
		font-size: 1.3rem;
		margin: 35px 0 0 20px;
	}
}

#cmn_title_button::before {
	position: absolute;
	content: "\025c0";
	color: #DEC695;
	top: 0;
	left: -2em
}

@media screen and (max-width:991px) {
	#cmn_title_button::before {
		left: -1em
	}
}

/*===================================
  
  ヘッダー

===================================*/

header {
	border-bottom: 1px solid #F2EAD9;
	margin: 0 20px;
	padding: 10px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width:991px) {
	header {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
		padding: 20px 10px 5px 10px;
	}
}

#ico_navigate {
	display: flex;
	font-family: serif;
}

@media screen and (max-width:991px) {
	#ico_navigate {
		margin: -5px 0 0 auto;
	}
}

#ico_navigate li {
	font-size: 1.2rem;
	margin-right: 10px;
	color: #F2ECE0;
	transition: .25s;
}

@media screen and (max-width:991px) {
	#ico_navigate li {
		font-size: 2.6rem;
		margin-right: 2px;
	}
}

#ico_navigate li.current {
	color: #CFB06F;
	transition: .25s;
}


/*===================================
  
  メイン

===================================*/

body:not(.media) .main {
	padding: 0px 20px 20px;
	counter-reset: catCounter;
}

h1 {
	line-height: 1;
}
@media screen and (max-width:991px) {
	h1 {
		margin-top:  20px;
	}
}

/*===================================
  
  スタート画面

===================================*/

@media screen and (max-width:991px) {
	#wrapper_start {
		position: relative;
		z-index: 0;
	}
}

#wrapper_start h1:after {
	display: inline-block;
	width: 100%;
	content: "【短縮版】";
	color: #67B765;
	font-size: 2.5rem;
	text-align: center;
}

@media screen and (max-width:991px) {
	#wrapper_start h1:after {
		padding: 2% 0 15% 10%;
		font-size: 1.8rem;
		/* width: auto; */
		text-align: left;
	}
}

@media screen and (max-width:620px) {
	#wrapper_start h1:after {
		padding: 2% 0 2% 10%;
	}
}

#block_start {
	text-align: center;
}

#block_start .cmn_flex_horizon {
	justify-content: space-between;
	align-content: center;
	margin-bottom: -20px;
}

@media screen and (max-width:991px) {
	#block_start .cmn_flex_horizon {
		display: block;
		margin-bottom: 10%;
	}
}

#block_start {
	padding: 20px;
}

@media screen and (max-width:991px) {
		#block_start {
			padding: 20px 10px;
		}
}

#block_start p {
	text-align: left;
	padding: 20px 40px 20px 20px;
	color: #545254;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

@media screen and (max-width:991px) {
	#block_start p {
		padding: 0;
		font-size: 1.2rem;
	}
}

@media screen and (max-width:991px) {
	#block_start .image {
		position: absolute;
		top: 8%;
		right: 0;
		z-index: -1;
	}
}

@media screen and (max-width:630px) {
	#block_start .image {
		width: 40%;
	}
}

#block_start label span {
	line-height: 1;
	font-size: 1.6rem;
	position: absolute;
	display: inline-block;
	background: #fff;
	color: #EC5DA4;
	font-weight: 700;
	margin: 0 1rem;
	padding: 0 2rem 0 .5rem;
	z-index: 1;
}

@media screen and (max-width:630px) {
	#block_start label span {
		font-size: 1.4rem;
	}
}

#block_start input {
	position: relative;
	width: 100%;
	max-width: 370px;
	padding: 18px 12px 12px 12px;
	border-radius: 10px;
	border: 2px solid #EC5DA4;
	height: 55px;
	font-size: 2.1rem;
	top: 0.8rem;
	left: 0;
	z-index: 0;
	margin-bottom: 0.5rem;
	color: #333;
}
@media screen and (max-width:630px) {
	#block_start input {
		font-size: 1.6rem;
	}
}


/*===================================
  
  カテゴリーヘッダー

===================================*/

.block_category_header {
	display: flex;
	align-items: center;
	padding: 0 20px;
	flex-wrap: wrap;
	justify-content: space-around;
}

@media screen and (max-width:991px) {
	.block_category_header {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 20px;
		padding: 0;
	}
}

.block_category_header .txt_answercomment {
	width: 100%;
	padding: 0 30px;
	text-align: right;
	margin: 10px 0;
}

.block_category_header h2 {
	display: flex;
	align-items: center;
	padding: 20px 15px 0 0;
	position: relative;
}

@media screen and (max-width:991px) {
	.block_category_header h2 {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: flex-end;
	}
}

.block_category_header h2 .txt_catnumber {
	vertical-align: bottom;
	color: #AAAAAA;
	font-size: 3.8rem;
	display: inline-block;
	margin-right: 10px;
	line-height: 0.8;
}

@media screen and (max-width:991px) {
	.block_category_header h2 .txt_catnumber {
		font-size: 2.8rem;
	}
}

#wrapper_category_7 .block_category_header h2 .txt_catnumber {
	position: absolute;
	top: 20px;
	left: 0px;
}

.block_category_header h2 img {
	max-width: 320px;
	width: auto;
	height: 36px;
}

@media screen and (max-width:991px) {
	.block_category_header h2 img {
		max-width: 320px;
		width: auto;
		height: 26px;
	}
}
@media screen and (max-width:991px) {
	#wrapper_category_6 .block_category_header h2 img {
		height: 26px;
	}
}
#wrapper_category_7 .block_category_header h2 img {
	height: 70px;
	margin-left: 50px;
}
@media screen and (max-width:991px) {
	#wrapper_category_7 .block_category_header h2 img {
		height: 54px;
	}
}


.block_category_header p {
	font-size: 1.5rem;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	padding-top: 20px;
	line-height: 1.6;
}

@media screen and (max-width:991px) {
	.block_category_header p {
		font-size: 1.25rem;
	}
}


/*===================================
  
  設問と回答

===================================*/

.block_category {
	padding: 0 50px;
}

@media screen and (max-width:991px) {
	.block_category {
		padding: 0 0px;
	}
}

.block_category dl {
	font-size: 1.8rem;
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width:991px) {
	.block_category dl {
		font-size: 1.4rem;
	}
}

.block_category dl dt:nth-of-type(odd),
.block_category dl dd:nth-of-type(odd) {
	background: #FCF9F4;
}

.block_category dt {
	display: flex;
	align-items: center;
	width: 65%;
}

@media screen and (max-width:991px) {
	.block_category dt {
		width: 100%;
		padding: 10px 10px 0;
	}
}

.block_category dt span {
	display: block;
	padding: 10px 80px 10px 5px;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #524B47;
	line-height: 1.4;
}

@media screen and (max-width:991px) {
	.block_category dt span {
		display: block;
		padding: 10px 0px 10px 5px;
		font-weight: bold;
		letter-spacing: 0.1em;
		color: #524B47;
		line-height: 1.4;
	}
}

.block_category dt span.txt_number {
	display: block;
	font-weight: 700;
	text-align: center;
	margin: 10px 10px 10px 5px;
	padding: 10px 0;
	border-right: 1px solid #F1E7D8;
	min-width: 40px;
	color: #6F5A31;
}

@media screen and (max-width:991px) {
	.block_category dt span.txt_number {
		margin: 10px 10px 10px 5px;
		padding: 10px 10px 10px 0px;
		min-width: 30px;
		letter-spacing: 0;
	}
}

.block_category dd {
	width: 35%;
	display: flex;
	text-align: center;
	font-weight: 700;
	color: #574E3D;
	border-left: 1px solid #CEC1A7;
	border-right: 1px solid #CEC1A7;
}

@media screen and (max-width:991px) {
	.block_category dd {
		padding: 10px 10px 0;
		width: 100%;
		border: none;
	}
}

.block_category dd:first-of-type {
	border-top: 1px solid #CEC1A7;
}

@media screen and (max-width:991px) {
	.block_category dd:first-of-type {
		border-top: none;
	}
}

.block_category dd:last-of-type {
	border-bottom: 1px solid #CEC1A7;
}

@media screen and (max-width:991px) {
	.block_category dd:last-of-type {
		border-bottom: none;
	}
}

.block_category dd label {
	display: table-cell;
	vertical-align: middle;
	border-right: 1px solid #CEC1A7;
	transition: .25s;
	width: 16.8%;
	position: relative;
}
.block_category dd label:last-of-type {
	border-right: none;
}

@media screen and (max-width:991px) {
	.block_category dd label {
		height: 3em;
		background: #fff;
		border-top: 1px solid #CEC1A7;
		border-bottom: 1px solid #CEC1A7;
	}
}

@media screen and (max-width:991px) {
	.block_category dd label:first-of-type {
		height: 3em;
		background: #fff;
		border-left: 1px solid #CEC1A7;
	}
}

@media screen and (max-width:991px) {
	.block_category dd label:last-of-type {
		border-right: 1px solid #CEC1A7;
	}
}

.block_category dd input:checked + label {
	background: #F383BB;
	color: #fff;
	transition: .25s;
}

.block_category dd label span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

.block_category dd input {
	display: none;
}

@media screen and (max-width:991px) {
	.block_category .txt_answercomment {
		width: 100%;
		padding: 10px 20px 20px;
		text-align: center;
	}
	.block_category .txt_answercomment:nth-of-type(odd) {
		background: #FCF9F4;
	}
}

/*===================================
  
  結果画面

===================================*/
.wrapper_result h1 {
  text-align: center;
  margin: 25px 0;
}
.wrapper_result h1 img{
	width: auto;
	height: 43px;
}

@media screen and (max-width:991px) {
	.wrapper_result h1 img{
		height: 36px;
	}
}

.txt_username {
	display: block;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	color: #8C8383;
}

@media screen and (max-width:991px) {
	.txt_username {
		font-size: 1.4rem;
	}
}


/*===================================
  
  チャート

===================================*/

#wrapper_chart {
	position: relative;
}

@media screen and (max-width:991px) {
	#wrapper_chart {
		margin-top: 30px;
	}
}

#block_chart {
	padding: 100px 250px;
}

@media screen and (max-width:991px) {
	#block_chart {
		padding: 10% 20%;
	}
}

#wrapper_chart ul {
	width: 100%;
	height: 100%;
}

#wrapper_chart ul li {
	position: absolute;
	font-size: 1.8rem;
	font-weight: bold;
}
@media screen and (max-width:991px) {
  #wrapper_chart ul li {
    font-size: 1.2rem;
  }
}

#wrapper_chart ul li span {
	font-size: 4.0rem;
	color: #EC5DA4;
	font-weight: 700;
	vertical-align: middle;
}
@media screen and (max-width:991px) {
  #wrapper_chart ul li span {
    font-size: 5vw;
  }
}

#wrapper_chart ul li:first-of-type span,
#wrapper_chart ul li:nth-child(5) span{
	padding: 0 0 0 10px;
	display: inline-block;
	margin-top: -6px;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li:first-of-type span,
	#wrapper_chart ul li:nth-child(5) span{
		margin-top: -2px;
		padding: 0 0 0 5px;
	}
}

#wrapper_chart ul li.label1 {
	width: 100%;
	text-align: center;
	top: 40px;
	font-weight: bold;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li.label1 {
		top: 1%;
	}
}

#wrapper_chart ul li.label2 {
	top: 100px;
	right: 200px;
	text-align: center;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li.label2 {
    top: 10%;
    right: 10%;
	}
}

#wrapper_chart ul li.label2 span {
	display: block;
}

#wrapper_chart ul li.label3 {
	top: 260px;
	text-align: center;
	right: 160px;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li.label3 {
		top: 40%;
		right: 1%;
	}
}

#wrapper_chart ul li.label3 span {
	display: block;
}

#wrapper_chart ul li.label4 {
	bottom: 110px;
	right: 160px;
	text-align: center;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li.label4 {
    bottom: 8%;
    right: 7%;
	}
}

#wrapper_chart ul li.label4 span {
	display: block;
}

#wrapper_chart ul li.label5 {
	bottom: 50px;
	width: 100%;
	text-align: center;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li.label5 {
		bottom: 1%;
	}
}

#wrapper_chart ul li.label6 {
	bottom: 110px;
	left: 150px;
	text-align: center;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li.label6 {
    bottom: 6%;
    left: 3%;
	}
}

#wrapper_chart ul li.label6 span {
	display: block;
}

#wrapper_chart ul li.label7 {
	top: 260px;
	text-align: center;
	left: 110px;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li.label7 {
		top: 37%;
		left: -2%;
	}
}

#wrapper_chart ul li.label7 span {
	display: block;
}

#wrapper_chart ul li.label8 {
	top: 100px;
	left: 200px;
	text-align: center;
}

@media screen and (max-width:991px) {
	#wrapper_chart ul li.label8 {
    top: 10%;
    left: 3%;
	}
}

#wrapper_chart ul li.label8 span {
	display: block;
}

.txt_notes{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	text-align: center;
	padding: 0 0 40px 0;
	line-height: 1.6;
}

@media screen and (max-width:991px) {
	.txt_notes{
		text-indent: -1em;
		padding: 30px 0 0 0;
	}
}


/*===================================
  
  回答履歴

===================================*/

.wrapper_scoreboard h2 {
	display: block;
	text-align: center;
	font-size: 2.0rem;
	background: #CFBD96;
	margin: 0 18px 30px;
	padding: 10px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.2em;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

@media screen and (max-width:991px) {
	.wrapper_scoreboard h2 {
		display: block;
		text-align: center;
		font-size: 1.4rem;
		background: #CFBD96;
		margin: 30px 0 20px;
		padding: 10px;
		font-weight: 700;
		color: #fff;
		letter-spacing: 0.2em;
		font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	}
}

#block_scoreboard {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	padding: 0 20px;
}

@media screen and (max-width:991px) {
	#block_scoreboard {
		padding: 0;
	}
}

#block_scoreboard h3 {
	font-size: 1.8rem;
	color: #6F5A31;
	font-weight: 700;
	margin-bottom: 10px;
}

@media screen and (max-width:991px) {
	#block_scoreboard h3 {
		font-size: 1.4rem;
	}
}

#block_scoreboard .block_category {
	padding: 0;
	margin-bottom: 60px;
	width: calc( 50% - 20px);
}

.html2pdf_encoding #block_scoreboard .block_category  {
	margin-bottom: 20px !important;
}
@media screen and (max-width:991px) {
	#block_scoreboard .block_category {
		width: 100%;
		margin-bottom: 30px;
	}
}

#block_scoreboard .block_category:nth-of-type(odd) {
	margin: 0 0 30px 0;
}

@media screen and (max-width:991px) {
	#block_scoreboard .block_category:nth-of-type(odd) {
		margin-right: 0;
		margin-bottom: 30px;
	}
}

#block_scoreboard .block_category dl {
	font-size: 2.4rem;
}

#block_scoreboard .block_category dt {
	width: calc( 100% - 55px);
}

@media screen and (max-width:991px) {
	#block_scoreboard .block_category dt {
		padding: 0;
		width: 85%;
		font-size: 1.2rem;
	}
}

#block_scoreboard .block_category dt span {
	font-size: 1.6rem;
}

#block_scoreboard .block_category dd {
	width: 55px;
	color: #EC5DA4;
	font-weight: 700;
	position: relative;
}

@media screen and (max-width:991px) {
	#block_scoreboard .block_category dd {
		padding: 0.5em;
		width: 15%;
		color: #EC5DA4;
		font-weight: 700;
		border-left: 1px solid #8F763F;
		border-right: 1px solid #8F763F;
	}
	#block_scoreboard .block_category dd:first-of-type{
		border-top: 1px solid #8F763F;
	}
	#block_scoreboard .block_category dd:last-of-type{	
		border-bottom: 1px solid #8F763F;
	}
}

#block_scoreboard .block_category dd span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

#block_scoreboard .block_annotation {
	margin: 50px auto 30px;
	text-align: center;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

@media screen and (max-width:991px) {
	#block_scoreboard .block_annotation {
		margin: 50px auto 0px;
	}
}

@media screen and (max-width:991px) {
	#block_scoreboard .block_annotation p.disp_sp{
		text-align: left;
	}
}


/*===================================
  
  ボタンエリア

===================================*/

.block_controller {
	width: 100%;
	text-align: center;
}

@media screen and (max-width:991px) {
	.block_controller {
		display: flex;
		justify-content: center;
	}
}


/*===================================
  
  設問注釈

===================================*/

.block_annotation {
	margin: 40px auto 0;
	width: 94%;
	letter-spacing: 0.1em;
	color: #524B47;
	line-height: 1.8;
}

@media screen and (max-width:991px) {
	.block_annotation {
		margin: 10px auto 0;
		width: 94%;
		letter-spacing: 0.1em;
		color: #524B47;
		line-height: 1.6;
	}
}

.block_annotation ul li{
	position: relative;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.block_annotation ul li::before{
	content: "※";
	position: absolute;
	top: 0;
	left: -1em;
}

/*===================================
  
  フッター

===================================*/

footer {
	margin: 20px 0;
	text-align: center;
	font-size: 1.3rem;
	color: #C5AE81;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

@media screen and (max-width:991px) {
	footer {
		margin: 20px;
		font-size: 1.0rem;
	}
}



/*===================================
  
  集計結果

===================================*/
.block_not_inPDF {
	display: none;
}

#result #block_scoreboard .block_category dt span.txt_number {
	padding: 10px 0;
	font-size: 1.8rem;
}
@media screen and (max-width:991px) {
	#result #block_scoreboard .block_category dt span.txt_number {
		font-size: 1.3rem;
	}
}
#result #block_scoreboard .block_category dt span {
	padding: 10px 5px 10px 5px;
	font-size: 1.5rem;
}
@media screen and (max-width:991px) {
	#result #block_scoreboard .block_category dt span {
		font-size: 1.2rem;
	}
}
@media screen and (max-width:991px) {
	#result #block_scoreboard .block_category dd {
		display: block;
		font-size: 2.0rem;
	}
}
#result .cv_btn {
	margin-bottom: 80px;
}
@media screen and (max-width:991px) {
	#result .cv_btn button {
		margin: 30px 10px 0;
		font-size: 1.5rem;
		height: 46px;
		font-weight: bold;
	}
}
.swal-title{
	font-size: 1.6rem;
	padding: 0;
}
@media screen and (max-width:991px) {
	.swal-title{
		font-size: 1.4rem;
		padding: 0;
		width: 70%;
		margin: 0 auto;
	}
}
.swal-content__input, .swal-content__textarea{
	font-size: 1.6rem;
}
.swal-text{
	font-weight: bold;
	font-size: 1.8rem;
}
@media screen and (max-width:991px) {
	.swal-text{
		font-size: 1.4rem;
	}
}
.swal-button{
	background-color: #2693FF;
	font-size: 1.6rem;
	letter-spacing: 0.3em;
	padding: 6px 30px 6px 36px; 
	height: 40px;
}
@media screen and (max-width:991px) {
	.swal-button{
		font-size: 1.3rem;
	}
}
.swal-footer{
	margin-top: 0;
}


/*===================================
  
  ローディングアニメーション

===================================*/
#wrapper_loading {
	display: none;
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    left: 0;
    background: rgb(0 0 0 / 90%);
    align-items: center;
    justify-content: center;
}

.loader {
	margin: 100px auto;
	font-size: 25px;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: relative;
	text-indent: -9999em;
	-webkit-animation: load5 1.1s infinite ease;
	animation: load5 1.1s infinite ease;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	z-index: 100;
  }
  @-webkit-keyframes load5 {
	0%,
	100% {
	  box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
	}
	12.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
	}
	25% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	37.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	50% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	62.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	75% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	87.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
	}
  }
  @keyframes load5 {
	0%,
	100% {
	  box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
	}
	12.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
	}
	25% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	37.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	50% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	62.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	75% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	87.5% {
	  box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
	}
  }
  