.floatRight{float:right;}
.floatLeft{float:left;}
.alignRight{text-align: right;}
.alignLeft{text-align: left;}
.alignCenter{text-align: center;}
.directionRTL{direction: rtl;}
.directionLTR{direction: ltr;}
.cursorPointer{cursor: pointer;}
.fontSizeSmaller{font-size: smaller;}
.fontSizeSmall{font-size: small;}
.fontSizeMedium{font-size: medium;}
.fontSizeLarge{font-size: large;}
.fontSizeXLarge{font-size: x-large;}
.fontSizeXXLarge{font-size: xx-large;}
.clearRight{clear: right;}
.clearLeft{clear: left;}
.clearBoth{clear: both;}
.clearNone{clear: none;}
.displayNone{display: none;}
.displayBlock{display: block;}
.displayInline{display: inline;}
.displayInlineBlock{display: inline-block;}
.boxSizing{box-sizing: border-box;}
.overflowHidden{overflow: hidden;}
.fullSizeWidth{width: 100%;}
.opacityZiro{opacity: 0;}
.marginNone{margin: none;}
.reset{
	margin: 0px;
	padding: 0px;
	width: 0px;
	height: 0px;
	line-height: 0px;
}
.backgroundGradientLineNormal
{
	width: 100%;
	height: 2px;
	background: linear-gradient(to right,rgb(230,230,230),rgb(180,180,180),rgb(230,230,230));
}
#marginLeftNone{margin-left: 0px;}
#borderNone{border:none;}

/*start message box main*/
.backgroundMessageBox
{
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: .8;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	display: none;
}
.messageBox
{
	width: 25%;
	border-radius: 5px;
	background-color: black;
	box-shadow: 0px 0px 100px rgb(150,150,150);
	padding: .5%;
	color: white;
	text-align: right;
	z-index: 2001;
	position: fixed;
	margin: 0px auto;
	bottom: -10em;
	display: none;
}
.messageBox p {
	text-align: right;
	padding: 0px 1%;
	float: right;
}
.messageBox img
{
	float: left;
	width: 1.5em;
	cursor: pointer;
	transition: .5s;
}
.messageBox img:hover
{
	opacity: .5;
}
/*end message box main*/
/*start input materials*/
.group>input
{
	text-align: left;
	direction: ltr;
	width: 100%;
	height: 3em;
	-webkit-appearance: none;
	line-height: 3em;
	border-radius: 0px;
	box-sizing: border-box;
	margin: 2% 0px;
	border-bottom: 1px solid rgb(220,220,220);
}
.group
{
	position: relative;
}
.group>label
{
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	right: 5px;
	top: 15px;
	transition: all 0.2s ease;
}
.group>input:focus ~ label
{
	top: 0px;
	transform: scale(0.75);
	-webkit-transform: scale(0.75);
	-o-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	right: 0px;
	color: #4a89dc;
}
.group .bar
{
	position: relative;
	display: block;
	width: 100%;
}
.group .bar:before, .bar:after
{
	content: '';
	height: 1px;
	width: 0;
	bottom: 1px;
	position: absolute;
	margin-bottom:6px;
	background: #4a89dc;
	transition: all 0.2s ease;
}
.group .bar:before { left: 50%; }
.group .bar:after { right: 50%; }
/* active */
.group>input:focus ~ .bar:before, .group>input:focus ~ .bar:after { width: 50%; }
/*end input materials*/
/*start input normal*/
.normalInput , .normalSelect
{
	border-radius: 5px;
	padding: 0px .5%;
	text-align: center;
	font-size: small;
	direction: rtl;
}
/* Firefox */
::placeholder
{
    color: rgb(200,200,200);
    opacity: 1;
}
/* Internet Explorer 10-11 */
:-ms-input-placeholder
{
   color: rgb(200,200,200);
}
/* Microsoft Edge */
::-ms-input-placeholder
{
   color: rgb(200,200,200);
}
/*end input normal*/
/*start costum radio*/
.customRadio{float: right;}
.customRadio input[type=radio]
{
	position: absolute;
	visibility: hidden;
}
.customRadio label
{
	position: relative;
	font-weight: 0;
	font-size: small;
	z-index: 9;
	cursor: pointer;
	-webkit-transition: all 0.25s linear;
	margin: 0px 2% 0px 0px;
}
.customRadio .radioDsiplay
{
	/*display: block;*/
	float: right;
	position: relative;
	border: 5px solid #AAAAAA;
	border-radius: 100%;
	height: 10px;
	width: 10px;
	z-index: 5;
	margin: 0px 2% 0px 1%;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}
.customRadio .radioDsiplay::before
{
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 10px;
	width: 10px;
	border: none;
	top: 0;
	left: 0;
	margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}
.customRadio input[type=radio]:checked ~ .radioDsiplay
{
	border: 5px solid rgb(51,121,255);
	background-color: rgb(51,121,255);
}

/*.customRadio input[type=radio]:checked ~ .radioDsiplay::before
{
	background: rgb(51,121,255);
}*/

.customRadio input[type=radio]:checked ~ label
{
	color: rgb(51,51,51);
}
/*end costum radio*/
/*start select image*/
.selectImage
{
	clear: right;
	width: 100%;
	padding: 2%;
	overflow: hidden;
}
.selectImage input[type=file]
{
	position: absolute;
	visibility: hidden;
}
.selectImage .inlineSelectImage
{
	width: 30%;
	float: right;
	cursor: pointer;
	border:1px dashed rgb(120,120,120);
	border-radius: 3px;
	padding: .5%;
	text-align: center;
	color: rgb(120,120,120);
	/*margin: 0px 1%;*/
	margin-left: 1%;
	position: relative;
	z-index: 9;
}
.selectImage .inlineSelectImage>img{width: 100%;height: 100%;}
.selectImage .inlineSelectImage .headerSelectImage .headerInlineSelectImage
{
	width: 100%;
	height: 3em;
	box-sizing: border-box;
	line-height: 3em;
	padding: 0px 1%;
	background-color: rgba(120,120,120,.5);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 10;
}
.selectImage .inlineSelectImage .headerSelectImage .headerInlineSelectImage .BtnDeleteImage
{
	height: 2em;
	float: left;
	margin: .5em 4%;
	cursor: pointer;
	position: relative;
	z-index: 10;
}
/*end select image*/
/*start isactive*/
.isactive
{
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
/*start isactive*/
/*start footer button*/
.footerButton
{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	float: left;
	position: fixed;
	bottom: 15px;
	left: 15px;
	box-shadow: 5px 5px 20px rgb(180,180,180);
	line-height: 57px;
	box-sizing: border-box;
	cursor: pointer;
	transition: .5s;
	z-index: 1000;
	text-align: center;
}
.footerButton:hover
{
	transform: scale(.9);
	-webkit-transform: scale(.9);
	-o-transform: scale(.9);
	-moz-transform: scale(.9);
	-ms-transform: scale(.9);
}
.footerButton>img
{
	width: 70%;
}
/*end footer button*/
/*start popup box*/
.popupBox
{
	padding: 2%;
	border-radius: 3px;
	margin: 0px auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	/*box-shadow: 0px 0px 15px rgba(51,51,51,.2);*/
	color: rgb(120,120,120);
	position: fixed;
	z-index: 100000;
	/*display: block;*/
}
.popupBox .closePopup
{
	width: 15px;
	height: 15px;
	float: left;
	position:absolute;
	top: 10px;
	left: 10px;
	cursor: pointer;
}
.popupBox .closePopup>img{width: 100%; height: 100%;}
/*end popupbox*/
/*start galery image*/
.galeryImagePopup
{
	width: 100%;
	z-index: 10000;
	position: fixed;
	display: none;
}
.galeryImagePopup .imageSelect
{
	width: 100%;
	height: 70%;
	margin: 0px auto;
	background-color: rgba(0,0,0,.1);
	position: fixed;
	padding: 2%;
	box-sizing: border-box;
	text-align: center;
	top: 3%;
}
.galeryImagePopup .imageSelect img
{
	max-width: 100%;
	height: 100%;
	position: relative;
}
.galeryImagePopup .smallimages
{
	width: 100%;
	position: fixed;
	bottom: 0;
	padding: 1.5%;
	background-color: rgba(0,0,0,.4);
	height: 20%;
	overflow: hidden;
	z-index: 10001;
	text-align: center;
	box-sizing: border-box;
}
.galeryImagePopup .smallimages img
{
	width: 10%;
	height: 100%;
	margin: 0px .5%;
	cursor: pointer;
	opacity: .3;
	vertical-align: middle;
}
.galeryImagePopup .smallimages .selectedImage
{
	transform: scale(1.08);
	opacity: 1;
}
.galeryImagePopup .smallimages .allGaleryImages
{
	text-align: center;
	height: 100%;
}
.btnDownload
{
	padding:.5% 1%;
	cursor: pointer;
	line-height: 1.5em;
	width: 1.5em;
	margin-top: -4em;
	border-radius: 5px;
	transition: .5s;
}
.btnDownload:hover{background-color: rgba(0,0,0,.1);}
.btnDownload img{width: 100%;}
#lblGaleryImages{width: 100%;display: inline-block; margin: 1% auto;}
.galeryImagePopup .closeGaleryImages
{
	width: 1.5em;
	height: 1.5em;
	position: fixed;
	top: 1%;
	left: .5%;
	cursor: pointer;
	z-index: 10001;
	transition: .5s;
}
.galeryImagePopup .closeGaleryImages:hover{opacity: .5;}
.galeryImagePopup .closeGaleryImages img{width: 100%;}
/*end galery image*/
/*start popup box small*/
.popupBoxSmall{
	padding: 1em;
	border-radius: 3px;
	position: fixed;
	z-index: 1000001;
	box-shadow: 4px 6px 73px -9px rgb(150,150,150);
	display: none;
}
.popupBoxSmall::before{
	content: "";
	width: 12px;
	height: 12px;
	margin-top: -17px;
	margin-right: 20px;
	float: left;
	transform: rotate(45deg);
}
.popupBoxSmall img{
	width: 50%;
}
/*end popup box small*/


/* add by androsein */
.file-upload-wrapper {
  $defaultColor: #4daf7c;
  $height: 60px;

  position: relative;
  width: 100%;
  height: $height;

  &:after {
    content: attr(data-text);
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: $height - 20px;
    line-height: $height - 20px;
    color: #999;
    border-radius: 5px 10px 10px 5px;
    font-weight: 300;
  }

  &:before {
    content: 'Upload';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 60px;
    background: $defaultColor;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 16px;
    line-height: $height;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
  }

  &:hover {
    &:before {
      background: darken($defaultColor, 10%);
    }
  }
   input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: $height - 20px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
  }
}
