.card {
	padding-top: 20px;
}

.button-white {
	background: white;
}

.button-red {
	background: red;
	color: white!important;
}

.button-grey {
	background: grey;
	color: white!important;
}

.button-green {
	background-color: #146c43;
	border-color: #13653f;
	color: white!important;
}

.nav-login button {
	width: 120px;
}

.nav-login {
	justify-content: flex-end;
	z-index: 1;
}

.nav-logged {
	display:none;
}


.nav-logged button {
	width: 120px;
}

.nav-logged {
	justify-content: flex-end;
	z-index: 1;
}

.nav-logged span {
	color: white;
	font-size: 20px;
}

.login-container {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
}

.login-container {
	background: #fff;
	width: 410px;
	padding: 30px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.login-container .close-btn {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 18px;
	cursor: pointer;
}

.login-container .close-btn:hover {
	color: #3498db;
}

.login-container .text {
	font-size: 35px;
	font-weight: 600;
	text-align: center;
}

.login-container form {
	margin-top: -20px;
}

.login-container form .data {
	height: 45px;
	width: 100%;
	margin: 40px 0;
}

.login-container form .data label {
	font-size: 18px;
}

.login-container form .data input {
	height: 100%;
	width: 100%;
	padding-left: 10px;
	font-size: 17px;
	border: 1px solid lightgrey;
}

.login-container .forgot-pass {
	margin-left: -8px;
}

.login-container .forgot-pass a {
	color: #3498db;
	text-decoration: none;
}

.login-container .forgot-pass a:hover {
	text-decoration: underline;
}

.login-container form .btn {
	margin: 30px 0;
	height: 45px;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.login-container form .btn .inner {
	height: 100%;
	width: 300%;
	position: absolute;
	left: -100%;
	z-index: -1;
	background: -webkit-linear-gradient(right, #3643bd, #45cff6, #3643bd, #45cff6);
	transition: all 0.4s;
}

.login-container form .btn:hover .inner {
	left: 0%;
}

.login-container form .btn button {
	height: 100%;
	width: 100%;
	background: none;
	border: none;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
}

.login-container form .signup-link {
	text-align: center;
}


.login-container form .signup-link a {
	color: #3498db;
	text-decoration: none;
}

.login-container form .signup-link a:hover {
	text-decoration: underline;
}

.section-inner {
	z-index: 1;
}

.detail-container {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
    overflow-y: scroll;
    max-height: 100%;
}

.detail-container {
	background-color: #212529!important;
	border: 1px solid rgba(0,0,0,.125);
	border-radius: .25rem;
	width:720px;
}

.detail-container::-webkit-scrollbar {
width: 10px;
}

.detail-container::-webkit-scrollbar-thumb {
    background-color: #2f3542;
    border-radius: 10px;
  }

.detail-container::-webkit-scrollbar-track {
    background-color: #212529;
    border-radius: 10px;
    /*box-shadow: inset 0px 0px 5px white;*/
  }

.detail-container .close-btn {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 18px;
	cursor: pointer;
}

.detail-container .text {
	font-size: 35px;
	font-weight: 600;
	text-align: center;
}

.detail-container .description {
	font-size: 20px;
	padding: 20px;
}

.detail-container .description img.product {
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.detail-container .description img {
	width: 400px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.footer-social-links {
	font-family: monospace;
}