﻿.searchTextBox {
    margin-left: 10px;
    border: none;
    flex: 100;
}
    .searchTextBox:focus {
        outline: none;
    }


.funky-show-hide.ng-hide-remove {
    transform: rotateY(90deg);
    transform-origin: left;
    transition: all 0.5s ease;
}

    .funky-show-hide.ng-hide-remove.ng-hide-remove-active {
        transform: rotateY(0);
    }



.page {
    width: 21cm;
    min-height: 29.7cm;
    padding: 1cm;
    margin: 1cm auto;
    border: 1px #d3d3d3 solid;
    border-radius: 5px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
 

document-container {
    margin-left: 10px;
    background-color: #fff;
    font: 14pt 'Tahoma';
    justify-content: center;
    align-items: center;
    overflow: auto;
}

document-container-center-title {
    font-weight: 500;
    font-size: 2rem;
    color: var(--primary);
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
 