html, body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    height: 100%;
    color: #713d79;
    font-weight: 200;
    box-sizing: border-box;
    background-color: #fcfcfc;
}

h1 {
    font-weight: 100;
    font-size: 2.5em;
}

h2 {
    font-weight: 100;
    font-size: 2.0em;
    margin: 0;
}

h3 {
    font-weight: 100;
    font-size: 1.5em;
}

h4 {
    font-weight: 100;
    font-size: 1.0em;
}

div {
    box-sizing: border-box;
}

p {
    font-size: 1.2em;
    line-height: 1.2em;
    font-weight: 200;
}

.app-container {
    width: 100%;
    max-width: 600px;
    height: 100%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-shadow: 0px 0px 10px 0px #aaa;
}

.screen {
    position: absolute;
    top: 0;
    background: radial-gradient(circle, #FFF 0%, #EEE 54%, #CCC 100%);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: none;
    overflow-y: auto;
}

.screen.active {
    display: block;
}

.page {
    padding: 11px 23px;
    min-height: 100%;
    display: none;
}

.priv .page {
    padding: 0px 5px;
}

.page.active {
    display: block;
    animation-name: example;
    animation-duration: 256ms;
    opacity: 1;
}

@keyframes example {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.splash {
    color: rgb(173, 122, 181);
    text-align: center;
}

.pub {
    background: rgb(207, 150, 215);
    background: radial-gradient(circle, rgba(200, 143, 207, 1) 0%, rgba(173, 122, 181, 1) 54%, rgba(173, 122, 181, 1) 100%);
    color: #ededee;
}

.screen.pub {
    overflow: hidden;
}

.pub:before {
    content: "";
    width: 488px;
    height: 231px;
    background: #713d79;
    transform: rotate( -54deg);
    position: absolute;
    bottom: 13px;
    right: -197px;
    box-shadow: 0px 0px 19px 7px #000;
    background: radial-gradient(circle, #7d4a86 0%, #713d79 54%, #713d79 100%);
}

.center-y {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    padding: 11px 23px;
    display: block;
}

.app-container .btn-primary {
    background-color: #713d79;
    border-color: #713d79;
    font-weight: 300;
    letter-spacing: 1px;
}

.app-container .card {
    width: 40rem;
    display: inline-block;
    margin: 5px 5px;
}

.app-container .card .card-body {
    margin-bottom: 44px;
}

.app-container .card .card-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: right;
    border: none;
    background: none;
}

.app-container .page .row {
    justify-content: center;
}

.app-container .card .card-footer .btn-outline-primary {
    border-color: #713d79;
    color: #713d79;
}

.app-container .card .card-footer .btn-outline-primary:not(:disabled):not(.disabled).active, .app-container .card .card-footer .btn-outline-primary:not(:disabled):not(.disabled):active, .app-container .card .card-footer .btn-outline-primary:not(:disabled):not(.disabled):hover, .app-container .card .card-footer .btn-outline-primary:not(:disabled):not(.disabled):focus, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active {
    border-color: #713d79;
    color: #713d79;
}

.app-container .screen .header {
    width: 100%;
    max-width: 600px;
    background: #713d79;
    box-shadow: 0 1px 3px 0 #000;
    color: #ededee;
    padding: 3px 7px;
    height: 43px;
    position: fixed;
    z-index: 100;
}

.app-container .screen .header .full-height {
    height: 100%;
}

.app-container .screen .right {
    text-align: right;
}

.app-container .screen .header .btn {
    height: 100%;
    font-size: 1.3em;
}

.app-container .screen .header .btn-primary {
    background-color: transparent;
    border: none;
}

.app-container .screen .header .title {
    padding: 0 10px;
}

.app-container .screen .header .title .btn {
    float: left;
}

.app-container .screen .header h3 {
    font-size: 1.1em;
    line-height: 39px;
    padding: 0;
    margin: 0;
    float: left;
    font-weight: 400;
}

.dev .app-container {
    border: dotted 5px #DDD;
    overflow-y: auto;
}

.dev .app-container .screen {
    position: relative;
}

.dev .app-container>div {
    margin-top: 3px;
}

.dev .app-container .page {
    border: solid 1px #00F;
}

/* ------- LINEAR LOADING  ----- */

.linear-activity {
    overflow: hidden;
    width: 50%;
    height: 2px;
    background-color: rgb(173, 122, 181);
    margin: 20px auto;
}

.indeterminate {
    position: relative;
    width: 100%;
    height: 100%;
}

.indeterminate:before {
    content: '';
    position: absolute;
    height: 100%;
    background-color: #dddde0;
    animation: indeterminate_first 1.5s infinite ease-out;
}

.indeterminate:after {
    content: '';
    position: absolute;
    height: 100%;
    background-color: #dddde0;
    animation: indeterminate_second 1.5s infinite ease-in;
}

@keyframes indeterminate_first {
    0% {
        left: -100%;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 10%;
    }
}

@keyframes indeterminate_second {
    0% {
        left: -150%;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 10%;
    }
}

/* ------- LINEAR LOADING  ----- */

.navbar-toggle {
    display: none;
}

/* ------- round LOADING  ----- */

.loader, .loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid #DDD;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    animation: load8 0.69s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ------- round LOADING  ----- */

body {
    background-color: rgba(0, 0, 0, 0.1);
}

/* styling paper */

.paper {
    width: 97%;
    position: relative;
    margin: 20px auto;
    padding-bottom: 40px;
    background-color: white;
    box-shadow: 0px 0px 5px 0px #888;
}

.paper h1 {
    font-size: 1.9em;
    text-decoration: underline;
    line-height: 50px;
    margin: 0;
}

.paper p {
    font-size: 0.89em;
    line-height: 25px;
}

/* styling red vertical line */

.paper::before {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 40px;
    background-color: rgba(255, 0, 0, 0.6);
}

/* styling blue horizontal lines */

#pattern {}

/* styling text content */

.content {
    padding-top: 3px;
    padding-left: 47px;
    padding-right: 16px;
    line-height: 25px;
    font-family: "Architects Daughter";
    font-size: 19px;
    letter-spacing: 1px;
    word-spacing: 5px;
    color: #00a;
    width: 100%;
    background: none;
    /* height: 100%; */
    border: 0;
    outline: none;
    background-image: repeating-linear-gradient(white 0px, white 24px, teal 25px);
    overflow: hidden;
}

.model-business-canvas {
    display: flex;
    flex-flow: column;
    width: 100%;
    background: rgb(173, 122, 181);
    padding: 0 1px 7px 1px;
    box-shadow: 1px 6px 8px 5px #555;
}

.model-business-canvas .top-row {
    color: #dddde0;
}

.model-business-canvas .top-row .btn {
    color: #dddde0;
}

.model-business-canvas h2 {
    font-size: 9px;
    color: #682873;
    font-weight: 500;
    text-align: left;
    margin: 5px 1px;
    display: block;
}

.rows-container {
    min-width: 10px;
    min-height: 50px;
    display: flex;
    flex-flow: row;
}

.column-container-5 {
    border: none;
    width: 20%;
    /* height: 203px; */
    display: flex;
    flex-flow: column;
}

.column-container-2 {
    border: none;
    width: 50%;
    display: flex;
    flex-flow: column;
}

.box {
    border: none;
    margin: 3px;
    height: 100%;
    color: #FFF;
    border-radius: 2px;
    position: relative;
    min-height: 60px;
    padding: 1px 2px;
    box-shadow: 1px 1px 4px 1px #2c182f;
}

.rows-container-main {
    height: 80%;
}

.rows-container-bottom {
    height: 20%;
}

.background-image {
    position: absolute;
    bottom: 0;
    font-size: 2em;
}

.postit-2 {
    line-height: 1;
    text-align: center;
    width: 275px;
    min-height: 250px;
    max-height: 250px;
    padding: 2px 5px;
    position: relative;
    border: 1px solid #E8E8E8;
    border-top: 3px solid #fdfd86;
    font-family: "Helvetica Neue", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 22px;
    border-bottom-right-radius: 60px 5px;
    display: inline-block;
    background: #ffff88;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(81%, #ffff88), color-stop(82%, #ffff88), color-stop(82%, #ffff88), color-stop(100%, #ffffc6));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* IE10+ */
    background: linear-gradient(135deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffff88', endColorstr='#ffffc6', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.postit-2 textarea:focus {
    outline: none;
}

.postit-container.mini {
    width: 26px;
    height: 26px;
    min-height: 0;
    position: absolute;
    transform: rotate(-7deg);
    left: 12px;
}

.postit-2.mini {
    width: 26px;
    height: 26px;
    min-height: 0;
    left: 12px;
    border: none;
}

.postit-container.mini .postit-shadow {
    position: absolute;
    right: -9px;
    bottom: 5px;
    width: 23px;
    height: 5px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 4px 5px 5px rgb(0 0 0 / 40%);
    -moz-transform: matrix(-1, -0.1, 0, 1, 0, 0);
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}

.postit-2 textarea {
    width: 100%;
    height: 228px;
    background: transparent;
    border: navajowhite;
    color: #00B;
    font-family: "Architects Daughter";
    ;
}

.postits {
    text-align: center;
    position: relative;
}

.postits {
    text-align: center;
    position: relative;
}

.postit-container {
    display: inline-block;
    position: relative;
}

.postit-container .postit-shadow {
    position: absolute;
    right: -0px;
    bottom: 17px;
    width: 200px;
    height: 25px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 2px 15px 5px rgb(0 0 0 / 40%);
    -moz-transform: matrix(-1, -0.1, 0, 1, 0, 0);
    -webkit-transform: matrix(-1, -0.1, 0, 1, 0, 0);
    -o-transform: matrix(-1, -0.1, 0, 1, 0, 0);
    -ms-transform: matrix(-1, -0.1, 0, 1, 0, 0);
    transform: matrix(-1, -0.1, 0, 1, 0, 0);
}

.page-footer {
    background-color: rgb(173, 122, 181);
    /* width: 95%; */
    height: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    position: absolute;
    left: 10px;
    right: 10px;
}

.card-body pre {
    color: #713d79;
    font-family: "Helvetica Neue", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.3em;
    white-space: break-spaces;
}

.box {
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 50px 50px;
    background-color: rgba(255,255,255,0.3);
}

.box-menu-keyPartners {
    background-image: url("../images/icons/keyPartners.png");
}

.box-menu-keyActivities {
    background-image: url(../images/icons/keyPartners.png);
}

.box-menu-keyResources {
    background-image: url(../images/icons/keyPartners.png);
}

.box-menu-valueProposition {
    background-image: url(../images/icons/valueProposition.png);
}

.box-menu-customerRelationship {
    background-image: url(../images/icons/keyPartners.png);
}

.box-menu-distribution {
    background-image: url(../images/icons/keyPartners.png);
}

.box-menu-customerSegment {
    background-image: url(../images/icons/keyPartners.png);
}

.box-menu-costStructure {
    background-image: url(../images/icons/keyPartners.png);
}

.box-menu-revenueStreams {
    background-image: url(../images/icons/revenueStreams.png);
}

input.model-title {
    font-weight: 100;
    font-size: 2em;
    border: none;
    background: none;
    color: #dddde0;
    width: 100%;
}

input.model-title:focus {
    outline: none;
}

.btn {
    outline: none;
}

.app-container .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.app-container .btn-primary.focus, .btn-primary:focus {
    box-shadow: none;
}

.app-container .btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: none;
}

.app-container .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.app-container .btn-outline-primary:not(:disabled):not(.disabled).active, .app-container .btn-outline-primary:not(:disabled):not(.disabled):active, .app-container .show>.btn-outline-primary.dropdown-toggle, .app-container .btn-outline-primary:hover {
    box-shadow: none;
    background-color: transparent;
}

#screenPriv .menu {
    position: absolute;
    background: rgb(173, 122, 181);
    height: 100%;
    z-index: 1000;
    right: 0px;
    top: 43px;
    /* box-shadow: -3px 3px 3px 0px #000; */
    transform: translateX(120%);
    display: none;
    width: 100%;
}

#screenPriv .menu.active {
    transform: translateX(0%);
    animation: slide-right 350ms ease-in-out;
    display: block;
}

#screenPriv .menu .list-group-item-action {
    background-color: #713d79;
    color: #EEE;
    border-radius: 0;
    /* text-align: right; */
    min-width: 203px;
}

@keyframes slide-right {
    0% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(0%);
    }
}

.paper blockquote {
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    padding: 3px 10px;
    border: solid 1px
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* EDITOR */

.editable {
    border: dashed 1px #00F !important;
    box-sizing: border-box;
}

#editor-menu {
    position: absolute;
    top: 7px;
    right: 35px;
    background-color: rgb(173, 122, 181);
    border-radius: 25px;
    padding: 1px 10px;
    z-index: 2200;
    text-align: right;
    margin: 2px 5px;
    border-top: solid 1px #713e79;
    border-left: solid 1px #713e79;
    border-right: solid 1px #edecee;
    border-bottom: solid 1px #edecee;
    box-shadow: inset 0px 0px 11px 0px;
    display: none;
}

#editor-menu.enabled {
    display: block;
}

#editor-content {
    z-index: 2000;
    width: 100%;
    height: 100%;
    position: absolute;
    background: inherit;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(5px);
    overflow: auto;
    display: none;
    padding-top: 37px;
}

#editor-content.visible {
    z-index: 2000;
    width: 100%;
    height: 100%;
    position: absolute;
    background: inherit;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(5px);
    overflow: auto;
    display: block;
}

#editor-content .card {
    width: auto;
    background: rgba(0, 0, 0, 0.4);
    margin: 10px 80px;
    color: #FFF;
    display: block;
    margin-right: 10px;
    margin-left: 10px;
}

#editor-content .card .text {
    padding: 3px 7px;
}

.editableContent.editing {
    border: dashed 1px #66F;
    box-sizing: border-box;
    padding: 2px 10px;
}

#editor-menu .custom-control-label {
    font-size: 0.8em;
    line-height: 1.8em;
    color: #FFF;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.only-print {display: none;}