﻿@charset "utf-8";
@import url('bootstrap-rtl.min.css');
@import url('font-awesome.min.css');
@import url('fonts.css');

:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--color-white-dark: #e5e7e8;
	--color-white-bright: #f8f9fa;
	--color-gray: #6c757d; 
	--color-gray-dark: #4f5050; 
	--color-gray-bright: #eee;
	--color-green: #00796B;
	--color-green-dark: #004D40;
	--color-green-bright: #28a74f;
	--color-blue: #276092;
	--color-blue-dark: #1b476f;
	--color-blue-bright: #1b73d2;
	--color-red: #dc3545;
	--color-red-dark: #bd2130;
	--color-red-bright: #f1162b;
	--color-brown: #b18344;
	--color-brown-dark: #805e30;
	--color-brown-bright: #c58834;
	--primary-font-family: "Droid Arabic Kufi, Open Sans"; 
	--font-size-small: 9pt;
	--font-size-normal: 12pt;
	--font-size-medium: 13pt;
	--font-size-large: 15pt; 	
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    direction: rtl;
}

body {
    position: relative;
    font-family: 'Droid Arabic Kufi';
    font-size: 12pt;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background: url(../images/33_2.jpg) no-repeat;
    background-size: cover;
    background-position: bottom center;
    overflow: hidden;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

input[type="submit"],
input[type="button"],
.btn 
{
    display: inline-block;
    cursor: pointer;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
    font-size: 13pt;
    padding: 1rem 1.5rem;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color-white-dark);
    border-radius: 0;
    background-color: var(--color-white-dark);
    color: var(--color-gray-dark);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -ms-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    appearance: none;
    -webkit-appearance: none;
}

[type="submit"]:focus,
[type="button"]:focus,
.btn:focus
{
	outline: 0;
	box-shadow: 0 0 0 0.2rem transparent;
}

[type="submit"]:disabled,
[type="button"]:disabled,
.btn:disabled
{
	pointer-events: none;
	cursor: not-allowed;
	color: #b3b3b3;
	background-color: var(--color-white-dark);
	border-color: var(--color-white-dark);
	text-decoration: none;
}

[type="submit"]:hover,
[type="button"]:hover,
.btn:hover
{
	color: transparent;
	background-color: transparent;
	border-color: transparent;
	text-decoration: none;
}

.btn.btn-save {
	border-color: var(--color-green);
	background-color: var(--color-green);
	color: var(--color-white);
}

.btn.btn-save:focus
{
	box-shadow: 0 0 0 0.2rem var(--color-green-bright);
}

.btn.btn-save:hover
{
	color: var(--color-white);
	background-color: var(--color-green-bright);
	border-color: var(--color-green-bright);
}

.btn.btn-details {
	border-color: var(--color-blue);
	background-color: var(--color-blue);
	color: var(--color-white);
}

.btn.btn-details:focus
{
	box-shadow: 0 0 0 0.2rem var(--color-blue-bright);
}

.btn.btn-details:hover
{
	color: var(--color-white);
	background-color: var(--color-blue-bright);
	border-color: var(--color-blue-bright);
}

.btn.btn-edit {
	border-color: #b18850;
	background-color: #b18850;
	color: var(--color-white);
}

.btn.btn-edit:focus
{
	box-shadow: 0 0 0 0.2rem var(--color-brown);
}

.btn.btn-edit:hover
{
	color: var(--color-white);
	background-color: var(--color-brown);
	border-color: var(--color-brown);
}


.btn.btn-delete 
{
	border-color: var(--color-red);
	background-color: var(--color-red);
	color: var(--color-white);
}

.btn.btn-delete:focus 
{
	box-shadow: 0 0 0 0.2rem var(--color-red-bright);
}

.btn.btn-delete:hover
{
	color: var(--color-white);
	background-color: var(--color-red-bright);
	border-color: var(--color-red-bright);
}

.btn.btn-notes 
{
	border-color: var(--color-green-bright);
	background-color: var(--color-green-bright);
	color: var(--color-white);
}

.btn.btn-notes:focus
{
	box-shadow: 0 0 0 0.2rem var(--color-green);
}

.btn.btn-notes:hover
{
	color: var(--color-white);
	background-color: var(--color-green);
	border-color: var(--color-green);
}

.btn.btn-mark {
	border-color: var(--color-red-bright);
	background-color: var(--color-red-bright);
	color: var(--color-white);
}

.btn.btn-mark:focus
{
	box-shadow: 0 0 0 0.2rem var(--color-red);
}

.btn.btn-mark:hover
{
	color: var(--color-white);
	background-color: var(--color-red);
	border-color: var(--color-red);
}

.form-signin 
{
    width: 100%;
    max-width: 550px;
    padding: 40px;
    margin: auto;
    background: white;
    position: relative;
}
@media (min-width: 320px) and (max-width: 414px) {
	body{
		padding: 0; 
		margin:0; 
		background: #fff;
		overflow: hidden;
	  touch-action: none;

	}

	.form-signin 
	{
			margin: 0;
		padding: 15px;
	}	

	.btn {
				margin: 0;
	}
	.input-group 
	{
			padding: 0 15px;
	}
	.input-group .icon {
    left: 18px;
    top: 8px;
	}
}
.form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
  text-align: right;
  border-radius: 0;
}
.border-bottom {
  border: none;
  background-color: transparent;
}

.form-control:focus{
	outline: none;
	box-shadow: none;
	background-color: transparent;
}

.input-group {
	border: none;
	position: relative;
}

.input-group input {
	border-bottom: 1px solid;
	border-color: #b5b5b5;
}


.input-group .icon {
	font-size: 19pt;
	color: #afafaf;
	position: absolute;
	left: 10px;
	top: 8px;
}

.input-group input:focus {
	outline: none;
	border-color: var(--color-blue-bright) !important;
}

.input-group input:focus,
.input-group input:focus::placeholder,
.input-group input:focus ~ .icon {
	color: var(--color-blue-bright);
	opacity: 1;
}

.input-group input:focus:-ms-input-placeholder {
	color: var(--color-blue-bright);
}

.input-group input:focus::-ms-input-placeholder {
	color: var(--color-blue-bright);
}

.forget-password {
    padding: 15px 10px;
    color: #696464;
}

.forget-password:hover {
	color: var(--color-blue-bright);
	text-decoration: none;
}

.checkbox-container {
    display: flex;
    max-width: 100%;
    padding: 15px 10px;
}

.checkbox-container span {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.checkbox-container .custom-control {
	flex: auto;
	max-width: 100%;
}

.checkbox-container.rd-2 .custom-control {
	flex: 0 0 50%;
	max-width: 50%;
}

.checkbox-container.rd-3 .custom-control {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.checkbox-container.rd-4 .custom-control {
	flex: 0 0 25%;
	max-width: 25%;
}

.checkbox-container.rd-5 .custom-control {
	flex: 0 0 20% !important;
	max-width: 20% !important;
}

.checkbox-container.rd-6 .custom-control {
	flex: 0 0 16.666666666666666666666666666667%;
	max-width: 16.666666666666666666666666666667%;
}

.checkbox-container.rd-7 .custom-control {
	flex: 0 0 14.285714285714285714285714285714%;
	max-width: 14.285714285714285714285714285714%;
}

.checkbox-container.rd-8 .custom-control {
	flex: 0 0 12.5%;
	max-width: 12.5%;
}

.checkbox-container.rd-9 .custom-control {
	flex: 0 0 ‭11.11%;
	max-width: ‭11.11%;
}

.checkbox-container.rd-10 .custom-control {
	flex: 0 0 10%;
	max-width: 10%;
}

.checkbox-container label {
	width: auto;
	float: right;
	text-indent: 24px;
	margin-right: -27px;
	color: #696464;
}

.custom-control.checkbox {
    color: #28a745;
}

.custom-control.checkbox input {
	display: none;
}

.custom-control.checkbox input:checked ~ .checkbox-indicator {
	border-color: var(--color);
	-webkit-transform: rotateZ(45deg) translate(1px, -5px);
	transform: rotateZ(45deg) translate(1px, -5px);
	width: 10px;
	border-top: 0px solid #fff;
	border-left: 0px solid #fff;
}

.custom-control.checkbox .checkbox-indicator {
	display: inline-flex;
	position: absolute;
	top: 4px;
	right: 0;
	width: 16px;
	height: 16px;
	border: 2px solid #d0d0d0;
	transition: .3s;
	z-index: 999999999999999999;
}

.checkbox-container.form-inline label {
    width: auto !important;
    margin-left: 1.5rem;
}

.checkbox-container:hover label {
    color: var(--color-blue-bright);
}

.checkbox-container:hover .checkbox-indicator {
    border-color: var(--color-blue-bright);
}




.error-msg {
	color: #721c24;
	display: block;
	position: absolute;
	z-index: 999999999999999;
	border: 1px solid #f8d7da;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px;
	margin: 10px;
	background: #f8d7da;
	font-size: 11pt;
}


