/* DISPLAY */

.dm-none {
    display: none;
}

.dm-visible {
    visibility: visible !important;
}

.dm-top-none {
    top: 0;
}

.dm-margin-none {
    margin: 0 !important;
}

.dm-padding-none {
    padding: 0 !important;
}

.dm-padding-bottom-less {
    padding-bottom: 10px;
}

.dm-padding-bottom-more {
    padding-bottom: 27px;
}

.dm-left {
    float: left;
}

.dm-right {
    float: right;
}

.dm-clear {
    clear: both;
}

.dm-line-height {
    line-height: 35px;
}


/* CODE */

.dm-code {
    padding-bottom: 10px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 20px;
}


/* COLORS */

.dm-text-green {
    color: #3ab44a;
}

.dm-text-orange {
    color: #ff6600;
}

.dm-text-red {
    color: #ed1f24;
}

.dm-text-yellow {
    color: #e7b416;
}

.dm-text-grey {
    color: grey;
}

.dm-bg-green {
    background-color: #3ab44a;
}

.dm-bg-orange {
    background-color: #ff6600;
}

.dm-bg-light-grey {
    background-color: #bababa;
}

.dm-border-green {
    border-color: #3ab44a;
}

.dm-border-red {
    border-color: #ed1f24;
}

.dm-border-yellow {
    border-color: #e7b416;
}

.dm-border-grey {
    border-color: grey;
}


/* TEXT */

.dm-text-center {
    text-align: center;
}

.dm-text-small {
    font-size: .8em;
}

.dm-text-smallest {
    font-size: .7em;
}

.dm-text-no-transform {
    text-transform: none;
}

.dm-break-word {
    overflow-wrap: break-word;
}


/* BUTTONS */

.dm-button {
    top: 0px;
    padding: 15px 22px;
    letter-spacing: normal;
    line-height: normal;
}

.dm-button-icon {
    position: relative;
}

.dm-button-icon .dm-button-icon-inner {
    display: inline-block;
    padding-right: 25px;
}

.dm-button-icon .dm-button-icon-inner .dm-icon {
    position: absolute;
    top: 5px;
    right: 12px;
}


/* TAGS */

.dm-tag {
    display: inline-block;
    border-radius: .25rem;
    padding: 4px 6px;
    background-color: #000000;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    line-height: 1;
    color: #ededed;
    font-size: .8em;
}


/* FORMS */


/* This selector is so long so we can override the theme selectors. */

body .dm-form .dm-invalid-form-input label span.text span.text-inner {
    color: #ff6600 !important;
}

body .dm-form .dm-invalid-form-input label:before,
body .dm-form .dm-invalid-form-input label:after {
    border-color: #ff6600 !important;
}


/* TABLES */

.dm-fit-table-wrap {
    overflow-x: auto;
}

.dm-fit-table {
    table-layout: fixed;
    width: 100%;
}

.dm-cut-table-cell {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* TOGGLE STATES */

.toggle.dm-valid {
    margin-bottom: 3px !important;
}

.toggle.dm-valid h3 a i {
    color: #00C566;
}

.toggle.dm-valid.open h3 a i {
    color: inherit;
}

.toggle.dm-invalid {
    margin-bottom: 3px !important;
}

.toggle.dm-invalid h3 a i {
    color: #ff6600;
}

.toggle.dm-invalid.open h3 a {
    background-color: #ff6600 !important;
}

.toggle.dm-invalid.open h3 a i {
    color: inherit;
}


/* PROGRESS BARS */

.dm-bar .dm-bar-title {
    padding-bottom: 2px;
}

.dm-bar .dm-bar-wrap {
    margin-bottom: 13px;
    background-color: rgba(0, 0, 0, 0.043);
}

.dm-bar .dm-bar-progress {
    position: relative;
    display: block;
    height: 14px;
    background-color: #3ab44a !important;
    transition: width .5s;
}

.dm-bar .dm-bar-percent {
    position: absolute;
    right: 0;
    top: -23px;
    padding: 4px 0 !important;
    line-height: 12px !important;
    font-size: 11px !important;
    font-weight: 600;
}


/* LISTS */

.dm-list-icon {
    height: 100%;
    line-height: 26px;
}


/* This selector is so long so we can override the theme selectors. */

.nectar-fancy-ul ul li i.dm-list-icon-centered {
    width: 38px !important;
}


/* TIPS */

.dm-tip {
    cursor: pointer;
    color: #3ab44a;
}

.dm-tip-content {
    max-width: 280px;
    padding: 6px;
    text-align: left;
}


/* SECTIONS */

.dm-section {
    border: solid #f0f0f0;
}

.dm-section-toggle {
    display: inline-block;
    width: 100%;
}

.dm-section-heading {
    padding-left: 20px;
    line-height: 32px;
}


/* TRANSITIONS */

.fade-enter-active,
.fade-leave-active {
    transition: all .5s;
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.horizontal-next-enter-active,
.horizontal-next-leave-active,
.horizontal-prev-enter-active,
.horizontal-prev-leave-active {
    transition: all .25s;
}

.horizontal-next-enter,
.horizontal-next-leave-active,
.horizontal-prev-enter,
.horizontal-prev-leave-active {
    opacity: 0;
}

.horizontal-next-enter {
    transform: translateX(100%);
}

.horizontal-next-leave-active {
    transform: translateX(-100%);
}

.horizontal-prev-enter {
    transform: translateX(-100%);
}

.horizontal-prev-leave-active {
    transform: translateX(100%);
}


/* EXPAND HINT AND TOGGLE BUTTONS */

.dm-expand-hint {
    padding: 3px 0 8px 2px;
}

@media only screen and (min-width: 691px) {
    .dm-expand-hint {
        float: left;
        padding-bottom: 0;
    }
    .dm-toggle-buttons {
        float: right;
    }
    .dm-toggle-buttons .nectar-button {
        float: right;
        margin-left: 4px;
        margin-bottom: 4px;
    }
}


/* DOMAIN CHECKER BOXES */

.dm-box {
    border: 1px solid;
}

.dm-box-icon {
    width: 43px;
    height: 43px;
    border: 2px solid;
    border-radius: 50%;
    line-height: 39px;
    font-size: 26px;
}

.dm-box-green .dm-box {
    color: #018908;
    border-color: #018908;
}

.dm-box-yellow .dm-box {
    color: #e7b416;
    border-color: #e7b416;
}

.dm-box-red .dm-box {
    color: #ed1f24;
    border-color: #ed1f24;
}

.dm-box .dm-box-title {
    line-height: 44px;
    font-size: 30px;
    font-weight: 600;
}

.dm-box .dm-box-content {
    padding: 10px 0 !important;
}


/* DOMAIN CHECKER CTA */

@media only screen and (max-width: 999px) {
    .dm-inspect-domain-cta .col.wpb_column.column_container {
        margin: 0;
    }
    .dm-inspect-domain-cta .dm-cta-title {
        padding-top: 30px;
    }
    .dm-inspect-domain-cta .dm-cta-button {
        margin-bottom: 30px !important;
    }
}

/* ALERTS */

.dm-alert {
    position: relative;
    padding: 20px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 12px;
}

.dm-alert h3,
.dm-alert h5 {
  margin-bottom: 15px;
}

.dm-alert-success {
    border-color: #000000;
}

.dm-alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.dm-alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* ICONS */

.icon-plus-sign {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4IDBWMzYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMiIvPgo8cGF0aCBkPSJNMzYgMThMLTMuNTc2MjhlLTA3IDE4IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiLz4KPHJlY3QgeD0iMTMuNzU3OCIgeT0iMTgiIHdpZHRoPSI2IiBoZWlnaHQ9IjYiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxMy43NTc4IDE4KSIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==");
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon-minus-sign {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDI0IDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K");
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.dm-button-icon-inner .dm-icon {
  margin-top: 12px;
}
