.modalWindow
{
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 1000;
}

.modalWindow .registerFrame
{
	width: 600px;
	padding: 50px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 40px -10px rgba(0,0,0,0.75);
}

.modalWindow .loginFrame
{
	width: 500px;
	padding: 50px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 40px -10px rgba(0,0,0,0.75);
}

.modalWindow h3
{
	display: block;
	width: 100%;
}

.modalWindow .inputFrame
{
	display: flex;
	align-items: center;
	justify-content:center;
	width: 100%;
	height: 30px;
	margin-bottom: 5px;
}

.modalWindow .inputFrame .iconFrame
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background-color: #000;
	border-radius: 5px 0px 0px 5px;
	color: #fff;
	font-size: 18px;
}

.modalWindow .inputFrame input
{
	display: block;
	width: 350px;
	height: 100%;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 0px 5px 5px 0px;
}

.modalWindow .inputFrame select
{
	display: block;
	width: 350px;
	height: 100%;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 0px 5px 5px 0px;
}

.modalWindow .controls
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 380px;
	height: 40px;
	margin: 0px auto 0px auto;
}

.modalWindow .controls button
{
	display: block;
	width: 180px;
	height: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 20px;
	cursor: pointer;
}

.modalWindow .controls .btnClose{
	background-color: #eee;
	transition: background-color 0.25s ease-in-out;
}

.modalWindow .controls .btnClose:hover{
	background-color: #FF6685;
}

.modalWindow .controls .btnGo{
	background-color: #eee;
	transition: background-color 0.25s ease-in-out;
}

.modalWindow .controls .btnGo:hover{
	background-color: #70CBCC;
}

.modalWindow .innerNotification
{
	display: block;
	width: 90%;
	margin: 10px auto 0px auto;
	padding: 10px;
	text-align: center;
	border-radius: 10px;
	border: 1px solid #ccc;
}

.modalWindow a
{
	display: block;
	width: 100%;
	margin-top: 10px;
	text-align: center;
	text-decoration: none;
	color: #454545;
	font-size: 16px;
}

.modalWindow .sizeGuide
{
	padding: 15px;
	background-color: #fff;
	border: 1px solid #ccc;
}

.modalWindow .btnCloseMW
{
	position: absolute;
	top: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	color: #fff;
	font-size: 50px;
	cursor: pointer;
}

.hide{
	top: -150%;
	transition: top 0.25s ease-in-out;
}

.show{
	top: 0;
	transition: top 0.25s ease-in-out;
}

/*Cart Content*/
#cartContent .productImageResume
{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 80px;
	border: 1px solid #ccc;
  border-radius: 5px;
	background-color: #fff;
  margin-right: 10px;
	overflow: hidden;
}

#cartContent .productImageResume img
{
  position: absolute;
  object-fit: cover;
	display: block;
  width: 100%;
	height: 100%;
}