/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
	font-family: 'Alef Hebrew';
	font-style: normal;
	font-weight: 400;
	src: url(fonts/alef/Alef-Regular.eot);
	src: url(fonts/alef/Alef-Regular.eot?#iefix) format('embedded-opentype'), url(fonts/alef/Alef-Regular.woff2) format('woff2'), url(fonts/alef/Alef-Regular.woff) format('woff'), url(fonts/alef/Alef-Regular.ttf) format('truetype')
}

@font-face {
	font-family: 'Alef Hebrew';
	font-style: normal;
	font-weight: 700;
	src: url(fonts/alef/Alef-Bold.eot);
	src: url(fonts/alef/Alef-Bold.eot?#iefix) format('embedded-opentype'), url(fonts/alef/Alef-Bold.woff2) format('woff2'), url(fonts/alef/Alef-Bold.woff) format('woff'), url(fonts/alef/Alef-Bold.ttf) format('truetype')
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body,
html {
	text-align: right;
}

/*---------------------------------------------*/
a {
	font-size: 14px;
	line-height: 1.7;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
	color: #333333;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
}

p {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul,
li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
	outline: none;
	border: none;
}

textarea:focus,
input:focus {
	border-color: transparent !important;
}

input::-webkit-input-placeholder {
	color: #999999;
}

input:-moz-placeholder {
	color: #999999;
}

input::-moz-placeholder {
	color: #999999;
}

input:-ms-input-placeholder {
	color: #999999;
}

textarea::-webkit-input-placeholder {
	color: #999999;
}

textarea:-moz-placeholder {
	color: #999999;
}

textarea::-moz-placeholder {
	color: #999999;
}

textarea:-ms-input-placeholder {
	color: #999999;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ utility ]*/

/*==================================================================
[ Bootstrap addons ]*/

.container {
	max-width: 768px;
}

.bg-hvr {
	background-color: #003a6a;
}

.border-hvr {
	border: 1px solid #003a6a;
}

.text-hvr {
	color: #003a6a !important;
}

.btn-hvr {
	background-color: #003a6a;
	color: #fff;
}

.btn-hvr:hover {
	color: #cccccc;
}

.form-bg {
	background-color: #f4f5f6;
}

.h1 {
	font-size: 5vw;
}

.h2 {
	font-size: 4vw;
}

.rounded-lg {
	border-radius: .5rem !important;
}

/*------------------------------------------------------------------
[ Desktop ]*/

@media only screen and (min-width: 768px) {

	.container-border {
		border: 1px solid #b2bfc9;
	}

	.h1 {
		font-size: 24px;
	}

	.h2 {
		font-size: 20px;
	}

	.container {
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
	}

	.fa-plus,
	.fa_minus {
		font-size: 14px;
	}

}


/*==================================================================
[ Text ]*/
.txt1 {
	font-size: 13px;
	line-height: 1.4;
	color: #999999;
}

.txt2 {
	font-size: 13px;
	line-height: 1.4;
	color: #00ad5f;
}

.txt3 {
	font-size: 15px;
	line-height: 1.4;
	color: #00ad5f;
	text-transform: uppercase;
}

/*==================================================================
[ Size ]*/
.size1 {
	width: 355px;
	max-width: 100%;
}

.size2 {
	width: calc(100% - 43px);
}



/*------------------------------------------------------------------
[ Input ]*/

.focus-input100 {
	position: absolute;
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	top: -1px;
	left: -1px;
	pointer-events: none;
	border: 1px solid #03adeb;

	visibility: hidden;
	opacity: 0;

	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;

	-webkit-transform: scaleX(1.1) scaleY(1.3);
	-moz-transform: scaleX(1.1) scaleY(1.3);
	-ms-transform: scaleX(1.1) scaleY(1.3);
	-o-transform: scaleX(1.1) scaleY(1.3);
	transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
	visibility: visible;
	opacity: 1;

	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
	position: relative;
}

.alert-validate::before {
	z-index: 99;
	content: attr(data-validate);
	position: absolute;
	max-width: 70%;
	background-color: #fff;
	border: 1px solid #029fe5;
	border-radius: 2px;
	padding: 4px 4px 4px 10px;
	bottom: -30px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 50px;
	pointer-events: none;

	color: #c80000;
	font-size: 13px;
	line-height: 1.4;
	text-align: left;

	visibility: visible;
	opacity: 1;

	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

.alert-validate::after {
	content: "*";
	display: block;
	position: absolute;
	color: #c80000;
	font-size: 16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 18px;
}

.alert-validate:hover:before {
	visibility: visible;
	opacity: 1;
}

@media (max-width: 992px) {
	.alert-validate::before {
		visibility: visible;
		opacity: 1;
	}
}

/* HVR */

.accordion .fa {
	margin-right: 0.5rem;
}

.btn-link,
.btn-link:hover,
.btn-link:visited,
.btn-link:focus {
	text-decoration: none;
}

#accordionLogin .card-header,
#accordionLogin .card {
	background: none;
	border: none;
}

#accordionLogin .card-body {
	text-align: right;
	padding: 10px;
}
