.login-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  background-image: url(../images/bg-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-page .flex{
  position: absolute;
  right: 15px;
  bottom: 20px;
}
.login-page .flex p{
  font-size: 12px;
}
.login-page .left{
  width: 33.33%;
  height: 100vh;
  
  
}
.login-page .center{
  width: 70%;
  height: 100vh;
  display: flex;
  justify-content: right;
  position: relative;
  padding: 50px 150px;
}
.login-page .center::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(../images/bg-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 1%, 100% 0%, 61% 100%, 0% 100%);
}

.login-page .right{
  width: 30%;
  height: 100vh;
  background-color: #13d7cd;
  padding: 200px 20px;
  
}
.login-page .right h2{
  font-size: 41px;
  font-weight: 800;
  padding-bottom: 20px;
  color: white;
}
.login-page .right h2 > span{
  color: #336699;
  font-size: 41px;
  
}
.login-page .right h2 span span{
  color: #ff6600;
  font-size: 41px;
}
.login-page .right p{
  font-size: 12px;
}
.login-page .right p span{
  font-weight: 700;
}
.login-page .right p .icon{
  width: 12px;
  display: inline-block;
}
.login-page .right .flex p{
  white-space: nowrap;
}

.right-section img {
    width: 105px;
    margin: 13px;
    padding: 0px;
   
}

.row-full{
      
    border-top: solid 2px #000000;
    border-bottom: solid 2px #000000;
}


.btn-primary:hover {
  color: #fff;
  background-color: #0da9a1;
  border-color: #cfcfcf;
}


/* .login-page::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: #000;
  opacity: .3;
} */
.login-page .logo {
  padding-bottom: 20px;
}

.btn-primary{
color: #fff;
    background-color: #ef6307;
    border-color: #bfbfbf;
}

.login-page .logo img {
  height: 139px;
    width: 139px;
  
}
.login-page .login-box {
  width: 340px;
  background-color: #161616c2;
  border-radius: 8px;
  position: relative;
  z-index: 10;
  padding: 20px;
  margin-top: 90px;
  margin-left: 610px;
}
.login-page .login-box .form-control:focus {
  box-shadow: none;
}
.login-page .login-box .button {
  padding-top: 10px;
}
.login-page .login-box .button .btn {
  line-height: 34px;
}

.dashboard-wrapper {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
.dashboard-wrapper .sidebar {
  width: 260px;
  height: 100%;
  background-color: #227836;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 15px 30px;
  z-index: 1;
  transition: transform 0.5s ease-in-out;
}
.dashboard-wrapper .sidebar.active {
  transform: translateX(-100%);
}
.dashboard-wrapper .sidebar:hover {
  overflow-y: auto;
}
.dashboard-wrapper .sidebar .logo {
  padding: 15px;
}
.dashboard-wrapper .sidebar .logo img {
  width: 120px;
}
.dashboard-wrapper .sidebar .navigation ul li {
  position: relative;
  padding: 10px 0px;
}
.dashboard-wrapper .sidebar .navigation ul li.head {
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: none;
  color: #9fa5ad;
  padding-top: 20px;
}
.dashboard-wrapper .sidebar .navigation ul li span {
  width: 30px;
  display: inline-block;
}
.dashboard-wrapper .sidebar .navigation ul li a {
  color: #fff;
}
.dashboard-wrapper .sidebar .navigation ul li a:hover {
  color: #fff;
}
.dashboard-wrapper .sidebar .navigation ul li ul {
  padding-top: 10px;
  padding-left: 30px;
  display: none;
}
.dashboard-wrapper .sidebar .navigation ul li ul li {
  font-size: 14px;
}
.dashboard-wrapper .sidebar .navigation ul li ul li a {
  color: #ffffff;
}
.dashboard-wrapper .sidebar .navigation ul .menu-arrow {
  width: auto;
  position: absolute;
  top: 12px;
  right: 0px;
  cursor: pointer;
}
.dashboard-wrapper .sidebar .navigation ul .menu-arrow::before {
  content: "\f105";
  font-family: FontAwesome;
  color: #ffffff;
  display: block;
  transition: transform 0.5s;
}
.dashboard-wrapper .sidebar .navigation ul .menu-arrow.active::before {
  transform: rotate(90deg);
}
.dashboard-wrapper .right {
  width: calc(100% - 260px);
  min-height: 100vh;
  background-image: url(../images/truveda-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: width 0.5s ease-in-out;
}
.dashboard-wrapper .right.active {
  width: 100%;
}

.header {
  background-color: #f1f1f1;
  position: relative;
  padding: 10px 15px;
}
.header .toggle {
  width: 23px;
  height: 23px;
  background-image: url(../images/icon-menu.svg);
  background-repeat: no-repeat;
  background-size: 23px;
  position: absolute;
  top: 15px;
  left: 15px;
  cursor: pointer;
}
.header ul {
  padding: 0px 40px;
}
.header ul li {
  position: relative;
  cursor: pointer;
  padding: 10px;
}
.header ul li span {
  position: absolute;
  top: 3px;
  right: 0px;
  width: 18px;
  height: 18px;
  color: #fff;
  background-color: #e22525;
  border-radius: 50%;
  font-size: 10px;
  text-align: center;
  line-height: 18px;
}
.header ul li ul{
  position: absolute;
  top: calc(100% - 4px);
  right: 0px;
  background-color: #fff;
  min-width: 360px;
  box-shadow: 0px 4px 10px #a7a7a7;
  z-index: 10;
  padding: 15px;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
.header ul li ul li{
  border-bottom: solid 1px #f5f5f5;
  padding: 8px 0px;
}
.header ul li ul li a{
  color: #222;
  font-size: 14px;
}
.header ul li ul li span{
  display: block;
  position: static;
  width: auto;
  background-color: transparent;
  font-size: 12px;
  color: #cc5633;
  text-align: left;
}
.header ul li:hover ul{
  display: block;
}
.header .account {
  padding-left: 45px;
}
.header .account .dropdown-toggle {
  color: #227836;
  display: block;
  padding-right: 15px;
}
.header .account .dropdown-toggle::after {
  position: absolute;
  top: 50%;
  right: 0px;
}
.header .account img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.dpicon{
  color: white;
    background: #59df7c;
    padding: 10px;
    border-radius: 50%;
}
    
.header .account h5 {
  font-size: 14px;
  margin-bottom: 0px;
}
.header .account p {
  font-size: 12px;
}

.primary-panel {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 8px #f7f7f7;
  padding: 20px;
  position: relative;
  margin: 20px 0px;
}

.search{
  padding-bottom: 11px;
}
.search h2{
  font-size: 22px;
}
.search .s-box{
  display: flex;
  width: 50%;
}
.search .s-box .form-control{
  height: 40px;
  border-radius: 0px;
}
.search .s-box .btn{
  line-height: 26px;
  border-radius: 0px;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination>li {
    display: inline;
    border: 1px solid;
    margin: 1px;
    padding: 0px 11px 3px 13px;
}
.pagination>li.active {
    color: aqua;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}


.heading{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 20px; */
}
.heading h2{
  font-size: 22px;
}
.heading .btn i{
  margin-right: 5px;
}

 .tab-nav li{
            display: inline-block;
            padding: 10px 10px;
            box-shadow: 1px 1px 5px 0px;
            margin-bottom: 10px;
        }
        .tab-nav li a{
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }
        .tab-nav li.active{
            background-color: #108867;
        }
        .tab-nav li.active a{
            color: #fff;
        }
        .tab-content{
            padding: 10px;
        }
        .tab-box{
            display: none;
        }




.user-photo{
  background-color: #006283;
  padding: 10px;
  border-radius: 5px;
}
.user-photo img {
    width: 100%;
    background-color: #fff;
}

.user-detail .form-group{
  border: solid 1px #eaeaea;
    padding: 15px;
    box-shadow: 0px 0px 5px #ddd;
    border-radius: 16px;
    position: relative;
}
.user-detail .form-group .btn{
  position: absolute;
top: 24px;
    right: 31px;
}

.table-small th, .table-small td{
  font-size: 12px;
  padding: 7px 10px;
}

@media (max-width: 1024px) {
  .dashboard-wrapper .sidebar {
    width: 230px;
  }

  .dashboard-wrapper .right {
    width: calc(100% - 230px);
  }

  .card {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .login-page .login-box {
   width: 300px;
    margin-top: 27px;
    margin-left: 22px;
  }
.left-section{
      margin-top: 204px;
      vertical-align: top;
    border-top: solid 2px #000000;
    border-bottom: solid 2px #000000;
}

.right-section{
 border-top: solid 2px #000000; 
    margin-top: -459px;

}

.right-section img {

    width: 105px;
    margin: 13px;
    padding: 0px;
   
}

.row-full{
      
    border-top: solid 0px #ffffff;
    border-bottom: solid 0px #ffffff;
}





  .dashboard-wrapper .sidebar {
    transform: translateX(-230px);
  }

  .dashboard-wrapper .sidebar.active {
    transform: translateX(0px);
  }

  .dashboard-wrapper .right {
    width: 100%;
    transition-property: transform;
  }

  .dashboard-wrapper .right.active {
    transform: translateX(230px);
  }
}


.form-group{
  position: relative;
}
.eye{
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 24px;
  height: 30px;
  color: #afafaf;
  cursor: pointer;
}
.eye::after{
  content: "\f06e";
  font-family: FontAwesome;
  display: block;
}
.eye.active::after{
  content: "\f070";
}
label.error{
  font-size: 11px;
  color: #f00;
}


th{
  cursor: pointer;
  white-space: nowrap;
}
th .sort{
    display: inline-block;
    padding-left: 5px;
}
th .sort:before{
  content: "\f107";
  font-family: FontAwesome;
  display: block;
}
th .sort.active:before{
  content: "\f106";
}

.view-section .one-box{
  display: flex;
  justify-content: space-between;
}
.view-section .one-box .right-col{
  display: flex;
}
.view-section .scan-box{
  width: 146px;
  background-color: #f7f7f7;
}

 .view-section .scan-box img{
  width: 100%;
  background-color: #f7f7f7;
}

.view-section p{
    white-space: nowrap;
  margin-bottom: 7px;
}
.view-section p span{
  display: inline-block;
  font-weight: 700;
  width: 120px;
}
.view-section .two-box{
  border: solid 1px #ddd;
  position: relative;
  padding: 20px;
  margin-top: 30px;
}
.view-section .two-box h4{
  color: #000;
  text-align: center;
  text-decoration: underline;
}
.two-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.view-section .two-box .img-box{
  width: 180px;
}
.view-section .two-box .img-box img{
  width: 100%;
  max-height: 100px;
}
.view-section .two-box .iframe{
    width: 100%;
    height: 900px;
    overflow: hidden;
    border: none;
}
.view-section .two-box iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  margin-top: 0px;
}
@media (max-width: 767px) {
  .view-section .scan-box{
    width: 180px;
    margin: 0 auto;
  }
  .view-section .two-box .img-box{
    margin: 0 auto;
  }
  .view-section .one-box{
      flex-wrap: wrap;
  }
  .view-section .one-box .right-col{
      flex-wrap: wrap;
  }
  .view-section .one-box .right-col .scan-box{
      margin-top: 20px;
  }
  .two-head{
      flex-wrap: wrap;
  }
  .view-section .scan-box{
    order: -1;
  }
  .view-section .two-box h4{
      padding-bottom: 20px;
  }
  .view-section .two-box .iframe{
      margin: 15px 0px;
  }
  .view-section .two-box iframe{
      width: 100% !important;
      height: 100% !important;
  }



  
}

/* #GFG table{
  display: block !important;
}
#GFG table tr{
  display: block !important;
}
#GFG table tr td{
  display: block !important;
  width: 100% !important;
}
#GFG table tr td div{
  width: 100% !important;
} */
@media(max-width: 767px){
  #GFG table tr .img{
    border-top: none !important;
    text-align: center !important;
    padding-top: 0px !important;
  }
  #GFG table tr .scan{
    border-top: none !important;
    text-align: center !important;
    padding-top: 0px !important;
  }
  #GFG table tr .scan img{
    width: 200px !important;
  }
  #GFG table tr .blank{
    padding-bottom: 0px !important;
  }

  .login-page .center {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 50px 150px;
}

.login-page {
  position: relative;
    min-height: 100vh;
    background-color: #2f6632;
}

.login-page .right {
  width: 100%;
  height: 100vh;
  background-color: #ededed;
  padding: 11px 20px;
  margin: 0px;
  display: none;
}
  /* .table-res tr{
    display: block !important;
    width: 100% !important;
  } */
  .table-res tr{
    width: 100% !important;
    display: block !important;
  }
  .table-res tr td{
    display: block !important;
    width: 100% !important;
    padding: 10px !important;
  }
  .table-res tr td div{
    width: 100% !important;
    float: left !important;
    text-align: left !important;
  }
  .table-res tr td .i-box{
    width: 100%;
    text-align: center !important;
    padding: 10px 0px !important;
  }
  .table-res tr td .i-box img{
    display: inline-block;
  }
  .table-res tr td.p-full p{
    width: 100% !important;
  }
  .table-res tr td.no-border{
    border: none !important;
  }
  .table-res .no-break tr{
    display: table-row !important;
  }
  .table-res .no-break td{
    display: table-cell !important;
    padding: 5px !important;
    width: auto !important;
  }
}



#GFG{
    position: relative;
}


.watermarked {
  position: relative;
  overflow: hidden;
  position: absolute;
  top: -75%;
  left: -75%;
  
  display: block;
  width: 150%;
  height: 150%;
  
  transform: rotate(-45deg);
  content: attr(data-watermark);
  
  opacity: 0.7;
  line-height: 3em;
  letter-spacing: 2px;
  color: #efeeee;
}



.watermarked::before {
  position: absolute;
  top: -75%;
  left: -75%;
  
  display: block;
  width: 150%;
  height: 150%;
  
  transform: rotate(-45deg);
  content: attr(data-watermark);
  
  opacity: 0.7;
  line-height: 3em;
  letter-spacing: 2px;
  color: #efeeee;
}

.form-heading{
  border-top: solid 1px #f1f1f1;
  border-bottom: solid 1px #f1f1f1;
  padding: 10px 0px;
  margin: 10px 0px 30px;
}
.form-heading h3{
  color: #222;
  font-size: 16px;
}