/* CUSTOM FORM ELEMENTS */
input,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
progress {
	width: 240px;
	margin: 0 10px 1px 15px;
	/*border: 4px solid #444;*/
}
button.addRemove {
	width: 50px;
	height: 32px;
	font-size: 14px;
	color: #aaa;
	background-color: #555;
	padding-top: 2px;
	margin: 2px 0px 2px 10px;
	border: 1px solid #444;
	border-radius: 5px;
	box-shadow: 0px 1px 3px #222;
	cursor: pointer;
}
button.fxw {
	width: 120px;
	height: 32px;
	font-size: 14px;
	color: #aaa;
	background-color: #333;
	padding-bottom: 2px;
	margin: 0px 0px 2px 10px;
	border: 1px solid #444;
	border-radius: 5px;
	box-shadow: 0px 1px 3px #222;
	cursor: pointer;
}
.save {
	width: 140px;
	height: 32px;
	font-size: 14px;
	color: #7fdc19 !important;
	background-color: #333;
	padding-bottom: 2px;
	margin: 0px 10px 2px 10px;
	border: 1px solid #555 !important;
	border-radius: 5px;
	box-shadow: 0px 2px 3px #222;
	cursor: pointer;
	/*float: right;*/
}
button.closeBtn {
	width: 32px;
	height: 32px;
	font-size: 20px;
	color: #7fdc19;
	background-color: #333;
	margin: 0px 10px 2px 10px;
	border: 1px solid #115711;
	border-radius: 16px;
	box-shadow: 0px 1px 3px #222;
	cursor: pointer;
	float: right;
}
h2 button.closeBtn {
	margin-top: -5px;
}
button.tab {
	width: 46px;
	height: 36px;
	font-size: 14px;
	text-align: center;
	color: #aaa;
	background: #2a2a2a;
	margin: 2px 10px 0px 7px;
	border: 1px solid #115711;
	border-radius: 5px;
	box-shadow: 0px 1px 3px #222;
	cursor: pointer;
}
button.tab img {
	border: 1px solid #fff;
}
button.addRemove:hover,
button.fxw:hover,
button.tab:hover,
button.save:hover,
button.closeBtn:hover {
	background-color: #474747;
	border: 1px solid #555;
}
button.addRemove:active,
button.fxw:active,
button.tab:active,
button.save:active,
button.closeBtn:active {
	background-color: #000;
	border: 1px solid #777;
}
button.tab.cur {
	color: yellow;
	background-color: transparent;
	border: 2px solid #d1d104;
	box-shadow: 0px 1px 25px yellow;
}

fieldset {
	border: 1px dotted #333;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"] {
	height: 34px;
	width: 98%;
	font-size: 14px;
	color: #eee;
	background-color: #3a3a3a;
	padding: 2px 5px 2px 5px;
	border: 1px solid #555;
	border-radius: 5px;
	box-shadow: inset 0px 3px 5px #222;
}
.fldLabel {
	width: 100%;
	font-size: 14px;
	text-align: left;
	padding: 0 0 0 10px;
	cursor: pointer;
}
.labelTxt {
	color: #aed0f3;
	font-size: 14px;
	padding: 7px 10px 0 0;
}
input[type="color"] {
	height: 30px;
	width: 100px;
	font-size: 14px;
	color: #aed0f3;
	background-color: #444;
	padding: 1px;
	border: 1px solid #333;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="color"]:focus {
	border-color: green;
}
textarea {
	height: 600px;
	width: 97%;
	font-size: 14px;
	color: #aed0f3;
	background-color: #444;
	padding: 0 5px 0 10px;
	margin-left: 10px;
	border: 1px solid #222;
	border-radius: 5px;
	box-shadow: inset 0px 1px 7px #222;
}
/* CUSTOM CHECKBOX - RADIO BUTTON */
.container {
	position: relative;
    display: block;
    position: relative;
    color: #aed0f3;
    padding: 2px 0px 4px 35px;
    margin: 0px 0px 14px 10px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container #ckDisabled {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background-color: #444;
	opacity: 0.6;
	display: none;
}
/* Hide the browser's default checkbox and radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 3px;
    box-shadow: 0px 1px 3px #222;
}
/* Create a custom radio button */
.checkmarkX {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #222;
    border: 1px solid #555;
    border-radius: 50%;
    box-shadow: 0px 1px 3px #222;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark,
.container:hover input ~ .checkmarkX {
    background-color: #333;
}
.container input:focus ~ .checkmark,
.container input:focus ~ .checkmarkX {
    background-color: #333;
    border: 1px solid green;
}
.container:active input ~ .checkmark,
.container:active input ~ .checkmarkX {
    background-color: #222;
}
/* checkbox is checked */
.container input:checked ~ .checkmark {
    background-color: #333;
    border: 1px solid #0354a5;
    box-shadow: 0px 1px 25px #aed0f3;
}
.container input:checked:focus ~ .checkmark {
    border: 1px solid green;
}
/* radio button is checked */
.container input:checked ~ .checkmarkX {
    background-color: #333;
    border: 1px solid #0354a5;
    box-shadow: 0px 1px 25px #aed0f3;
}
.container input:checked:focus ~ .checkmarkX {
    border: 1px solid green;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after,
.checkmarkX:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark or dot when checked */
.container input:checked ~ .checkmark:after,
.container input:checked ~ .checkmarkX:after {
    display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #aed0f3;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* Style the indicator (dot/circle) */
.container .checkmarkX:after {
 	top: 5px;
	left: 5px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #aed0f3;
}
/* BUTTONs */
input[type="button"],
input[type="reset"],
input[type="submit"] {
	width: 120px;
	height: 32px;
	font-size: 14px;
	color: #aaa;
	background-color: #333;
	padding-bottom: 2px;
	margin: 2px 0px 2px 10px;
	border: 1px solid #444;
	border-radius: 5px;
	box-shadow: 0px 1px 3px #222;
	cursor: pointer;
}
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	color: #eee;
	background-color: #3a3a3a;
}
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	color: #fff;
	background-color: #222;
	box-shadow: 0px 2px 5px green;
}
input[type="submit"] {
	width: 120px;
	height: 32px;
	font-size: 14px;
	color: #aaa;
	background-color: #333;
	padding-bottom: 2px;
	margin: 2px 0 2px 10px;
	border: 1px solid #aed0f3;
	border-radius: 5px;
	box-shadow: 0px 2px 5px #111;
	cursor: pointer;
}
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	border: 1px solid green;
}

select {
	width: 160px;
	height: 32px;
	font-size: 14px;
	border: 1px solid #444;
	padding: 3px 1em 2px 1em;
	box-shadow: 1px 2px 10px 0 rgba(20,20,20,1);
	background-color:#333;
	color:white;
}
option {
	height: 32px;
	font-size: 14px;
	background: #222;
	border-top: 1px solid #444;
	padding: 10px 0px 0px 10px;
}
/**/
.description {
	font-size: 13px;
	line-height: 17px;
	color: #aaa;
	padding: 5px 10px 10px 10px;
	margin: 0px;
	border-top: 1px dotted #666;
}
/**/
.pu {
	font-size: 16px;
	border: 1px dotted #666;
	padding-top: 2px;
	margin-top: 4px;
	cursor: pointer;
	border-radius: 3px;
}
.pu:hover {
	color: yellow;
	border: 1px dotted #777;
}
.pu:active {
	color: green;
	background-color: #333;
	border: 1px dotted #222;
}
.imgLineWrap {
	position: relative;
	font-size: 12px;
	color: #000;
	background-color: #777;
	padding: 6px 7px 0 7px;
	margin: 0;
	border: 1px solid #000;
	float: left;
}

#el_search_line,
#el_slider_line,
#el_video_line,
#el_audio_line {
	display: none;
}
#el_search_line {
	background-color: #222;
}
/* LANGUAGE ELEMENTS */
.langDisabled {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(100,100,100,0.5);
}
.el_langBox {
	position: relative;
	width: 200px;
	height: 34px;
	font-variant: small-caps;
	background-color: #333;
	float: left;
}
.EL_palCheckBox,
.EL_palCheckBoxEn {
	font-size: 14px;
	line-height: 26px;
	white-space: nowrap;
}
.EL_palCheckBox img,
.EL_palCheckBoxEn img {
	width: 20px;
	margin: 7px 6px 0 4px;
	border: 1px solid #eee;
	float: left;
}
.EL_palCheckBox {
	height: 30px;
	text-align: left;
	color: #b2d2f4;
	background-image: url(../images/el_checkBoxFalse.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 1px 0 0 28px;
	margin: 2px 2px 0 2px;
	cursor: pointer;
}
.EL_palCheckBox:hover {
	color: #fff;
}
.EL_palCheckBox:active {
	color: #fff;
}
.EL_palCheckBoxEn {
	width: auto;
	height: 30px;
	text-align: left;
	color: yellow;
	background-image: url(../images/el_checkBoxTrue.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 1px 0 0 28px;
	margin: 2px 2px 0 2px;
	cursor: pointer;
}
.EL_palCheckBox span {
	color: #48709c;
}
.EL_palCheckBoxEn span {
	color: #48709c;
}
.rLine {
	min-height: 40px;
	background-color: #333;
	margin-bottom: 2px;
	border: 1px solid #555;
	border-radius: 3px;
}
.descTxt {
	font-size: 13px;
	line-height: 30px;
	text-align: left;
	color: #aaa;
}
.libInputBox {
	position relative;
	padding: 5px;
}
input[type="text"].libFld {
	width: 100%;
	margin: 5px 0px 5px 0px;
	border: 1px solid #777;
}
input[type="text"].noBorder {
	height: 30px;
	width: 60px;
	font-size: 11px;
	color: #999;
	background-color: transparent;
	padding: 5px;
	margin-top: 6px;
	border: none;
	border-radius: 0px;
	box-shadow: none;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .fxw,
    .save {
    	width: 140px;
    	margin: 0px !important;
    }
    .descTxt {
		line-height: 22px;
		padding-left: 10px;
	}
}