/* Styles for wrapping the search box */

.main {
    width: 50%;
    margin: 50px auto;
}

/* Bootstrap 4 text input with search icon */

.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}
.preloader{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
    width:100vw;
    height:100vh;
    background:#1D1D1D;
    visibility:hidden;
    opacity:0;
    transition:all 0.5s ease;
    z-index:99999999999999;
  }
  .preloader_inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 4em;
    height: 4em;
    line-height: 4em;
    text-align: center;
    font-size: 3em;
    font-family: monospace;
    font-weight: 300;
    color: #333;
  }
  
  
  
  
  .page{
    /* position: absolute; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    /* height: 4em; */
    /* line-height: 1em; */
    /* text-align: center; */
    /* font-size: 1em;
    font-family: monospace;
    font-weight: 300; */
    color: #4E4E51;
    /* display: none; */
    opacity:0;
    transition:all 0.5s ease;
    visibility:hidden ;

  }
  
  .show{
    /* display: block !important; */
    visibility:visible !important;
    opacity:1 !important;
    transition:all 0.5s ease;
  }