/*
  Description: EW general CSS
  Version: 2.0.0
  Author: Bjorn Joosen
  Author URI: https://enjoyitwebdesign.nl
 */

/* GENERAL */
.etoolkit-divider {
    clear: both;
    display: block;
}

.no-margin {
    margin: 0 !important;
}

.etoolkit-anchor {
    display: block;
    position: relative;
    top: -28px;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}

.color-white,
.color-white h1,
.color-white h2,
.color-white h3,
.color-white h4,
.color-white h5,
.color-white h6,
.color-white p,
.etoolkit-color-white {
    color: #fff;
}

.etoolkit-color-red {
    color: rgba(188, 0, 3, 1);
}

.etoolkit-small {
    font-size: 0.7em;
    line-height: 0.7em;
}

body h1,
body h2,
body h3,
body p {
    margin-bottom: 20px;
}

p.p-large,
.p-large p {
    font-size: 1.3em !important;
    line-height: 1.3em !important;
}

.vc_row.background-pos-bottom-center {
    background-position: bottom center;
}

/* SWEETALERT */
.swal2-container :focus {
    outline: none;
}

/* QTIP */
.qtip.etoolkit-tip {
    max-width: 400px;
}

/* ALERTS */
.etoolkit-alert {
    display: block;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    line-height: 17px;
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.etoolkit-alert.alert-small {
    padding: 4px 15px;
    font-size: 14px;
    line-height: 17px;
}

.etoolkit-alert.etoolkit-alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.etoolkit-alert.etoolkit-alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.etoolkit-alert.etoolkit-alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

body .woocommerce .woocommerce-error,
.etoolkit-alert.etoolkit-alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* BUTTONS */
.etoolkit-btn {
    display: inline-block;
    line-height: 24px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: 0 2px 0 0;
    padding: 0;
    background: rgba(0, 115, 170, 0.8);
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.etoolkit-btn:hover {
    background: rgba(0, 115, 170, 1);
}

.etoolkit-btn i {
    margin: 0 2px 0 4px;
}

.etoolkit-btn.small {
    line-height: 20px;
    font-size: 14px;
    text-align: center;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 4px 10px;
}

.etoolkit-icon-btn {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 3px;
    margin: 0 2px 0 0;
    padding: 0;
    background: rgba(0, 115, 170, 0.8);
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.etoolkit-icon-btn:hover {
    background: rgba(0, 115, 170, 1);
}

a.etoolkit-icon-btn:hover,
a.etoolkit-icon-btn:focus,
a.etoolkit-icon-btn:active,
a.etoolkit-icon-btn:visited {
    color: #fff;
}

.etoolkit-icon-btn.small {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    border-radius: 3px;
    margin: 0 2px 0 0;
    padding: 0 6px;
}

.etoolkit-icon-btn.small.icon-only {
    width: 24px;
    padding: 0;
}

.etoolkit-icon-btn.small.icon-only i {
    margin: 0 !important;
}

.etoolkit-icon-btn.bg-red {
    background: rgba(188, 0, 3, 0.8) !important;
}

.etoolkit-icon-btn.bg-red:hover {
    background: rgba(188, 0, 3, 1) !important;
}

.etoolkit-icon-btn.bg-green {
    background: rgba(125, 183, 47, 0.8) !important;
}

.etoolkit-icon-btn.bg-green:hover {
    background: rgba(125, 183, 47, 1) !important;
}

/* MARGINS */
.margin-b-10 {
    margin-bottom: 10px !important;
}

.margin-b-20 {
    margin-bottom: 20px !important;
}

/* ANIMATIONS */
.etoolkit-warning-pulse {
    animation-name: etoolkit_warning_pulse;
    animation-duration: 3000ms;
    transform-origin: 70% 70%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

/* ANIMATION KEYFRAMES */
@keyframes etoolkit_warning_pulse {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.12);
    }

    50% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.12);
    }

    80% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}