:root {
    --main-color: rgba(48, 182, 223, 1);
    /*--main-color: #fef8bc;*/
    --Colors-Grey-60: rgba(153, 153, 153, 1);
    --Colors-Grey-40: #666666;
    --Card-Background: #F5F6F8;
    --Second-Color: #75DFFF;
    --DeepBlack :#050505;
    --FontBold: 'IBMPlexSansArabic-Bold';
    --FontMedium: 'IBMPlexSansArabic-Medium';
    --FontRegular: 'IBMPlexSansArabic-Regular';
}



@font-face {
    font-family: IBMPlexSansArabic-Bold;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Bold.ttf');
}

@font-face {
    font-family: IBMPlexSansArabic-Medium;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Medium.ttf');
}

@font-face {
    font-family: IBMPlexSansArabic-Regular;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Regular.ttf');
}

.main-container {
	padding: 25px 100px 100px 100px;
	font-family: var(--FontMedium);
	background-color: #F8F8F8;
	min-height: 100vh;
	/*margin-top: -15px;*/
}

.MainCard {
	background: none repeat scroll 0 0 #fff;
    border-color: #FF9800 #cacaca  #cacaca;
    border-radius: 6px;
    border-style: solid;
    border-width: 5px 1px 1px;
    box-shadow: 0 0 4px 0 #c4c4c4;
    margin: 1px auto 10px;
    min-height: 420px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 5px;
    margin-top: 5px;
}

.panel_header {
	background-color: #FF9800;
	color: white;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.125);
	padding:  5px;
	border-radius: 4px;
	border-width: 1px;
	border-color: #FF9800;
	margin-bottom: 10px;
	margin-top: 5px;
	min-height: 45px;
	max-height: 45px;
	font-size: 16px;
	font-weight: 200px;
	background-color: #FF9800;
	color: #fff;
	font-family: var(--FontBold);
}

.panel_header a {
	text-decoration: none;
}

.ShowCard {
	background-color: red;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
	padding: 15;
	border-radius: 6px;
	border-width: 1px;
	border-color: #FF9800;
	margin-bottom: 20px;
/*	padding-bottom: 50px;*/
}

.registration-input {
	font-family: var(--FontBold);
	animation-durationcolor: #333745;
	width: 100%;
	border: 1px solid #FF9800;
	outline: none;
	padding: 0.89rem;
	padding-left: 0.89rem;
	max-height: 35px;
	min-height: 35px;
	font-size: 14px;
	text-align: right;
	font-weight: 400;
	line-height: 100%;
	padding: 5px 8px;
	border-radius: 4px;
	margin-bottom: 5px;
	color: #4c4b45;
}

.btn {
	border-color: #4cae4c;
	width: 150px;
	text-align: center;
	color: white;
	padding-bottom: 10px;
	border-radius: 8px;
}

.btn-save{
	background-color: #5cb85c;
}
.btn-show{
    background-color: #0078d4;
}
.btn-delete{
    background-color: red;
}

.btn:hover {
/*  color: white;
  background-color: #4cae4c;
  border-color: #4cae4c;;*/
}

.upload-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin-top: 20px;
}

.col-form-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
}

th,td {
	text-align: center;
}



.my_continer {
	position: relative;
	background-color: red;
	z-index: 1000;
}

/*.my_continer .sidebar {
	width: 300px;
	min-height: 100vh;
	background-color: #343056;
	top: 0px;
	color: white;
	position: fixed;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 10px;
}
*/
.sidbar-links {
    display: flex;
    flex-direction: column;
}

.sidbar-link {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    margin-bottom: 0px;
}

.sidebar .sidbar-icon {
	padding: 20px 30px;
}

.sidebar .sidbar-icon img {
	width: 150px;
	height: 100px;
}

.sidebar hr {
	width: 100%;
	height: 5px;
	color: white;
	/*background-color: white;*/
}

.sidebar .sidbar-links {
	display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    padding: 0px;
}

.sidebar .sidbar-links .sidbar-icon {
	
}

.sidebar .sidbar-links .sidbar-text {

}

.sidebar .sidbar-links .sidbar-text span {
    font-size: 18px;
    font-family: var(--FontBold);
    font-weight: bold;  
    /*letter-spacing: 1;*/
}

.my_continer .content-space {
	position: absolute;
	width: calc(100% - 200px);
	left: 200px;
/*	top: 50px;*/
	background-color: var(--main-color);
	padding: 15px;
	min-height: 100vh;
}

.sidebar .sidbar-links a {
	text-decoration: none;
	color: white;
}


/* Start Settings Box */
.settings-box {
    position: fixed;
    /*left:-300px;*/
    top: 0;
    background-color:#FFF;
    width: 300px;
    z-index: 1000;
    min-height: 100vh;
    transition: .3s;
    border: 1px solid #EEE;
    /*background-color: red;*/
    /*display: none;*/
}
.settings-box.open {
    left: 0;
}
.settings-box .toggle-settings {
    position: absolute;
    right: -30px;
    top: 100px;
    background-color: #FFF;
    text-align: center;
    cursor: pointer;
}
.settings-box .toggle-settings .fa-gear {
    width: 30px;
    padding: 8px 0;
}
.settings-box .option-box {
    padding: 10px;
    text-align: center;
    background-color: #EEE;
    margin: 10px;
}
.settings-box .option-box h4{
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* End  Settings Box  */

input[type="number"] {
    -moz-appearance: textfield;
}

@media(max-width: 767px) {

	.main-container {
	  padding: 25px 5px 5px 5px;
	  font-family: var(--FontMedium);
	  background-color: #F8F8F8;
	  min-height: 100vh;
	  margin-top: -15px;
	}

}