

/*********************************************************** phone */
	#BottomBarWrapper2 {
		width: calc(100% - 40px);
	}
	
	#BottomBarWrapperLeft {
		width: 100%;
		margin: 0px;
	}

	#BottomBarWrapperRight {
		margin: 20px auto 0px auto;
	}
	
	#BottomTextWrapper {
		text-align: center;
	}

/*********************************************************** tablet */
@media screen and (min-width: 800px) {
	#BottomBarWrapper2 {
		width: calc(100% - 60px);
	}
	
	#BottomBarWrapperLeft {
		width: calc(100% - (24px + 28px + 24px + 28px + 24px + 2px));
		margin: 0px;
	}

	#BottomBarWrapperRight {
		margin: 0px;
	}
	
	#BottomTextWrapper {
		text-align: left;
	}
}


/*********************************************************** web */
@media screen and (min-width: 1120px) {
	#BottomBarWrapper2 {
		width: calc(100% - 100px);
	}
	
	#BottomBarWrapperLeft {
		width: calc(100% - (24px + 28px + 24px + 28px + 24px + 2px));
		margin: 0px;
	}

	#BottomBarWrapperRight {
		margin: 0px;
	}
	
	#BottomTextWrapper {
		text-align: left;
	}
}


/*********************************************************** web-max */
@media screen and (min-width: var(--large-screen-width)) {
	#BottomBarWrapper2 {
		width: calc(100% - 100px);
	}
	
	#BottomBarWrapperLeft {
		width: calc(100% - (24px + 28px + 24px + 28px + 24px + 2px));
		margin: 0px;
	}

	#BottomBarWrapperRight {
		margin: 0px;
	}
	
	#BottomTextWrapper {
		text-align: left;
	}
}
/********************************************************************************************************************/


#BottomBarWrapper {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	
	background: rgb(239, 239, 239);
	margin: auto;
}

#BottomBarWrapper2 {
	position: relative;
	top: 0px;
	left: 0px;
	max-width: calc(var(--large-screen-width) - 100px);
	
	background: transparent;
	margin: auto;
	
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
}

#BottomBarWrapperLeft {
	position: relative;
	height: 24px;
	
	margin: 0px;
	
	display: inline-block;
}

#BottomBarWrapperRight {
	position: relative;
	width: calc(24px + 28px + 24px + 28px + 24px + 2px);
	height: 24px;
	
	display: inline-block;
}

#BottomBarWrapperRightIcon1 {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 24px;
	height: 24px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/bottom-icon-1.svg");
	
	display: block;
}
#BottomBarWrapperRightIcon2 {
	position: absolute;
	left: 52px;
	top: 0px;
	width: 24px;
	height: 24px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/bottom-icon-2.svg");
	
	display: block;
}
#BottomBarWrapperRightIcon3 {
	position: absolute;
	left: 104px;
	top: 0px;
	width: 24px;
	height: 24px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/bottom-icon-3.svg");
	
	display: block;
}

#BottomTextWrapper {
	position: relative;
	width: 100%;
	
	margin: auto;
	
	font-family: gothamlight;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1px;
	color: rgb(128, 128, 128);
	text-decoration: none;
	line-height: 20px;
}