@charset "UTF-8";
body {
    font-family: 'Roboto', sans-serif;
}
/* variables */
:root {
    --primary: #eaf0f4;
    --secondary: #333333;
}

* {
    padding: 0;
    margin: 0;
}



/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/*Loader*/

.showcase {
    background: #fff;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1111;
    overflow: none;
}

.showcase p {
    font-weight: 300;
    font-size: 20px;
}

.showcase-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.svg-wrapper {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 350px;
}

.svg3 {
    position: absolute;
    top: 12.26rem;
}

.svg2 {
    padding-left: 1px;
}

.svg1 {
    padding-right: 1px;
}

.gear {
    fill: var(--primary);
}


.alert-custom {
    font-size: 12px;
    font-weight: 300;
    color: red;
}

.alert-danger-custom {
    background-color: #FFE0E0;
    border: solid 1px red;
    border-radius: 10px 5px;
    box-shadow: 3px 3px darkred;
    margin: 10px;
}


pre {
    background: #fff;
    display: inline-block;
    font-size: .55em;
    margin-top: 2em;
    padding: 1em;
}

@media (min-width: 360px) {
    pre {
        font-size: .7em;
    }
    
   
}

@media (min-width: 500px) {
    pre {
        font-size: 1em;
    }
}


/*== start of code for tooltips ==*/
.tool {
    cursor: help;
    position: relative;
    color: var(--primary);
    font-weight: bold;
}


/*== common styles for both parts of tool tip ==*/
.tool::before,
.tool::after {
    left: 50%;
    opacity: 0;
    position: absolute;
    z-index: -100;
}

.tool:hover::before,
.tool:focus::before,
.tool:hover::after,
.tool:focus::after {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 100;
}


/*== pointer tip ==*/
.tool::before {
    border-style: solid;
    border-width: 1em 0.75em 0 0.75em;
    border-color: #3E474F transparent transparent transparent;
    bottom: 100%;
    content: "";
    margin-left: -0.5em;
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26), opacity .65s .5s;
    transform: scale(.6) translateY(-90%);
}

.tool:hover::before,
.tool:focus::before {
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
}


/*== speech bubble ==*/
.tool::after {
    background: #3E474F;
    border-radius: .25em;
    bottom: 180%;
    color: #EDEFF0;
    content: attr(data-tip);
    margin-left: -8.75em;
    padding: 1em;
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
    transform: scale(.6) translateY(50%);
    width: 17.5em;
}

.tool:hover::after,
.tool:focus::after {
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26);
}

@media (max-width: 760px) {
    .tool::after {
        font-size: .75em;
        margin-left: -5em;
        width: 10em;
    }

    .showcase p {
        font-size: 16px;
        margin-top: -30px;
    }
}


header {
    width: 100%;
    height: 100px;
}

header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header .logo img {
    height: 80px;
} 

.animate_blink {
    animation: animate 1s linear infinite;
}

/*BLINKING ANIMATION*/
@keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}


.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap-between {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.wrap-center {
    display: flex;
    align-items: center;
}

.text-main {
    color: var(--primary);
}

.infos {
    color: grey;
    font-style: italic;
}

.bg-transparent {
    background-color: transparent;
    border: 0;
    color: #999;
    outline: none;
}

/* override bootstrap button primary color*/
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important; 
}

.btn-primary:hover {
    background-color: var(--secondary) !important;; 
    border-color: var(--secondary) !important;; 
}

.btn-primary:active {
    background-color: var(--secondary) !important;; 
    border-color: var(--secondary) !important;; 
}

.btn-primary:focus {
    background-color: var(--secondary) !important;; 
    border-color: var(--secondary) !important;; 
}

.container-custom {
    width: 95%;
    margin: auto;
}

/*TOGGLE BUTTON*/
.btn-toggle {
    margin: 0 4rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.5rem;
    width: 3rem;
    border-radius: 1.5rem;
    color: #6b7381;
    background: #bdc1c8;
}

.btn-toggle:focus,
.btn-toggle.focus,
.btn-toggle:focus.active,
.btn-toggle.focus.active {
    outline: none;
}

.btn-toggle:before,
.btn-toggle:after {
    line-height: 1.5rem;
    width: 4rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-toggle:before {
    content: '';
    left: -4rem;
}

.btn-toggle:after {
    content: 'On';
    right: -4rem;
    opacity: 0.5;
}

.btn-toggle > .handle {
    position: absolute;
    top: 0.1875rem;
    left: 0.1875rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 1.125rem;
    background: #fff;
    transition: left 0.25s;
}

.btn-toggle.active {
    transition: background-color 0.25s;
}

.btn-toggle.active > .handle {
    left: 1.6875rem;
    transition: left 0.25s;
}

.btn-toggle.active:before {
    opacity: 0.5;
}

.btn-toggle.active:after {
    opacity: 1;
}

.btn-toggle.btn-sm:before,
.btn-toggle.btn-sm:after {
    line-height: -0.5rem;
    color: #fff;
    letter-spacing: 0.75px;
    left: 0.4125rem;
    width: 2.325rem;
}

.btn-toggle.btn-sm:before {
    text-align: right;
}

.btn-toggle.btn-sm:after {
    text-align: left;
    opacity: 0;
}

.btn-toggle.btn-sm.active:before {
    opacity: 0;
}

.btn-toggle.btn-sm.active:after {
    opacity: 1;
}

.btn-toggle.btn-xs:before,
.btn-toggle.btn-xs:after {
    display: none;
}

.btn-toggle:before,
.btn-toggle:after {
    color: #6b7381;
}

.btn-toggle.active {
    background-color: var(--primary);
}

.btn-toggle.btn-lg {
    margin: 0 5rem;
    padding: 0;
    position: relative;
    border: none;
    height: 2.5rem;
    width: 5rem;
    border-radius: 2.5rem;
}

.btn-toggle.btn-lg:focus,
.btn-toggle.btn-lg.focus,
.btn-toggle.btn-lg:focus.active,
.btn-toggle.btn-lg.focus.active {
    outline: none;
}

.btn-toggle.btn-lg:before,
.btn-toggle.btn-lg:after {
    line-height: 2.5rem;
    width: 5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-toggle.btn-lg:before {
    content: '';
    left: -5rem;
}

.btn-toggle.btn-lg:after {
    content: '';
    right: -5rem;
    opacity: 0.5;
}

.btn-toggle.btn-lg > .handle {
    position: absolute;
    top: 0.3125rem;
    left: 0.3125rem;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 1.875rem;
    background: #fff;
    transition: left 0.25s;
}

.btn-toggle.btn-lg.active {
    transition: background-color 0.25s;
}

.btn-toggle.btn-lg.active > .handle {
    left: 2.8125rem;
    transition: left 0.25s;
}

.btn-toggle.btn-lg.active:before {
    opacity: 0.5;
}

.btn-toggle.btn-lg.active:after {
    opacity: 1;
}

.btn-toggle.btn-lg.btn-sm:before,
.btn-toggle.btn-lg.btn-sm:after {
    line-height: 0.5rem;
    color: #fff;
    letter-spacing: 0.75px;
    left: 0.6875rem;
    width: 3.875rem;
}

.btn-toggle.btn-lg.btn-sm:before {
    text-align: right;
}

.btn-toggle.btn-lg.btn-sm:after {
    text-align: left;
    opacity: 0;
}

.btn-toggle.btn-lg.btn-sm.active:before {
    opacity: 0;
}

.btn-toggle.btn-lg.btn-sm.active:after {
    opacity: 1;
}

.btn-toggle.btn-lg.btn-xs:before,
.btn-toggle.btn-lg.btn-xs:after {
    display: none;
}

.btn-toggle.btn-sm {
    margin: 0 0.5rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.5rem;
    width: 3rem;
    border-radius: 1.5rem;
}

.btn-toggle.btn-sm:focus,
.btn-toggle.btn-sm.focus,
.btn-toggle.btn-sm:focus.active,
.btn-toggle.btn-sm.focus.active {
    outline: none;
}

.btn-toggle.btn-sm:before,
.btn-toggle.btn-sm:after {
    line-height: 1.5rem;
    width: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-toggle.btn-sm:before {
    content: '';
    left: -0.5rem;
}

.btn-toggle.btn-sm:after {
    content: '';
    right: -0.5rem;
    opacity: 0.5;
}

.btn-toggle.btn-sm > .handle {
    position: absolute;
    top: 0.1875rem;
    left: 0.1875rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 1.125rem;
    background: #fff;
    transition: left 0.25s;
}

.btn-toggle.btn-sm.active {
    transition: background-color 0.25s;
}

.btn-toggle.btn-sm.active > .handle {
    left: 1.6875rem;
    transition: left 0.25s;
}

.btn-toggle.btn-sm.active:before {
    opacity: 0.5;
}

.btn-toggle.btn-sm.active:after {
    opacity: 1;
}

.btn-toggle.btn-sm.btn-sm:before,
.btn-toggle.btn-sm.btn-sm:after {
    line-height: -0.5rem;
    color: #fff;
    letter-spacing: 0.75px;
    left: 0.4125rem;
    width: 2.325rem;
}

.btn-toggle.btn-sm.btn-sm:before {
    text-align: right;
}

.btn-toggle.btn-sm.btn-sm:after {
    text-align: left;
    opacity: 0;
}

.btn-toggle.btn-sm.btn-sm.active:before {
    opacity: 0;
}

.btn-toggle.btn-sm.btn-sm.active:after {
    opacity: 1;
}

.btn-toggle.btn-sm.btn-xs:before,
.btn-toggle.btn-sm.btn-xs:after {
    display: none;
}

.btn-toggle.btn-xs {
    margin: 0 0;
    padding: 0;
    position: relative;
    border: none;
    height: 1rem;
    width: 2rem;
    border-radius: 1rem;
}

.btn-toggle.btn-xs:focus,
.btn-toggle.btn-xs.focus,
.btn-toggle.btn-xs:focus.active,
.btn-toggle.btn-xs.focus.active {
    outline: none;
}

.btn-toggle.btn-xs:before,
.btn-toggle.btn-xs:after {
    line-height: 1rem;
    width: 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
}

.btn-toggle.btn-xs:before {
    content: '';
    left: 0;
}

.btn-toggle.btn-xs:after {
    content: '';
    right: 0;
    opacity: 0.5;
}

.btn-toggle.btn-xs > .handle {
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 0.75rem;
    background: #fff;
    transition: left 0.25s;
}

.btn-toggle.btn-xs.active {
    transition: background-color 0.25s;
}

.btn-toggle.btn-xs.active > .handle {
    left: 1.125rem;
    transition: left 0.25s;
}

.btn-toggle.btn-xs.active:before {
    opacity: 0.5;
}

.btn-toggle.btn-xs.active:after {
    opacity: 1;
}

.btn-toggle.btn-xs.btn-sm:before,
.btn-toggle.btn-xs.btn-sm:after {
    line-height: -1rem;
    color: #fff;
    letter-spacing: 0.75px;
    left: 0.275rem;
    width: 1.55rem;
}

.btn-toggle.btn-xs.btn-sm:before {
    text-align: right;
}

.btn-toggle.btn-xs.btn-sm:after {
    text-align: left;
    opacity: 0;
}

.btn-toggle.btn-xs.btn-sm.active:before {
    opacity: 0;
}

.btn-toggle.btn-xs.btn-sm.active:after {
    opacity: 1;
}

.btn-toggle.btn-xs.btn-xs:before,
.btn-toggle.btn-xs.btn-xs:after {
    display: none;
}

.btn-toggle.btn-secondary {
    color: #6b7381;
    background: #bdc1c8;
}

.btn-toggle.btn-secondary:before,
.btn-toggle.btn-secondary:after {
    color: #6b7381;
}

.btn-toggle.btn-secondary.active {
    background-color: #ff8300;
}


/*Mobile buttons container*/
.mobile-buttons {
    background: #eee;
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 1111;
    bottom: 0;
    margin-top: 50px;
    display: none;
}
.mobileBtn{
    display:none;
}
.right-btn, .left-btn {
    color: var(--primary);
    font-size: 32px;
}

.right-btn.disabled, .left-btn.disabled {
    color: #999;
}


/*PROGRESS LINE*/
.line-container {
    display: flex;
    width: 100%;
}

.line-container .progress-line {
    position: relative;
    margin: 0 auto;
    border-radius: 10px;
    width: 90%;
    background: grey;
    height: 5px;
    z-index: -1;
    display: flex;
    justify-content: space-between;
}

.line-container .progress-line .progress {
    position: absolute;
    width: 75%;
    height: 100%;
    background: var(--primary);
    transition: width 1s ease-in-out;
}

.line-container .status {
    position: relative;
    top: -15px;
    cursor: pointer;
}

.line-container .status .dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 5px solid grey;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.line-container .status .dot i {
    color: var(--primary);
}

.line-container .status .dot.current {
    background: white;
    border: 5px solid var(--primary);
}

.line-container .status .dot.completed {
    position: relative;
    background: var(--primary);
    border: 5px solid var(--primary);
}

.line-container .status .dot.completed::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5.5px);
    height: 5px;
    width: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform-origin: center;
    transform: rotate(-45deg);
    z-index: 2;
}

.section {
    padding: 50px 0;
}

.section-editor .section-title .wrap {
    justify-content: flex-start;
    cursor: pointer;
}


.sub-title {
    text-decoration: underline;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
}

.card {
    position: relative;
}

span.infos {
    background: var(--primary);
    padding: 41px;
    border-radius: 50px;
    padding: 5px 16px;
    color: white;
    position: absolute;
    top: 1%;
    right: 1%;
    cursor: pointer;
    max-width: 718px;
}

/* span.info-secondary {
    padding: 3px 8px;
    color: #999;
    cursor: pointer;
    border: 1px solid #999;
    font-size: 12px;
    margin-left: 10px;
} */

span.info-guide {
    /* padding: 8px 8px; */
    color: #001E42;
    cursor: pointer;
    border-radius: 15px;
    border: 1px solid #999;
    font-size: 13px;
    font-weight: 700;
    margin-left: 30px;
    min-width: 200px;
    padding:8px 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
    letter-spacing: 2px;
}
span.info-guide>i {
    margin-right: 10px;
    transition: all 0.2s ease-in-out;
    color: #001E42;
}

span.info-guide:hover >i {
    transform: scale(1.3);
}

span.info-guide:hover {
    /* color:#797979; */
    background-color: #f3f3f3;
}



.multi_step_form {
    background: #f6f9fb;
    display: block;
    /* overflow: hidden; */
    /* display: none; */
}

.multi_step_form {
    text-align: center;
    position: relative;
    margin: 0 auto;
   
    background: #ffffff;
    z-index: 1;
}

.multi_step_form .tittle {
    text-align: center;
    padding-bottom: 55px;
}


.multi_step_form fieldset {
    border: 0;
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
}

.multi_step_form fieldset:not(:first-of-type) {
    display: none;
}

.multi_step_form #progressbar {
    margin-bottom: 70px;
    margin-top:40px; 
    overflow: hidden;
}

.multi_step_form #progressbar li {
    list-style-type: none;
    color: #99a2a8;
    font-size: 9px;
    width: calc(100% / 12);
    float: left;
    position: relative;
    font: 500 12px/1 "Roboto", sans-serif;
    cursor: pointer;
    /* margin-top:70px; */
}

/*.multi_step_form #progressbar li:nth-child(2):before {
    content: "";
}

.multi_step_form #progressbar li:nth-child(3):before {
    content: "";
}*/

.multi_step_form #progressbar li:before {
    content: "✎";
    font: normal normal normal 30px/50px Ionicons;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    background: #eaf0f4;
    border-radius: 50%;
    margin: 0 auto 10px auto;
}

.multi_step_form #progressbar li:after {
    content: "";
    width: 100%;
    height: 10px;
    background: #eaf0f4;
    position: absolute;
    left: -50%;
    top: 21px;
    z-index: -1;
}

.multi_step_form #progressbar li:last-child:after {
    width: 150%;
}

.multi_step_form #progressbar li.active {
    color: var(--primary);
}

.multi_step_form #progressbar li.active:before, .multi_step_form #progressbar li.active:after {
    background: var(--primary);
    color: white;
}


.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}


.custom-group {
    margin-top: 25px;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}

.custom-control-input ~ .custom-control-label::before {
    border-width: 2px;
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-control-label::before, .custom-control-label::after {
    width: 1.5rem;
    height: 1.5rem;
}

.custom-control-label::after {
    top: 0 !important;
    left: -1.75rem !important;
}

.custom-control-label::before, .custom-file-label, .custom-select {
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}


.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: rgb(0, 153, 102);
    background-color: rgb(0, 153, 102);
}


/*! EDITOR */

span.free_space {
    font-weight: bold;
}

@media screen and (min-width: 992px) {
    .editor {
        height: calc(100vh - 245px);
        overflow: auto;
        
        overflow-x: hidden;
    }
}

.editor h1 a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
    margin: 0;
    padding: 0
}

.editor h1 i {
    color: #999
}

h1 a:hover {
    color: var(--primary);
}

.editor .dropdown-toggle::after {
    color: #999;
    float: right;
    margin-top: 11px;
    text-align: right
}

.editor .btn-line {
    color: #999;
    font-size: 1.1rem
}

.editor .btn-arrow i {
    color: var(--primary);
    font-size: 1.6rem
}

.editor-wrapper {
    border: 1px solid #F5F5F5;
    border-radius: 3px
}

.editor-wrapper .editor {
    background-color: #F5F5F5;
    border-radius: 3px 0 0 3px
}

.editor-wrapper .editor.preview {
    background-color: #FFF
}

/*.editor-header{height:60px;padding-top:20px;}*/
.editor-header {
    height: 50px;
    padding-top: 10px;
}

.editor, .content-wrapper {
    background-color: #FFF;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .16);
    padding: 10px;
}

.editor-header {
    border-bottom: 1px solid #ccc
}

.editor.preview .editor-main {
    background-color: #FFF;
    border-radius: 3px;
    border: 2px solid #CCC;
    box-shadow: none;
}

.editor-inner {
    height: 100%;
    overflow-y: auto;
    padding: 20px
}

.editor-inner h2 {
    font-size: 1.4rem
}

.editor-inner h3 {
    font-size: 1.2rem
}

.editor-inner h3 span {
    color: var(--primary);
}

.editor-footer {
    padding-top: 20px
}

.editor-header {
    color: #999;
    font-family: 'Netto', Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    height: max-content;
}

.editor-help {
    text-align: right
}

.editor-steps {
    font-family: 'Netto', Helvetica, sans-serif;
    font-size: .9rem;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.editor-steps li {
    border-bottom: 1px solid #DDD;
    cursor: pointer;
    display: block;
    padding: 6px 10px
}

.editor-steps li:last-child {
    border: 0
}

.editor-steps li:hover {
    background-color: #EEE
}

.editor-steps li {
    position: relative;
    padding-left: 32px !important
}

.editor-steps li:before {
    color: #999;
    content: '\f111';
    font-family: 'Font Awesome 5 Pro';
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.editor-steps li.done {
    font-weight: bold;
    color: var(--primary);
}

.editor-steps li.done:before {
    color: var(--primary);
    content: '\f058';
    font-family: 'Font Awesome 5 Pro';
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.editor-steps li.wip:before {
    color: var(--primary);
    content: '\f2f8';
    font-family: 'Font Awesome 5 Pro';
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.editor-spacer {
    display: block;
    height: 14px
}

.editor-spacer.small {
    height: 10px
}

.editor-savenote {
    color: #999;
    font-size: .75rem;
    line-height: 44px
}

.preview-box {
    color: #000 !important;
    font-size: .85rem
}

.preview-box h1 {
    text-align: center;
    color: #000;
    font-size: 1.8rem
}

.preview-box h2 {
    color: #000;
    font-size: 1.1rem
}

.preview-box h3 {
    color: #666;
    font-size: 1.1rem
}

.preview-box ul {
    margin: 0 0 15px 1rem;
}

.preview-box li {
    margin: 0 0 10px 0;
}

.footer-preview {
    text-align: right
}

.editor.preview .editor-main.priceinfo {
    background-color: #FFF;
    border-radius: 3px;
    border: 2px solid var(--primary);
    box-shadow: none
}

#deleteBtn {
    font-size: 1.5rem
}

;
#deleteBtn:hover {
    color: white !important;
}

.form-group label {
    font-size: .8rem;
}

.price-item .row {
    border-bottom: 1px solid #DDD;
    margin-bottom: 16px;
}

.card-main {
    background: #ECF0F1;
    color: #607D8B;
    height: fit-content;
    padding: 1em 2.5em;
    text-align: center;
    width: 100%;
}

.content-wrapper {
    height: calc(100vh - 245px);
    overflow: auto;
}

.section-buttons{
    margin-bottom: 20px;
}
@media (max-width: 786px) {
    .h4, h4 {
        font-size: 1.25rem;
    }

    span.info {
        padding: 1px 10px;
        right: 2%;
    }

    .small {
        font-size: 60%;
    }

    #progressbar, .editor, .section-buttons {
        display: none;
       
    }

    .mobile-buttons {
        display: block !important;
    }
    .mobileBtn {
        display: block
    }
    .card-main {
        border: 0;
        padding: 20px;
        margin-top: 25px !important;
        height: initial;
        overflow: initial;
    }

    .sub-title {
        text-align: center;
    }

    .section-editor .section-title .wrap {
        justify-content: center;
    }

    .content-wrapper {
        height: initial;
    }

    .editor-inner {
        margin-top: 20px;
        padding: 0;
    }

    .editor-label {
        font-size: 16px;
    }

    .preview-box h1 {
        font-size: 20px;
        margin-bottom: 1.5rem !important;
    }

    #pdfPreviewFrame {
        padding: 10px;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.multi-kachel {
    color: var(--primary);
    border: 2px solid #DDD !important;
    border-radius: 3px;
    position: relative;
}

.multi-kachel.active {
    background-color: var(--primary);
    border-color: var(--primary) !important;;
    color: #FFF;
}

.multi-kachel:hover {
    cursor: pointer;
    background: #eee;
}

.multi-kachel.active:hover {
    background: var(--primary);
}

.multi-kachel i {
    font-size: 3.2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.icon.small {
    background-size: 60px 60px !important;
    height: 60px !important;
    width: 60px !important;
}

.erdbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'><path fill='rgb(0,153,102)' d='M21 21V9c0-5-4-9-9-9S3 4 3 9v12H2v3h20v-3h-1zM4 9c0-4.4 3.6-8 8-8s8 3.6 8 8v12H4V9zm17 14H3v-1h18v1z'/><path fill='rgb(0,153,102)' d='M12 10c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3zm0-5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM10 16h4v1h-4zM8 14h8v1H8zM8 12h8v1H8z'/></svg>");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80px 80px;
    display: block;
    height: 80px;
    width: 80px;
    text-indent: -9999px;
}

.active .erdbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'><path fill='rgb(255,255,255)' d='M21 21V9c0-5-4-9-9-9S3 4 3 9v12H2v3h20v-3h-1zM4 9c0-4.4 3.6-8 8-8s8 3.6 8 8v12H4V9zm17 14H3v-1h18v1z'/><path fill='rgb(255,255,255)' d='M12 10c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3zm0-5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM10 16h4v1h-4zM8 14h8v1H8zM8 12h8v1H8z'/></svg>");
}

.icon.feuerbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='rgb(0,153,102)' d='M16.4 2.4c-.9.9-1.8 1.9-2.5 2.8-1.2-1.7-2.7-3.5-4.4-5.2C5.1 4.3 2 9.8 2 13.2 2 19.2 6.5 24 12 24s10-4.8 10-10.8c0-2.5-2.3-7.6-5.6-10.8zM12 23c-5 0-9-4.4-9-9.8 0-2.9 2.7-7.9 6.5-11.8 1.4 1.4 2.6 2.9 3.6 4.4l.8 1.1.8-1.1c.5-.7 1.1-1.4 1.7-2C19.2 7 21 11.3 21 13.2c0 5.4-4 9.8-9 9.8z'/><path fill='rgb(0,153,102)' d='M13.7 13.7L9.8 8.1c-.1-.2-.2-.3-.2-.4C7.9 10.1 7 12.3 7 13.2c0 3.2 2.2 5.8 5 5.8s5-2.6 5-5.8c0-.4-.3-1.4-.9-2.7l-2.4 3.2z'/></svg>");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80px 80px;
    display: block;
    height: 80px;
    width: 80px;
    text-indent: -9999px;
}

.active .feuerbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='rgb(255,255,255)' d='M16.4 2.4c-.9.9-1.8 1.9-2.5 2.8-1.2-1.7-2.7-3.5-4.4-5.2C5.1 4.3 2 9.8 2 13.2 2 19.2 6.5 24 12 24s10-4.8 10-10.8c0-2.5-2.3-7.6-5.6-10.8zM12 23c-5 0-9-4.4-9-9.8 0-2.9 2.7-7.9 6.5-11.8 1.4 1.4 2.6 2.9 3.6 4.4l.8 1.1.8-1.1c.5-.7 1.1-1.4 1.7-2C19.2 7 21 11.3 21 13.2c0 5.4-4 9.8-9 9.8z'/><path fill='rgb(255,255,255)' d='M13.7 13.7L9.8 8.1c-.1-.2-.2-.3-.2-.4C7.9 10.1 7 12.3 7 13.2c0 3.2 2.2 5.8 5 5.8s5-2.6 5-5.8c0-.4-.3-1.4-.9-2.7l-2.4 3.2z'/></svg>");
}

.icon.seebestattung {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'><path fill='rgb(0,153,102)' d='M14.5 20v-2h7l-7-18h-1v20h-11l4 4h12l4-4z'/><path fill='rgb(0,153,102)' d='M12.5 3l-11 15h11z'/></svg>");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 18px;
    display: block;
    text-indent: -9999px;
}

.active .seebestattung {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'><path fill='rgb(255,255,255)' d='M14.5 20v-2h7l-7-18h-1v20h-11l4 4h12l4-4z'/><path fill='rgb(255,255,255)' d='M12.5 3l-11 15h11z'/></svg>");
}


.icon.baumbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='rgb(0,153,102)' d='M18.8 7.4c.1-.4.2-.9.2-1.4 0-3.3-2.7-6-6-6-3 0-5.5 2.2-5.9 5.1C3.6 5.8 1 8.8 1 12.5c0 4 3.1 7.2 7 7.5h3v4h2v-4h4c3.4-.3 6-3.1 6-6.5 0-2.8-1.7-5.1-4.2-6.1zM17 19h-4v-7h-2v7H8c-3.3-.3-6-3.1-6-6.5 0-3.1 2.1-5.6 5-6.3.3-.1.7-.2 1-.2 0-.3 0-.7.1-1 .5-2.3 2.5-4 4.9-4 2.8 0 5 2.2 5 5 0 .4-.1.8-.1 1.1-.1.3-.2.7-.3 1 .3.1.7.2 1 .3 2 .8 3.5 2.8 3.5 5.1-.1 2.9-2.3 5.2-5.1 5.5z' /></svg>");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 18px;
    display: block;
    text-indent: -9999px;
}

.active .baumbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='rgb(255,255,255)' d='M18.8 7.4c.1-.4.2-.9.2-1.4 0-3.3-2.7-6-6-6-3 0-5.5 2.2-5.9 5.1C3.6 5.8 1 8.8 1 12.5c0 4 3.1 7.2 7 7.5h3v4h2v-4h4c3.4-.3 6-3.1 6-6.5 0-2.8-1.7-5.1-4.2-6.1zM17 19h-4v-7h-2v7H8c-3.3-.3-6-3.1-6-6.5 0-3.1 2.1-5.6 5-6.3.3-.1.7-.2 1-.2 0-.3 0-.7.1-1 .5-2.3 2.5-4 4.9-4 2.8 0 5 2.2 5 5 0 .4-.1.8-.1 1.1-.1.3-.2.7-.3 1 .3.1.7.2 1 .3 2 .8 3.5 2.8 3.5 5.1-.1 2.9-2.3 5.2-5.1 5.5z' /></svg>");
}

.icon.almwiesenbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'><path fill='rgb(0,153,102)' d='M3 20h1v1H3zM1 20h1v2H1zM5 20h1v2H5zM7 20h1v1H7zM9 20h1v2H9zM11 20h1v1h-1zM13 20h1v2h-1zM15 20h1v2h-1zM17 20h1v1h-1zM19 20h1v2h-1zM21 20h1v1h-1z'/><path fill='rgb(0,153,102)' d='M24 20L16 6l-2.1 3.6 2 4-.9.4L9 2 0 20h1v-1h1v1h1v-2h1v2h1v-1h1v1h1v-1h1v1h1v-3h1v3h1v-2h1v2h1v-2h1v2h1v-1h1v1h1v-2h1v2h1v-1h1v1h1v-1h1v1h1v1h1v-1z'/></svg>");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 18px;
    display: block;
    text-indent: -9999px;
}

.active .almwiesenbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'><path fill='rgb(255,255,255)' d='M3 20h1v1H3zM1 20h1v2H1zM5 20h1v2H5zM7 20h1v1H7zM9 20h1v2H9zM11 20h1v1h-1zM13 20h1v2h-1zM15 20h1v2h-1zM17 20h1v1h-1zM19 20h1v2h-1zM21 20h1v1h-1z'/><path fill='rgb(255,255,255)' d='M24 20L16 6l-2.1 3.6 2 4-.9.4L9 2 0 20h1v-1h1v1h1v-2h1v2h1v-1h1v1h1v-1h1v1h1v-3h1v3h1v-2h1v2h1v-2h1v2h1v-1h1v1h1v-2h1v2h1v-1h1v1h1v-1h1v1h1v1h1v-1z'/></svg>");
}

.icon.diamantbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'><path fill='rgb(0,153,102)' d='M18.5 6l-3.4-6H8.9L5.5 6zM4.4 5.9L5 4.8 7.8 0H3L0 6h4.3zM5.8 7L12 24l6.2-17zM20.3 7h-1.1v.1l-5 13.8 7.1-10.1.6-.9L24 7zM5.4 6h.1-.1zM4.7 7H0l2 2.9.7.9 7.1 10.1-5-13.8zM18.5 6zM19.6 5.9l.1.1H24l-3-6h-4.8L19 4.8z'/></svg>");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 18px;
    display: block;
    text-indent: -9999px;
}

.active .diamantbestattung {
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'><path fill='rgb(255,255,255)' d='M18.5 6l-3.4-6H8.9L5.5 6zM4.4 5.9L5 4.8 7.8 0H3L0 6h4.3zM5.8 7L12 24l6.2-17zM20.3 7h-1.1v.1l-5 13.8 7.1-10.1.6-.9L24 7zM5.4 6h.1-.1zM4.7 7H0l2 2.9.7.9 7.1 10.1-5-13.8zM18.5 6zM19.6 5.9l.1.1H24l-3-6h-4.8L19 4.8z'/></svg>");
}

.icon.anonym {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='rgb(0,153,102)' d='M21 21V9c0-5-4-9-9-9S3 4 3 9v12H2v3h20v-3h-1zM4 9c0-4.4 3.6-8 8-8s8 3.6 8 8v12H4V9zm17 14H3v-1h18v1z'/></svg>");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 18px;
    display: block;
    text-indent: -9999px;
}

.active .anonym {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='rgb(255,255,255)' d='M21 21V9c0-5-4-9-9-9S3 4 3 9v12H2v3h20v-3h-1zM4 9c0-4.4 3.6-8 8-8s8 3.6 8 8v12H4V9zm17 14H3v-1h18v1z'/></svg>");
}
