/***********************************************************************************

    ███████╗████████╗██████╗ ██╗   ██╗ ██████╗████████╗██╗   ██╗██████╗ ███████╗
    ██╔════╝╚══██╔══╝██╔══██╗██║   ██║██╔════╝╚══██╔══╝██║   ██║██╔══██╗██╔════╝
    ███████╗   ██║   ██████╔╝██║   ██║██║        ██║   ██║   ██║██████╔╝█████╗
    ╚════██║   ██║   ██╔══██╗██║   ██║██║        ██║   ██║   ██║██╔══██╗██╔══╝
    ███████║   ██║   ██║  ██║╚██████╔╝╚██████╗   ██║   ╚██████╔╝██║  ██║███████╗
    ╚══════╝   ╚═╝   ╚═╝  ╚═╝ ╚═════╝  ╚═════╝   ╚═╝    ╚═════╝ ╚═╝  ╚═╝╚══════╝
                                                                                                                    
 ***********************************************************************************/



    /* Wrapper elements. */

    body {
        overflow-wrap: break-word;
        background-color: var(--ks-primary-white);
        position: relative;
        z-index: 0;
    }

    .wrapper {
              
    }

        /* The page main contents. */

        main {

        }

            .small body:not(.home):not(.single-project) .header-spacer {
                /*height: 5.985rem;*/
                height: 95px;
            }
            
            .tablet body:not(.home):not(.single-project) .header-spacer {
                /*height: 6.86rem;*/
                height: 110px;
            }
            
            /*.laptop body:not(.home):not(.single-project) .header-spacer {
                height: 6.86rem;
            }*/
        
            .content {
            } 

                .content-header {
                }

                .content-main {
                    max-width: 2500px;
                    margin-left: auto;
                    margin-right: auto;
                }

    /* Utilities */
    .laptop .laptop-hidden {
        display: none;
    }

     .error404 main {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /*.error404 .content-main {
        min-height: calc(100vh - 404px);
    }

    .small .error404 .content-main {
        min-height: calc(100vh - 404px);
    }

    .tablet .error404 .content-main {
        min-height: calc(100vh - 617.89px);
    }*/


.single-team .wrapper,
.single-post .wrapper,
.error404 .wrapper,
.page-id-1238 .wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.single-team main,
.single-post main,
.error404 main,
.page-id-1238 main {
  flex: 1;
}

.single-team .main-footer,
.single-post .main-footer,
.error404 .main-footer {
  margin-top: auto;
}

/* ==========================
   Copy Protection (Visitors Only)
   Mobile + iOS Safe
========================== */

/* Disable text selection */

body:not(.logged-in) :not(input):not(textarea):not(button):not(video) {
    -webkit-user-select: none;
    user-select: none;
}


/* Prevent dragging media */

body:not(.logged-in) img,
body:not(.logged-in) video {
    -webkit-user-drag: none;
}


/* Block long-press save */

body:not(.logged-in) img,
body:not(.logged-in) video {
    -webkit-touch-callout: none;
}