/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
/*Shortcode Specific */
/*--- Global CSS ----*/
* {
    outline: 0 !important;
}
/* Counter CSS  */
.clockdiv {
    text-align: center;
}

/**
 * Concept 1
 */
.countdown-1 {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 12px 0 8px;
}
.countdown-1 .days,
.countdown-1 .minutes,
.countdown-1 .hours,
.countdown-1 .seconds {
    min-width: 80px;
    position: relative;
}
.countdown-1 .amount {
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    color: #585871;
}
.countdown-1>div:not(:first-of-type):before {
    content: ":";
    color: #585871;
    position: absolute;
    font-size: 30px;
    left: -3px;
    top: -7px;
    font-weight: 900;
}
/**
* Concept 2
*/
.countdown-2 {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.countdown-2>div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    background: #f5f8fa;
    border: 1px solid #ced8e2;
    margin: 0 12px;
    padding: 8px 8px 7px;
    position: relative;
    min-width: 80px;
    border-radius: 3px;
}
.countdown-2>div:not(:first-of-type):before {
    content: ":";
    color: #bec2da;
    position: absolute;
    font-size: 25px;
    left: -16px;
    top: 10px;
    font-weight: 700;
}
.countdown-2 .amount {
    font-size: 30px;
    color: #585871;
    line-height: 1;
}

/**
** Concept 3
**/
.countdown-3 {
    --colour-days: calc(var(--countdown-percent-days) * 255);
    --colour-hours: calc(var(--countdown-percent-hours) * 255);
    --colour-minutes: calc(var(--countdown-percent-minutes) * 255);
    --colour-seconds: calc(var(--countdown-percent-seconds) * 255);
    --colour: calc(var(--countdown-percent) * 255);
    --length: calc(var(--countdown-percent) * 100%);
    display: flex;
    padding: 0;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}
.countdown-3 .amount {
    display: inline-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
    /* width: 35px; */
    height: 30px;
    font-size: 18px;
    color: #585871;
    font-weight: 700;
}
.countdown-3 .digit,
.countdown-3 .digit[data-countdown-next-digit]::after {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
    min-width: 25px;
    height: 32px;
    background: #eaf2f9;
    border-radius: 3px;
    color: #585871;
    text-align: center;
    overflow: hidden;
    border: 1px solid #ced8e2;
    margin: 0 4px;
}
.countdown-3 .digit[data-countdown-next-digit]::after {
    display: none;
    content: attr(data-countdown-next-digit);
    position: absolute;
    left: 0;
    top: 0;
}
.countdown-3 .days,
.countdown-3 .hours,
.countdown-3 .minutes,
.countdown-3 .seconds {
    margin: 11px 5px 3px;
}
.countdown-3 .label {
    margin: 12px 0 0;
    display: block;
}

/*
Concept 5
*/
.countdown-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.countdown-4>div {
    min-width: 30px;
    margin: 0 12px;
    position: relative;
}
.countdown-4>div .amount {
    background: #585871;
    min-width: 50px;
    min-height: 50px;
    display: inline-block;
    border-radius: 50%;
    line-height: 50px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.countdown-4>div .label {
    display: block;
}
.countdown-4>div:not(:first-of-type):before {
    content: ":";
    color: #bec2da;
    position: absolute;
    font-size: 25px;
    left: -16px;
    top: 10px;
    font-weight: 700;
}
@media only screen and (max-width: 600px) {
    .countdown-2 .amount {
        font-size: 26px;
    }
    .countdown-2 {
        flex-wrap: wrap;
        grid-gap: 10px;
    }
    .countdown-2>div:not(:first-of-type):before {
        display: none;
    }
    .countdown-2>div {
        margin: 0px;
        font-size: 12px;
        min-width: 70px;
    }
    .countdown-4>div {
        margin: 0 7px;
    }
    .countdown-4>div .amount {
        font-size: 16px;
        min-width: 40px;
        min-height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
    .countdown-4>div:not(:first-of-type):before {
        display: none;
    }
    .countdown-4>div .label {
        font-size: 12px;
    }
}

/* Form Style */

.webtri-autoresponder-form {
    max-width: 100%;
    margin: auto;
    padding: 40px 50px;
    background: #f5f5f5;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
}
.webtri-autoresponder-form > * {
    width: 100%;
}
.webtri-autoresponder-form h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}
.webtri-autoresponder-form  p {
    margin: 0;
    font-size: 16px;
}
.webtri-autoresponder-form form {
    margin: 20px 0 0;
}
.webtri-autoresponder-form label {
    width: 100%;
    display: block;
    margin: 0;
}
.webtri-autoresponder-form input {
    border: 1px solid #e5e5e5;
    padding: 3px 20px;
    min-height: 40px;
    border-radius: 5px;
    width: 100%;
}
.webtri-autoresponder-form form {
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
}
.webtri-autoresponder-form  button {
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #222;
    background: #222;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
}
.d-none {
	display: none;
}
.webtri-autoresponder-form button .fb-loader {
    height: 20px;
}


/* Alert */
.fb-alert-wrapper {
    position: fixed;
    top: 40px;
    right: 20px;
    height: 50px;
    z-index: 999999;
}
.fb-alert-wrapper p {
    padding: 0px 30px;
    background: #dc3232;
    border-radius: 5px;
    line-height: 1.5;
    font-size: 18px;
    color: #fff;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 0.2);
    transition: 0.5s;
}
.fb-alert-wrapper p.fb-success {
    box-shadow: 0px 0px 30px 0px rgba(18, 224, 215, 0.1), inset 0px -5px 0px #8bc34a;
}
.fb-alert-wrapper p {
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(18, 224, 215, 0.1);
    border-radius: 5px;
    padding: 15px 20px;
    margin: 0;
    color: #9ca2ab;
    font-size: 16px;
    position: relative;
    padding-left: 80px;
    -webkit-animation: alertanim 0.3s;
    -moz-animation: alertanim 0.3s;
    animation: alertanim 0.3s;
}
.fb-alert-wrapper p {
    box-shadow: 0px 0px 30px 0px rgba(18, 224, 215, 0.1), inset 0px -5px 0px #fe5c31;
}
.fb-alert-wrapper p::before {
    content: "Yeay!";
    font-size: 16px;
    font-weight: bold;
    display: block;
    color: #0e141b;
}
.fb-alert-wrapper p::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.fb-alert-wrapper p::before {
    content: "Duhh!";
}
.fb-alert-wrapper p.fb-success::before {
    content: "Yeay!";
}
.fb-alert-wrapper p::after {
    background-image: url(../images/sad.png);
}
.fb-alert-wrapper .fb-success::after {
    background-image: url(../images/happy.png);
}
.fb-alert-wrapper .fb-success {
    box-shadow: 0px 0px 30px 0px rgba(18, 224, 215, 0.1), inset 0px -5px 0px #54cc7c;
}
.fb-funnel-boxes {
    min-height: 180px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
ul .elementor-icon-list-item {
    list-style: none;
}