@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
body {
  background-image: url("https://webinarzappastatic.s3.ap-south-1.amazonaws.com/media/Bates_Smart_Canberra_Airport_Hotel_N790.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 100vh;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  font-family:300;
}

.container {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  max-height: 100%;
}

.login {
  -webkit-box-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
  text-align: left;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  /*height: 100vh;*/
}

.login .box {
  padding: 10px;
  min-width: 500px;
  /*height: 98%;*/
  text-align: center;
  background: rgba(0, 0, 0, 0.747);
  text-align: center;
  color: white;
}

.login .box h3 {
  color: white;
}

.login .box a {
  color: #258CF2;
  text-decoration: none;
}

.login .box a:hover {
  color: #75fd7c;
}

.login .box input {
  border: none;
  background: none;
  outline: none;
  border-bottom: 1px solid white;
  color: white;
  text-align: left;
  width: 88%;
  margin-top: 9px;  
}

.login .box button {
  background: #258CF2;
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  color: white;
  cursor: pointer;
  outline: none;
  border: none;
  margin-top: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 31px;
}

.login .box button:hover {
  background: #75fd7c;
  border-radius: 10px;
  color: white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#mainDiv {
  width: 300px;
  height: 300px;
  margin: 150px auto;
  -webkit-perspective: 600px;
          perspective: 600px;
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
}

#boxDiv {
  width: 300px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: rotate 15s linear infinite;
          animation: rotate 15s linear infinite;
}



#boxDiv div {
  position: absolute;
  width: 300px;
  height: 300px;
  color: white;
}

#front {
  -webkit-transform: translateZ(150px);
          transform: translateZ(150px);
  background: black;
  /*background-image: url(https://webinardainik.s3.amazonaws.com/media/dashboard/Virtual_Property_Expo_Advt_Square.jpg);*/
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#back {
  -webkit-transform: rotateY(180deg) translateZ(150px);
          transform: rotateY(180deg) translateZ(150px);
  background: #101010;
  /*background-image: url(https://webinardainik.s3.amazonaws.com/media/dashboard/Virtual_Property_Expo_Advt_Square.jpg);*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

#left {
  -webkit-transform: rotateY(-90deg) translateX(-150px);
          transform: rotateY(-90deg) translateX(-150px);
  -webkit-transform-origin: left;
          transform-origin: left;
  background: black;
  /*background-image: url(https://webinardainik.s3.amazonaws.com/media/dashboard/Virtual_Property_Expo_Advt_Square.jpg);*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

#right {
  -webkit-transform: rotateY(90deg) translateX(150px);
          transform: rotateY(90deg) translateX(150px);
  -webkit-transform-origin: right;
          transform-origin: right;
  background: #101010;
  /*background-image: url(https://webinardainik.s3.amazonaws.com/media/dashboard/Virtual_Property_Expo_Advt_Square.jpg);*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

#top {
  -webkit-transform: rotateX(-90deg) translateY(-150px);
          transform: rotateX(-90deg) translateY(-150px);
  -webkit-transform-origin: top;
          transform-origin: top;
  background: #45679d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

#bottom {
  -webkit-transform: rotateX(90deg) translateY(150px);
          transform: rotateX(90deg) translateY(150px);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  background: #45679d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

.shadow {
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.2);
  -webkit-transform: rotateX(90deg) translateZ(-250px) rotateY(180deg) translateX(0px);
}

@media only screen and (max-width: 800px) {
  body {
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    margin: 0;
  }
  .container {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    max-height: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .login {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100vw;
    background: white;
    /*height: 100vh;*/
  }
  .login .box {
    padding: 10px;
    min-width: 500px;
    height: 98%;
    text-align: center;
    text-align: center;
    background: white;
    color: black;
  }
  .login .box h3 {
    color: black;
  }
  .login .box a {
    color: #258CF2;
    text-decoration: none;
  }
  .login .box input {
    border: none;
    background: none;
    outline: none;
    border-bottom: 1px solid #6e6e6e;
    color: black;
    text-align: left;
    width: 88%;
    margin-top: 9px;    
  }
  .login .box button {
    background: #258CF2;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    color: white;
    cursor: pointer;
    outline: none;
    border: none;
    margin-top: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 31px;
  }
  #mainDiv {
    width: 200px;
    height: 200px;
    margin: 150px auto;
    -webkit-perspective: 600px;
            perspective: 600px;
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5;
    max-width: 100vw;
  }
  #boxDiv {
    width: 200px;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -webkit-animation: rotate 15s linear infinite;
            animation: rotate 15s linear infinite;
  }
  #boxDiv div {
    position: absolute;
    width: 200px;
    height: 200px;
    color: white;
  }
  #front {
    -webkit-transform: translateZ(100px);
            transform: translateZ(100px);
    background: black;
    background-image: url(https://webinardainik.s3.amazonaws.com/media/dashboard/Virtual_Property_Expo_Advt_Square.jpg);
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  #back {
    -webkit-transform: rotateY(180deg) translateZ(100px);
            transform: rotateY(180deg) translateZ(100px);
    background: #101010;
    background-image: url(https://webinardainik.s3.amazonaws.com/media/dashboard/Virtual_Property_Expo_Advt_Square.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }
  #left {
    -webkit-transform: rotateY(-90deg) translateX(-100px);
            transform: rotateY(-90deg) translateX(-100px);
    -webkit-transform-origin: left;
            transform-origin: left;
    background: black;
    background-image: url(https://webinardainik.s3.amazonaws.com/media/dashboard/Virtual_Property_Expo_Advt_Square.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }
  #right {
    -webkit-transform: rotateY(90deg) translateX(100px);
            transform: rotateY(90deg) translateX(100px);
    -webkit-transform-origin: right;
            transform-origin: right;
    background: #101010;
    background-image: url(https://webinardainik.s3.amazonaws.com/media/dashboard/Virtual_Property_Expo_Advt_Square.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }
  #top {
    -webkit-transform: rotateX(-90deg) translateY(-100px);
            transform: rotateX(-90deg) translateY(-100px);
    -webkit-transform-origin: top;
            transform-origin: top;
    background: #45679d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }
  #bottom {
    -webkit-transform: rotateX(90deg) translateY(100px);
            transform: rotateX(90deg) translateY(100px);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    background: #45679d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }
  @-webkit-keyframes rotate {
    0% {
      -webkit-transform: rotateY(0);
              transform: rotateY(0);
    }
    100% {
      -webkit-transform: rotateY(360deg);
              transform: rotateY(360deg);
    }
  }
  @keyframes rotate {
    0% {
      -webkit-transform: rotateY(0);
              transform: rotateY(0);
    }
    100% {
      -webkit-transform: rotateY(360deg);
              transform: rotateY(360deg);
    }
  }
  .shadow {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.082);
    -webkit-box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.082);
            box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.082);
    -webkit-transform: rotateX(90deg) translateZ(-250px) rotateY(180deg) translateX(0px);
  }
}
/*# sourceMappingURL=style.css.map */

.videomeet-logo{    position: absolute;
    left: 5%;
    top: 15px;
}
.videomeet-logo img{width:200px;}

/*Added by Omprakash*/
.input-group select:focus{outline:none;}
.input-group select{background:none; border-radius:8px; padding-top:7px; padding-bottom:7px; border:none; color:#ffffff; border:1px solid #ffffff; font-size:14px; margin-top:10px;}
.input-group select option{color:#333333;}
.input-group input.form-control{margin-top:2px}


/*Second Revisions*/

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
  width:87%;
  margin:10px auto 10px;
}


.upload-btn-wrapper .btn {  
  color: gray;
  width:100%!important; 
  padding: 4px 20px;
  border-radius: 8px!important;
  font-size: 14px!important;
  cursor:pointer!important;
}

.upload-btn-wrapper input[type=file] {
  font-size: 30px;
  position: absolute;
  left: 0;
  width:100%!important;
  top: 0;
  opacity: 0;
  cursor:pointer;
}


#featured-slider {
  width: 27vw;
  height: 36vh;
  overflow: hidden;
  position: relative;
  margin-left:2vw; 
  margin-top:2vh;

 

}

#slider {
  width: 27vw;
  height: 1250px;
  position: absolute;
  top: 0px;
  left: 0px;
}
#slider .slide {
  width: 27vw;
  height: 36vh;
  position: relative;
}
#slider #pagination {
  position: absolute;
  left: 5vw;
  bottom: 5vh;
}
#slider #pagination a {
  background: url(http://depo.webogrencisi.com/jqueryslider/images/link.png);
  width: 16px;
  height: 16px;
  margin-right: 2px;
  display: block;
  float: left;
  text-decoration: none;
}

#mainDiv.slideBg{
 background:url(../images/login-stand.png) no-repeat center top;
  background-size:100% 100%;
  position:relative;
  width:30.8vw;
  height:42.8vh;  
  flex:none!important;
  -webkit-box-flex:none!important;  
  -ms-flex:none!important;
  margin:21vh auto auto 10vw;
   }

#slider #pagination a span {
  display: none;
}

#featured-slider img{width:27vw; height:36vh;}
#pagination{display:none;}






label.custom-file-upload{ text-align:left; width:80%; height:auto!important; font-weight:normal!important; white-space:normal!important; margin-left:auto; margin-right:auto; display:block; text-align:center; cursor:pointer!important; border-radius:6px!important; font-size:14px;}
.btn.custom-file-upload{background:#258CF2; padding-left:32px; padding-right:15px;}
.btn.custom-file-upload.fileBtn{padding-left:10px!important; padding-right:10px!important; color:#ffffff;}
 
.input-file .inputFileBtn{
  position:absolute; left:0px; top:8px; 
}
 label{margin-top:7px!important;}
.input-file .inputFileBtn:focus{outline:none; border:none;}
.input-file .padLzero{margin-left:0px; padding-left:0px; padding-right:10px;}
 
.btn.custom-file-upload:focus, .btn.custom-file-upload:hover, .btn.custom-file-upload{padding-left:15px; padding-right:15px; background:#258CF2; padding-top:4px; padding-bottom:4px; margin-top:0px; margin-bottom:0px;}

.btn.custom-file-upload.fileBtn{ background:#258CF2!important; padding-left:15px!important; padding-right:15px!important;}

 


/*New CSS*/
.upload-btn-wrapper{margin:0px; width:100%;}
.rightNavFixed{position:fixed; right:5%; top:15px;}
.rightNavFixed .btn{margin-left:15px;}
.navbar-nav>li>a, .modal-footer .btn{padding-top:5px; padding-bottom:5px; font-size:12px; padding-left:3px; padding-right:3px;}
.nav>li>a:focus, .nav>li>a:hover{background-color:#337ab7; opacity:0.9}
.nav>li>a.btn-success:hover, .nav>li>a.btn-success:focus{background:#5cb85c; opacity:0.9;}
.modal-body form{margin-left:0px;}
.modal-body .form-control{width:100%!important; height:40px!important; line-height:40px!important;}
.modal-body label{padding-left:0px;}
.modal-title{font-weight:bold;}
label.custom-file-upload{width:100%; height:27px; line-height:27px; margin:0px;}
@media(max-width:767px){
.nav>li{display:inline-block;}
.background-img{background-size:100% 100%;}
}

.previewimg img {
  max-width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.previewimg span {
  position: absolute;
  right: -20px;
  top: -10px;
  width: 25px;
  height: 25px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 21px;
  font-weight: 200;
  transform: rotate(45deg);
  cursor: pointer;
}

.previewimg {
  width: 200px;
  height: 200px;
  border: solid 2px #ddd;
  border-radius: 10px;
  margin: 20px 0 0 0;
  position: relative;
  background-color: #f1f1f1;
}


/*Transparent Modal Popup*/
 .modal-dialog .modal-content{background:rgba(85, 85, 115, 0.70); color:#ffffff; border-radius:12px;}
.modal-header{border-color:rgba(255, 255, 255, 0.4);}
.modal-body .form-control{background:rgba(255, 255, 255, 0.35);  border:none; color:#ffffff;}
.modal-footer{border-color:rgba(255, 255, 255, 0.4);}
.close:hover, .close{color:#ffffff; opacity:0.7}
.btn.custom-file-upload:focus, #signupModal .btn.custom-file-upload:hover, #signupModal .btn.custom-file-upload{background:#38589b;}
.separator{text-align:center; position:relative; display:block; margin-top:10px; margin-bottom:25px;}
.separator:before{position:absolute; display:table; content:""; height:1px; background:rgba(255, 255, 255, 0.4); left:0px; width:37.5%; top:10px;}
.separator:after{position:absolute; display:table; content:""; height:1px; background:rgba(255, 255, 255, 0.4); right:0px; width:37.5%; top:10px;}
.btn-primary.facebook{ padding:15px 20px 15px 60px; background:#38589b url(../images/facebook.png) no-repeat 18px center; background-size:24px; font-size:16px; width:75%; margin-left:auto; margin-right:auto; border:none; }
.btn-primary.googlePlus{padding:15px 20px 15px 60px; background:#e0434b url(../images/google-plus.png) no-repeat 22px center; background-size:28px; font-size:16px; width:75%; margin-left:auto; margin-right:auto; border:none; }
.btn-primary.closeBtn{background:#e0434b; border-color:#e0434b;}
.btn-default.signup, .btn-default.userlogin{background:#38589b; border-color:#38589b; color:#ffffff;}
.modal-title{font-size:20px; color:rgba(255, 255, 255, 0.85); font-weight:600;}

/*Transparent Modal Popup*/
/*Login Dynamic Image and Video*/
.loginDynSec{position: fixed;
    right: 2.5vw;
    top: 0px;
    width: 18vw;
    z-index:3009;
    height: 26vh;}
.videoLogin{z-index: 3000; position:fixed; left:0px; top:0px; width:100vw; right:0px; bottom:0px;}

.rightNavFixed .btn{margin-left:5px;}
.nav>li{width:37%;}
.rightNavFixed{    width: 13.5vw; right:4.2%;}
/*Login Dynamic Image and Video*/

/*Added on 31-5-2021*/

.rightNavFixed{width:35.5vw}
.rightNavFixed.nav>li{width:auto;}
.loginDynSec{z-index:99;}
.rightNavFixed.navbar-nav>li {
    float: right;
    min-width: 95px;
    margin-left: 10px;
}



@media only screen and (max-width: 800px) {
  .btn-primary,   .btn-default{width:100%!important}  
  .modal-footer .btn+.btn {margin-left:0px;  }
  .videomeet-logo img {width:152px;}
  .videomeet-logo{left:2px;}
  .nav>li>a {padding-left:10px; padding-right:10px;}
  
  .rightNavFixed{width:55.5vw; right:8vw;}


}

@media only screen and (max-width: 767px) {
.background-img{
background-attachment:fixed!important;
width:100%!important; height:100%!important;
overflow:hidden;
}

}

@media only screen and (max-width: 500px) {
.rightNavFixed{width:80.5vw;}

}


	@media (max-width:991px){
	
			#registerForm .row:first-child .col-md-6:last-child label{display:none!important}
			.form-group{margin-bottom:5px!important;}		
			.rightNavFixed li a{margin-top:0vh!important; font-size:2.2vw!important;}
            .eventNav-content img{width:100%!important; display:block!important; height:auto!important;}
            #timerSection h1{font-size:24px!important; line-height:30px!important;}
			#timerSection h2{font-size:18px!important; }
            .eventNav-content-lf {left:8vw!important; width:37vw!important;}
            .eventNav-content{left:42vw!important; width:50vw!important;}

	}
    	@media (max-width:801px){
            .eventNav-content-lf {left:auto!important; width:94vw!important;}
            .eventNav-content{left:auto!important; width:94vw!important;}
            .btn.btn-primary {margin-bottom:0px!important}
        }
    
