﻿html {
    color: rgb(96, 98, 102);
    font-size: 1rem;
}

body {
    background-color: #F6F7FC;
}

#page-body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#content-layout {
    position: absolute;
    left: 0;
    right: 0;
}

.header-profile-image img {
    width: 2.25em;
    border-radius: 50%;
    margin-right: .25rem;
}

.main-hamburger {
    display: flex !important;
    justify-content: center;
    flex-direction: column;
}

.header-menu {
    padding: 0;
}
.header-menu li {
    padding: 0.25em 0
}

.header-menu li a {
    color: rgb(114, 119, 122);
    font-size: 0.875em;
}

.header-menu li a svg{
    font-size: 0.85em;
}
.header-menu li:hover {
    background-color: #f5f5f5
}

.no-after:after,
.no-before:before {
    display: none !important
}

.clear-before::before {
    display: none;
}

.rounded-block {
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    background-color: #FFF;
    /*border-radius: 0.5rem;*/
    border-width: 1px;
    border-color: rgb(220,220,220);
    border-color: rgba(0,0,0,0.15);
    border-style: solid;
    box-shadow: 0 0 rgb(0,0,0);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.rounded-block-full-width-element {
    width: calc(100% + 4rem);
    margin-left: -2rem;
}

.square-box{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.square-box:before{
    content: "";
    display: block;
    padding-top: 100%;
}
.square-content{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}
.square-content div {
    display: table;
    width: 100%;
    height: 100%;
}
.square-content span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white
}

.title-line {
    overflow: hidden;
}
    .title-line:before,
    .title-line:after {
        content: '';
        display: inline-block;
        vertical-align: middle;
        box-sizing: border-box;
        width: 100%;
        height: 1px;
        background: rgb(220,220,220);
        border: 0 solid;
        border-color: rgb(251, 251, 249);
        border-width: 0 10px;
    }
    .title-line:before {
        margin-left: -100%;
    }
    .title-line:after {
        margin-right: -100%;
    }

.link-icon-light {
    color: #0af;
    text-decoration: none !important;
}

input[type="checkbox"], input[type="radio"] {
    display: none;
}

    input[type="checkbox"] + label, input[type="radio"] + label {
        display: block;
        position: relative;
        margin: .5em 0;
        font: 16px 'Open Sans', Arial, sans-serif;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    /*input[type="checkbox"] + label:last-child { margin-bottom: 0; }*/

        input[type="checkbox"] + label:before {
            content: '';
            background: url("/images/Icons/checkboxes.png") no-repeat 0 0;
            height: 16px;
            width: 16px;
            vertical-align: middle;
            margin: 0 .5em .2em 0;
            display: -moz-inline-box;
            display: inline-block;
            text-align: center;
        }

        input[type="radio"] + label:before {
            content: '';
            background: url("/images/Icons/radios.png") no-repeat 0 0;
            height: 17px;
            width: 16px;
            vertical-align: middle;
            margin: 0 .5em .2em 0;
            display: -moz-inline-box;
            display: inline-block;
            text-align: center;
        }

        input[type="checkbox"]:disabled + label, input[type="radio"]:disabled + label {
            color: #B7B7B7;
        }

        input[type="checkbox"]:disabled + label:before, input[type="radio"]:disabled + label:before {
            opacity: 0.6;
            filter: alpha(opacity=60);
            color: #B7B7B7;
        }

    input[type="checkbox"]:checked + label:before {
        background-position: 0 -17px;
    }

    input[type="radio"]:checked + label:before {
        background-position: 0 -18px;
    }

.clear-check-style {
    color: inherit !important;
    cursor: default !important;
    opacity: 1;
}

.clear-check-style:before {
    opacity: 1 !important;
}

.text-block p {
    margin: 0;
    word-break: break-all; 
    word-break: break-word;
}

.bordered-block {
    border: 1px solid gray;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 5px;
}

.info-text {
    color: #828282;
}