body {
    /*font-family: 'Rubik', sans-serif;
    font-size: 14px;*/
    padding: 0;
    margin: 0;
    min-height: 100%;
}
/** 
 * IE 8–11 and Prince don’t recognize the `wbr` element,
 * but a pseudo-element can achieve the same effect with IE 9+ and Prince.
 */
wbr:before {
  /* Unicode zero width space */
  content: "\200B";
  white-space: normal;
}
.logo {
    font-size: 100px;
    font-weight: bolder;
    letter-spacing: -6px;
    color: #222;
    margin-bottom: 20px;
}
.logo .number {
    color: #222;
    opacity: 0.1;
}
.svgLogo{
    fill: #151515;
    transform: rotate(35deg);
}
.svgLogo .cls-2{
    transition: fill 500ms;
    fill: #ededed;
}
.svgLogo:hover .cls-2{
    fill: orange;
}
.navigation {
    margin-bottom: 20px;
}
.navigation a {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid #222;
    background: #222;
    color: #fff;
}
.navigation a:hover {
    color: #222;
    background: transparent;
}
.container {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 33px;
    margin-left: 0;
}
.container a {
    color: #222;
}
.container table {
    font-size: 11px;
    margin-top: 20px;
}
.container table thead td {
    background-color: #f5f5f5;
    padding: 4px 10px;
}
.container table tbody td {
    padding: 4px 10px;
}
.container .box {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 30px;
}
.container input[type=text],
.container input[type=email],
.container input[type=password]{
    background-color: #fcfcff;
    padding: 6px 10px 5px 20px;
    border-radius: 50px;
    line-height: 2em;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    outline: 0;
}
.container input[type="submit"] {
    /*background-color: #ccc;
    cursor: pointer;*/
}
.container input[type="submit"]:hover {
    background-color: #222;
    color: #fff;
}
.container button {
    background-color: #ccc;
    border: 0;
    padding: 5px 10px;
    cursor: pointer;
}
.container button:hover {
    background-color: #222;
    color: #fff;
}
.footer {
    text-align: right;
    font-size: 11px;
    opacity: 0.5;
    margin-top: 20px;
}
.footer a {
    color: #454545;
}
.flex{
    display: flex;
}
.flex1{
    flex: 1;
}
.flex2{
    flex: 2;
}
.flex3{
    flex: 3;
}
.flexColumn{
    display: flex;
    flex-direction: column;
}
.flexWrap{
    flex-wrap: wrap;
}
.justifyStart{
    justify-content: flex-start;
}
.justifyCenter{
    justify-content: center !important;
}
.justifyEnd{
    justify-content: flex-end;
}
.alignStart{
    align-items: flex-start;
}
.alignCenter{
    align-items: center;
}
.textCenter{
    text-align: center;
}
.spaceBetween{
    justify-content: space-between;
}
.spaceAround{
    justify-content: space-around;
}
.marginAuto{
    margin-left: auto;
    margin-right: auto;
}
.marginRight10{
    margin-right: 10px !important;
}
.marginRight15{
    margin-right: 15px !important;
}
.marginLeft15{
    margin-left: 15px !important;
}
.padding0{
    padding: 0 !important;
}
.menuAndContent{
    min-height: 100vh;
}
.side-menu{
    top: 0;
    left: 0;
    background-color: #fcfcff;
    box-shadow: -3px 0px 7px 0px rgba(0, 0, 0, 0.03) inset;
    width: 300px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 3.5em;
}
.side-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-menu ul li{
    padding-left: 40px;
    border-left: 3px solid transparent;
    transition: border-color 200ms, color 200ms;
    color: #737373;
    margin-bottom: 5px
}
.side-menu ul li a{
    color: #737373;
    text-decoration: none;
}

.side-menu ul li:hover{
    border-color: #2bb6e2;
    color: #000;
}
.side-menu ul li.current{
    border-color: #2bb6e2;
    font-weight: bold;
}
.side-menu ul li.current a{
    color: #000;
}
.hasHeader{
    background-color: #c6c4c6;
}
.side-menu-header{
    height: 50px;
    color: #000;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    /*transition: height 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1);*/
}
.hasHeader.open .side-menu-header{
    /*height: auto;*/
}
.side-menu-header-main{
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.side-menu-header .menuButton{
    margin-right: 10px;
}
.side-menu-wrapper{
    border-radius: 10px 10px 0 0;
    padding: 20px 40px 20px 0px;
    background-color: #fcfcff;
    transition: border-radius 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hasHeader.open .side-menu-wrapper{
    border-radius: 0;
}
.mainContent{
    padding: 40px;
}
.border1{
    border: 1px solid #eee;
}
.padding1{
    padding: 1em;
}
.rowTypeContainer{
    display: flex;
    margin-bottom: 1.5em;
    border: 1px solid #dddddd;
    padding: 1em;
    border-radius: 3px;
    transition: box-shadow 200ms, width 400ms;
    background-color: #fff;
    position: relative;
}
.sortableHost .rowTypeContainer:hover{
    cursor: grab;
    -webkit-box-shadow: 0 6px 10px rgba(0,0,0,0.35);
    box-shadow: 0 6px 10px rgba(0,0,0,0.35);
}
.sortableTarget{
    position: relative;
}
.sortableTarget .webRow{
    outline: 1px dotted transparent;
    transition: outline 300ms;
}
.sortableTarget .webRow.ui-sortable:hover{
    border-color: var(--color1);
}
.webRow .handle{ 
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 6;
    display: none;
    margin: 0;
    cursor: grab;
}
.webRow.ui-sortable:hover .handle{
    display: block;
}
.rowTypeContainer > div{
    margin-right: 1em;
}
.rowTypeContainer > div:last-of-type{
     margin-right: 0; 
}
#globalContextual{
    transition: width 300ms, height 300ms, top 300ms, left 300ms;
}
.blockInner{
    background-color: #e0e0e0;
}
.blockInnerInner{
    border: 1px dashed #bdbdbd;
    background-color: #d3d3d3;
}
.margintop0{
    margin-top: 0;
}
.margin0{
    margin: 0 !important;
}
.marginBottom0{
    margin-bottom: 0 !important;
}
.marginTop0{
    margin-top: 0;
}
.marginTop25{
    margin-top: 25px;
}
.marginBottom10{
    margin-bottom: 10px;
}
.cursorPointer{
    cursor: pointer !important;
}
.cursorDefault{
    cursor: default !important;
}
.addContent{
    border: 1px dashed #dddddd;
    border-radius: 3px;
    position: relative;
}
.addContentInner{
    display: flex;
    /*justify-content: center;
    align-items: center;*/
    flex-direction: column;
}
.subRow{
    display: flex;
}
.ui-sortable .subRow{
    outline: 1px dashed #dddddd;
    border-radius: 3px;
    position: relative;
}
.ui-sortable-placeholder{
    border: 1px solid #e2e6f9;
    border-radius: 3px;
    visibility: visible !important;
    box-sizing: border-box;
}
.ui-sortable-placeholder{
    background-color: #e2e6f9;
    /*background: repeating-linear-gradient(-45deg, transparent, transparent 10px, #e2e6f9 10px, #e2e6f9 20px)*/
}
.md-dark{
    color: rgba(0, 0, 0, 0.54);
}
.md-dark.md-inactive{
    color: rgba(0, 0, 0, 0.26);
}
.md-light{ color: rgba(255, 255, 255, 1); }
.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
.material-icons.md-18,
.outlined{ font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48,
.material-icons-outlined.md-48{
    font-size: 48px;
}
/*
.addContent:before, .addContent:after{
    content: '+';
    display: block;
    position: absolute;
    width: 0;
    height: 30px;
    top: 50%;
    transform: translate(0, -50%);
    border: 1px dashed #ccc;
    transition: all 200ms;
    opacity: 0;
    display: flex;
    align-items: center;
}
.addContent:before {
    left: -1px;
    border-radius: 0 200px 200px 0;
    border-left: 1px solid #fff;
    justify-content: flex-start;
}
.addContent:after {
    right: -1px;
    border-radius: 200px 0 0 200px;
    border-right: 1px solid #fff;
    justify-content: flex-end;
}
.addContent:hover:before, .addContent:hover:after{
    width: 20px;
    opacity: 1;
}*/
.contextual{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color1);
    top: -2px;
    left: -2px;
    border-radius: 3px;
    box-sizing: border-box;
}
.addContent.focused > .contextual{
    display: block;
    z-index: 9;
}
.subRow.focused,
.sortableTarget.focused{
    position: relative;
    z-index: 9;
}
.contextual .options{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    background-color: var(--color1);
    padding: 6px 12px;
    border-radius: 3px 3px 0 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.options i{
    color: #fff;
    font-size: 16px;
    margin-right: 12px;
}
.options i:last-of-type{
    margin-right: 0;
}
.grab{
    cursor: grab;
}
.blueprint{
    background-image: repeating-linear-gradient(90deg, transparent, transparent, 2em, #2c6fb3 2em, #2c6fb3 calc(2em + 1px)),
        repeating-linear-gradient(transparent, transparent, 2em, #2c6fb3 2em, #2c6fb3 calc(2em + 1px)),
        linear-gradient(45deg, #0a4d94, #155e9c);
    border-radius: 3px;
}
.blueprintInner{
    border: 1px solid #bee9ff;
    position: relative;
}
.blueprintInner div{
    border: 1px dashed #bee9ff;
    padding: 1em;
}
.blueprintInner .selectable:hover{
    cursor: pointer;
    border-style: solid;
}
.blueprintInner .selectable{
    margin-right: 1em;
    position: relative;
    z-index: 5;
}
.blueprintInner .selectable:last-of-type{
    margin-right: 0;
}
.blueprintInner div.selected{
    border-style: solid;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, #bee9ff 5px, #bee9ff 6px);
}
.blueprintInner .parentElem{
    position: relative;
}
.blueprintInner .toParent{
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    z-index: 2;
    padding: 0;
    border-width: 0;
    box-sizing: border-box;
}
.blueprintInner .toParent:hover{
    border-width: 1px;
    border-style: solid;
}
.editBlockClose{
    text-align: right;
}
.editBlockClose i{
    cursor: pointer;
}
.pre{
    margin-bottom: 1em;
    border-top: 0 !important;
    padding-top: 0 !important;
}
.post{
    margin-top: 1em;
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.material-card{
    border-radius: 3px;
    box-shadow: 0 1px 1px 0 rgba(66, 66, 66, 0.08), 0 1px 3px 1px rgba(66, 66, 66, 0.16);
}
.material-card.clickable{
    transition: box-shadow 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.material-card.clickable:hover{
    box-shadow: 0 1px 3px 1px rgba(66, 66, 66, 0.2), 0 2px 8px 4px rgba(66, 66, 66, 0.1);
}
.material-circle-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: box-shadow 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 0;
    background: 0 0;
}
.material-circle-button:hover{
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.material-circle-button:before{
    /*transition: transform 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(33, 33, 33, 0.5);
    font-family: 'Material Icons Outlined';
    font-size: 20px;
    content: "keyboard_arrow_up";
    font-feature-settings: "liga" 1;*/
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.material-circle-button.fab{
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    /*background-color: orange;*/
    z-index: 995;
}
.material-circle-button.fab:before{
    /*content: 'add';
    color: #222;*/
}
.fabAction{
    background-color: transparent;
    position: fixed;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    left: 300px;
    overflow: hidden;
    transition: background-color 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fabAction-inner{
    position: absolute;
    top: calc(100vh - 90px);
    right: 30px;
    width: 60px;
    height: 60px;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: orange;
}
.fabAction.open{
    background-color: rgba(0,0,0,.5);
    display: block;
    z-index: 999;
    width: calc(100% - 300px);
    height: 100%;
}
.fabAction.open .fabAction-inner{
    background-color: #fff;
    border-radius: 3px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    transition: background-color 185ms 0ms cubic-bezier(0.4, 0, 0.2, 1),
            top 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1), 
            right 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1), 
            border-radius 185ms 0ms cubic-bezier(0.4, 0, 0.2, 1), 
            width 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1), 
            height 365ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fabAction-inner .content{
    opacity: 0;
    transition: opacity 180ms;
    transition-delay: 180ms;
}
.fabAction.open .fabAction-inner .content{
    opacity: 1;
}
.fabAction-inner .close{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.displayNone{
    display: none !important;
}
.relative{
    position: relative;
}

.webRow, .webRow2{
    /*background-color: rgba(0,0,0,.01);*/
    display: flex;
    box-sizing: border-box;
}
.webCol, .webCol2{
    /*background-color: rgba(0,0,0,.01);*/
    flex: 1;
    /*padding: 3px;*/
    display: flex;
    flex-direction: column;
}
.webRow2{
    /*background-color: rgba(0,0,0,.01);*/
    /*padding: 3px;*/
    flex: 1;
}
.webCol2{
    /*padding: 3px;*/
    /*background-color: rgba(0,0,0,.01);*/
    flex-direction: row;
    margin-right: 3px;
    display: block;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.webCol2:last-of-type{
    margin-right: 0;
}