
/*------------------------------------------------------------------
[Main Stylesheet]

Project:    Just Log
Version:    1.1.0
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

    1. Global style
    2. Loader / .loader
    3. Login page / .login_wrapper 
    4. Media Queries / @media

-------------------------------------------------------------------*/
/** GLOBAL CLASSES **/

@import url('https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&amp;display=swap');

body {
    font-family: 'Nunito', sans-serif;
    color: #535353;
}

img{
    max-width: 100%;
}

.form-control:focus {
    box-shadow: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Nunito', sans-serif;
}

/*---------- Global Style closed ----------------*/


/*---------- Loader Style ----------------*/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    text-align: center;
    background: rgba(255,255,255,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader_div {
    border: 6px solid #ffebea;
    border-radius: 50%;
    border-top: 6px solid #6fd42c;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*---------- Loader Style closed ----------------*/


/*---------- Login Page Style ----------------*/
a.logo_text {
    color: #000;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 170px;
    justify-content: center;
    margin: 0 auto 15px;
}
a.logo_text span {
    background: #6fd42c;
    line-height: 1;
    display: inline-block;
    padding: 3px 5px 3px;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    margin-right: 10px;
}
.login_wrapper {
    top: 0;
    width: 100%;
    bottom: 0;
    min-height: 100vh;
    z-index: 9;
    opacity: 1;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0px 0;
    background: #ecf3f9;
    overflow: hidden;
}
.login_wrapper:after,
.login_wrapper:before {
    position: absolute;
    right: 50%;
    top: 0;
    border-width: 50vh 200px 50vh 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    content: "";
    display: block;
    z-index: 3;
}
.login_wrapper:before {
    right: 50%;
    z-index: 2;
    border-color: transparent rgba(111, 212, 44, 0.71) transparent transparent;
    border-width: 55vh 225px 55vh 0;
    top: -5vh;
}
.login_wrapper > div{
    position: relative;
    z-index: 1;
}
.login_wrapper .container-fluid {
    padding: 0;
}
.login_box {
    margin: 0 auto;
    max-width: 400px;
    padding: 30px 0;
    width: 90%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login_wrapper .col-pad-0{
    padding: 0;
}
.login_form_inner p{
    color: #403838;
    font-weight: 400;
    font-size: 15px;
}

.login_form_inner p a{
    margin-left: 3px;
    color: #6fd42c;
}
.login_form_inner {
    padding: 30px 30px 0;
    text-align: center;
    position: relative;
    margin: 0;
}
.login_wrapper .login_form.forgot_password .login_form_inner{
    margin: 0 0 25px;
}
.login_wrapper .btn-outline {
    border-radius: 3px;
    padding: 6px 30px 6px 30px;
    color: #6fd42c;
    background: #fff;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto;
    border:2px solid #fff;
    transition: all ease 0.4s;
}
.login_wrapper .none-2{
    display: none;
}
.login_wrapper .btn-outline:hover {
    background: transparent;
    text-decoration: none;
    color: #fff;
    border-color: #fff;
}
h3 {
    margin: 0 0 25px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: #272323;
    position: relative;
    padding: 0 0 15px;
}
h3 span {
    color: #6fd42c;
}
h3:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 50px;
    height: 1px;
    background: #6fd42c;
    margin: 0;
    bottom: 0;
}
.form-group {
    margin-bottom: 5px;
    position: relative;
}
.form-group i.fa {
    position: absolute;
    top: 14px;
    right: 0px;
    color: #aaa;
    font-size: 12px;
}
.input-text {
    outline: none;
    width: 100%;
    padding: 5px 35px 5px 0;
    font-size: 12px;
    outline: 0;
    font-weight: 500;
    color: #717171;
    height: 30px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
}
.input-text ~ .focus-border{
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background-color: #6fd42c; 
    transition: 0.4s;
    -webkit-transition: 0.4s;
}
.input-text:focus ~ .focus-border{
    width: 100%; 
    transition: 0.4s;
    -webkit-transition: 0.4s;
}
.btn-md {
    cursor: pointer;
    padding: 10px 50px 8px 50px;
    height: 45px;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    border-radius: 50px;
    text-transform: uppercase;
}
.social-list li {
    display: inline-block;
    font-size: 16px;
}
.social-list {
    margin: 10px 0;
    padding: 0;
}
.social-list li a {
    display: block;
    background: rgba(0,0,0,0.07);
    border-radius: 20px;
    display: inline-block;
    margin: 0;
    width: 105px;
    height: 32px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 32px;
    transition: all ease 0.4s;
    padding: 0 5px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02rem;
}
.social-list li a:hover {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}
.social-list li .s_facebook {
    background: #4867aa;
}
.social-list li .s_twitter {
    background: #33CCFF;
}   
.social-list li .s_google {
    background: #db4437;
}
input[type=checkbox], input[type=radio] {
    margin-right: 3px;
}
button:focus {
    outline: none;
    outline: 0 auto -webkit-focus-ring-color;
}
.btn-theme.focus, .btn-theme:focus {
    box-shadow: none;
}
.btn-theme, .swal2-confirm {
    background: #6fd42c !important;
    border: none;
    color: #fff;
}
.btn-theme:hover,.swal2-confirm:hover {
    background: #6fd42c;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}
.terms{
    margin-left: 3px;
}
.checkbox {
    margin-bottom: 20px;
    font-size: 14px;
}
.form-check{
    float: left;
    margin-bottom: 0;
}
.form-check a {
    color: #717171;
    float: right;
}
.form-check-input {
    position: absolute;
    margin-left: 0;
    opacity: 0;
}
.form-check label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    margin-left: -25px;
    border: 1px solid #c5c3c3;
    border-radius: 3px;
    background-color: #fff;
}
.form-check-label {
    padding-left: 25px;
    margin-bottom: 0;
    font-size: 14px;
    color: #403838;
}
input[type="checkbox"]:checked + label::before {
    background-color: #6fd42c;
    border-color: #6fd42c;
}
input[type=checkbox]:checked + label:before {
    font-weight: normal;
    color: #f3f3f3;
    line-height: 15px;
    font-size: 10px;
    content: "\f00c";
    font-family: fontAwesome;
}
input[type=checkbox], input[type=radio] {
    margin-top: 4px;
}
.checkbox a {
    font-size: 14px;
    color: #6fd42c;
    float: right;
}
.or_text {
    position: relative;
    margin: 20px 0;
}
.or_text:after {
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    background: #ddd;
}
.or_text span{
    padding: 0 15px;
    display: inline-block;
    background:#fff;
    position: relative;
    z-index: 1;
}
.login_img_caption {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.login_wrapper .row{
    width: 100%;
}
.login_img_caption h2 {
    font-weight: bold;
    font-size: 36px;
    margin: 0 0 20px;
    padding-bottom: 15px;
    position: relative;
}
.login_img_caption h2:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 50px;
    height: 1px;
    background: #6fd42c;
    margin: 0 auto;
    bottom: 0;
}

ul.login_tab {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    justify-content: space-around;
}
ul.login_tab li a {
    text-transform: uppercase;
    font-weight: 700;
    color: #cad4e6;
    padding: 5px 15px;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 50px;
    min-width: 120px;
    display: block;
}
ul.login_tab li a.active {
    color: #6fd42c;
    border: 1px solid #6fd42c;
}

.bg-white{
    background: #fff;
}


.login_left_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.login_left_img:before {
    background: rgba(111, 212, 44, 0.42);
    z-index: 1;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
}
.or_options {
    padding: 0 30px;
}
.login_left img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/** Media Queries 
-----------------------------------------------------------------------*/
@media (max-width: 1199px) {

}

@media (max-width: 991px) {
    .or_options {
        padding: 0 10px;
    }
    .login_wrapper .pad-0{
        padding: 0;
    }
    .login_wrapper .login_box {
        margin: 0 auto;
        max-width: 400px;
    }
    .login_form_inner {
        padding: 30px 10px;
    }
}

@media (max-width: 767px) { 
.login_wrapper:after, .login_wrapper:before,
.mobile-hidden {
    display: none;
}
.login_img_caption h2 {
    font-size: 32px;
}
.social-list li a {
    width: 75px;
    font-size: 0;
    margin: 0 1px;
}
.social-list li a i {
    font-size: 14px;
    line-height: 32px;
}
}

@media (max-width: 479px) { 

}




#measure_form i.fa{
	display:none;
}
.upload_btn .fa{
	position:relative !important;
	top:0 !important;
}
.btn-cnt {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	background: rgba(0, 0, 0, 0.8);
    color: white;
    font-weight: bold;
    padding: 15px;
}
@import url(https://fonts.googleapis.com/css?family=Oswald:300,400,600|Dosis:200,300,400);
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.upload_btn{
	display: block;
    border: 2px solid #aaaaaa;
    text-align: center;
   height: 33vh;
    width: 100%;
    border-radius: 2px;
    cursor: pointer;
	max-width: 500px;
    margin: 0px auto;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-background-size: cover;
  background-size: cover;
}

.wrap {
  margin: auto;
  padding: 0;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.tabs {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  float: left;
  background: #111;
}

.tab-height, .button {
 height: 15vh;
  line-height: 1;
    padding: 0px 0px !important;
}
label.button span {
    display: block;
	    margin-top: 5px;
    font-size: 14px;
    font-family: Oswald;

}
.tab {
  display: none;
}

.button {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 160px;
  text-align: center;
  color: #6fd42c;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.button:hover {
  background: #6fd42c;
  color: #000000;
}
.button:hover a{
  color: #000000;
}

.button:active {
  color: #000000;
}

.display {
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 160px);
  height: 100%;
  background: #ffffff;
  overflow: hidden;
  overflow-y: scroll;
  padding:25px 60px 0px 60px;	
}

.title {
  margin: 0px 0;
  font-family: 'Oswald';
  font-weight: 600;
  font-size: 1.7em;
  line-height: 1;
  text-align: center;
  color: #000000;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  margin-bottom:25px;
}
h1.title span{
	font-size: 14px !important;
    line-height: 20px !important;
}
p {
  margin: 30px auto;
  padding: 0;
  display: block;
  position: relative;
  width: 90%;
  height: auto;
  font-family: 'Open Sans';
  font-weight: 300;
  font-size: 1em;
  line-height: 20px;
  text-align: center;
  color: #000000;
}

#tab--1:checked ~ #button--1,
#tab--2:checked ~ #button--2,
#tab--3:checked ~ #button--3,
#tab--4:checked ~ #button--4 {
  background: #6fd42c;
  color: #000000;
}

#tab--1:checked ~ #display--1,
#tab--2:checked ~ #display--2,
#tab--3:checked ~ #display--3,
#tab--4:checked ~ #display--4 {
  display: block;
}

.logout{
	color:#6fd42c;
}
.logout:hover{
	color:#000000;
}
label#button--112 {
    width: 160px !important;
    text-align: center;
	height: 25vh;
	margin-bottom:0px !important;
	padding:10px 0px;
}
label#button--112 img {
    max-width:120px;
	height:auto;
	    max-height: 100%;
}
.fa-2x {
    font-size: 1.5em;
}
.picbox{
	background-color:white;
	border:1px solid #cccccc;
	border-radius:100px;
	height: 80px;
    margin: 15px auto;
    width: 80px;
	cursor:pointer;
	background-image:url(../images/user.png);
	background-size: 80%;
    background-repeat: no-repeat;
    background-position: bottom center
	
}
.picbox .btn-cnt{
	opacity:0;
	line-height:1;
	transition:all ease 200ms;
	-webkit-transition:all ease 200ms;
	-moz-transition:all ease 200ms;
	-ms-transition:all ease 200ms;
	-o-transition:all ease 200ms;
	color:#b6b6b6;
	background: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
}

.picbox:hover .btn-cnt{
	opacity:1;
}

.inplabel{
	margin-bottom:0px;
}

span.fnamespan{
	display:none;
}

::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar
{
    width: 5px;  
    background-color: #F5F5F5;
}
 
::-webkit-scrollbar-thumb
{
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #68bf20;
}

label.button dd {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 !important;
}
















.child-main {
    width: 55%;
    margin: 0px auto;
    background: #fff;
    padding: 4em 2em;
}
.child-main .child-left {
    width: 25%;
    float: left;
    margin-left: 20px;
}
.child-main .child-right {
    float: right;
    width: 65%;
    margin-right: 20px;
} 
.child-main .child-right h3 {
    font-size: 32px;
    text-align: left;
    color: #6fd42c; 
    font-weight: 600;
	font-family: 'Oswald', sans-serif;
}
.child-main ul.address {
    border-top: 2px dotted #00bcd4;
    padding-top: 0.5em;
}
.child-main .w3-right-addres-1 li {
    list-style-type: none;
}
.child-main ul.address li ul.agileits-address-text li {
    display: inline-block;
    font-size: 0.9em;
    color: #000;
    margin-top: 0.8em;
    font-weight: 600;
}
.child-main .child-right h5 {
    text-align: left;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}
.child-main span {
    margin-right: 20px;
}

.child-main ul.address li ul.agileits-address-text li:nth-child(1) {
    width: 35%;
}
.child-main ul.agileits-address-text li a {
    color: #000;
}
.child-main b, strong {
    font-weight: bold;
}
.child-main .heading {
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
}
.child-main .footer-w3l {
    text-align: center;
}
.child-main p.agileinfo {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}
.child-main p.agileinfo a {
    color: #00bcd4;
}
/*-- responsive sizes --*/

@media screen and (max-width: 1440px){
.child-main .child-right {
    margin-right: 30px;
}
.child-main .child-left {
    margin-left: 30px;
}
}

@media screen and (max-width: 1366px){
.child-main {
    width: 60%;
}
}

@media screen and (max-width: 1280px){
.child-main {
    width: 63%;
}
}

@media screen and (max-width: 1080px){
.child-main {
    width: 75%;
}
}

@media screen and (max-width: 1024px){
.child-main .child-right h3 {
    font-size: 30px;
}
.child-main h1 {
    font-size: 45px;
}
.child-main {
    width: 80%;
}
}

@media screen and (max-width: 991px){
.child-main .child-right {
    margin-right: 25px;
}
.child-main .child-left {
    margin-right: 25px;
}
}

@media screen and (max-width: 800px){
.child-main {
    width: 85%;
    padding: 3em 2em;
}
}

@media screen and (max-width: 768px){
.child-main .child-left {
    margin-right: 0;
    margin-left: 15px;
	margin-top: 30px;
}
.child-main {
    margin: 65px auto;
}
}

@media screen and (max-width: 736px){
.child-main h1 {
    font-size: 43px;
}
.child-main .child-right h5 {
    font-size: 20px;
}
}

@media screen and (max-width: 667px){
.child-main {
    width: 75%;
    padding: 4em 2em;
}
.child-main .child-left {
    margin-right: 0;
    margin-left: 0px;
    margin-top: 0px;
	width: 100%;
	text-align: center;
    margin-bottom: 25px;
}
.child-main .child-right {
    margin-right: 0px;
	width: 100%;
}
.child-main ul.address {
    margin-left: 35px;
}

}



@media screen and (max-width: 480px){
.child-main h1 {
    letter-spacing: 3px;
    font-size: 37px;
}
.child-main .child-right h3 {
    font-size: 28px;
}
.child-main ul.address li ul.agileits-address-text li:nth-child(1) {
    width: 25%;
}

}

@media screen and (max-width: 414px){
.child-main {
    padding: 3em 1em;
	width: 80%;
}
.child-main h1 {
    letter-spacing:2px;
    font-size: 35px;
}
}

@media screen and (max-width: 384px){
.child-main ul.address {
    margin-left: 15px;
}
.child-main .child-right h3 {
    font-size: 27px;
}
.child-main .child-right h5 {
    font-size: 19px;
    letter-spacing: 1px;
}
}


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

.child-main span {
    margin-right: 14px;
}
.child-main {
    padding: 3em 0.5em;
    width: 87%;
}
.child-main ul.address {
    margin-left: 5px;
}
.child-main {
    margin: 55px auto;
}
}

.child-main{
	width:100% !important;
}

.child-main ul.address {
    list-style: none;
    padding-left: 0px;
    border-top: 0px dotted #000000;
}

.child-main ul.address li ul {
    padding-left: 0 !important;
}

.child-left .imgwrp {
    border-radius: 100%;
    overflow: hidden;
    height: 220px;
    width: 220px;
}

.child-left .imgwrp img {
    min-height: 220px;
    width: auto;
}

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

ul.file_list {
    padding: 0;
    text-align: left;
    list-style: none;
}

ul.file_list a i {
    float: right;
}

.btnss a{
	text-decoration:none !important;
}
.btnss a:hover{
	color:black;
}

.footer * {
    text-align: center;
    font-family: Oswald;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
    margin-top: 10px;
    color: white;
}

.footer {
    background: #111;
    margin-left: -60px;
    margin-right: -60px;
    margin-bottom: 0px;
   padding: 14px 15px;
    color: white;
    margin-top: 25px;
	position: absolute;
    width: 100%;
    bottom: 0;

}
.footer h2, .footer a {
    color: #6fd42c;
	text-decoration:none;
}
button.btn-md.btn-theme.btn-block {
    margin-top: 20px !important;
}
label.inplabel {
    font-size: 12px !important;
}

.footer h2 {
    font-size: 20px !important;

}

.footer h4 {
    font-size: 14px !important;
    margin-top: 0px;
}
.footer p {
    font-size: 12px;
    line-height: 1;
    margin-top: 5px;
    margin-bottom: 0px;
}

.form-group.col-md-6.xhtm label {
    font-size: 16px !important;
}

@media (min-height: 620px) {
  .upload_btn {
    height: 40vh;
  }
}