/* ===== Main Setup ===== */

@font-face {
	font-family: "Poppins";
	src: url("../fonts/Poppins-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("../fonts/Poppins-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}


/* Light to Dark: 1c3919 > 23511e > 2d8024 > 2da620 > 2eb71f */

body {
	font-family: "Droid Arabic Kufi", "Poppins", "Tahoma", Sans-Serif;
	min-height: 100vh;
	background: #fefefe;
}

a,
a:link,
a:active,
a:visited {
	color: #1c3919;
}

a:hover {
	color: #2eb71f;
}


/* ===== Scroll Bar ===== */

body::-webkit-scrollbar {
	width: 5px;
}

body::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
	background-color: #2d8024;
}


/* ===== IFrame Page ===== */

body.iframe::-webkit-scrollbar {
	width: 5px;
}

body.iframe::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}

body.iframe::-webkit-scrollbar-thumb {
	background-color: #c8c8c8;
}

body.iframe div.title {
	width: 100%;
	padding: 10px;
	font-size: 13px;
	font-weight: bold;
	color: white;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
	margin-bottom: 10px;
	border-radius: 5px;
	background: #2d8024;
}


/* ===== Loading ===== */

#page-loading {
	display: flex;
	background: rgba(255, 255, 255, .9);
	text-shadow: initial;
	color: #2d8024;
	font-size: 14px;
	flex-direction: column;
}

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #2d8024;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}

@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}


/* ===== Core Overrides ===== */

.submit_container {
	background: transparent;
}

.page_container {
	background: #fefefe;
	box-shadow: 4px 4px 14px 0 #e2e2e2;
	border-radius: 5px;
	border: 0;
	padding: 15px;
}

.side-image {
	padding: 0;
	border: 0;
	box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, .25);
}


/* Side Column */

@media (max-width:992px) {
	.side-column {
		margin-top: 30px;
	}
}

@media screen and (min-width: 992px) {
	.side-column {
		padding: 0 0 0 30px !important;
	}
}

.margin-top-20 {
	margin-top: 20px;
}

.margin-top-25 {
	margin-top: 25px;
}


/* Margin Top Small 20 [Footer] */

@media (max-width:576px) {
	.margin-top-small-20 {
		margin-top: 20px !important;
	}
}


/* Website Elements */

.ajax_loading .ajax_spinner {
	border-top: 12px solid #2d8024;
}

.page_subtitle {
	color: #2d8024;
}

.page_subtitle.subtitle {
	font-size: 16px;
	color: #2d8024 !important;
}

.download_button {
	border-left: 10px solid #23511e;
	padding: 10px !important;
}

.download_button:hover {
	border-left: 10px solid #1c3919;
}

.download_button small {
	margin-top: 3px !important;
}


/* ========== Website Theme ========== */


/* Inputs */

input[type=text],
input[type=password],
input[type=number],
input[type=file],
input[type=email],
input[type=date],
input[type=time],
input[type=search],
textarea,
select {
	margin: 0;
	padding: 5px;
	color: black;
	width: 100%;
	border: 1px solid #ddd;
	background: #fefefe;
	height: 35px;
	transition: border 0.3s;
	border-radius: 3px;
}

.date_field {
	padding-left: 28px !important;
	background-position: 5px 8px !important;
}

[type="radio"]:checked+span:after,
[type="radio"].with-gap:checked+span:before,
[type="radio"].with-gap:checked+span:after {
	border: 1px solid #23511e;
}

[type="radio"]:checked+span:after,
[type="radio"].with-gap:checked+span:after {
	background-color: #23511e;
}

[type="checkbox"].filled-in:checked+span:after {
	top: 0;
	width: 20px;
	height: 20px;
	background-color: #23511e;
	z-index: 0;
}

.switch label input[type=checkbox]:checked+.lever {
	background-color: #1c3919;
}

.switch label input[type=checkbox]:checked+.lever:after {
	background-color: #23511e;
}

.submit {
	display: block;
	text-align: center;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, .5);
	padding: 10px;
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .05);
	color: white;
	border-radius: 5px;
	background: #2d8024;
	border: 1px solid #2d8024;
	margin-left: auto;
	margin-right: auto;
	min-width: 150px;
	transition: background-color 0.25s;
}

.submit:hover {
	background: #1c3919 !important;
	border: 1px solid #1c3919;
}


/* Bootstrap Slider */

.slider-handle {
	background: #2da620 !important;
}

.slider-selection {
	background: #2d8024 !important;
}


/* Wizard */

.wizard li.active span.round-tab {
	border: 2px solid #23511e !important;
}

.wizard li.active span.round-tab i {
	color: #23511e !important;
}

.wizard li:after {
	border-bottom-color: #23511e !important;
}

.wizard li.active:after {
	border-bottom-color: #23511e !important;
}

.tab-title-container {
	background: #23511e !important;
}


/* Tabs */

.tab-inline-header li.active {
	border-top: 5px solid #23511e;
}


/* Button Primary */

.btn:not(.btn-default) {
	border: 0;
}

.btn-default {
	color: #606060 !important;
}

.btn-default:hover {
	color: #202020 !important;
}

.btn-primary {
	background-color: #23511e;
	border-color: #2d8024;
}

.btn-primary:hover {
	background-color: #1c3919;
	border-color: #23511e;
}

fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus,
.open>.dropdown-toggle.btn-primary,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:hover,
.btn-primary.active:hover,
.open>.dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open>.dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open>.dropdown-toggle.btn-primary.focus {
	background-color: #23511e;
	border-color: #2da620;
}


/* Select2 */

.select2-selection {
	box-shadow: initial;
	height: auto !important;
	border: 1px solid #ddd !important;
	background: #fefefe !important;
	border-radius: 3px !important;
}

.select2-selection__choice {
	border-radius: 2px !important;
	line-height: 1.75 !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
	width: auto !important;
}

.fancy_form .select2-selection {
	border-left: 1px solid #c8c8c8 !important;
}


/* Fancy Table */

table.fancy tr th {
	border-right: 1px solid #2d8024;
}

table.fancy tr:last-child td {
	border-bottom: 1px solid #2d8024;
}

table.fancy tr th:first-child {
	border-left: 1px solid #2d8024;
}

table.fancy tr td:first-child {
	border-left: 1px solid #2d8024;
}

table.fancy tr td:last-child {
	border-right: 1px solid #2d8024;
}

table.fancy tr th {
	background: #2d8024;
	border-top: 1px solid #2d8024;
}

table.fancy tr td:only-child {
	border-right: 1px solid #2d8024 !important;
	border-left: 1px solid #2d8024 !important;
}

table.fancy tfoot td.pag {
	border-top: 1px solid #2d8024;
}

@media screen and (max-width: 480px) {
	table.fancy.paginated tfoot tr td {
		border-bottom: 1px solid #2d8024 !important;
	}
}


/* Panels */

.panel-primary {
	border-color: #2d8024;
}

.panel-primary>.panel-heading {
	background-color: #23511e;
	border-color: #2d8024;
}


/* Animate Dropdown */

.dropdown-menu.animate {
	display: block;
	visibility: hidden;
	opacity: 0;
	margin-top: -20px;
	transition: opacity 0.25s, margin-top 0.25s;
}

.open>.dropdown-menu.animate {
	visibility: visible;
	opacity: 1;
	margin-top: -5px;
}


/* Broken Link */

span.broken_link {
	background: #2eb71f;
}


/* Side Menu */

#side_menu ul {
	box-shadow: initial;
	background: transparent;
	border: 0;
	border-radius: 0;
}

#side_menu ul li {
	border: 0;
}

#side_menu ul li a {
	background: transparent;
	font-size: 14px;
	color: #2eb71f;
}

#side_menu ul li:not(.current) a:hover {
	background: transparent;
	border: 0;
	font-weight: bold;
	color: #2d8024;
	margin-left: 10px;
}

#side_menu ul li.current a {
	border: 0;
	color: #fff;
	background: #2eb71f;
	border-radius: 5px;
}


/* Pagination */

.pagination_div {
	margin: 25px 0 0 -5px;
}

.pagination_div .pagination li a {
	border-radius: 4px;
	font-size: 16px;
	padding: 10px;
	margin: 0 5px 0 5px;
	width: 40px;
	text-align: center;
}

.pagination_div .pagination>.active>a,
.pagination_div .pagination>.active>span,
.pagination_div .pagination>.active>a:hover,
.pagination_div .pagination>.active>span:hover,
.pagination_div .pagination>.active>a:focus,
.pagination_div .pagination>.active>span:focus {
	background: #2d8024;
	border-color: #2d8024;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, .1);
}


/* Custom Message */

div.message {
	text-align: center;
}

div.message i {
	font-size: 50px;
}

div.message b {
	text-align: center;
	display: block;
	font-size: 15px;
	margin: 20px 0 10px 0;
}

div.message span {
	text-align: center;
	display: block;
	font-size: 13px;
}


/* ========== Header & Footer ========== */


/* Footer */

.footer .copyrights {
	background: #2d8024;
}


/* ========== Blocks & Modules ========== */


/* Modules */

.module_description {
	text-align: center;
	margin: 0 0 35px 0 !important;
}

.module_description h1 {
	text-align: center;
	font-weight: bold;
	color: #2d8024;
	font-size: 20px;
}

.module_description h3 {
	text-align: center;
	margin: 10px 0 0 0;
	color: #606060;
	font-size: 14px;
}

.module_buttons {
	width: 100%;
	text-align: center;
	margin-top: 25px;
}

.module_buttons .button {
	display: inline-block;
	margin: 5px 10px 0 10px;
	padding: 10px;
}


/* Slider */

.slider,
.slider .swiper-slide .swiper-image-container {
	background: #2d8024;
}

.slider .description {
	background: #2d8024cc;
}

.swiper-pagination-bullet-active {
	background: #2da620 !important;
}

/* Counter */

.counter_module {
	background: #2d8024;
}


/* Testimonial Block */

.testimonial_block i {
	color: #23511e;
}


/* Index Module */

.index_module .overlay {
	background: #2eb71fcc;
}

.snip1287 {
	color: #2d8024;
}


/* Course Block */

.course_block .block_image .overlay {
	background: #2eb71faa;
}

.course_block .block_image .price {
	background: #2eb71fcc;
}

.course_block .block_content .block_title small {
	color: #2eb71f;
}


/* Diploma Block */

.diploma_block .block_image .overlay {
	background: #2eb71faa;
}

.diploma_block .block_image .price {
	background: #2eb71fcc;
}


/* Contact Block */

.contact_block span {
	background: #1c3919;
}


/* Side Block */

.side_item .overlay {
	background: #2eb71faa;
}

.side_item:hover .block_content b {
	color: #2eb71f;
}


/* ========== Custom Page Elements ========== */


/* ===== Modal Form ===== */

.modal_form>div span {
	display: block;
	margin-bottom: 5px;
}

.modal_form>div {
	margin-bottom: 15px;
}


/* ===== User ID ===== */

.user_id .subtitle {
	font-size: 12px;
	margin-bottom: 5px;
}

.user_id .number b {
	color: #2d8024;
	font-weight: normal;
	font-size: 20px;
}

.user_id .number i {
	font-size: 20px;
	color: #ccc;
	margin-left: 10px;
	cursor: pointer;
}

.user_card {
	margin: 20px 0 20px 0;
}


/* ===== Course Dashboard ===== */

.course_tabs li.active a {
	background: #2d8024 !important;
}


/* ===== Courses Sessions ===== */

.sessions_panel input[type=checkbox] {
	min-width: 20px;
	width: 20px;
	height: 20px;
	margin: -2px 10px 0 0;
	cursor: pointer;
	float: left;
}

@media screen and (max-width:768px) {
	.sessions_panel input[type=checkbox] {
		margin-top: 0;
	}
}

.sessions_panel .panel-heading {
	display: flex;
	align-items: center;
	padding: 8px;
	background: #f5f5f5;
}

.sessions_panel .panel-heading>a {
	font-size: 16px;
	padding: 0;
	display: flex;
	align-items: center;
	flex-grow: 1;
	flex-basis: calc(100% - 40px);
}

.sessions_panel .panel-heading>a small {
	font-size: 13px;
	color: #808080 !important;
	display: block;
}

.sessions_panel .panel-heading>a span.fa-angle-down {
	font-size: 25px;
	margin-right: 10px;
	color: #909090;
	transition: transform 0.25s;
}

.sessions_panel .panel-heading>a:not(.collapsed) span.fa-angle-down {
	transform: rotate(180deg);
}

.sessions_panel .panel-heading .components {
	display: flex;
}

.sessions_panel .panel-heading .components span {
	flex-grow: 1;
	text-align: right;
	margin: 0 0 0 5px;
}

.sessions_panel .panel-heading .components span.duration {
	font-size: 14px;
	color: #808080;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 10px;
	display: inline-block;
	width: 80px;
	text-align: left;
	line-height: 30px;
}

.sessions_panel .panel-heading .components span.button .btn {
	width: 100%;
	padding: 5px 10px 5px 10px;
}

@media screen and (max-width:576px) {
	.sessions_panel .panel-heading {
		flex-wrap: wrap;
	}
	.sessions_panel .panel-heading .components {
		flex-wrap: wrap;
		margin: 0 0 0 -5px;
	}
	.sessions_panel .panel-heading .components span {
		margin: 5px 0 0 5px;
	}
}

.sessions_panel .panel-body {
	padding: 3px 8px 3px 8px;
}

.sessions_panel .panel-body div.session {
	display: flex;
	align-items: center;
	padding: 5px 0 5px 0;
	border-bottom: 1px solid #eee;
	min-height: 40px;
}

.sessions_panel .panel-body div.session:last-child {
	border-bottom: 0;
}

.sessions_panel .panel-body div.title {
	font-size: 14px;
	padding: 0;
	display: flex;
	align-items: center;
	flex-grow: 1;
	flex-basis: calc(100% - 40px);
}

.sessions_panel .panel-body .components {
	display: flex;
}

.sessions_panel .panel-body .components span {
	flex-grow: 1;
	text-align: right;
	margin: 0 0 0 5px;
}

.sessions_panel .panel-body .components span.duration {
	font-size: 14px;
	color: #808080;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 10px;
	display: inline-block;
	width: 80px;
	text-align: left;
	line-height: 30px;
}

.sessions_panel .panel-body .components span.button .btn {
	width: 100%;
	padding: 5px 10px 5px 10px;
}

@media screen and (max-width:576px) {
	.sessions_panel .panel-body div.session {
		flex-wrap: wrap;
	}
	.sessions_panel .panel-body .components {
		flex-wrap: wrap;
		margin: 0 0 0 -5px;
	}
	.sessions_panel .panel-body .components span {
		margin: 5px 0 0 5px;
	}
}


/* ===== Courses Softwares ===== */

.software_panel .panel-heading {
	display: flex;
	align-items: center;
	padding: 8px;
	background: #f5f5f5;
}

.software_panel .panel-heading>a {
	font-size: 16px;
	padding: 0;
	display: flex;
	align-items: center;
	flex-grow: 1;
	flex-basis: 100%;
}

.software_panel .panel-heading>a small {
	font-size: 13px;
	color: #808080 !important;
	display: block;
}

.software_panel .panel-heading>a span.fa-angle-down {
	font-size: 25px;
	margin-right: 10px;
	color: #909090;
	transition: transform 0.25s;
}

.software_panel .panel-heading>a:not(.collapsed) span.fa-angle-down {
	transform: rotate(180deg);
}

.software_panel .panel-heading img {
	width: 40px;
	height: 40px;
	border-radius: 2px;
	margin-right: 10px;
}

.software_panel .panel-heading .components {
	flex-basis: 200px;
	text-align: right;
}

@media screen and (max-width:576px) {
	.software_panel .panel-heading {
		flex-wrap: wrap;
	}
	.software_panel .panel-heading .components {
		flex-wrap: wrap;
		margin: 10px 0 0 -55px;
	}
}

.software_panel .panel-body {
	padding: 3px 8px 3px 8px;
}

.software_panel .panel-body div.session {
	display: flex;
	align-items: center;
	padding: 5px 0 5px 0;
	border-bottom: 1px solid #eee;
	min-height: 40px;
}

.software_panel .panel-body div.session:last-child {
	border-bottom: 0;
}

.software_panel .panel-body div.title {
	font-size: 14px;
	padding: 0;
	display: flex;
	align-items: center;
	flex-grow: 1;
	flex-basis: 100%;
}

.software_panel .panel-body .components {
	display: flex;
}

.software_panel .panel-body .components span {
	flex-grow: 1;
	text-align: right;
	margin: 0 0 0 5px;
}

.software_panel .panel-body .components span.size {
	font-size: 14px;
	color: #808080;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 10px;
	display: inline-block;
	width: 80px;
	text-align: left;
	line-height: 30px;
}

.software_panel .panel-body .components span.button .btn {
	width: 100%;
	padding: 5px 10px 5px 10px;
}

@media screen and (max-width:576px) {
	.software_panel .panel-body div.session {
		flex-wrap: wrap;
	}
	.software_panel .panel-body .components {
		flex-wrap: wrap;
		margin: 0 0 0 -5px;
	}
	.software_panel .panel-body .components span {
		margin: 5px 0 0 5px;
	}
}


/* ===== Courses Search ===== */

.search_topics {
	font-size: 12px;
	display: flex;
}

.search_topics img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-right: 10px;
}

.search_topics small {
	color: #808080;
}

.search_topics b {
	display: block;
	font-size: 13px;
	margin-top: 5px;
}


/* ===== Certificate Number ===== */

.certificate_number .number {
	position: relative;
	display: inline-block;
	background: #f8f8f8;
	margin: 5px auto 0 auto;
	padding: 5px;
	font-weight: bold;
	font-size: 18px;
	border-radius: 3px;
	border: 1px solid #ccc;
}

.certificate_number .fa-copy {
	font-size: 24px;
	color: #aaa;
	transition: color 0.25s;
	cursor: pointer;
	margin: 7px;
	position: absolute;
}

.certificate_number .fa-copy:hover {
	font-size: 24px;
	color: #909090;
}

.certificate_number .fa-copy.copy-number {
	top: -2px;
	right: -40px;
}


/* ===== Grey Button ===== */

.btn-grey {
	color: #FFFFFF !important;
	background-color: #919191;
	border-color: #878787;
}

.btn-grey:hover,
.btn-grey:focus,
.btn-grey:active,
.btn-grey.active,
.open .dropdown-toggle.btn-grey {
	color: #FFFFFF;
	background-color: #7A7A7A;
	border-color: #878787;
}

.btn-grey:active,
.btn-grey.active,
.open .dropdown-toggle.btn-grey {
	background-image: none;
}

.btn-grey.disabled,
.btn-grey[disabled],
fieldset[disabled] .btn-grey,
.btn-grey.disabled:hover,
.btn-grey[disabled]:hover,
fieldset[disabled] .btn-grey:hover,
.btn-grey.disabled:focus,
.btn-grey[disabled]:focus,
fieldset[disabled] .btn-grey:focus,
.btn-grey.disabled:active,
.btn-grey[disabled]:active,
fieldset[disabled] .btn-grey:active,
.btn-grey.disabled.active,
.btn-grey[disabled].active,
fieldset[disabled] .btn-grey.active {
	background-color: #919191;
	border-color: #878787;
}

.btn-grey .badge {
	color: #919191;
	background-color: #FFFFFF;
}


/* ===== Purchase Page ===== */

.payment_tabs {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px -10px 0;
	padding: 0;
}

.payment_tabs li {
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-basis: calc(33.33% - 5px);
	text-align: center;
	padding: 10px 10px 5px 10px;
	background: #fefefe;
	border: 1px solid #eee;
	margin: 0 5px 5px 0;
	border-radius: 3px;
}

.payment_tabs li a {
	display: block;
	width: 100%;
	height: 100%;
}

.payment_tabs li img {
	display: block;
	margin: 0 auto 5px auto;
	height: 30px;
	border-radius: 3px;
}

.payment_tabs li.active {
	background: #eee;
	font-weight: bold;
}

.amount_due {
	background: #f8f8f8;
	padding: 10px;
	border-radius: 3px;
	margin-bottom: 15px;
	border: 1px solid #eee;
}

.amount_due img {
	border-radius: 3px;
}

.amount_due b {
	display: block;
	font-size: 24px;
	color: green;
	margin-bottom: 5px;
}

.paragraph {
	font-size: 14px;
	color: #404040;
	font-weight: bold;
}

.form_element {
	display: block;
	color: red;
	margin: 10px 0 5px 0;
}

.input_description {
	font-size: 13px;
	margin: 0 0 10px 0;
}

.attachment-block {
	width: 145px !important;
}


/* ===== Exam ===== */

.questions_list li.active {
	background: #2d8024;
	border: 1px solid #2d8024;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	color: #2d8024;
}


/* ===== Dashboard ===== */

.side_info_card i {
	color: #2da620;
	margin-right: 15px;
}


/* ===== Dashboard Icon ===== */

.dashboard_icon {
	background: transparent;
	border: 0;
	box-shadow: initial;
	height: initial;
}

.dashboard_icon:hover {
	background: transparent;
}

.dashboard_icon span {
	color: white;
	background: #2d8024;
	width: 70px;
	height: 70px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	border-radius: 50%;
	margin: 0 auto 10px auto;
	transition: transform 0.25s, background 0.25s;
}

.dashboard_icon:hover span {
	transform: scale(1.1);
	background: #2da620;
}

.dashboard_icon:hover b {
	color: #2da620;
}


/* ===== Password Requirements Validation ===== */

.password_validation {
	list-style-type: none;
	list-style-position: inside;
	margin: 0;
	padding: 0;
	color: #909090;
	font-size: 13px;
}

.password_validation li[validated=true] {
	color: green;
}

.password_validation li span:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f06a";
}

.password_validation li[validated=true] span:after {
	content: "\f058";
}


/* Cancel popover arrow from has_error class */

.password_popover .arrow {
	border-left-color: transparent !important;
	border-right-color: transparent !important;
}


/* Compensate for popover disabling last-child selector */

#password {
	border-radius: 0 3px 3px 0 !important;
}


/* ===== Version 1.0.3 Updates ===== */


/* Disabled */

.disabled_division {
	transition: opacity 0.3s;
	opacity: 0.25;
	pointer-events: none;
}


/* Loading Container */

.payment_container {
	position: relative;
}

.payment_container .loading {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.payment_container .loading b {
	font-size: 14px;
	display: block;
}

.payment_container .loading span {
	font-size: 14px;
	display: block;
}

.payment_container.loading .row {
	pointer-events: none;
	opacity: 0.1;
}

.payment_container.loading .loading {
	display: block;
}


/* Card Input */

.card_input {
	margin-top: 20px !important;
}

.card_input input {
	padding: 15px;
	height: 40px;
}

.cards {
	text-align: center;
}

.cards img {
	display: inline-block;
	margin: 0 2px 0 2px;
	max-height: 50px;
}

.cards small {
	display: block;
	margin-bottom: 5px;
}


/* Payment Method Selector */

.payment_methods_selector {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.payment_method {
	display: block;
	flex-basis: 250px;
	text-align: center;
	padding: 10px;
	background: #f8f8f8;
	border-radius: 5px;
	border: 3px solid #eee;
	margin: 10px;
	box-shadow: 2px 2px 10px rgba(0,0,0,.05);
	position: relative;
}

.payment_method i {
	position: absolute;
	top: -12px;
	right: -12px;
	color: white;
	background: green;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	text-align: center;
	border-radius: 50%;
	display: none;
}

.payment_method.active {
	border-color: green;
	box-shadow: 2px 2px 10px rgba(0,0,0,.15);
}

.payment_method.active i {
	display: block;
}

.payment_method small {
	font-weight: bold;
	color: #606060 !important;
	display: block;
	margin-bottom: 5px;
}

.payment_method .icons img {
	display: inline-block;
	height: 30px;
}

.payment_method .powered {
	margin-top: 10px;
	font-size: 10px;
	color: #606060 !important;
}

.payment_method .powered img {
	display: inline-block;
	height: 20px;
	margin-right: 5px;
}


/* Invoices */

@media (min-width:480px) {
	.center-md {
		text-align: center;
	}
}

.invoice_head {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.invoice_head > div.company {
	text-align: center;
}

.invoice_head > div.company img {
	max-width: 200px;
}

.invoice_head > div.invoice {
	flex-grow: 1;
	text-align: right;
}

.invoice_head > div.invoice h3 {
	display: block;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
}

.invoice_bill_to > div.name {
	display: block;
	margin: 0 0 5px 0;
	font-size: 15px;
}

.invoice_bill_to > div.info > div {
	display: flex;
	line-height: 1.7;
}

.invoice_bill_to > div.info > div b {
	flex-basis: 100px;
}