/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 2 Jun, 2016, 5:03:05 PM
    Author     : User
*/


/* --------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------- CUSTOM STYLES --------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------- */

/* GALLERY ITEMS STYLES */
.gallery-select {
    position: relative;
    float: left;
    display: inline-block;
    width: auto;
    margin: 5px 0px 5px 5px;
}

.gallery-select select {
    position: absolute;
    width: 100%;
    left: 0px;
    opacity: 0;
    visibility: visible;
}

.gallery-select-facede {
    float: left;
    overflow: hidden;
    height: 46px;
    line-height: 46px;
    background: #70cf32;
    color: #fff;
    padding: 0px 10px;
}

.gallery-search {
    position: relative;
    overflow: hidden;
    width: auto;
    padding-right: 5px
}

.gallery-search input {
    /*border: none;*/
    margin: 5px 5px 5px 0px;
    width: 100%;
    display: block;
    height: 46px;
    padding: 0px 25px 0px 10px;
}

.gallery-search input:focus {
    border: 1px #FFCF00 solid;
    -moz-box-shadow: 0 0 3px #FFCF00 !important;
    -webkit-box-shadow: 0 0 3px #FFCF00 !important;
    box-shadow: 0 0 3px #FFCF00 !important;
}

.gallery-search i {
    position: absolute;
    top: 5px;
    right: 15px;
    height: 46px;
    line-height: 46px;
}

.custom-searchbar {
    width: 80%;
    text-align: center;
    margin: auto;
    /*border: #666 1px solid;*/
    /*border-radius: 10px;*/
    overflow: hidden;
}

/*OLD*/
.round-searchbar {
    border-radius: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.search-container i {
    position: absolute;
    top: 13px;
    right: 25px;
}

/*OLD*/

.gallery-header {
    padding-bottom: 0px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 200;

    width: 100%;
    background: #fff;
    padding: 20px 0px !important;
}

.gallery-header-fixed {
    position: fixed;
}

.gallery-content {
    /*padding-top: 10px;*/
    /*padding-top: 450px;*/
    background: #E9E9E9;
}

.gallery-content-scrolled {
    padding-top: 220px;
}

.item-holder {
    height: 350px;
    padding: 5px
}

.item-holder.name-desc {
    height: 300px;
    padding: 5px
}

.blog-post-item {
    border-radius: 10px;
    padding: 10px 20px 20px 20px;
    /*background-color: #f5f5f5;*/
    background-color: #fff;
    border: #f1f1f1 1px solid;
    height: 100%;
    max-width: 450px;
    margin: auto;

    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.blog-post-item h2 {
    padding: 10px 0px;
    line-height: 25px;
    margin: 0px;
    height: 70px;
}

.blog-post-item figure {
    text-align: center;
    min-height: 176px;
}

.blog-post-item figure img {
    max-height: 176px;
}

/* styles for '...' */
.blog-post-item p {
    /* hide text if it more than N lines  */
    overflow: hidden;
    /* for set '...' in absolute position */
    position: relative;
    /* use this value to count block height */
    line-height: 1.5em;
    /* max-height = line-height (1.2) * lines max number (3) */
    max-height: 4.5em;
    /* fix problem when last visible word doesn't adjoin right side  */
    /*text-align: justify;*/
    /* place for '...' */
    margin-right: -1em;
    padding-right: 1em;
    /*word-spacing : -3px;*/
}

.blog-post-item p b {
    font-weight: 900;
}

.blog-post-item p:nth-child(n+2) {
    display: none;
}

/* create the ... */
.blog-post-item p:before {
    /* points in the end */
    content: '...';
    /* absolute position */
    position: absolute;
    /* set position to right bottom corner of block */
    right: 0;
    bottom: 0;
}

/* hide ... if we have text, which is less than or equal to max lines */
.blog-post-item p:after {
    /* points in the end */
    content: '';
    /* absolute position */
    position: absolute;
    /* set position to right bottom corner of text */
    right: 0;
    /* set width and height */
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    /* bg color = bg color under block */
    background: white;
}

/* .blog-post-item .btn{
    position: absolute;
    bottom: 20px;
    width: auto;
    left: 10px;
    right: 10px;
} */
.blog-post-item:hover {
    border: #FFCF00 1px solid;
    /* cursor: pointer;
    cursor: hand; */

    /*    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3),0 0 0 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3),0 0 0 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3),0 0 0 2px rgba(0, 0, 0, 0.1);*/
}

.gallery-item-demo {
    height: 100%;
}

.gallery-item-demo a {
    float: right;
    top: 50%;
    margin-top: -24px;
}

.gallery-item-size-dropdown {
    height: 100%;
}

/* .gallery-item-size-dropdown div{
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -30px;
    width: 100%;
    text-align: left;
} */
.gallery-item-size-dropdown i {
    display: inline;
    padding: 0px 15px;
}

.gallery-item-size-dropdown h4 {
    display: inline;
    padding-bottom: 10px;
    font-size: 1.35em;
    font-weight: 800;
    color: #333;
}

.gallery-item-img {
    width: 225px;
}

.gallery-item-desc p {
    font-size: 18px;
}

.widget-container {
    display: none;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}

/*#widget-container{}*/
.widget-bg {
    width: 100%
}

.widget-container-fade::before {
    /* background-image: linear-gradient( top, rgba( 255, 255, 255, 0 ) 75%, rgba(249, 249, 249, 1 ) 100% );
    background-image: -moz-linear-gradient( top, rgba( 255, 255, 255, 0 ) 75%, rgba(249, 249, 249, 1 ) 100% );
    background-image: -ms-linear-gradient( top, rgba( 255, 255, 255, 0 ) 75%, rgba(249, 249, 249, 1 ) 100% );
    background-image: -o-linear-gradient( top, rgba( 255, 255, 255, 0 ) 75%, rgba(249, 249, 249, 1 ) 100% );
    background-image: -webkit-linear-gradient( top, rgba( 255, 255, 255, 0 ) 75%, rgba(249, 249, 249, 1 ) 100% ); */
    content: "\00a0";
    height: 100%;
    position: absolute;
    left: 0px;
    width: 100%;
}

.facebookContainer.widget-container-fade::before,
.video-container.widget-container-fade::before,
.adword-desktop-container.widget-container-fade::before,
.adword-mobile-container.widget-container-fade::before,
.adword-mobile-container-message.widget-container-fade::before {
    background-image: none;
    content: "\00a0";
    height: 100%;
    position: absolute;
    left: 0px;
    width: 100%;
}


.widget-bg-mobile {
    display: none;
}

.widget-bg-tablet {
    display: none;
}


.main-section-mobile {
    padding-bottom: 10px;
}


.widget-container-mobile {
    display: block;
}

.widget-container-mobile-scroll::after {
    content: " \03C \03C drag here to scroll \03E \03E";
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 100%;
    text-align: center;
}

#widget-preview-containers {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
    text-align: center;
}

.subtype-preview-container {
    display: block;
}

.subtype-header {
    font-size: 22px;
    text-align: left;
}

.subtype-preview-container-mobile {
    display: none;
}

.widget-preview {
    position: relative;
    text-align: center;
    /*width: 100%;*/
    width: 280px;
    padding-top: 10px;
    padding-bottom: 25px;
    margin-left: -75px;
    display: inline-block;
}

.subtype-preview-container .widget-preview {
    margin-left: 0px;
}

/* .widget-preview:hover{
    cursor: pointer;
} */
.widget-preview:hover .widget-preview-img {
    opacity: 0.2;
}

.widget-preview-img.ad-preview {
    /*width: 300px;*/
    width: 100%;
    opacity: 1;
    /* background: rgba(0, 151, 19, 0.3); */
    border: #dadadaf5 1px solid;

}

/*.widget-preview:hover .widget-preview-p{
    display:block;
    color: #FFF;
}*/
.widget-preview:hover .widget-preview-btn-holder {
    display: inline-block;
}

.widget-preview-img-holder {
    background: #333333e0;
    cursor: pointer;
}

.widget-preview-img {
    /*width: 300px;*/
    width: 100%;
    opacity: 1;
    border: #dadadaf5 1px solid;

}

.widget-preview-p {
    height: 30px;
    line-height: 30px;
    /*background: #000;*/
    background: #FFCF00;
    /*color: #F5F5F5;*/
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    margin: auto;

}

.widget-preview-btn-holder {
    position: absolute;
    height: 55px;
    /* BTN HEIGHT IS 40px, COMPENSATE FOR <p> DESC (30px)*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
}

.widget-preview-btn-holder a {
    /*font-weight: 800;*/
    color: #FFF !important;
    letter-spacing: 1px;
}

#size-dropdown {
    display: none;
}

#widget-preview-container-mobile {
    text-align: center;
}

#widget-preview-container-mobile a {
    margin: 20px auto;
    width: 200px;
    display: block;
}

#iFrame-container {
    top: 0px;
    width: 100%;
    height: 100%;
}

.iFrame-mobile {
    /*position: absolute;*/
    top: 130px !important;
    left: 50%;
    /*transform: translatex(-50%);*/
}

.iFrame-mobile-mobile {
    position: absolute;
    top: 102px !important;
    ;
    left: 50%;
    transform: translatex(-50%);
}

.iFrame-tablet-tablet {
    position: absolute;
    top: 112px !important;
    ;
    left: 50%;
    transform: translatex(-50%);
}

@media (min-width: 10px) {
    .container {
        width: 100%;
    }

    .gallery-select {
        float: left;
        width: auto;
    }

    .gallery-select-facede {
        width: 100%;
    }

    .gallery-item-figure {
        text-align: center;
    }

    .widget-bg {
        display: none;
    }

    .widget-iframe {
        top: 5px;
    }

    #iFrame-container {
        position: relative;
    }

    #widget-preview-container-mobile {
        display: block;
    }

    #widget-preview-containers {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
        display: none;
    }

    .subtype-preview-container {
        display: none;
    }

    .subtype-preview-container-mobile {
        padding: 0px 30px;
    }

    .subtype-header {
        text-align: center;
    }

    .subtype-preview-container-mobile {
        display: block;
    }

}

@media (min-width: 768px) and (max-width: 1026px) {
    .container {
        width: 100%;
    }

    .gallery-select {
        float: left;
        width: auto;
    }

    .gallery-select-facede {
        width: auto;
    }

    .gallery-item-figure {
        text-align: left;
    }

    .widget-bg {
        display: none;
    }

    #iFrame-container {
        position: absolute;
    }

    #widget-preview-container-mobile {
        display: none;
    }

    #widget-preview-containers {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
        display: block;
    }

    .subtype-preview-container {
        display: block;
    }

    .subtype-header {
        text-align: left;
    }

    .subtype-preview-container-mobile {
        display: none;
    }

}

@media (min-width: 1026px) {
    #widget-preview-containers {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
        display: block;
    }

    .subtype-preview-container {
        display: block;
    }

    .subtype-header {
        text-align: left;
    }

    .subtype-preview-container-mobile {
        display: none;
    }
}

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

    .widget-bg {
        display: block;
    }

    .widget-iframe {
        position: absolute;
    }

    #iFrame-container {
        position: absolute;
    }

    #widget-preview-containers {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
        display: block;
    }

    .subtype-preview-container {
        display: block;
    }

    .subtype-header {
        text-align: left;
    }

    .subtype-preview-container-mobile {
        display: none;
    }

}


/*QRCODE*/
.qrcode-container {
    display: none;
    position: fixed;
    left: 0px;
    bottom: 300px;
    /*top: 100px;*/
    /*top: 25%;*/
    background: #FFF;
    padding: 10px;
    text-align: center;
    border: #666 1px solid;
    border-radius: 10px;
    z-index: 1000;
}

#qrcode-toggle {
    position: absolute;
    right: 10px;
    top: 8px;
    /*padding: 5px;*/
    cursor: pointer;
}

.qrcode-toggle-icon-hidden {
    position: relative !important;
    top: 0px !important;
    left: 0px !important;
}

#qrcode-header {
    display: inline;
    margin-right: 10px;
}



/* OVERVIEW STYLES */
.custom-feature {
    font-size: 20px;
}

.custom-feature span {
    /*color: red;*/
    font-size: 17px;
    font-weight: 200;
}

.custom-header {
    letter-spacing: 3px;
    font-weight: 800;
    color: #414141;
}


/* CUSTOM BOOSTRAP ALERT */
.alert-custom {
    text-align: center;
    /*width: 1170px;*/
    width: 100%;
    margin: 50px auto 0px auto;
    border: none;
    display: none;
    /*alert box should be hidden by default*/
}

.alert-custom div {
    display: inline;
}

.alert-custom i {
    display: inline;
    padding-right: 15px;
}

.alert-custom-fullpage {
    margin: 200px auto 200px auto;
    padding-top: 25px;
}

.alert-custom-fullpage div {
    display: block;
    padding: 20px 0px 20px 0px;
}

.alert-custom-fullpage i {
    display: block;
}

.alert-custom-cookie {
    margin: 0px;
    padding: 0px;
    background: rgba(255, 207, 0, 0.8);
    color: #333;
    display: none;
}

.alert-custom-cookie div {
    display: inline-block;
    vertical-align: middle;
}

.alert-custom-cookie-txt {
    padding: 5px 0px;
}

.alert-custom-cookie #cookie-link {
    text-decoration: underline;
    font-weight: 700;
    color: #333;
}

.alert-custom-cookie #cookie-link:hover {
    color: #FFCF00;
}

.alert-custom-btn {
    height: 26px;
    line-height: 12px !important;
    margin: 5px 5px !important;
}

@media (min-width: 10px) {
    .alert-custom-cookie-txt {
        font-size: 6px;
        width: 175px;
    }

    .alert-custom-btn {
        font-size: 10px;
    }
}

@media (min-width: 400px) {
    .alert-custom-cookie-txt {
        width: 250px;
        font-size: 10px;
    }
}

@media (min-width: 560px) {
    .alert-custom-cookie-txt {
        width: 400px;
    }
}

@media (min-width: 820px) {
    .alert-custom-cookie-txt {
        width: 690px;
    }

    .alert-custom-btn {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .alert-custom-cookie-txt {
        font-size: 14px;
        width: 1000px;
    }
}

/* BROWSER NOTIFICATION */
.alert-custom-browser {
    margin: 5px 0px 0px 0px;
    background: rgba(255, 207, 0, 0.8);
    color: #333;
}

.alert-custom-browser div {
    display: inline-block;
}

.alert-custom-browser-txt {
    padding: 5px 0px;
}

.alert-custom-browser #browser-link {
    text-decoration: underline;
    font-weight: 700;
    color: #333;
}

.alert-custom-browser #browser-link:hover {
    color: #FFCF00;
}

@media (min-width: 10px) {
    .alert-custom-browser-txt {
        font-size: 6px;
        width: 175px;
    }
}

@media (min-width: 400px) {
    .alert-custom-browser-txt {
        width: 250px;
        font-size: 10px;
    }
}

@media (min-width: 560px) {
    .alert-custom-browser-txt {
        width: 400px;
    }
}

@media (min-width: 820px) {
    .alert-custom-browser-txt {
        width: 690px;
    }
}

@media (min-width: 1200px) {
    .alert-custom-browser-txt {
        font-size: 14px;
        width: 960px;
    }
}


/* PRICING BUTTONS */
.switch-btn-container {
    white-space: nowrap;
    min-height: 33px;
    margin-bottom: 30px;
    top: 100px;
}

.switch-btn-container a {
    width: 150px;
    height: 50px;
    position: relative;
    top: 0;
    padding-top: 9px;
    outline-width: 0px;
    color: #000;
    text-align: center;
    font-size: 20px;
    /*line-height: 26px;*/
    display: inline-block;
}

.switch-btn-container a:not(.active) {
    background-color: #F5F5F5;
}

.switch-btn-container a:not(.active):hover,
.switch-btn-container a:not(.active):focus {
    color: #FFF;
}

.switch-btn-container a.active,
.switch-btn-container a:active {
    background-color: #FFCF00;
    color: #FFF;
}

.switch-btn-container a:last-of-type {
    -webkit-border-radius: 0 7px 7px 0;
    -moz-border-radius: 0 7px 7px 0;
    -ms-border-radius: 0 7px 7px 0;
    -o-border-radius: 0 7px 7px 0;
    border-radius: 0 7px 7px 0;
    margin-left: -2px;
}

.switch-btn-container a:first-of-type {
    -webkit-border-radius: 7px 0 0 7px;
    -moz-border-radius: 7px 0 0 7px;
    -ms-border-radius: 7px 0 0 7px;
    -o-border-radius: 7px 0 0 7px;
    border-radius: 7px 0 0 7px;
    margin-right: -2px;
}


/* FORM VALIDATION FA ICON (custom green color)*/
.fa-success {
    color: #70CF32;
    position: absolute;
    right: 20px;
}

/* CREDIT CARD ICON */
.input-icon.right i.cc-icon {
    right: 3px;
}

.input-icon i.cc-icon {
    position: absolute;
    display: block;
    margin: 8px 20px 8px 20px;
    /*margin-top: 5px;*/
    width: 38px;
    height: 23px;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.input-icon i.cc-icon.cc-icon-visa {
    background-image: url(../images/creditcards/visa_38x23.png);
}

.input-icon i.cc-icon.cc-icon-mastercard {
    background-image: url(../images/creditcards/mastercard_38x23.png);
}

.input-icon i.cc-icon.cc-icon-amex {
    background-image: url(../images/creditcards/amex_38x23.png);
}

/*CUSTOM TOOL TIP CVV*/
.tooltip-cvv {
    position: relative;
    display: inline-block;
}

.tooltip-cvv .tooltip-cvv-inner {
    visibility: hidden;
    width: 500px;
    background-color: #666;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 110%;
}

.tooltip-cvv-inner h4 {

    color: #FFFFFF;
}

.tooltip-cvv-inner div div {

    overflow: hidden;
    padding-bottom: 15px;
}

.tooltip-cvv .tooltip-cvv-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.tooltip-cvv:hover .tooltip-cvv-inner

/*, .tooltip-cvv:active .tooltip-cvv-inner*/
    {
    visibility: visible;
}


/*CUSTOM ADDRESS*/
.address-container {
    overflow: hidden;
    /*background-color: #F9F9F9;*/
    padding: 10px;
}

.custom-address {
    padding: 15px;

    background: none;
    /*-webkit-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
    transition: background 0.5s linear;*/
}

.custom-address-img {
    position: absolute;
}

.custom-address i {
    color: #212121;
}

.custom-address h4 {
    /*color: #FFCF00;*/
    color: #212121;
    display: inline;
    margin: 0px 10px;
}

.custom-address p {
    /*color: #FFCF00;*/
    color: #212121;
}

.custom-address:hover {
    background: url('../images/world-map-dark-2.png') no-repeat left;
    /*background-color: #555555;*/
}

.custom-address:hover h4,
.custom-address:hover p,
.custom-address:hover i {
    color: #FFCF00;
    /*color: #212121;*/
}



/*CUSTOM MODAL CLOSE BTN*/
.custom-modal-close {
    position: absolute;
    width: 20px;
    line-height: 20px;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    top: -10px;
    right: -5px;
    padding: 3px;
    color: #FFF;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    z-index: 9999;
}

.fixed-alert-wdiget-size {
    display: none;
    position: fixed;
    width: 100%;
    height: 80px;
    text-align: center;
    top: 60px;
}

.fixed-alert-wdiget-size p {
    line-height: 32px;
}

.fixed-alert-wdiget-size button {
    height: 32px;
}

/*CUSTOM INTERCOM OVERRIDE*/
/*
#intercom-container .intercom-launcher{
    right: 2px !important;
    bottom: 55px !important;
}
#intercom-container .intercom-launcher-hovercard{
    right: 5px !important;
}
#intercom-container .intercom-launcher-hovercard:after{
    right: 11px !important;
}
#intercom-container .intercom-launcher-hovercard:before{
    right: 10px !important;
}
*/

/*CUSTOM PARALLAX IMG*/
.parallax-img {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}

@media (min-width: 10px) {
    .parallax-img {
        height: 100%
    }
}

@media (min-width: 1500px) {
    .parallax-img {
        width: 100%
    }
}


/*CUSTOM INDEX*/
@media (min-width: 10px) {
    margin: auto;
    width: 100%;
}

@media (min-width: 992px) {
    .custom-index {
        width: 66.66666667%;
    }
}

.custom-footer-logo {
    width: 100%;
    max-width: 200px;
    margin-bottom: 75px;
}

.custom-footer-links {
    padding-left: 0px;
    margin-top: 25px;
}

.custom-footer-links li {
    display: inline;
    margin-right: 10px;
}

.custom-footer-links li a {
    font-weight: 300;
}

/*
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}*/

/*REMOVE SCROLL TO TOP BUTTON*/
#toTop {
    display: none !important;
}





.gallery-pagination {
    padding-top: 0px;
}

section.gallery-content.industry-advlist {
    padding: 20px;
}

/* .blog-post-item.advertiser:hover{
    cursor: pointer;
} */



.pager.gallery-adv li>a {
    color: #333;
    display: inline-block;
    padding: 5px 14px;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    font-weight: normal;
}

.pager.gallery-adv li>a.next-prev {
    color: #888;
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border-radius: 0px;
    font-weight: bold;
}



.pager.gallery-adv li>a:hover,
.pager.gallery-adv li.active>a {
    color: #fbc558
}

.pager.gallery-adv li.disabled>a:hover {
    color: #888;
}

.gallery-request-item-demo {
    height: 100%;
}


@media screen and (min-width: 48em) {
    .gallery-request-item-demo .request-demo-text {
        text-align: center;
    }
}

/* Bottom right text */
.bottom-right {
    position: absolute;
    bottom: 25px;
    /* right: 10px; */
    background: black;
    color: #ffb623;
    width: 126px;
    height: 25px;
    opacity: 1;
    font-size: inherit;
    font-weight: normal;
}

.bottom-right p {
    margin-top: 3px;
}

.navbar {
    min-height: 0px;
    margin-bottom: 0px;
}

.nav>li {
    font-size: 20px;
    border-bottom: 3px solid #ececec;
}

.nav>li>a {
    padding-top: 10px;
    padding-bottom: 12px;
    color: #7d7d7d;
    font-weight: 600;
    font-size: 1.1em;
}

.navbar-default .nav>li>a:hover {
    color: #ffb722;
}

.navbar-default .nav>li>a:hover,
.navbar-default .nav>li>a:focus,
.navbar-default .nav>li>a:active {
    background-color: transparent;
}

.navbar-default .nav>li>a:focus:not(.btn),
.navbar-default .nav>li>a:active:not(.btn) {
    color: #ffb722;
    background-color: transparent;
}

.navbar-default .nav li:hover {
    color: #ffb722;
    border-bottom: 3px solid #ffb722;
}

.navbar-default .nav li:hover>a {
    color: #ffb722;
}

.navbar-default .nav li.active {
    border-bottom: 3px solid #ffb722;
}

.navbar-default .nav li.active>a,
.navbar-default .nav>.active>a:hover {
    color: #ffb722;
    background-color: transparent;
}

.navbar-default .nav li.disabled:hover {
    color: #ddd;
    border-bottom: 3px solid #ececec;
    cursor: not-allowed;
    pointer-events: all;
}

.navbar-default .nav>li>a.disabled,
.navbar-default .nav>li>a.disabled:hover,
.navbar-default .nav>li>a.disabled:focus,
.navbar-default .nav>li>a.disabled:active {
    color: #ddd;
    border-bottom: 0px;
    cursor: not-allowed;
    pointer-events: all;
}

.adlist-breadcrumb {
    padding: 8px 0px;
    margin-bottom: 0px;
    list-style: none;
    border-radius: 4px;
}

.adlist-breadcrumb>li {
    display: inline-block;
}

.adlist-breadcrumb>li>a {
    color: #949494;
    font-weight: normal;
}

.adlist-breadcrumb>.active {
    color: #949494;
}

.adlist-breadcrumb>li+li:before {
    padding: 0 5px;
    color: #949494;
    content: ">";
}

.adlist-breadcrumb>li>a:focus:not(.btn) {
    color: #333;
}

.adlist-breadcrumb>li>a.disabled {
    cursor: default;
}

.facebookContainer {
    height: 800px;
    float: left;
}

.fbDesktop {
    height: 830px;
    margin-left: 0px;
}

.fbfullsize {
    height: 100%;
    margin-left: 0px;
}

.fbfullsizecenter {
    height: 100%;
    /* margin-left : 412px; */
}

.fbAudienceMobile {
    height: 580px;
    /* margin-left : 412px; */
}

.subtype-header {
    margin: 40px 0 0 0;
}

.adtype {
    font-size: x-large;
    font-weight: bold;
    color: #333;
}

#footer-template {
    display: none;
}

#widget-subtype {
    padding: 0px;
}

.type-navbar {
    background-color: #fff;
    border: 0px;
    /* padding : 0px 20px; */
}

.nav-container {
    padding: 0px;
}

#nativeIframe {
    border: 1px solid #c6c6c6;
    background-color: white;
    margin: 0 10px;
}

.nativeContainer {
    background-color: #fff;
    padding: 0px 15px;
    height: 630px;
}

.nativeAdName {
    text-align: left;
    margin: 15px 0;
    font-weight: 600;
    font-size: 18px;
}

.nativeImage {
    vertical-align: middle;
    width: 100%;
}

.nativeHeadline {
    color: #333;
    font-size: 18px;
    margin: 15px 0 5px;
    font-weight: 500;
    text-align: left;
}

.nativeBody {
    color: #333;
    font-size: 12px;
    text-align: left;
    margin-bottom: 20px;

}

.nativeUrl {
    color: #828282;
    font-size: 12px;
    line-height: 31px;
    float: left;
    margin-top: 12px;
}

.nativeUrl>label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 200px;
    font-family: 'Helvetica Neue' !important;
    text-align: left;
}

.nativeAction {
    margin-top: 10px;
    font-weight: 600;
    color: #828282;
    font-size: 12px;
    border-radius: 0px;
    font-family: 'Helvetica Neue' !important;
    border: 1px solid #ccc !important;
}

.subheading-mobile {
    padding-left: 30px;
    padding-right: 40px;
}

.centerthumbnail {
    margin-left: 30px;
}

.first {
    margin-right: 50px;
}

.last {
    margin-left: 50px;
}

/**
* Slider CSS
**/

.industry-content-filter {
    padding-top: 40px;
    padding-bottom: 15px;
    background: #E9E9E9;
    margin-bottom: 15px;
}




.industry-details .industry-name {
    padding-top: 5px;
    text-align: center;
}



.industry-holder {
    width: 155px;
    height: 115px;
    /* padding: 5px; */
}



.carousel {
    margin-bottom: 0;
    padding: 0px;
    /* 5px 0 15px 0;   */
}

a.carousel-control,
a.carousel-control:hover {
    color: #ccc;
}

.industry-content-filter .carousel-control {
    left: 0;
    width: 40px;
    height: 40px;
    margin-top: 25px;
    border: 0px;
    background: none;
    color: #ccc;
}

.industry-content-filter .carousel-control.right {
    right: 500px;
    left: auto;
}

.industry-content-filter .carousel-control.left {
    right: auto;
    left: 500px;
}

.carousel .carousel-indicators {
    top: auto;
    right: 50%;
    bottom: -10px;
    margin-right: -19px;
}

.carousel .carousel-indicators li {
    background: #cecece;
}

.carousel .carousel-indicators .active {
    background: #d01f76;
}

.carousel .item .row {
    clear: both;
    margin: 0;
}

.carousel .item .item__element {
    float: left;
    width: 33.33333333%;
    padding: 0 10px;
    text-align: center;
}

.carousel .item .item__element:nth-of-type(1)
{
    padding-left: 0px;
}

.carousel .item .item__element:last-of-type
{
    padding-right: 0px;
}

.carousel .item .item__element img {
    display: block;
    margin: 0 auto;
}

.item_element {
    padding: 0px 10px;
}

@media (min-width: 768px) {

    .carousel .item .item__element {
        width: auto;
    }

}

@media (min-width: 1300px) and (max-width: 2200px) {

    .industry-content-filter .carousel-control.right {
        right: 40px;
        ;
        left: auto;
    }

    .industry-content-filter .carousel-control.left {
        right: auto;
        left: 40px;
        ;
    }

}

@media (min-width: 800px) and (max-width: 1300px) {

    .industry-content-filter .carousel-control.right {
        right: 5px;
        left: auto;
    }

    .industry-content-filter .carousel-control.left {
        right: auto;
        left: 5px;
    }
}

@media (min-width :1000px) and (max-width: 1100px) {

    .centerthumbnail {
        margin: 0px 15px;
    }

    .industry-content-filter .carousel-control {
        margin-top: 25px;
    }
}

@media (min-width :890px) and (max-width: 1000px) {

    .centerthumbnail {
        margin: 0px 10px;
    }

    .industry-holder .industry-details .circle {
        margin-left: 0px;
    }
}

@media (min-width :768px) and (max-width: 890px) {

    .centerthumbnail {
        margin: 0px 0px;
    }

    .industry-holder .industry-details .circle {
        margin-left: 0px;
    }

    .industry-holder .industry-details .circle {
        border-radius: 50%;
        width: 100px;
        height: 100px;
        margin-left: 25px;
    }
}

@media (min-width: 450px) and (max-width: 800px) {

    .industry-content-filter .carousel-control.right {
        right: 0px;
        left: auto;
    }

    .industry-content-filter .carousel-control.left {
        right: auto;
        left: 0px;
    }

}

@media (min-width :580px) and (max-width: 767px) {

    .centerthumbnail {
        margin: 0px 30px;
    }
}

@media (max-width: 767px) {

    .industry-content-filter .carousel-control {
        margin-top: 105px;
    }
}

@media (min-width :450px) and (max-width: 580px) {

    .centerthumbnail {
        margin: 0px 15px;
    }
}

@media (min-width :400px) and (max-width: 450px) {
    .centerthumbnail {
        margin: 0px -5px;
    }
}

@media (max-width: 400px) {
    .centerthumbnail {
        margin: -0px -12px;
    }
}


@media (min-width :320px) and (max-width: 450px) {

    .industry-content-filter .carousel-control.right {
        right: 0px;
        left: auto;
    }

    .industry-content-filter .carousel-control.left {
        right: auto;
        left: 0px;
    }

    .industry-details {
        padding: 10px 10px 20px 10px;
    }

    /* .industry-holder {
        width: 115px;
        height: 115px;
    } */

    .industry-details .circle {
        margin-left: 17px;
    }

    .industry-details .industry-name {
        padding-top: 2px;
    }
}

@media (max-width: 355px) {

    .industry-content-filter .carousel-control.right {
        right: 0px;
        left: auto;
    }

    .industry-content-filter .carousel-control.left {
        right: auto;
        left: 0px;
    }

    .industry-details {
        padding: 10px 10px 20px 10px;
    }

    /* .industry-holder {
        width: 130px;
        height: 115px;
    } */

    .industry-details .circle {
        margin-left: 5px;
    }

    .industry-details .industry-name {
        padding-top: 2px;
    }
}

.slide-lg {
    font-size: 3em;
}

@media (max-width : 1300px) {
    .slide-lg {
        font-size: 2em;
    }
}



/* *
* Adwords Preview
* */

.adword-mobile-container {
    height: 100%;
    width: 27%;
}

.adword-mobile-container-message {
    height: 100%;
    width: 100%;
}

.msgExtTutHolder {
    background-color: #f2f2f2;
}

@media (max-width : 380px) {
    .msgExtTutHolder {
        background-color: #f2f2f2;
        width: 300px;
    }
}

.adword-msgExt-image {
    width: 62%;
    padding: 0px;
}

#adwordsContainer {
    font-family: HelveticaNeue;
}

#adwordsContainer hr {
    border-top: 1px solid #eee !important;
    background-image: none;
}

.preview {
    display: flex;
    flex-direction: column;
    /* width: 100%; */
    margin: 15px auto;
    text-align: left;
    color: #333
}

.title {
    color: rgba(0, 0, 0, 0.54);
    padding: 10px;
    margin: auto;
}

.header {
    margin: auto;
    margin-bottom: 20px;
}

.adword-mobile {
    padding: 0 4px;
    width: 306px;
    min-height: 160px;
    /* margin:auto; */
}

.adword-mobile-margin-auto {
    margin: auto;
}

.adword-mobile-mobileview {
    background-color: #000;
    border-color: #000000;
    border-style: solid;
    border-top-left-radius: 55px !important;
    border-top-right-radius: 55px !important;
    border-width: 4px 4px 0;
    width: 400px;
}

.desktop {
    /* background-color: #fff; */
    min-height: 100px;
    /* border: 1px solid #999; */
    padding: 20px;
    margin: 0 15px;
    /* box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2); */
}

.desktop-mobileview {
    background-color: #fff;
    border: 1px solid #999;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.display {
    height: auto;
    width: 300px;
    border: 1px solid #999;
    margin: auto;
    border-radius: 3px !important;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.display-content {
    padding: 15px;
    word-break: break-word;
}

.footer {
    background-color: #fff;
    bottom: 0;
    width: 100%;
    min-height: 50px;
    padding: 0px;
    word-break: break-word;
    color: #52ceb4;
    border-top: 1px solid #bdbdbd;
}

.header-mobile-container {
    height: auto;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    display: none;
}

.camera {
    border: 1px solid #fff;
    border-radius: 50% !important;
    height: 12px;
    width: 12px;
    margin: auto;
    background-color: #bdbdbd;
}

.speaker-censor-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 15px;
    margin-top: 10px;
}

.censor {
    border: 1px solid #fff;
    border-radius: 50% !important;
    height: 8px;
    width: 8px;
    margin-right: 30px;
}

.speakerContainer {
    width: 100px;
}

.speaker {
    width: 50px;
    border: 2px solid #bdbdbd;
    border-radius: 2px !important;
    margin-left: 6px;
    margin-top: 3px;
}

.content {
    background-color: #fff;
    border-width: 16px 8px 8px;
    margin: 0 8px;
    height: auto;
}

.outside-container {
    /* background-color: #bdbdbd;
    padding: 10px 0px 20px 0px; */
    min-height: auto;
}

.inside-container {
    padding: 15px;
    background-color: #fff;
}


.seperate {
    margin: 5px 0;
    border-top: 1px solid #eee;
    background-image: none;
}

.display-path-container {
    overflow: hidden;
}

.display-path {
    background: transparent;
    border-top: transparent !important;
    border-left: transparent !important;
    border-right: transparent !important;
    border-bottom: 1px solid !important;
    font-weight: 200;
    color: black;
    margin: 0 10px;
}

.preview-adwords {
    min-height: 500px;
}

.headline {
    color: #1a0dab;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.margin-right {
    margin-right: 5px;
}

.break-word {
    word-break: break-word;
}

.bold-text {
    font-weight: bold;
}

.colorDescription {
    color: #5f5f5f;
    display: inline;
}


.ellipses {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #006621;
    margin-bottom: 0px;
}


.headline1-display {
    font-family: HelveticaNeue;
    font-size: 30px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
    display: block;
    margin-bottom: 13px;
}

.headline2-display {
    font-family: HelveticaNeue;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
    display: block;
    margin-bottom: 10px;
}

.headline3-display {
    font-family: HelveticaNeue;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #000000;
    display: block;
}

.margin-left-pagination {
    margin-left: 10px;
}

.sitelink-text {
    font-size: 16px;
}

.sitelinks-desktop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 16px;
    margin-top: 16px;
}

.sitelinks-mobile {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 16px;
    margin-top: 16px;
}

.ad-icon {
    border: 1px solid#006621;
    border-radius: 2px;
    color: #006621;
    display: inline-block;
    font-size: 12px;
    line-height: 14px;
    margin-right: 8px;
    padding: 0 2px;
    vertical-align: baseline;
}

.round-btn {
    display: flex;
    box-sizing: border-box;
    height: 34px;
    width: 34px;
    border-radius: 50% !important;
    border: 1px solid #d8d8d8;
    background: #f7f7f7;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.round-btn:hover {
    box-shadow: 1px 1px 7px rgba(202, 202, 202, 1);
}

.round-btn.disabled {
    pointer-events: none;
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.margin-sides {
    margin: 0px 5px;
}

.option-header {
    pointer-events: none;
    color: #000 !important;
}

.list-item-label {
    display: flex;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.message-number {
    color: #ACACAC;
    margin-bottom: 10px;
}

.message-bubble {
    margin: 20px 10px 20px 20px;
    text-align: right;
    padding: 5px 20px;
    background: #ECECEC;
    border-radius: 5px !important;
    min-height: 30px;
    position: relative;
}

.message-bubble::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border: 17px solid transparent;
    border-right: 0;
    border-top: 0;
    margin-top: -0.5px;
    margin-right: -13px;
    border-left-color: #ECECEC;
}

.price-card-preview-mobile {
    border-radius: 2px !important;
    box-shadow: 0 2px 4px 0 gray;
    padding: 10px;
    margin-right: 15px;
}

.price-card-preview-mobile>div {
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
}

.price-card-preview-mobile>price {
    text-align: center;
    font-size: 16px;
    padding: 2px 0;
    display: block;
}

.price-card-preview-mobile>hr {
    margin: 5px 0;
    border-top: 1px solid #eee;
    background-image: none;
}

.price-card-preview-desktop {
    padding: 10px;
    margin-right: 15px;
}

.price-card-preview-desktop:not(:first-child) {
    border-left: solid 1px #ccc;
}

.price-card-preview-desktop:first-child {
    padding-left: 0;
}

.price-card-preview-desktop>div {
    text-overflow: ellipsis;
    overflow: hidden;
}

.price-card-preview-desktop>price {
    font-weight: bold;
    font-size: 16px;
    padding: 2px 0;
    display: block;
}

.price-card-preview-desktop>hr {
    display: none;
    margin: 5px 0;
}

.price-card-holder {
    display: flex;
    padding: 10px;
    width: inherit;
    overflow: scroll;
    white-space: nowrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.price-qualifier {
    white-space: nowrap;
    font-size: 12px;
    color: #212121;
}

.price-tag {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* @media (max-width: 1200px){
    .price-card-preview-desktop:not(:first-child) {
        border-left: 0px;
        padding-left: 0;
    }
} */

strong {
    font-weight: bold;
    color: #333333;
}

.promotion-details,
.promotion-details span,
.promotion-details div {
    color: #333333;
}

/* @media (max-width : 400px){
    .adword-mobile{
        width : 300px;
    }
} */


.filter {
    margin-top: 5px;
}

.widget-preview-btn-holder .btn.btn-knx-orange {
    border-radius: 100px !important;
    color: #333 !important;
    /* cursor: pointer; */
}

/***
* FB Live Preview required CSS
***/

.fb-header {
    display: none;
}

.fb-nav {
    display: none;
    float: left;
    width: 275px;
}

.fb-ad {
    display: none;
    float: right;
    width: 427px;
}

.advlogo-left {
    float: left;
}

.adv-name {
    color: #000000;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}

.view-details-header {
    margin-top: 5px;
    padding-left: 0px;
    padding-right: 0px;
}

.view-details-header>p {
    color: #000000;
}

@media (max-width: 767px) {
    .advlogo-left {
        float: unset;
    }
}

.advertise-details {
    overflow: hidden;
    padding: 20px 0px;
    background: #ddd;
    background-color: transparent;
}

@media (max-width : 768px) {

    .advertise-details {
        padding: 20px 10px;
    }

    .adlist-breadcrumb {
        padding: 8px 8px;
    }

}


@media (max-width : 991px) {
    .view-details-header {
        padding-left: 25px;
    }
}

.subtype-preview-container>div {
    margin-right: 20px;
}

/* 
**
 Selectize CSS changes
** 
*/
.padding-dropdown {
    padding-right: 25px;
    padding-left: 25px;
}

select.form-control option {
    color: red;
    border: 0 !important;
    /*Removes border*/
    -webkit-appearance: none;
    /*Removes default chrome and safari style*/
    -moz-appearance: none;
    /*Removes default style Firefox*/
}


.selectize-control .selectize-input {
    background: #fff !important;
    box-shadow: none !important;
    background-image: none !important;
    border-radius: 0;

    padding: 1rem 1.7rem;
}

.selectize-input.dropdown-active {
    border-radius: 0;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
    font-size: 15px !important;
}

.selectize-dropdown .option {
    padding: 1.5rem 1.7rem !important;
}

.selectize-dropdown .active,
.selectize-dropdown-content .option.active {
    background: #ffcc4b;
    color: #000;
    font-weight: bold;
    font-size: 15px !important;
    cursor: pointer;
}