/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .wrapper_viewer {
    margin: auto;
    text-align: center;
 }

 @media (min-width: 1024px) {

    .learndash-wrapper .learndash_content_wrap {
        max-width:  100% !important;
    }
 }


 .learndash_mark_complete_button {
    /*display:  none !important;*/
 }

 .learndash_mark_complete_button.active {
    display:  block !important;
 }

 #pdfviewer {
    
    /*
    max-width: 800px;


    width: 800px;
    height: 450px;
    
    width: 100%;
    height: 100%;
    */
    cursor: move;
    position: relative;
 }


 .fullscreen {
    width: 100% !important;
    height: 100vh !important;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 999999999;
    background-color: #fff;
 }

 .actions {
    position: absolute;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    top: 0;
    right: 0;
    z-index: 13;
 }

 .add_fullscreen {
    position: relative;
    right: -20px;
    top: -11px;
    z-index: 10;
    background-color: #fff;
    cursor: pointer;
    text-align: right;
 }
 .add_fullscreen.active {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
 }

 #zoomoutbutton {
    margin-left: 20px;
 }

 .zoom_button {
    cursor: pointer;
    font-size: 12px;
}

.zoom_button i{
    cursor: pointer;
    font-size: 20px;
    position: relative;
    top: 3px;
}

.wrapper_canvas_viewer {
    overflow: scroll;
    max-height: 700px;
    margin-top: 3px;

}

.learndash-wrapper .bb-lms-header .lms-header-instructor, .learndash-wrapper .bb-lms-header .lms-header-title {
   max-width: 100% !important;
}

 

 .full {
    /*
    width: 100% !important;
    height: 100% !important;
    */
 }

 .wrapper_viewer {
    position: relative;
 }

 .navigator_page {
    width: 100%;
    justify-content: space-around;
    background-color: #fff;
    
 }

 .fullscreen .navigator_page {
    position: absolute;
    bottom: 0;
 }

 .disabled {
  
    -webkit-pointer-events: none; /* Safari */
     -khtml-pointer-events: none; /* Konqueror HTML */
       -moz-pointer-events: none; /* Old versions of Firefox */
        -ms-pointer-events: none; /* Internet Explorer/Edge */
        pointer-events: none;
        opacity: .5;

}

.next_counter {
    
    border-radius: 100% !important;
    padding:  2px 0;
    width: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    z-index: 10;
    transform: translate(-50%, -50%);
    border: 3px solid #dee2e6;
}

.next_counter.active {
    display: none;
}

.contain_next {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



.dashicons.spin {
    animation: dashicons-spin 2.5s infinite;
    animation-timing-function: linear;
    position: absolute;
    right: -20px;
    
 }
 
 @keyframes dashicons-spin {
    0% {
       transform: rotate( 0deg );
    }
    100% {
       transform: rotate( 360deg );
    }
 }


 .otgs-development-site-front-end {
    display: none;
 }

 .pages {
   position: relative;
   z-index: 12;
    position: relative;
    background-color: #fff;
    top: -3px;
   
 }


 .button_wrap {
   position: absolute;
   width: 30px;
   height: 100%;
   background-color: rgba(255, 255, 255, 1);
   z-index: 9;
   visibility: hidden;
   opacity: 0;
   transition: all .2s ease-in;
 }

 

 .wrapper_viewer:hover .button_wrap {
   visibility: visible;
   opacity: 1;
 }

 .prev_button_wrap {
   left: 0;
   top: 0;
 }
 .next_button_wrap {
   right: 0;
   top: 0;
 }

 #prev {
   display: flex;
   align-items: center;
   width: 100%;
   height: 100%;
   cursor: pointer;
   vertical-align: middle;
   font-size: 31px;
   box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.1);
 }
 #next {
   display: flex;
   align-items: center;
   width: 100%;
   height: 100%;
   cursor: pointer;
   vertical-align: middle;
   font-size: 31px;
   box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.1);
 }