@import "fonts.css";
@import "components/buttons.css";
@import "components/inputs.css";
@import "scrollbar.css";

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    height: 100vh;
    max-height: fit-content;
    display: flex;
    flex-flow: column;
    background: #FCFCFC;
    color: #112A46;
    font-family: "Noto Sans";
}

main {
    height: 100%;
}

.panel {
    position: relative;
    min-height: calc(100vh - 132px);
    padding: 56px 80px;
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 2px 2px 16px rgba(38, 55, 67, 0.1);
}

    .panel .panel-header h4 {
        text-align: center;
        font-weight: 600;
        font-size: 24px;
        line-height: 29px;
    }

    .panel .panel-content {
        height: 100%;
        padding: 32px 0 90px;
        z-index: 10;
    }

        .panel .panel-content .text-block {
            font-weight: 400;
            font-size: 18px;
            line-height: 150%;
            color: #112A46;
            margin-bottom: 30px;
        }

.waterbg-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("../images/WaterBg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    opacity: 0.8;
    border-radius: 0 0 8px 8px;
}

.menu-column {
    background-color: #FFFFFF;
    border-right: 1px solid rgba(23, 35, 76, 0.15);
}

.content-container {
    height: 100%;
    padding: 24px 33px;
}

.copyright-block {
    padding: 40px 0;
}

footer {
    position: absolute;
    bottom: 0;
    transform: translate(-50%, 0);
    left: 50%;
}

    footer .copyright-block {
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        color: rgba(17, 42, 70, 0.4);
    }

.company-block .company-logo {
    display: inline-block;
}

    .company-block .company-logo img {
        width: 48px;
        height: 48px;
        border-radius: 4px;
    }

.company-block .company-name {
    display: inline-block;
    margin-left: 16px;
    vertical-align: middle;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    color: #FFFFFF;
}

.processing-block {
    color: #112A46;
    font-size: 1rem;
}

.divider {
    height: 1px;
    width: 100%;
    background: #D6D5E3;
}

.divider-ver {
    width: 1px;
    background: rgba(214, 213, 227, 0.5);
}

.text-14 {
    font-size: 14px;
}

.icon-md {
    width: 24px;
    height: 24px;
}