@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*, :after, :before {
    box-sizing: border-box;
}

body, html{
    margin:0;
    padding:0;
}
    
body{
    font-family: Montserrat;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 20px;
    padding-bottom: 20px;
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
}

.header .brand {
    width: 150px;
    display: block;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-12 {
    position: relative;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }
}

.footer-outer {
    position: relative;
}

@media (max-width: 991.98px) {
    .footer-outer:not(.footer-outer--smaller) .footer {
        padding-bottom: 45px;
    }
}

.footer {
    position: relative;
    padding: 45px 0 30px;
    text-align: center;
    background-color: var(--app-color-primary);
    color: var(--app-color-main-2);
    font-size: 0.813rem;
    font-weight: 400;
    line-height: 1.875rem;
}

@media (min-width: 992px) {
    .footer {
        padding: 2.5rem 0;
        text-align: left;
    }
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0;
}

.footer ul > li {
    display: inline;
}

.footer ul > li:not(:last-child) {
    margin-right: 1.875rem;
}

.footer a {
    color: #ffffff;
}

.footer ul > li > a {
    color: #ffffff;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.15s;
}

.footer ul > li > a:hover {
    color: #d9d9d9;
}

.footer p {
    display: block;
    margin: 1.875rem 0 0;
}

@media (min-width: 992px) {
    .footer p {
        display: inline;
        margin-top: 0;
    }
}

.footer i {
    display: inline-block;
    position: relative;
    margin: 1.875rem auto 0;
    right: 0;
    width: 2.1875rem;
    height: 2.1875rem;
    font-style: normal;
    border-radius: 0.313rem;
    background: url('/bundles/marketingfactoryapp/html/dist/images/factory_logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 992px) {
    .footer i {
        position: absolute;
        top: -0.15625rem;
        margin: 0;
    }
}

.footer i:before {
    content: "by";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    padding-right: 10px;
    transform: translateY(-50%) translateX(-100%);
    color: #ffffff;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
}


a{
    text-decoration: none;
}

body.editMode .em-l {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

body.editMode .em-l span {
    display: inline-block;
    padding: .25em .6em;
    background-color: #3c3f41;
    border-radius: 10rem;
    color: #fff;
    white-space: nowrap;
    vertical-align: baseline;
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
}

body.editMode div[data-type="textarea"] {
    border: 2px solid black;
    padding: 5px;
}