@import "inputs.css";
@font-face {font-family: 'PT Sans Narrow';
    src: url('../fonts/PTN57F_W.eot');
    src: local('PT Sans Narrow'), url('../fonts/PTN57F_W.eot?#iefix') format('embedded-opentype'), url('../fonts/PTN57F_W.woff') format('woff'),url('../fonts/PTN57F_W.ttf') format('truetype'), url('../fonts/PTN57F_W.svg#PTSans-Narrow') format('svg');}

@font-face {font-family: 'PT Sans Narrow';
    font-weight: bold;
    src: url('../fonts/PTN77F_W.eot');
    src: local('PT Sans Narrow Bold'), url('../fonts/PTN77F_W.eot?#iefix') format('embedded-opentype'), url('../fonts/PTN77F_W.woff') format('woff'),url('../fonts/PTN77F_W.ttf') format('truetype'), url('../fonts/PTN77F_W.svg#PTSans-NarrowBold') format('svg');}

html, body{
    position: absolute;
    font-family: 'PT Sans Narrow', sans-serif;
    background: #333f4c;
    height: 100%;
    width: 100%;
}


.float{
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
}

.float div{
    display: inline-block;
}

.node{
    width: auto;
    color: #c9e1ff;
    border-radius: 4px;
    background: rgb(58, 72, 87);
    padding: 16px;
    transition: .25s ease-out;
}

.node:hover{
    background: rgba(65, 84, 105, 0.72);
}

.node_small{
    /* box-sizing: border-box; */
    cursor: pointer;
    font-size: larger;
    position: absolute;
    left: 50%;
    top: 50%;
    text-transform: capitalize;
    width: auto;
    color: #c9e1ff;
    border-radius: 4px;
    background: #3a4857;
    padding: 2px 10px 4px 10px;

    opacity: 0;
    transition: 0.3s ease-out;
}

.node_small:hover{
    color: #ABD0FF;
    background: rgba(65, 84, 105, 0.9);

}

.node_smallSecondLayer{
    /* box-sizing: border-box; */
    cursor: pointer;
    font-size: larger;
    position: absolute;
    left: 50%;
    top: 50%;
    text-transform: capitalize;
    width: auto;
    color: #c9e1ff;
    border-radius: 4px;
    background: #3a4857;
    padding: 2px 10px 4px 10px;
    opacity: 0;

    transition: 0.3s ease-out;
    /*transition: .25s ease-in;*/
}

.node_smallSecondLayer:hover{
    color: #ABD0FF;
    background: rgba(65, 84, 105, 0.9);

}

.layout{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    opacity: 1;
}

.col, .links_col{
    z-index: 2;
    width: 320px;
    box-sizing: border-box;
    overflow: hidden;
    flex: 0 0 auto;
}

.links_col{
    display: none;
    opacity: 1;
    color: #C9E1FF;
    flex: 0 0 auto;
    padding: 16px;
    transition: .4s ease-out;
}

.logo{
    display: none;
    background: url('/img/logo.svg') no-repeat;
    margin-right: 20px;
    width: 50px;
    height: 41px;
}

.answer{
    /* text-align: justify; */
    position: relative;
    top: 4px;
    max-height: 218px;
    padding-top: 4px;
    padding-right: 8px;
    color: #C9E1FF;
    overflow-x: hidden;
}

.answer::-webkit-scrollbar {
    width: 4px;
}

.answer::-webkit-scrollbar-track {
    background: transparent;
}

.answer::-webkit-scrollbar-thumb {
    background-color: #5A6F86;
    border-radius: 4px;
}
.answer p{
    transition: all .3s ease;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

.input_form {
    /* height: 100%; */
}

.txt_calc{
    display: none;
    box-sizing: border-box;
    width: 300px;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background: #2877CC;      
    /* padding: 36px 16px 16px 16px; */
}

.show{
    display: block;
}

.hide{
    display: none;
}

.show_op{
    opacity: 1;
}

.hide_op{
    /*left: 50%;*/
    /*top: 50%;*/
    opacity: 0;
}
