:root {
	--color-pallet-primary: #FFB23A;
	--color-pallet-primary-dark: #d8911e;
	
	--color-black: #222;
	--color-gray-darker: #333;
	--color-gray-dark: #444;
    --color-gray: #555;
	--color-gray-semilight: #777;
	--color-gray-light: #aaa;
	--color-gray-lighter: #ccc;
    --color-white: #fff;
    --color-white-gray: #f1f1f1;
    --color-white-gray-light: #fafafa;

    --transition-duration: 0.6s;

	--swiper-pagination-bullet-inactive-color: #eaeaea;
	--swiper-pagination-color: var(--color-pallet-primary);
}

html{
    scroll-behavior: smooth;
    font-size: 16px;
    height:100%;
}

body{
    height:100%;
    font-size: 1rem;
    font-family: basefont;
	color: var(--color-black);
	background-image: url(../images/login-bg.jpg);
	background-position: center 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

body.scrollLocked{
	overflow-y: hidden;
}  

input, select, textarea, button{
	outline: none;
	resize: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	filter: none;
	transition-duration: 0.5s;
}

.hidden{
    display: none !important;
}

.mobile{
	display: none;
}

.display-inline-block{
	display: inline-block !important;
}

.ltr{
	direction: ltr;
}

.rtl{
	direction: rtl;
}

.align-right{
	text-align: right;
}

.align-left{
	text-align: left;
}

.fit-width{
	width: fit-content;
}

p{
	line-height: 2;
}

.prevent-select {
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}

span[em-user]:before{
    content: attr(em-user) "\0040" attr(em-website);
}

.animated{
    transition: all 0.6s ease-in-out;
}

.safe-area{
    width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.block{
	display: block;
}

.inline-block{
	display: block;
}


.center-me{
	margin-left: auto;
	margin-right: auto;
}

a img{
	border:none;
}

a{
	outline : none;
	text-decoration: none;
	color: var(--color-pallet-primary-dark);
	transition: all 0.4s ease-in-out;
}

a:hover{
	color: var(--color-pallet-primary);
}

a.underline{
	display: inline-block;
	border-bottom: solid 1px transparent;
}

a.btn{
	display: block;
	background-color: var(--color-pallet-primary);
	color: var(--color-white-gray);
	font-weight: bold;
	width: max-content;
	transition: all 0.4s ease-in-out;
}

a.btn:hover{
	background-color: var(--color-pallet-primary-dark);
	color: var(--color-white);
}

a.btn.accent{
	background-color: var(--color-gray-darker);
}

a.btn.accent:hover{
	background-color: var(--color-pallet-primary);
	color: var(--color-white);
}

a.btn.outline{
	background-color: transparent;
	border: solid 2px var(--color-white);
}

a.btn.outline:hover{
	background-color: var(--color-white);
	color: var(--color-gray-dark);
}

a.btn.large{
	font-size: 1.2rem;
	padding: 20px;
}

a.btn.medium{
	font-size: 1rem;
	padding: 12px;
}

a.btn.loading{
	background-image: url(../images/loading.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px 24px;
	min-width: 50px;
}

i[class*='icon-']{
    display: inline-block;
	width: 24px;
	height: 24px;
	-webkit-mask:  no-repeat 50% 50%;
	mask: no-repeat 50% 50%;
	-webkit-mask-size: cover;
	mask-size: cover;
}

i[class*='icon-'].color-white{
	background-color: #fff;
}

i.icon-menu{-webkit-mask-image: url(../images/menu.svg);mask-image: url(../images/menu.svg);}
i.icon-close{-webkit-mask-image: url(../images/close.svg);mask-image: url(../images/close.svg);}
i.icon-user{-webkit-mask-image: url(../images/user.svg);mask-image: url(../images/user.svg);}
i.icon-phone{-webkit-mask-image: url(../images/phone.svg);mask-image: url(../images/phone.svg);}
i.icon-envelope{-webkit-mask-image: url(../images/envelope.svg);mask-image: url(../images/envelope.svg);}
i.icon-pen{-webkit-mask-image: url(../images/pen.svg);mask-image: url(../images/pen.svg);}
i.icon-question{-webkit-mask-image: url(../images/qs.svg);mask-image: url(../images/qs.svg);}
i.icon-book{-webkit-mask-image: url(../images/book.svg);mask-image: url(../images/book.svg);}
i.icon-teacher{-webkit-mask-image: url(../images/teacher.svg);mask-image: url(../images/teacher.svg);}
i.icon-tablet{-webkit-mask-image: url(../images/tablet.svg);mask-image: url(../images/tablet.svg);}
i.icon-login{-webkit-mask-image: url(../images/login.svg);mask-image: url(../images/login.svg);}
i.icon-rightarrow{-webkit-mask-image: url(../images/right-arrow.svg);mask-image: url(../images/right-arrow.svg);}
i.icon-target{-webkit-mask-image: url(../images/target.svg);mask-image: url(../images/target.svg);}
i.icon-help{-webkit-mask-image: url(../images/help.svg);mask-image: url(../images/help.svg);}
i.icon-brain{-webkit-mask-image: url(../images/brain.svg);mask-image: url(../images/brain.svg);}
i.icon-arrowdown{-webkit-mask-image: url(../images/arrow-down.svg);mask-image: url(../images/arrow-down.svg);}
i.icon-arrowup{-webkit-mask-image: url(../images/arrow-up.svg);mask-image: url(../images/arrow-up.svg);}
i.icon-up{-webkit-mask-image: url(../images/up.svg);mask-image: url(../images/up.svg);}
i.icon-location-filled{-webkit-mask-image: url(../images/location-filled.svg);mask-image: url(../images/location-filled.svg);}
i.icon-email-filled{-webkit-mask-image: url(../images/mail-filled.svg);mask-image: url(../images/mail-filled.svg);}
i.icon-phone-filled{-webkit-mask-image: url(../images/phone-filled.svg);mask-image: url(../images/phone-filled.svg);}

a.logo{
	padding-top: 5px;
}

a.logo img{
	height: 140px;
}

.ham-menu{
	display: none;
}

.mobile-menu-container{
	display: none;
	position: fixed;
	background-color: var(--color-black);
	color: #fff;
	width: 100vw;
	height: 100vh;
	left: -1400px;
	transition: 0.5s ease-out;
	z-index: 9999;
}

.mobile-menu-container.visible{
	left:0px;
}

.mobile-menu-header{
	list-style: none;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: 20px;
	height: 70px;
}

.mobile-menu-links{
	list-style: none;
	height: calc(100% - 50px);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.mobile-menu-links a{
	font-weight: bold;
	display: inline-block;
	color: #ccc;
	padding: 15px;
	padding-left: 30px;
	border-bottom: solid 1px #444;
}

.mobile-menu-links a:last-child{
	border-bottom: none;
}

.mobile-menu-links a:hover{
	color: var(--color-pallet-primary);
}

header{
	position: fixed;
	z-index: 2000;
	width: 100%;
	background-color: transparent;
	transition: all 0.4s ease-in-out;
}

header.floated{
	background-color: var(--color-white);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.header-top{
	font-size: 0.85rem;
	height: 45px;
	background-color: var(--color-black);
}

.header-top i[class*='icon-']{
	width: 20px;
	height: 20px;
	background-color: var(--color-white-gray-light);
}

.header-top > ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 45px;
}

.header-top > ul > li{
	display: flex;
}

.header-top > ul > li > a{
	display: flex;
	color: var(--color-white-gray-light);
	align-items: center;
	line-height: 1.5;
}

.header-top > ul > li > a > i{
	margin-left: 5px;
}

.header-top > ul > li:first-child > a{
	margin-left: 30px;
}

.header-top > ul > li:last-child > a{
	margin-right: 10px;
}

.header-bar > ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0 15px 0px;
}

.header-bar > ul > li:last-child > nav.menu-desktop{
	display: flex;
}

.header-bar > ul > li:last-child > nav > a{
	margin-top: 13px;
	margin-right: 30px;
	color: var(--color-white);
	font-size: 1.2rem;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

header.floated .header-bar > ul > li:last-child > nav > a{
	color: var(--color-black);
}

.header-bar > ul > li:last-child > nav > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-pallet-primary);
  transition: width 0.6s ease;
}

.header-bar > ul > li:last-child > nav > a:hover::after {
  width: 100%;
}

.header-bar > ul > li:first-child > a{
	display: flex;
	align-items: center;
	color: var(--color-white);
	font-family: logofont;
	font-size: 1.8rem;
}

header.floated .header-bar > ul > li:first-child > a{
	color: var(--color-black);
}

.header-bar a.logo > img{
	width: 48px;
	height: 48px;
	margin-left: 15px;
}

section.intro{
	position: relative;
	background-image: url(../images/intro.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	z-index: 0;
}

section.intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: -1;
}

section.intro > .intro-text{
	width: 60%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	color: var(--color-white);
	padding-top: 350px;
}

@media only screen and (max-width : 1600px){
	section.intro > .intro-text{
		width: 75%;
	}
}

section.intro > .intro-text > h1{
	font-size: 1.3rem;
	margin-bottom: 15px;
}

section.intro > .intro-text > p{
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.7;
}

section.intro > .intro-text > a{
	margin-top: 40px;
}

section.intro > .intro-features{
	display: flex;
	justify-content: space-between;
	width: 1250px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 150px;
}

section.intro > .intro-features > li{
	width: 30%;
	display: flex;
	align-items: center;
	padding: 30px;
	height: 100px;
	overflow: hidden;
	background-color: #00000088;
}

section.intro > .intro-features > li > i{
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	margin-left: 20px;
	background-color: var(--color-pallet-primary);
}

section.intro > .intro-features > li > div{
	display: flex;
	flex-direction: column;
}

section.intro > .intro-features > li > div > h3{
	font-weight: bold;
	font-size: 1.2rem;
	color: var(--color-white);
	margin-bottom: 7px;
}

section.intro > .intro-features > li > div > p{
	line-height: 1.5;
	font-size: 0.85rem;
	color: var(--color-white-gray-light);
}

section.paddings{
	padding: 100px 0 100px 0px;
}

section.paddings > h2{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 15px;
}

section.courses{
	background-color: #fff;
}

section.courses > ul{
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

section.courses > ul > li{
	width: 30%;
	border: solid 1px #eee;
}

section.courses > ul > li > img{
	width: 100%;
}

section.courses > ul > li > h3{
	font-weight: bold;
	font-size: 1.2rem;
	color: var(--color-pallet-primary-dark);
	padding: 10px 10px 0px 10px;
}

section.courses > ul > li > p{
	line-height: 1.5;
	padding: 10px;
}

section.register{
	position: relative;
}

section.register::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: -1;
}

section.register > ul{
	display: flex;
	justify-content: space-between;
}

section.register > ul > li:first-child{
	width: 30%;
}

.register-box{
	display: flex;
	flex-direction: column;
	background-color: var(--color-white);
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.register-box > li:first-child{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 50px;
}

.register-box > li:first-child > i{
	background-color: var(--color-white);
	width: 82px;
	height: 82px;
}

.register-box > li:first-child > strong{
	font-weight: bold;
	font-size: 1.4rem;
	color: var(--color-white);
}

.register-box > li:first-child::before {
    height: 820px;
    content: "";
    border-radius: 50%;
    bottom: 330px;
    right: auto;
    width: 820px;
    z-index: -1;
    position: absolute;
    background-color: var(--color-pallet-primary);
    left: calc(50% - 410px);
    left: -webkit-calc(50% - 410px);
    left: -moz-calc(50% - 410px);
}

.register-box > li:last-child{
	background-color: var(--color-white);
	padding: 30px;
}

.register-box > li:last-child > form{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.register-box > li:last-child > form > input[type=text],
.register-box > li:last-child > form > input[type=password]{
	padding: 10px;
	border: solid 1px #ccc;
	width: 100%;
	margin-bottom: 20px;
	font-family: basefont;
	font-size: 0.9rem;
}

.register-box > li:last-child > form > input:focus{
	border: solid 1px #888;
}

.register-box > li:last-child > form a.btn{
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

a.login-link{
	margin-top: 15px;
}

section.register > ul > li:last-child{
	width: 60%;
}

section.register > ul > li:last-child > h2{
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--color-pallet-primary);
	margin-bottom: 15px;
}

section.register > ul > li:last-child > h2 > i{
	color: var(--color-white-gray-light);
}

section.register > ul > li:last-child > p{
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.7;
	color: var(--color-white);
}

section.register > ul > li:last-child > ul{
	margin-top: 150px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

section.register > ul > li:last-child > ul > li{
	margin-right: 20px;
	cursor: default;
}

section.register > ul > li:last-child > ul > li:nth-child(odd){
	width: 120px;
	height: 120px;
	border: solid 3px var(--color-white);
	border-radius: 100%;
	font-size: 1.2rem;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--color-white);
	background-color: #f1f1f144;
}

section.register > ul > li:last-child > ul > li:nth-child(even) > i{
	width: 48px;
	height: 48px;
	background-color: var(--color-pallet-primary);
}

section.whyus{
	background-color: var(--color-white-gray);
}

section.whyus > h2,
section.whyus > p{
	text-align: center;
}

section.whyus > ul{
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

section.whyus > ul > li{
	width: 30%;
	background-color: var(--color-white);
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.whyus > ul > li > *{
	margin-bottom: 20px;
}

section.whyus > ul > li > i{
	width: 64px;
	height: 64px;
	background-color: var(--color-pallet-primary);
	margin-bottom: 40px;
}

section.whyus > ul > li:first-child > i{
	width: 76px;
	height: 76px;
	margin-top: -15px;
}

section.whyus > ul > li > h3{
	font-size: 1.2rem;
	font-weight: bold;
}

section.whyus > ul > li > p{
	text-align: center;
	line-height: 1.7;
}

section.news{
	background-color: var(--color-white);
}

section.news > ul{
	display: flex;
	flex-direction: column;
}

section.news > ul > li{
	border-top: solid 1px #f1f1f1;
	margin-top: 30px;
	display: flex;
	padding-top: 35px;
}

section.news > ul > li > div:first-child{
	border-left: solid 2px #f1f1f1;
	width: 80px;
	height: 60px;
	margin-left: 50px;
	flex-shrink: 0;
}

section.news > ul > li > div:first-child > span{
	color: var(--color-gray-light);
	font-size: 1rem;
}

section.news > ul > li > div:first-child > span > i{
	font-weight: bold;
	font-size: 2rem;
	color: var(--color-pallet-primary);
	display: block;
	margin-bottom: 10px;
}

section.news > ul > li > div:nth-child(2){
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-left: 20px;
}

section.news > ul > li > div:nth-child(2) > h3{
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 20px;
}

section.news > ul > li > img{
	width: 300px;
	flex-shrink: 0;
}

section.reviews{
	position: relative;
	background-image: url(../images/rev-bg.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}

section.reviews::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: -1;
}

section.reviews > h2,
section.reviews > p{
	color: var(--color-white);
}

.swiper.reviewsSwiper {
	margin-top: 50px;
	padding-top: 25px;
	padding-bottom: 25px;
}

.review-item{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.review-item > img{
	display: block;
	border-radius: 100%;
	width: 120px;
	margin-bottom: 35px;
}

.review-item > ul{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.review-item > ul > li{
	margin-bottom: 20px;
}

.review-item > ul > li.fullname{
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--color-white);
}

.review-item > ul > li.course{
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--color-pallet-primary);
}

.review-item > ul > li.review{
	font-style: italic;
	line-height: 1.8;
	text-align: center;
	font-size: 1.05rem;
	color: var(--color-white-gray-light);
}

section.faq{
	background-color: var(--color-white);
}

section.faq > h2,
section.faq > p{
	text-align: center;
}

section.faq > div{
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

section.faq > div > div{
	width: 47%;
}

section.faq > div > div > ul{
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

section.faq > div > div > ul i{
	vertical-align: middle;
	background-color: var(--color-white);
	transition: all 0.6s ease-in-out;
	display: inline-block;
}

section.faq > div > div > ul.expanded i{
	transform: rotateX(180deg);
}

section.faq > div > div > ul > li:first-child{
	padding: 7px;
	color: var(--color-white);
	cursor: pointer;
	background-color: var(--color-pallet-primary);
	transition: all 0.6s ease-in-out;
}

section.faq > div > div > ul.expanded > li:first-child{
	cursor: pointer;
	background-color: var(--color-pallet-primary-dark);
}

section.faq > div > div > ul > li:last-child{
	transition: all 0.6s ease-in-out;
	line-height: 1.7;
	background-color: var(--color-white-gray-light);
	max-height: 0px;
	overflow: hidden;
}

section.faq > div > div > ul.expanded > li:last-child{
	max-height: 500px;
}

section.faq > div > div > ul > li:last-child > p{
	padding: 7px;
}

footer{
	background-color: #222;
	color: var(--color-white-gray);
	padding-top: 30px;
	padding-bottom: 30px;
}

footer > ul{
	display: flex;
	flex-direction: column;
}

footer > ul > li:last-child{
	border-top: solid 1px #666;
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

footer > ul > li:first-child{
	display: flex;
	justify-content: space-between;
}

footer > ul > li:first-child > div:first-child{
	width: 35%;
	margin-left: 50px;
	flex-shrink: 0;
}

footer > ul > li:first-child > div:last-child{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.footer-logo{
	display: flex;
	align-items: center;
	color: var(--color-white);
	font-family: logofont;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.footer-logo > img{
	width: 64px;
	height: 64px;
	margin-left: 20px;
}

footer > ul > li:first-child > div:first-child > ul{
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
}

footer > ul > li:first-child > div:first-child > ul > li{
	display: flex;
	align-items: center;
	line-height: 28px;
	margin-top: 15px;
}

footer > ul > li:first-child > div:first-child > ul i{
	width: 24px;
	height: 24px;
	margin-left: 10px;
	background-color: var(--color-pallet-primary);
}

footer > ul > li:first-child > div:first-child > ul{
	display: flex;
	flex-direction: column;
}

.footer-links{
	display: flex;
	justify-content: end;
	align-items: center;
	margin-top: 20px;
}

.footer-links > a{
	color: var(--color-white-gray);
	margin-right: 10px;
}

.footer-links > a[href]:hover{
	color: var(--color-pallet-primary);
}

.footer-pics{
	margin-top: 30px;
	display: flex;
}

.footer-pics > *{
	margin-left: 15px;
	flex-shrink: 0;
}

.footer-pics > *:last-child{
	margin-left: 0px;
}

.footer-pics > *:first-child{
	flex-grow: 1;
}

a.scrollUp{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	background-color: var(--color-white);
	bottom: -200px;
	left: 20px;
	border-radius: 50%;
	position: fixed;
	cursor: pointer;
	transition: var(--transition-duration);
	z-index: 500;
	overflow: hidden;
}

a.scrollUp > i{
	background-color: var(--color-pallet-primary);
	width: 64px;
	height: 64px;
}

a.scrollUp.visible{
	bottom: 20px;
}

a.menuClose{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	background-color: var(--color-white);
	border-radius: 50%;
	cursor: pointer;
	overflow: hidden;
}

a.menuClose > i{
	background-color: var(--color-pallet-primary);
	width: 64px;
	height: 64px;
}

.jBox-Modal .jBox-content{
	border-radius: 0;
	padding: 0px !important;
	direction: rtl;
	text-align: right;
}

.jBox-Modal .jBox-container{
	border-radius: 0;
	padding: 0px !important;
}

.dlg_title{
	padding: 12px;
	color: var(--color-white);
	background-color: var(--color-pallet-primary);
	font-size: 1.1rem;
	font-weight: bold;
}

.message_box{
	padding: 20px;
}

.dlg_form > div.field{
	margin-bottom: 15px;
	min-width: 300px;
}

.dlg_form > div.field label{
	display: block;
	font-weight: bold;
	padding-bottom: 7px;
	color: var(--color-gray-darker);
}

.dlg_form > div.field input{
	padding: 5px;
	border: solid 1px #ccc;
	font-family: basefont;
	font-size: 0.9rem;
	transition: var(--transition-duration);
	width: 100%;
}

.dlg_form > div.field input:focus{
	border: solid 1px #666;
}

.dlg_frm_btns{
	display: flex;
	justify-content: end;
}

.dlg_frm_btns > a{
	margin-right: 10px;
}

.dlgMessageContainer{
	position: absolute;
	top:0px;
	left:0px;
	z-index: 100;
	width:100%;
	background-color:rgba(65, 65, 65,0.6);
}

.dlgMessagePanel{
	display:none;
	position: absolute;
	width: 90%;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%,-50%,0);
	z-index: 100;
	max-height:85%;
	background:#eee;
	padding:10px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.dlgErrItems{
	line-height: 20px;
	overflow-y:auto;
}

.dlgErr{
	line-height: 20px;
	padding:5px;
	background-image: url(/assets/images/dlg-err.svg);
	background-size: 20px 20px;
	background-position: right 3px;
	background-repeat: no-repeat;
	padding-right:23px;
}

i.dlgMessageClose{
	position: absolute;
	z-index:200;
	left:-12px;
	top:-12px;
	cursor: pointer;
	width: 24px;
	height: 24px;
	background-image: url(/assets/images/dlg-close.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px 24px;
}

.dlg_result{
	line-height: 1.7;
	padding: 15px;
	color: var(--color-pallet-primary);
}