﻿/*needed to stop printing landscape*/
@page {
    size: auto
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: .8vw;
    overflow: hidden;
    margin: 0;
    /*height: 100vh;*/
}

.abgreyout {
    background-color: #e9ecef;
    opacity: 1;
    /*height: 100% !important;*/
}

.abtabtransition {
    height: 100vh;
    max-height: 100vh;
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1);
    /*transition-timing-function: cubic-bezier(0, 1, 0.5, 1);*/
}

    .abtabtransition.closed {
        overflow-y: hidden;
        max-height: 0;
    }


.abnotretest {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 1.5rem;
}


.dropzone {
    user-select: none;
}

    .dropzone.dragover {
        border: 2px solid;
        border-color: var(--logoorange);
    }
