::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #333639 !important;
}
::-moz-placeholder {
    /* Firefox 19+ */
    color: #333639 !important;
}
:-ms-input-placeholder {
    /* IE 10+ */
    color: #333639 !important;
}
:-moz-placeholder {
    /* Firefox 18- */
    color: #333639 !important;
}
[contenteditable="true"] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

.shadowPulse {
    -webkit-animation: shadow-pulse 1500ms linear infinite;
    animation: shadow-pulse 1500ms linear infinite;
}
@-webkit-keyframes shadow-pulse {
    0% {
        -webkit-box-shadow: 0;
        box-shadow: 0;
    }
    50% {
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.54);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.54);
    }
    100% {
        -webkit-box-shadow: 0;
        box-shadow: 0;
    }
}
@keyframes shadow-pulse {
    0% {
        -webkit-box-shadow: 0;
        box-shadow: 0;
    }
    50% {
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.54);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.54);
    }
    100% {
        -webkit-box-shadow: 0;
        box-shadow: 0;
    }
}
.wobble {
    -webkit-animation: wobble 1500ms cubic-bezier(0, 0.75, 1, 1) infinite;
    animation: wobble 1500ms cubic-bezier(0, 0.75, 1, 1) infinite;
}
.smallWobbleOnce {
    -webkit-animation: small-wobble 1600ms cubic-bezier(0.4, 1, 0.4, 1) 1;
    animation: small-wobble 1600ms cubic-bezier(0.4, 1, 0.4, 1) 1;
}
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    8% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    16% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    24% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    32% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes wobble {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    8% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    16% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    24% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }
    32% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@-webkit-keyframes small-wobble {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    8% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    16% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    24% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    32% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes small-wobble {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    8% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    16% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    24% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    32% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
.render-text[data-placeholder]:empty:before {
    content: attr(data-placeholder);
    color: #e5e5e5;
}
.render-text[data-placeholder]:empty:focus:before {
    content: "";
}

.design-wizard {
    background: #f5f5f5;
    min-height: 100vh;
}
.dropdown.pdf-menu .dropdown-menu.list {
    left: -15px;
    border-radius: 0px;
    top: 30px;
}
.pdf-menu .list a {
    font-size: 13px;
}
/***text editor bar**/
.text-editor-bar {
    background: #b4ccb4;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0px;
    position: relative;
    float: left;
}
.text-editor-bar .dropdown.editor-dropdown .dropdown-menu {
    min-width: auto;
    width: 100%;
    max-height: 250px;
    overflow: auto;
}
.text-editor-bar ul.editor-icons > li {
    display: inline-block;

    vertical-align: middle;
}
.text-editor-bar ul.editor-icons > li a {
    font-size: 15px;
    color: #000;
    padding: 7px 19px 7px 17px;
    border-right: 1px solid #689077;
    display: block;
    cursor: pointer;
}
.text-editor-bar ul.editor-icons > li a img {
    max-width: 18px;
}
.text-editor-bar .color-box {
    width: 20px;
    height: 20px;

    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
}
.text-editor-bar .dropdown-menu {
    border-radius: 0;
    top: 35px;
    box-shadow: none;
}
.text-editor-bar ul.editor-icons > li ul li a {
    font-size: 14px;
    border-right: 0;
    padding: 5px 15px;
    cursor: pointer;
}
.text-editor-bar ul.editor-icons > li:last-child a {
    border-right: none;
}
/***text editor bar**/

.card-view-wrap .selected-card {
    background: #fff !important;
}

.bg-white {
    background: #fff;
}

/**editor footer**/
.editor-footer {
    height: 70px;
    background: #fff;
    position: fixed;
    z-index: 2000;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #cfcfcf;
}
.editor-footer .inner-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 3px;
}
.editor-footer .inner-wrap .editor-container {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}
.editor-footer .list {
    display: inline-block;
    border-width: 0 0 0 1px;
    border-style: solid;
    border-color: #e6e6e6;
    text-align: left;
}
.editor-footer .list .dropdown-menu {
    box-shadow: none !important;
    border-radius: 0;
    padding: 0;
    margin-bottom: 1px;
}
.editor-footer .btn-editor {
    font-size: 18px;
    color: #000;
    line-height: 50px;
    font-family: "Raleway", sans-serif;
    letter-spacing: 0.5px;
    background: transparent;
    font-weight: 600;
}
.editor-footer .btn-editor:focus {
    box-shadow: none;
}
.btn-group.open .dropdown-toggle {
    box-shadow: none;
}

.drop-icon {
    margin-left: 17px;
}
.editor-child {
    display: block;
    width: 100%;
    padding: 10px 10px;
    font-size: 15px;
    background: #f7f7f7;
    margin-bottom: 2px;
}
.table.layout-selection-table {
    margin-bottom: 0;
}
.table.layout-selection-table tbody tr td {
    padding-left: 5px;
    padding-right: 15px;
    height: 55px;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
}
.table.layout-selection-table tbody tr td.choose-icon-title {
    white-space: nowrap;
}
.editor-footer .list.choose-layout .btn-group,
.editor-footer .list.choose-color .btn-group {
    position: static;
}
.choose-layout-icon {
    display: inline-block;
    vertical-align: middle;
    max-height: 35px;
}

.dropdown-menu.full-popup-layout {
    max-width: 800px;
    margin: auto;
    left: 0;
    right: 0;
}
td.choose-icon img {
    /*    width: 35px;
        height: 35px;*/
    max-width: 50px;
    max-height: 50px;
    /*min-height: 30px;*/
}
.choose-icon.selected-layout img {
    border: 2px solid #128a67;
    padding: 3px;
    cursor: auto;
}
.alert {
    padding: 7px 5px 7px 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;

    border-radius: 0;
}
/**choose colors*/
.color-selection-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    border: 1px solid #ddd;
    line-height: 55px;
    vertical-align: middle;
}
.color-selection-table {
    margin-bottom: 0;
}
.color-selection-table td.colors {
    padding: 2px;
    height: 50px;
    vertical-align: middle;
    cursor: pointer;
}
.color-selection-table td.colors.end-group {
    padding-right: 20px !important;
}
.color-selection-table td.colors span,
.colorBox {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 2px;
    border: 1px solid #ccc;
}

/*END*/

/**Create design sides**/
.create-design-inner {
    max-width: 1140px;
    margin: 0px auto;
}
.create-design-inner .single-side {
    background: #fafafa;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 10px;
    min-height: 300px;
    display: block;
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
}
.create-design-inner a:hover .single-side,
.create-design-inner a.selected-side {
    border: 2px solid #086630;
    box-shadow: 0px 2px 4px 2px rgba(8, 102, 48, 0.2);
    -webkit-box-shadow: 0px 2px 4px 2px rgba(8, 102, 48, 0.2);
}
.create-design-wrap {
    display: block;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}
.tab-description-icons i.fa {
    font-size: 19px;
    color: #086630;
}
.create-design-inner .inner-box {
    padding: 50px 20px;
    border: 1px dashed #ccc;
    border-radius: 15px;
}
.create-design-inner a:hover .inner-box {
    background: #fff;
}
.sides-icon {
    text-align: center;
    margin-bottom: 20px;
    height: 160px;
}
.sides-icon .img-responsive {
    display: inline-block;
}
/**End*/
.fontColors li {
    display: -webkit-box;
    display: -moz-box;
}
.fontsColors li a {
    width: 40px !important;
    padding: 5px !important;
    /*float: left !important;*/
}
.txtDesign:hover {
    background: #086630;
}
.txtDesign:hover i {
    color: #fff;
}
.txtDesign.active {
    background: #086630;
    color: #fff;
}
.txtDesign.active i {
    color: #fff;
}
.usrUpImgs .borderImgs {
    border: 1px solid #ccc;
    padding: 5px;
    margin-right: 5px;

    width: 150px;
    float: left;
    margin-bottom: 10px;
}
.usrUpImgs .borderImgs img {
    height: 100px;
    width: auto;
    vertical-align: middle;
    cursor: pointer;
}
.usrUpImgs .borderImgs i {
    font-size: 15px;
    float: right;
    cursor: pointer;
}

/* RESIZERE START*/
.crop-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.resize-container {
    position: relative;
    display: inline-block;
    cursor: move;
    margin: 0 auto;
}
.resize-container-ontop {
    position: absolute;
    cursor: move;
    background-color: rgba(5, 255, 5, 0);
    /*z-index: 1000;*/
    width: 100%;
    height: 100%;
}

.resize-container img {
    display: block;
}

.resize-container:hover img,
.resize-container:active img {
    outline: 2px dashed rgba(0, 0, 0, 0.9);
}
.resize-handle-ne,
.resize-handle-se,
.resize-handle-nw,
.resize-handle-sw {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(19, 93, 30, 0.9);
    z-index: 999;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 0px 1px rgba(19, 93, 30, 0.9);
}
.resize-handle-nw {
    top: -5px;
    left: -5px;
    cursor: nw-resize;
}

.resize-handle-sw {
    bottom: -5px;
    left: -5px;
    cursor: sw-resize;
}

.resize-handle-ne {
    top: -5px;
    right: -5px;
    cursor: ne-resize;
}

.resize-handle-se {
    bottom: -5px;
    right: -5px;
    cursor: se-resize;
}

.img-area .design-overlay {
    position: absolute;
    z-index: 999;
    border: solid 1px rgba(222, 222, 222, 0.9);
    box-sizing: content-box;
    pointer-events: none;
    box-shadow: 0 0 2000px 2000px rgba(245, 245, 245, 0.5);
}
.design-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.img-area .design-overlay:before {
    top: 0;
    margin-left: -2px;
    margin-top: -40px;
}

.img-area .design-overlay:after {
    bottom: 0;
    margin-left: -2px;
    margin-bottom: -40px;
}

.img-area .design-overlay-inner:before {
    left: 0;
    margin-left: -40px;
    margin-top: -2px;
}

.img-area .design-overlay-inner:after {
    right: 0;
    margin-right: -40px;
    margin-top: -2px;
}

/* RESIZEER END*/
.form-control {
    border-bottom: 1px solid #ccc;
}
.colors .switch:hover {
    box-shadow: 0px 0px 2px 1px #ccc;
}
.render-text {
    overflow: hidden !important;
    white-space: nowrap !important;
}
.content-area,
.single-col {
    position: relative !important;
}
.error-hint {
    z-index: 6;
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #ee2737;
}
.textWarningError {
    border: 1px solid #ee2737 !important;
}
[contenteditable="true"] br {
    /*display: none  !important*/
}
.textbox br {
    /*display: unset  !important*/
}

.warning-design {
    color: #fff !important;
    margin-top: -3px !important;
    float: right !important;
    background-color: #f0ad4e !important;
    border-color: #eea236 !important;
}
.info-design {
    color: #fff !important;
    margin-top: -3px !important;
    float: right !important;
    background-color: #5bc0de !important;
    border-color: #46b8da !important;
}
.alertDanger {
    margin-bottom: 10px;
}
.card-view-wrap .tooltip {
    z-index: 1050;
}
.card-view-wrap .tooltip-inner {
    max-width: 400px;
    min-width: 250px;
    color: #a94442;
    background-color: #fef4f5;
    border: 1px solid #ee2737;
    border-radius: 4px;
    padding: 10px 8px;
}
.card-view-wrap .tooltip.right .tooltip-arrow {
    border-right-color: #ee2737;
    margin-left: -4px;
    border-width: 10px 10px 10px 0;
    margin-top: -10px;
}
.card-view-wrap .tooltip.right {
    margin-left: 5px;
}
::spelling-error {
    color: #fff;
}
.card-view-wrap .content-area .form-control {
    color: #222;
}
.errorBorder {
    border: 1px solid #a94442;
}
.card-review {
    padding-right: 0px;
    margin-bottom: 0px;
}
.card-review .card-review-img img {
    border: 1px solid #e5e5e5;
}
.card-inner-wrap {
    border: 1px solid #e5e5e5 !important;
}
.postcard-footer .media {
    overflow: unset !important;
}
.allfontsFamilies ul.fontsFamilies {
    width: 200px !important;
}
.editor-short-menu ul li .pdf-menu .list a {
    padding: 8px 15px;
    display: block;
    background-color: transparent;
    color:#000;
    font-weight: 500;
}
.rotate-0 {
    -webkit-transform: rotate(0deg); /* WebKit */
    -moz-transform: rotate(0deg); /* Mozilla */
    -o-transform: rotate(0deg); /* Opera */
    -ms-transform: rotate(0deg); /* Internet Explorer */
    transform: rotate(0deg); /* CSS3 */
}
.rotate-90 {
    -webkit-transform: rotate(90deg); /* WebKit */
    -moz-transform: rotate(90deg); /* Mozilla */
    -o-transform: rotate(90deg); /* Opera */
    -ms-transform: rotate(90deg); /* Internet Explorer */
    transform: rotate(90deg); /* CSS3 */
}
.rotate-180 {
    -webkit-transform: rotate(180deg); /* WebKit */
    -moz-transform: rotate(180deg); /* Mozilla */
    -o-transform: rotate(180deg); /* Opera */
    -ms-transform: rotate(180deg); /* Internet Explorer */
    transform: rotate(180deg); /* CSS3 */
}
.rotate-270 {
    -webkit-transform: rotate(270deg); /* WebKit */
    -moz-transform: rotate(270deg); /* Mozilla */
    -o-transform: rotate(270deg); /* Opera */
    -ms-transform: rotate(270deg); /* Internet Explorer */
    transform: rotate(270deg); /* CSS3 */
}
.placeholder {
    /*line-height: normal !important;*/
}

.CustomSlider .owl-item {
    float: left;
}
.CustomSlider {
    margin-bottom: 50px;
}
.CustomSlider .owl-nav {
    bottom: 0;
    text-align: center;
    display: block;
}
.CustomSlider .owl-prev,
.CustomSlider .owl-next {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: auto;
    font-size: 35px;
    line-height: 17px;
    text-align: center;
    background: #086630;
    border: 1px solid #086630;
    margin: 3px;
}
.CustomSlider .owl-prev.disabled,
.CustomSlider .owl-next.disabled {
    background: #3a905e;
}
.CustomSlider .owl-prev span,
.CustomSlider .owl-next span {
    color: #fff;
    line-height: 14px;
    display: block;
    margin-top: -7px;
}
.CustomSlider .owl-dots {
    display: none;
}

.roundImg .design-overlay {
    border-radius: 200px !important;
}
.card-choose .card-check .radio-wrap {
    padding-top: 4px;
}
/*.textWarningErrorF br, .textWarningErrorB br{display:none;}
/*.textWarningErrorF, .textWarningErrorB{position:relative;}*/

/*New Css After Site Audit*/

.f-head {
    position: absolute;
    background-color: #086630;
    padding: 20px;
    height: 100%;
    top: 0;
    left: 0;
    width: auto;
    text-align: center;
  }
  .f-head .ft {
    color: #fff;
    font-size: 22px;
    line-height: 35px !important;
  }
  .f-head:after {
    display: block;
    content: "";
    border-style: solid;
    border-width: 36px;
    border-color: transparent transparent transparent #086630;
    width: 0;
    height: 0;
    position: absolute;
    right: -72px;
    top: 0px;
  }
  
