﻿/*======================================================================*\
|| #################################################################### ||
|| # Package - YJ Pop Login Module								        ||
|| # Copyright since 2007  Youjoomla.com. All Rights Reserved.          ||
|| # license - PHP files are licensed under  GNU/GPL V2                 ||
|| # license - CSS  - JS - IMAGE files  are Copyrighted material        ||
|| # bound by Proprietary License of Youjoomla.com                      ||
|| # for more information visit http://www.youjoomla.com/license.html   ||
|| # Redistribution and  modification of this software                  ||
|| # is bounded by its licenses                                         ||
|| # websites - http://www.youjoomla.com | http://www.yjsimplegrid.com  ||
|| #################################################################### ||
\*======================================================================*/

#hidden {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

#openLogin,
#openReg {
	background: #313131 url(../images/lock.svg);
	background-size: 14px;
	background-position: center 12px;
	background-repeat: no-repeat;
    display: block;
    
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    line-height: 34px;
    text-align: center;

    vertical-align: middle;
    cursor: pointer;
    
    width: 48px;
    height: 48px;

    border: 1px solid transparent !important;
    border-radius: 4px;
    
    text-shadow: none !important;
    text-indent: -9999px;
    padding: 6px 15px;
    margin:10px;

    box-shadow: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-sizing:border-box;
    opacity: 0;
}

#openLogin:hover {
	background: #313131 url(../images/lock.svg);
	background-size: 14px;
	background-position: center 12px;
	background-repeat: no-repeat;
	opacity: 1;
	transform: scale(1.1);
}

#closeLogin {
	background: url(../images/close.svg);
	background-size: 100%;
	position: absolute;
	top: 44px;
	right: 50px;
	width: 46px;
	height: 46px;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#closeLogin:hover {
	transform: rotate(180deg);
}

#login_pop * {
	font-family: 'Helvetica', sans-serif !important;
}

#login_pop {
	background:#ffffff;
	position:fixed;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width:500px;
	padding:50px;
	border-radius: 4px;
	z-index:1000000;
	-webkit-transform: translatex(-50%) translatey(-50%);
	-moz-transform: translatex(-50%) translatey(-50%);
	-o-transform: translatex(-50%) translatey(-50%);
	transform: translatex(-50%) translatey(-50%);
	-webkit-box-shadow: 0 0 0 999px rgba(0,0,0,0.8);
	-moz-box-shadow: 0 0 0 999px rgba(0,0,0,0.8);
	-o-box-shadow: 0 0 0 999px rgba(0,0,0,0.8);
	box-shadow: 0 0 0 999px rgba(0,0,0,0.8);
	box-sizing: border-box;
}

#login_pop h2 {
	font-size: 30px !important;
	font-weight: 500;
	color: #313131 !important;
	margin-bottom: 40px;
}

#login_pop form {
	margin-bottom: 0;
}

#login_pop form label {
	display: none;
}

#login_pop form label.remember {
	display: block;
}

#login_pop form input[type="text"],
#login_pop form input[type="password"] {
	width: 100%;
	font-size: 18px;
	font-weight: 100;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 4px;
}

#login_pop form input[type="checkbox"] {
	float: left;
    margin-right: 10px;
    margin-top: 1px;
}

#login_pop form input[type="submit"] {
	background: #313131;
	width: 100%;
	font-size: 20px;
	font-weight: 300;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#login_pop form input[type="submit"]:hover {
	background: #121212;
}

