p{padding: 0px; margin: 0px;}
a{padding: 0px; margin: 0px; outline: none;}
ul{ list-style: none; padding: 0px; margin: 0px;}
ul li{ padding: 0px; margin: 0px;}
h1, h2, h3, h4, h5, h6{padding: 0px; margin: 0px;}
a:hover{ outline: none !important; text-decoration: none;}
a:active{ outline: none !important; text-decoration: none;}
a:focus{ outline: none !important; text-decoration: none;}
input[type="text"]::-webkit-input-placeholder { opacity: 1; }
input[type="text"]::-moz-placeholder { opacity: 1; }
input[type="password"]::-webkit-input-placeholder { opacity: 1; }
input[type="password"]::-moz-placeholder { opacity: 1; }
input[type="search"]::-webkit-input-placeholder { opacity: 1; }
input[type="search"]::-moz-placeholder { opacity: 1; }
input[type="email"]::-webkit-input-placeholder { opacity: 1; }
input[type="email"]::-moz-placeholder { opacity: 1; }
input[type="tel"]::-webkit-input-placeholder { opacity: 1; }
input[type="tel"]::-moz-placeholder { opacity: 1; }
textarea::-moz-placeholder { opacity: 1; }
textarea::-webkit-placeholder { opacity: 1; }
body {
	font-family: Arial, Helvetica, sans-serif;
	position: relative;
	height:100%;
	overflow-y: hidden
}
html {
	height: 100vh
}

.background-image{	
	background: url(../../images/bg-1.jpg) 0 0 no-repeat; background-size: cover;
}
.main {
	height:calc(100vh - (94px));
}
header {
	background:#fff;
	box-shadow:0 0 10px rgba(0,0,0,.5);
	padding: 6px 0 6px 26px;
	position: relative;
	z-index: 999
}
.logo {
	float:left;
	margin: 0;
	padding: 0;
}
.navbar {
	float: right;
	padding: 0 80px 0 0;
	margin: 0;
	border: none;
}

.navbar ul li {
	font-size:14px;
	padding: 0 0 0 25px;
	margin: 0;
}
.navbar ul li a {
	font-size:14px;
	padding: 0 15px 4px 15px;
	margin: 0;
	color: #333333;
	line-height: 46px;
	border-bottom: 2px solid #fff 
}
.navbar ul li a:hover, .navbar ul li.active a {
	color: #4693CA;
	border-bottom: 2px solid #4693CA ;
	background: none;
}

.login_container {
	width:926px;
	margin:0 auto;
	padding:110px 0;
}

.login_left {
	width:410px;
	position: relative;
	float: left;
	margin: 0;
	padding:98px 25px 22px 25px;
	background: #F2F2F2;
	border: 1px solid #D9D9D9
}

.login_right {
	width:410px;
	position: relative;
	float: none;
	margin: 0 auto;
	padding:25px;
	background: #F2F2F2;
	border: 1px solid #D9D9D9;
	-webkit-box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
	-moz-box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
	box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
	border-radius: 10px;
}

.forgot_top_icon {
	background: #3DB1FF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	box-shadow:0 0 2px #ccc;
	border:5px solid #fff;
	width:120px;
	height: 120px;
	margin: -170px auto 0 auto;
}

.forgot_top_icon img{
	height: 60px;
}


.login_top_icon {
	background: #3DB1FF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	box-shadow:0 0 2px #ccc;
	border:5px solid #fff;
	width:120px;
	height: 120px;
	margin: -92px auto 0 auto;
}

.login_top_icon img{
	padding: 1px 22px 12px 22px;
}

.remember {
    display: block;
    position: relative;
    padding-left: 27px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #595959;
    font-weight: 400;
}

/* Hide the browser's default checkbox */
.remember input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #D8D8D8;
    border-radius: 50%;
    border: 3px solid #D8D8D8
}

/* On mouse-over, add a grey background color */
.remember:hover input ~ .checkmark {
    background-color: #D8D8D8;
}

/* When the checkbox is checked, add a blue background */
.remember input:checked ~ .checkmark {
    background-color: #3DB1FF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.remember input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.remember .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
}

.login_container h2 {
	font-size:30px;
	color: #404040;
	padding:20px 0 0 0;
	text-align: center;
	font-weight: 600;
}

.login_container p {
	font-size:18px;
	color: #404040;
	padding:15px 0 0 0;
	text-align: center;
	font-weight: 500;
}

.sucess_msg {
	color:#3DB1FF;
	background: #D8ECFB;
	text-align: center;
	margin: 15px 0 0 0;
	border-radius:15px;
	line-height: 40px;
}

.login_container input {
	width:100%;
	border:1px solid #D8D8D8;
	background: #fff;
	margin: 13px 0 0 0;
	height: 60px;
	padding:0 10px 0 70px;
	font-size: 18px;
	color: #666666;
	font-family: 'Roboto', sans-serif;
	background-position: 13px center;
	background-repeat: no-repeat;
}

.login_container input.lg_email { 
	background-image: url(../../images/mail-icon.svg);
	background-size: 30px auto; 
}
.login_container input.lg_password {
	background-image: url(../../images/password-icon.svg);
	background-size: 17px auto;
}
.login_container input.lg_name {
	background-image: url(../../images/profile-icon.svg);
	background-size: 23px auto;
}

.login_container input[type="submit"] {
	width:202px;
	border:none;
	background: #3DB1FF;
	margin: 14px 0 0 0;
	height: 60px;
	padding:0 0 0 0;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	transition:all .3s;
}

.login_container input[type="submit"]:hover {
	transition:all .3s;
	background: #1F93E1;
}

.login_remmember {
	float:left;
	padding: 0;
	margin: 0
}
.forget_anchor {
	float: right;
	padding: 0;
	margin: 0
}

.forget_anchor a{
	color: #3DB1FF;
	font-size: 15px;
	text-decoration: underline;
}
.forget_anchor a:hover{
	text-decoration: none;
}
.log {
	padding: 23px 0 28px 0;
	margin: 0
}

.login_container .login_right input {
	margin: 9px 0 0 0;
}
.login_container .login_right input[type="submit"] {
	margin: 13px 0 0 0;
}
footer {
	font-size: 13px;
	color: #666;
	background: #333;
	text-align: center;
	line-height: 36px;
	position: relative;
	z-index: 9999;
	padding: 0 0 0 17%;
}
/*background:green;
    height: -moz-calc(100% - (20px + 30px));
    height: -webkit-calc(100% - (20px + 30px));
    height: calc(100% - (20px + 30px));
    display:block*/

.forgot_password {
	width:680px;
	position: relative;
	margin: 0 auto;
	padding:98px 25px 22px 25px;
	background: #F2F2F2;
	border: 1px solid #D9D9D9;
	-webkit-box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
-moz-box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
border-radius: 10px;
}

.reset_password {
	width:680px;
	position: relative;
	margin: 0 auto;
	padding:9px 25px 22px 25px;
	background: #F2F2F2;
	border: 1px solid #D9D9D9;
	-webkit-box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
	-moz-box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
	box-shadow: 0px 0px 10px 7px rgba(0,0,0,0.47);
	border-radius: 10px;
}

.login_container .forgot_password input.lg_email {
    margin:30px 0 10px 0;

}

.or {
	float:left;
	margin: 127px 0 0 28px;
	background: url(../../images/border.jpg) center top repeat-y;
	padding: 114px 0 ;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.or span {
	background:#3DB1FF;
	border-radius: 50%;
	width:50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	display: block;
}

.left_nav {
	width: 17%;
	background-color: #4F4F4F;
	left: 0;
	position: fixed;
	height: 110vh
}
.left_nav ul li {
	padding: 0;
	border-bottom: 1px solid #606060;
	font-size: 14px;
	font-weight: 300
}
.left_nav ul li img {
	width:20px;
	margin-right:10px; 
}

.left_nav ul li a {
	color: rgba(255,255,255,0.5);
	padding: 36px 0 30px 20px;
	display: block;
	border-left:3px solid transparent 
}

.left_nav ul li a:hover, .left_nav ul li.active a  {
	border-color:#65A9DA;
	color: #fff;
	font-weight: 500
}

.right_pannel {
	margin: 0 0 0 17%;
	padding: 40px 0 0 20px;
    overflow-y: auto;
    height:calc(100vh - (94px));
}

.setting_main h2 {
	font-size: 30px;
	font-weight: 600;
	color: #3DB1FF;
	margin: 0;
	padding: 0;
}

.setting_main p {
	font-size: 16px;
	font-weight: 500;
	color: #666666;
	margin: 0;
	padding:20px 0 0 0;
}

.setting_grey {
	margin: 20px 0 0 20px;
	width:375px;
	padding: 15px 30px;
	background-color: #F5F5F5;
	float: left;
}

.setting_pink {
	margin: 20px 0 0 20px;
	width:375px;
	padding: 15px 30px;
	background-color: #F46F6F;
	float: left;
}
.setting_pict {
	float: left;
	margin: 0;
	padding: 15px 45px 0 0;
}
.setting_details {
	float:left;
}
.setting_details h3 {
	font-size: 24px;
	font-weight: 400;
	padding: 0 0 20px 0;
	margin: 0;
	color: #4F4F4F
}

.setting_details input {
	border:1px solid #C5C5C5;
	height: 32px;
	width:100%;
	background: #fff;
	padding: 0 10px;
}


.setting_active {
	color: #4F4F4F;
	line-height: 34px;
	font-size: 18px;
}

.setting_active span{
	border-radius: 50%;
	width:16px;
	height: 16px;
	display: inline-block;
}

.setting_active span.green {
	background-color: #14AE00;
}

.setting_condition {
    display: block;
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #595959;
	font-weight: 400;
	float: left;
	margin-right: 20px;
}

/* Hide the browser's default checkbox */
.setting_condition input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.setting_condition .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #D8D8D8
}

/* On mouse-over, add a grey background color */
.setting_condition:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.setting_condition input:checked ~ .checkmark {
    background-color: #4F4F4F;
}

/* Show the checkmark when checked */
.setting_condition input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.setting_condition .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
}

.setting_details-2 h3 {
	font-size: 24px;
	font-weight: 400;
	padding: 0 0 20px 0;
	margin: 0;
	color: #fff
}

.setting_details-2 a {
	background-color: #fff;
	font-size: 18px;
	font-weight: 500;
	color: #F46F6F;
	line-height: 32px;
	width:92px;
	display: inline-block;
	text-align: center;
	transition: all .3s
}
.setting_details-2 a:hover {
	background-color: #D85353;
	color: #fff;
	transition: all .3s
}

.setting_main input[type="submit"]{
	width:175px;
	height: 46px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	background-color: #3DB1FF;
	border: none;
	margin: 20px 0 0 20px;
	transition:all .3s
}
.setting_main input[type="submit"]:hover{
	background-color: #1F93E1;
	transition:all .3s
}

.service_main h2 {
    font-size: 30px;
    font-weight: 600;
    color: #3DB1FF;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.service_main p {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    margin: 0;
    padding: 20px 0 0 0;
}
.service_main h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4F4F4F;
    margin: 0;
    padding: 20px 0 0 0;
}
.service_main h3 span {
	width:12px;
	display: inline-block;
	margin: 0 0 0 5px;
}
.service_main h3 span img {
	width:100%;
}
.service_table {
	padding: 20px 0 50px 0;
	margin: 0;
	width:98%;
}

.service_table table {
	width:100%;
	
}
.service_table table thead {
	background-color: #3DB1FF;
	padding: 0 0;
}
.service_table table thead span img {
	width:20px;
}
.service_table table thead span {
	float:left;
	margin-right: 10px;
}

.service_table table thead tr th {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	padding: 12px 10px;
	border-right: 2px solid #0087CE ;
	margin: 0 0;
}
.service_table table thead tr th.no-border {
	border: none;
}

.service_table table tbody tr td {
	font-size: 15px;
	font-weight: 400;
	padding:6px 10px;
	margin: 0 0;
}
.service_table table tbody tr:nth-child(2n) {
	background-color: #F2F2F2
}
.service_table table tbody {
	border: 2px solid #F2F2F2;
}
.service_table table tbody input {
	width: 100px;
	border: 1px solid #ccc;
	background: #fff;
	height: 32px;
	padding: 0 10px;
}
.service_table table tbody a.add_bttn {
	background: #3DB1FF;
	color: #fff;
	line-height: 34px;
	padding: 0 12px;
	font-size: 18px;
	display: inline-block;
	text-align: center;
	transition:all .3s
}
.service_table table tbody a.add_bttn:hover {
	background: #1F93E1;
	transition:all .3s
}
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: 'Roboto', sans-serif;
  width:100%;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
  background-color: transparent;
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 0;
  width: 10px;
  height: 5px;
  background: url(../../images/carret.svg) center no-repeat;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;

}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #4F4F4F;
  padding: 10px;
  border: 1px solid transparent;
  border-color: none;
  cursor: pointer;
  user-select: none;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color:#fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid #ccc;
  border-top: none;
  height: 130px;
  overflow-y:auto;
}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div {
	border-top: 1px solid #ccc
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.table_slide {
	background: #999;
	padding: 12px 17px;
	margin: 0 0 25px 0;
}
.left_arrow {
	float:left; 
	cursor: pointer;
	width:10px;
}

.right_arrow {
	float:right; 
	cursor: pointer;
	width:10px;
}

a.grey_bttn{
	font-size: 18px;
	background: #999;
	color: #fff;
	padding: 0 17px;
	line-height: 47px;
	display: inline-block;
	transition:all .3s
}
a.grey_bttn:hover {
	background: #666;
	transition:all .3s
}
input.blue_bttn{
	font-size: 18px;
	background: #3DB1FF;
	color: #fff;
	padding: 0 32px;
	line-height: 47px;
	display: inline-block;
	transition:all .3s;
	border: none;
}
input.blue_bttn:disabled{
	font-size: 18px;
	background: #999;
	color: #fff;
	padding: 0 17px;
	line-height: 47px;
	display: inline-block;
	transition:all .3s
}
input.blue_bttn:hover:enabled {
	background: #1F93E1;
	transition:all .3s
}
.payment_table {
	padding: 20px 0 0 0;
	margin: 0;
	width:98%;
}

.payment_table table {
	width:100%;
	
}
.payment_table table thead {
	background-color: #3DB1FF;
	padding: 0 0;
}
.payment_table table thead span img {
	width:20px;
}
.payment_table table thead span {
	float:left;
	margin-right: 10px;
}

.payment_table table thead tr th {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	padding: 12px 10px;
	text-align:center;
	margin: 0 0;
}
.payment_table table thead tr th.no-border {
	border: none;
}

.payment_table table tbody tr td {
	font-size: 15px;
	font-weight: 400;
	padding:6px 10px;
	margin: 0 0;
	border-right:1px solid #CACACA;
	text-align:center; 
}
.payment_table table tbody tr:nth-child(2n) {
	background-color: #F2F2F2
}
.payment_table table tbody {
	border: 2px solid #F2F2F2;
}
.payment_table table tbody input {
	width: 100px;
	border: 1px solid #ccc;
	background: #fff;
	height: 32px;
	padding: 0 10px;
}

.payment_table table tbody tr td:first-child {
	padding:6px 25px;
}

.payment_table table tbody tr td:nth-child(2) {
	padding:6px 65px;
}
.payment_table table tbody tr td:nth-child(3) {
	padding:6px 30px;
}
.payment_table table tbody tr td:nth-child(4) {
	padding:6px 10px;
}
.payment_table table tbody tr td:nth-child(5) {
	padding:6px 15px;
}
.payment_table table tbody tr td:nth-child(6) {
	padding:6px 30px;
	text-align: left;
	font-size: 14px;
	color:#333333;
	line-height: 20px;
	font-weight: 300
}

.upload_main {
	position: relative;
	margin: 0 0;
	padding: 0;
	float: left;
}
.upload_main:hover {
	opacity: 0.8;
}
.upload_main input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height: 22px;
	opacity: 0;
	cursor: pointer;

}
.upload_text {
	float: left;
	font-size: 10px;
	font-weight: 300;
	padding: 0 30px 0 10px;
	line-height: 20px;
	border: 1px solid #C4C4C4;
	color:#C4C4C4;
}

.upload_bttn {
	float: left;
	font-size: 10px;
	font-weight: 600;
	padding: 0 6px 0 20px;
	line-height: 20px;
	border: 1px solid #2FACFF;
	color:#fff;
	background:url(../../images/upload.svg) 5px center #2FACFF no-repeat;
	background-size:12px ;
	cursor: pointer;
}

.download_bttn {
	float: left;
	font-size: 10px;
	font-weight: 600;
	padding: 0 6px 0 20px;
	line-height: 20px;
	border: 1px solid #2FAC55;
	color:#fff;
	background:url(../../images/download-button.svg) 5px center #2FAC55 no-repeat;
	background-size:12px;
	cursor: pointer;
	margin-top: 6px;
	clear: both;
}

.download_bttn:hover {
	opacity: .8;
}
.download_bttn img {
	width:10px;
}

a.paid {
	background: #2FAC55;
	color: #fff;
	line-height: 20px;
	padding:0 12px;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	border-radius: 10px;
	transition:all .3s
}
a.past_due {
	background: #C34A2E;
	color: #fff;
	line-height: 20px;
	padding:0 12px;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	border-radius: 10px;
	transition:all .3s
}
a.open {
	background: #0088E4;
	color: #fff;
	line-height: 20px;
	padding:0 12px;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	border-radius: 10px;
	transition:all .3s
}
a.paid:hover, a.open:hover, a.past_due:hover  {
	transition:all .3s;
	opacity:0.8
}
.pagination {
	padding:20px 0 0 0;
	display: block;
}

.pagination ul {
	padding:0 0 0 0;
	margin: 0;
	float: right;
}


.pagination ul li span {
	padding:0 0 0 0;
	margin: 0;
	float: left;
	font-size: 14px;
	display: block;
	text-align: center;
	width:25px;
	line-height:25px ;
}
.pagination ul li a {
	padding:0 0 0 0;
	margin: 0;
	float: left;
	font-size: 14px;
	color: #A0A0A0;
	font-weight: 400;
	display: block;
	text-align: center;
	width:25px;
	line-height:25px ;
}
.pagination ul li a:hover {
	color: #fff;
	background: #3DB1FF
	}
.pagination ul li.active span {
	color: #fff;
	cursor: text;
	background: #3DB1FF
}

ul.payment {
	margin: 0 0 0 0;
	padding: 20px 0 0 0;
}

ul.payment li {
	margin: 0 0 0 0;
	padding: 0 60px 0 0;
	float:left ;
	font-size: 16px;
	color: #868686;
	font-weight: 500
}
ul.payment li:first-child {
	padding: 0 100px 0 0;
}

.payment_radio {
    display: block;
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #383838;
	font-weight: 600;
	float: left;
	margin-right: 20px;
}

/* Hide the browser's default checkbox */
.payment_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.payment_radio .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #CDCDCD;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow:0 0 2px #000;
}

/* On mouse-over, add a grey background color */
.payment_radio:hover input ~ .checkmark {
    background-color: #000;
}

/* When the checkbox is checked, add a blue background */
.payment_radio input:checked ~ .checkmark {
    background-color: #3db1ff;
}

/* Show the checkmark when checked */
.payment_radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.payment_radio .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
}

.top_dash {
	float: right;
	color: #44B2FD;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 6px;
	padding: 0 20px 0 0;
}


.profile_pannel {
	float: right;
	margin: 0;
	padding: 0;
	width:83%;
    overflow-y: auto;
    height:calc(100vh - (94px));
}
.profile_bg {
	margin: 0;
	padding: 0;
}
.profile_bg img {
	margin: 0;
	padding: 0;
	width:100%
}

.profile_main {
	width: 948px;
	margin: 0 0 0 65px;
	padding: 0;
	position: relative;
}

.porofile_top {
	margin: -125px 0 30px 0;
	padding: 0
}

.profile_pict {
	float: left;
	margin: 0;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,1)
}
.profile_pict img {
	width:100%;
	border-radius: 50%;
	display: block;
	border: 10px solid #fff
}
.profile_text {
	width: 665px;
	margin: 0 0 0 0;
	padding: 74px 0 0 0;
	float: right;
}
.profile_text h2 {
	color: #fff;
	font-weight: 700;
	padding: 0;
	margin: 0;
	font-size: 36px;
}

.profile_text p {
	color: #535353;
	font-weight: 400;
	padding: 25px 0 0 0;
	margin: 0;
	font-size: 16px;
	line-height: 21px;
}
.profile_box.last {
	margin-right: 0;
} 
.profile_box {
	width: 180px;
	margin: 0 10px 10px 0;
	float: left;
	background: #DCDCDC;
	padding: 20px;
	min-height:97px;
}
.profile_box h3 {
	font-size: 16px;
	font-weight: 400;
	color: #7F7F7F;
}
.top_profile_box .profile_box {
	width:307px;
}
.bottom_profile_box {
	margin: 30px 0 0 0
}

.profile_box i {
	padding-right: 10px;
}
.top_profile_box .profile_box ul {
	height: auto;
}
.profile_box ul {
	padding: 20px 0 0 15px;
}

.profile_box ul li {
	margin-top: 1px;
    display: inline-block
}


a.box_bttn {
	text-align: center;
	display: block;
	font-size: 14px;
	line-height: 28px;
	border: 1px solid #12A0FF;
	background:#3DB1FF;
	color:#fff;
	border-radius: 15px;
	transition:all .3s;
}
a.box_bttn:hover {
	background:#12A0FF;
	transition:all .3s;
}

.profile_box p {
	padding:15px 0 0 22px;
	font-size: 12px;
	font-weight: 600;
	color: #7F7F7F;
	word-break: break-all;
}

.profile_box p a {
	color: #7F7F7F;
}
.profile_resume {
	padding: 70px 0 35px 0;
	margin: 0;
}
.profile_resume ul {
	margin: 0;
	padding: 0;
}
.profile_resume ul li {
	margin: 0 40px 40px 0;
	padding: 0;
	position: relative;
	float: left;
	box-shadow: 0 0 20px rgba(0,0,0,.2)
}
.profile_resume ul li a {
	color: #BFBFBF;
	position: absolute;
	font-size: 30px;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px
}

.profile_resume ul li:hover a {
	color: #3db1ff;
}
a.resume_bttn {
	font-size: 16px;
	font-weight: 600;
	padding: 0 60px;
	display: inline-block;
	color: #fff;
	background: #3DB1FF;
	line-height: 48px;
	transition: all .3s
}

a.resume_bttn:hover {
	background:#12A0FF;
	transition:all .3s;
}


.lang {
    display: block;
    position: relative;
    padding-left: 27px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #595959;
    font-weight: 400;
}

/* Hide the browser's default checkbox */
.lang input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.lang .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #D8D8D8;
    border:0px solid #D8D8D8;
}

/* On mouse-over, add a grey background color */
.lang:hover input ~ .checkmark {
    background-color: #D8D8D8;
}

/* When the checkbox is checked, add a blue background */
.lang input:checked ~ .checkmark {
    background-color: #3DB1FF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.lang .checkmark:after {
    content: "✔";
	position: absolute;
	display: block
}

/* Show the checkmark when checked */
.lang input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.lang .checkmark:after {
    left: 5px;
	top: 2px;
	width: 5px;
	height: 10px;
	color: #fff;
	font-size: 12px;
}

.language-pop ul li {
	float: left;
	width:25%;
	padding: 10px 0
}

.language-pop h5{
	color: #020100;
	text-align: center;
	padding: 0;
	margin: 0;
	font-size: 24px;
	font-weight: 400
}

.language-pop .modal-header {
	padding-bottom: 0;
	border-bottom:none;
	position: relative;
	margin-bottom: 0
}

.language-pop .modal-header .close {
    color: #000;
    opacity: 1;
    font-size: 50px;
	font-weight: 100;
	margin-top: -42px;
}

.language-pop ul {
	padding-bottom: 20px;
	padding-left: 10px;
}

.language-pop a.box_bttn {
    display: inline-block;
    padding: 0 50px;

}
.modal-dialog {
    width: 600px;
    margin: -200px auto;
    height: 400px;
    top: 50%;
}
.header_right {
	float: right;
	padding: 10px 30px 14px 0
}

.header_right input {
    width: 216px;
    border: 1px solid #D8D8D8;
    background: #fff;
    margin: 0 3px;
    height: 32px;
    padding: 0 10px;
    font-size: 14px;
    color: #666666;
    background-position: 13px center;
    background-repeat: no-repeat;
}

.header_right input[type="submit"],input[type="button"] {
	width:auto;
	border:none;
	background: #3DB1FF;
	margin: 0 3px;
	height: 32px;
	padding:0 20px;
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	transition:all .3s;
}

.header_right input[type="submit"]:hover {
	transition:all .3s;
	background: #1F93E1;
}
.service_main .service_curr_head h3 {
	float: left;
	padding:5px 0 0 0;
}
.currency_right {
	float: right;
	width:280px;
}
.lavel {
    float: left;
    width: 180px;
    padding: 10px 0 0 0;

}
.currency_right .custom-select {
	float: right;
	width:100px;
}
.service_curr_head {
	padding: 20px 0;
}
.currency_right .select-items div, .currency_right .select-selected {
    color: #4F4F4F;
    padding: 8px 20px 8px 10px;
    border: 1px solid #ccc;
}
.currency_right .select-selected:after {
    top: 16px;
    right: 6px;
}

footer.no-padd {
	padding: 0;
}
.menu_open {
	width: 134px;
    height: 25px;
    float: left;
    padding: 0 0 0 0;
    margin: 10px;
    cursor: pointer;
    display: none;
    background: url(../../images/menu_bg.png) 0 0 no-repeat;
    background-size: 30px;
	text-indent: -99999px;
	transition:all .3s;
	width: 30px;
}
.menu_open.menu_close {
	transform: rotate(180deg)
}
.left_nav {
	z-index: 99999;
}
.profile_edit {
	padding: 20px 20px 0 0;
}

.form-control {
	width:100%;
	padding: 0 0;
	position: relative;
	height: 50px;
	border: 1px solid #ccc;
	border-radius: 0;
	margin: 0 0 15px 0;
}

.form-control  img {
	position: absolute;
	top:15px;
	left: 10px;
}
.form-control input {
	width:100%;
	height: 48px;
	border: none;
	padding: 0 0 0 40px;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
}
.form-control .select-selected{
	padding: 13px 15px 13px 40px;
	
}
.form-control .select-selected:after {
	right:10px;
}
.form_smal {
	width:49%;
}
.lft {
	float: left;
}
.rgt {
	float: right;
}
.uplo {
	width:100%;
	line-height: 48px;
	border: none;
	padding: 0 0 0 10px;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	position: absolute;
}
.form-control  img.im_right {
	position: absolute;
	top:15px;
	left: auto;
	right:10px
}
.form-control input[type="file"] {
	position: relative;
	z-index: 99;
	opacity: 0;
}
.profile_main_edit {
	max-width:920px;
}

.profile_edit {
	padding-bottom: 40px;
}

.bootstrap-select .btn:focus {
    outline: none !important;
}

.bootstrap-select .dropdown-toggle:focus {
	outline: none !important;
}

.bootstrap-select .dropdown-toggle {
    border: none !important;
    background: none !important;
	padding: 0px 0px 0px 35px !important;
    height: 48px;
}

.bootstrap-select:not([class*="span"]):not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
  width:100%;
}

.text-danger{  
	margin-top: -2px !important;
    display: block !important;
}

a.create_new_button {
	background: #3DB1FF;
	color: #fff;
	line-height: 34px;
	padding: 0 20px;
	font-size: 18px;
	display: block;
	text-align: center;
	transition:all .3s
}
a.create_new_button:hover {
	background: #1F93E1;
	transition:all .3s
}

@media only screen and (min-width:1024px) and (max-width:1210px)
{
	.upload_text {
		padding: 0 20px 0 10px;
	}
	.left_nav {
		width: 250px;
		left: -250px;
		position: absolute;
		height: calc(100% - 90px);
		overflow: auto;
	
	}
	.left_nav.open {
		transition:all .3s;
		left: 0
	}
	.right_pannel {
		margin: 0;
	}
	.menu_open {
		display:block
	}
	.profile_pannel {
		width: 100%;
	}
	.profile_main {
		width: 96%;
		margin: 0 auto;	
	}
	.profile_box {
		width: 18%;
		margin: 0 2% 2% 0;
	}
	.profile_box h3 {
		font-size: 15px;
	}
}

@media only screen and (min-width:768px) and (max-width:1023px)
{
.container{width: 740px;}
.header_right {
	display: none;
}
.login_container {
	width:100%
}
.left_nav {
	width: 250px;
	left: -250px;
	position: absolute;
	height: calc(100% - 90px);
	overflow: auto;

}
.left_nav.open {
	transition:all .3s;
	left: 0
}
.right_pannel {
	margin: 0;
}
.menu_open {
	display:block
}
.payment_table table tbody tr td:nth-child(2) {
    padding: 6px 15px;
}
.payment_table, .service_table {
    padding: 20px 20px 0 0;
    width: 950px;
    overflow-x: scroll;
}
.setting_grey, .setting_pink {
    margin: 20px 2% 0 0;
    width: 48%;
}
.setting_main input[type="submit"] {
	margin: 20px 0;
}
.setting_details-2 h3 {
	font-size: 23px;
}
.profile_pannel {
	width: 100%;
}
.profile_main {
	width: 96%;
	margin: 0 auto;	
}
.profile_box, .profile_box.last, .top_profile_box .profile_box {
	width: 48%;
	margin:1%;
	/*min-height: 145px;*/
}
.profile_text {
	width: 474px;
}
}


@media only screen and (max-width:767px) 
{
.container{width: 90%;}
.header_right {
	display: none;
}
.login_container {
	width:100%
}
.forgot_password {
	width:92%
}
.left_nav {
	width: 250px;
	left: -250px;
	position: absolute;
	height: calc(100% - 90px);
	overflow: auto;

}
.left_nav.open {
	transition:all .3s;
	left: 0
}
.right_pannel {
	margin: 0;
}
.menu_open {
	display:block
}
.payment_table table tbody tr td:nth-child(2) {
    padding: 6px 15px;
}
.payment_table, .service_table {
    padding: 20px 20px 0 0;
    width: 950px;
    overflow-x: scroll;
}
.setting_grey, .setting_pink {
    margin: 20px 0% 0 0;
    width: 94%;
}
.setting_main input[type="submit"] {
	margin: 20px 0;
}
.setting_details-2 h3, .setting_details h3 {
	font-size: 20px;
}
.profile_pannel {
	width:100%;
}
.profile_main {
	width:96%;
	margin: 0 auto;
}
.profile_box, .profile_box.last, .top_profile_box .profile_box {
	width: 98%;
	margin:1%;
}
.profile_text {
	width: 474px;
}
.porofile_top {
    margin: -65px 0 0 0;
}
.profile_pict {
    float: none;
    margin: 0 auto;
    width: 150px;
    height: 150px;
}
.profile_text h2 {
	color: #000;
}
.profile_text {
	width: 96%;
	padding: 0 0 20px 0;
	margin: 0 auto;
	float: none;
	text-align: center;
}
.profile_resume ul li {
    margin: 0 0px 40px 0;
    float: none;
    text-align: center;
}
.form_smal {
	width:100%;
}
}



@media only screen and (max-width:639px) 
{

}


@media only screen and (max-width:479px)
{
	.login_right {
		width: 92%;
	}
	.login_container h2 {
		font-size: 24px;
	}
	.login_container input {
		height: 50px;
		padding: 0 10px 0 50px;
	}


}
@media only screen and (max-width:325px)
{
	.login_container h2 {
		font-size: 20px;
	}
}

.error{color:#dd4b39;font-size:12px;}


.translator_file{
	position: relative;
}


.translator_file .overlay {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
}

.translator_file:hover .overlay {
	opacity: 1;
}

.translator_file .icon {
	color: #C0C0C0;
	font-size: 30px;
	position: absolute;
	top: 24%;
	left: 95%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.profile_pict {
	position: relative;
}

.profile_pict .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: .3s ease;
}

.profile_pict:hover .overlay {
	opacity: 1;
}

.profile_pict .icon {
	color: #C0C0C0;
	font-size: 50px;
	position: absolute;
	top: 78%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.profile_bg {
	position: relative;
}

.profile_bg .icon {
	color: #C0C0C0;
	font-size: 25px;
	position: absolute;
	top: 19%;
	left: 96%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.fa-camera:hover {
	color: #C0C0C0;
}

.profile-text {
 	color: #4191ab;
 	font-size: 16px;
 }

.top-left {
  position: absolute;
  top: -10px;
  left: 13px;
}

.top-left-download {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 19px;
}

.top-right {
  position: absolute;
  top: 20px;
  right: 24px;
}

.icon-padding {
	padding-right: 5px;
}

.field-icon {
    float: right;
    margin-right: 8px;
    margin-top: -23px;
    position: relative;
    z-index: 9;
    cursor:pointer;
}