/*
 * hypertheme 1.9.1
 */

/* Fix for container within navbar on small viewports, for Firefox and Chrome.
This may but be necessary when Bootstrap 4 is improved after alpha. */

@media (max-width: 575px) {
    .navbar > .container {
        position: static;
        width: 100%;
    }
}




/* Max content widths */

.size-auto, 
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
    max-width: 100%;
    height: auto
}

/* Navbar */

.navbar-topbar {
    border-radius: 0;
}

.navbar .dropdown-menu li {
    width: 100%;
    margin-left: 0 !important;
}

.navbar .dropdown-menu {
    margin-top: 0;
}
.navbar .menu-item .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Main content */

#content article {
    margin: 0;
}
#content header {
    margin: 20px 0;
}
#content section {
    margin-bottom: 0;
}
#content footer {
    padding-bottom: 20px;
}

/* Sidebar */

.sidebar {
    margin-top: 20px
}
.sidebar section {
    margin-bottom: 40px
}
.sidebar ul,
.sidebar ol {
    list-style-type: none;
    padding: 0
}
.sidebar li {
    margin: 10px 0
}

/* Hide form placeholders on focus */

input:focus::-webkit-input-placeholder { color: transparent; }
input:focus:-moz-placeholder { color: transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color: transparent; } /* FF 19+ */
textarea:focus::-webkit-input-placeholder { color: transparent; }
textarea:focus:-moz-placeholder { color: transparent; } /* FF 4-18 */
textarea:focus::-moz-placeholder { color: transparent; } /* FF 19+ */ 

/* Comments */

#respond {
    margin-top: 40px
}
ol.commentlist {
    counter-reset: li; /* Initiate a counter */
    padding: 0
}
ol.commentlist ul {
    padding: 0
}
ol.commentlist > li {
    position: relative;
    margin: 0 0 20px 0;
    list-style: none /* Disable the normal item numbering */
}
ol.commentlist > li:before {
    content: "Thread " counter(li); /* Use the counter as content */
    counter-increment: li; /* Increment the counter by 1 */
    position:absolute;    
    top: 0;
    right: 0;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom-left-radius: 4px;
    padding: 5px 20px 5px 10px;
    color: #999
}
ol.commentlist li ol,
ol.commentlist li ul {
    list-style-type: none;
    margin: 0
}

.commentlist li li {
    background: #f9f9f9;
}
.commentlist li li li {
    background: #fff
}
.commentlist li li li li {
    background: #f9f9f9
}
.commentlist li li li li li li {
    background: #fff
}
.commentlist li {
    padding: 20px
}
.commentlist ul li {
    margin-top: 20px;
    margin-bottom: 0
}
.reply p {
    margin: 0
}

/* Site footer */

.site-footer {
    padding: 40px 0
}
.site-footer ul,
.site-footer ol {
    list-style-type: none;
    padding: 0
}
.site-footer li {
    margin: 10px 0
}
.site-sub-footer p {
    text-align: center
}

.site-footer p {
    text-align: center
}



h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}




/**
 * spacing for toolpage
 */
.huge-space {
    padding-top: 6rem;
}

.background-startpage {
    min-height: 100vh;
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #1568BA 47%, #0A37B0 82%);
    background-attachment: fixed;
    transition: padding-top 1s;
    padding-top: 15vh;
}
@media only screen and (max-width: 750px) {
    .background-startpage {
        padding-top: 30px;
    }
}

.tool-wrapper {
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.tool-logo {
    text-align: center;
}
.tool-logo img {
    width: 100%;
    max-width: 300px;
}
.tool-logo .logo-subline {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}



/**
 * Hide tool-loader
 */
.tool-loader {
    display: none;
}
.tool-loader .spinner-layer {
    border-color: #0d47a1;
}
.tool-loader .progress-bar {
    width: 0%;
    transition: all 7s linear;
}
.tool-loader .progress-bar.progress-bar-loading {
    width: 100%;
}



/**
 * Tab fix for justified
 */
.classic-tabs .nav {
    z-index: 1;
}
.classic-tabs .nav li:first-child {
    margin-left: 0;
}
.classic-tabs .nav li {
    -webkit-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
}
.tabs-wrapper li .active {
    background-color: rgba(255,255,255,0.05);
}
.classic-tabs .nav li a {
    padding: 20px 15px;
}
@media only screen and (max-width: 450px) {
    .classic-tabs .nav li a {
        padding: 20px 10px;
    }
}
.tab-content .tab-info-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
}


/**
 * Checkboxes for filter
 */
#result-table {
    margin-bottom: 0;
}
#result-table .checkbox input[type="checkbox"] {
    display: none;
}
#result-table .checkbox label {
    margin: 0;
}
#result-table .checkbox label .custom-checkbox {
    content: "";
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 2px solid #ccc;
    background-color: #fff;
    vertical-align: middle;
    box-sizing: border-box;
    transition: all 0.5s ease;
}
#result-table .checkbox label:hover .custom-checkbox {
    border-color: #4285f4;
}
#result-table .checkbox label input:checked + .custom-checkbox  {
    background-color: #4285f4;
    border-color: #4285f4;
}
#result-table .checkbox label input:checked + .custom-checkbox::before  {
    content: "\f00c";
    font-family: FontAwesome;
    color: #fff;
    position: absolute;
    top: -2px;
    width: 20px;
    left: 1px;
}
#result-table td,
#result-table th {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#result-table .monthly_searches .monthly-searches-bar {
    width: 4px;
    margin-right: 1px;
    display: inline-block;
    vertical-align: bottom;
    background-color: #c1d2db;
    border-radius: 2px 2px 0 0;
}
#result-table .monthly_searches .monthly-searches-bar:hover {
    background-color: #7bb3d1;
}
#result-table .monthly-searches-wrapper {
    height: 1rem;
    white-space: nowrap;
}

#result-table td.psv {
    width: 10%;
}
#result-table td .progress,
#result-table td .progress-bar {
    height: 8px;
}

#result-table tr .result-external-link {
    float: right;
}
#result-table tr .result-external-link i {
    visibility: hidden;
    color: #bbb;
}
#result-table tr:hover .result-external-link i {
    visibility: visible;
    color: #bbb;
}
#result-table tr .keyword {
    font-weight: bold;
}
#result-table tr .single-keyword {
    font-weight: normal;
    color: #666;
}
#result-table tbody tr:hover,
#result-table tfoot tr:hover {
    background-color: #f6f6f6;
}
@media only screen and (max-width: 540px) {
    #result-table th[data-sort="question"],
    #result-table td.question,
    #result-table th[data-sort="extension"],
    #result-table td.extension,
    #result-table th[data-sort="type"],
    #result-table td.type {
        display: none;
    }
}
#result-table thead th {
    cursor: pointer;
    white-space: nowrap;
}
#result-table thead th:hover {
    background-color: #f5f5f5;
}
#result-table thead th:first-child:hover {
    background-color: transparent;
}
#result-table thead th::before {
    font-family: FontAwesome;
    content: "\f0dc";
    color: #ddd;
    margin-right: 10px;
    display: inline-block;
}
#result-table thead th.asc::before {
    font-family: FontAwesome;
    content: "\f0de";
    color: #4285f4;
    display: inline-block;
}
#result-table thead th.desc::before {
    font-family: FontAwesome;
    content: "\f0dd";
    color: #4285f4;
    display: inline-block;
}
#result-table thead th:first-child::before {
    font-family: FontAwesome;
    content: "";
    display: none;
}

#limitation-table tbody td {
    color: transparent!important;
    text-shadow: 0 0 12px #000!important;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}
@media only screen and (max-width: 540px) {
    #limitation-table td.question,
    #limitation-table td.extension,
    #limitation-table td.type {
        display: none;
    }
}

.limitation-message {
    background-color: rgba(255,255,255,0.25);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
}

.superscript-indent {
    padding-left: 14px;
    position: relative;
    display: inline-block;
    margin-bottom: 0.3rem;
}
.superscript-indent .superscript {
    position: absolute;
    left: 0;
    top: -0.1rem;
    font-size: 0.7rem;
}


.tool-header .speech-bubble {
    background-color: #4486c8;
    position: relative;
}
.tool-header .speech-bubble .anchor {
    background-color: #4486c8;
    width: 50px;
    height: 50px;
    transform: rotate(45deg);
    position: absolute;
    left: -5px;
    top: 30px;
}
@media only screen and (max-width: 770px) {
    .tool-header .speech-bubble .anchor {
        left: calc(50% - 25px);
        top: 0px;
    }
}
.tool-header .speech-bubble .card-body {
    z-index: 1;
}
.tool-header .speech-bubble a.btn:hover {
    color: #fff;
}



/**
 * Featured in
 */
#knownFrom {
    box-shadow: 10px 0 20px rgba(0,0,0,0.1);
}



/**
 * section frequently-asked-questions
 */
section#frequently-asked-questions {
    background-color: #f3f9fc;
    padding: 1rem 0 2rem 0;
    margin: 2rem 0;
}
#frequently-asked-questions-accordion .card {
    border-bottom: none;
    margin-bottom: 10px;
}



/**
 * tool statistics
 */
.tool-statistics .btn {
    background-color: transparent;
}

.accordion .card .card-body {
    font-size: 1rem;
}


/** 
 * MDB 4.5.2 fix
 */
.tab-content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.classic-tabs li a {
    border-bottom: 3px solid transparent;
}
.classic-tabs .nav li a:not(.active) {
    margin-bottom: 0;
}




.um-account-tab.um-account-tab-terms #um_account_submit {
    display: none;
}


.checkbox-primary-filled [type="checkbox"][class*="filled-in"]:checked + label::after  {
    background-color: #4285f4;
    border-color: #4285f4;
}

.background-pricing {
    background-color: rgb(243, 249, 252);
}

#license-count.form-control {
    color: inherit;
    font-size: 1.2rem;
    font-weight: bold;
}


.billing-period-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.billing-period-form {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.billing-period-form .billing-period-form-inner {
    display: inline-block;
    text-align: left;
}
.billing-period-form .billing-period-form-inner label {
    font-size: 1.2rem;
}

.pricing-modules .form-check-input[type="checkbox"] + label {
    padding-left: 1rem;
    height: 1rem;
}

.pricing-modules td.checkbox {
    width: 70px;
}
.pricing-modules .module-name {
    font-size: 1rem;
    font-weight: bold;
}

hr.price-seperator {
    border-width: 3px;
    border-color: #dee2e6;
}

#calculated-price.price,
td.module-price .price {
    font-weight: bold;
    font-size: 2.4rem;
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    padding-left: 0.8rem;
}
#calculated-price.price::before,
td.module-price .price::before {
    content: '€';
    position: absolute;
    top: 0.4em;
    left: -0.5rem;
    font-size: 0.6em;
    color: #6c757d;
}
#calculated-price.price .cents,
td.module-price .price .cents {
    display: inline-block;
    font-size: 0.5em;
    margin-top: 0.4em;
    margin-left: 0.2em;
}
#calculated-price.price .per-month,
td.module-price .price .per-month {
    display: inline-block;
    font-size: 0.5em;
    margin-top: 0.4em;
    margin-left: 0.2em;
}
#calculated-price.price .sign,
td.module-price .price .sign {
    display: inline-block;
    font-size: 0.5em;
    margin-top: 0.4em;
    margin-left: 0.2em;
}

td.module-price .price {
    font-size: 1.6rem;
    padding-left: 0.3rem;
}
td.module-price .price::before {
    top: 0.25em;
}
td.module-price {
    white-space: nowrap;
    text-align: right;
    padding-right: 30px;
}


#network-selection tr.selected td:nth-child(2) {
    font-weight: bold;
}


[data-price-table] {
    animation-duration: .5s;
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.025, 1.025, 1.025);
    transform: scale3d(1.025, 1.025, 1.025); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.025, 1.025, 1.025);
    transform: scale3d(1.025, 1.025, 1.025); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }



/**
 * known from
 */
/*.known-from-background {
    background-color: rgb(243, 249, 252);
}*/



/**
 * MDB Extension - Switch
 */
.switch.primary-switch label input[type=checkbox]:checked + .lever {
    background-color: #689DF6;
}
.switch.primary-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #4285F4;
}
.switch.default-switch label input[type=checkbox]:checked + .lever {
    background-color: #4DCCBF;
}
.switch.default-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #2BBBAD;
}
.switch.secondary-switch label input[type=checkbox]:checked + .lever {
    background-color: #C791E2;
}
.switch.secondary-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #a6c;
}
.switch.success-switch label input[type=checkbox]:checked + .lever {
    background-color: #2ACC6C;
}
.switch.success-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #00C851;
}
.switch.info-switch label input[type=checkbox]:checked + .lever {
    background-color: #59C3EB;
}
.switch.info-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #33b5e5;
}
.switch.warning-switch label input[type=checkbox]:checked + .lever {
    background-color: #FFA339;
}
.switch.warning-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #F80;
}
.switch.danger-switch label input[type=checkbox]:checked + .lever {
    background-color: #FF606F;
}
.switch.danger-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #ff3547;
}
.switch.teal-switch label input[type=checkbox]:checked + .lever {
    background-color: #b2dfdb;
}
.switch.teal-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #80cbc4;
}
.switch.pink-switch label input[type=checkbox]:checked + .lever {
    background-color: #f8bbd0;
}
.switch.pink-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #f48fb1;
}
.switch.blue-switch label input[type=checkbox]:checked + .lever {
    background-color: #b3e5fc;
}
.switch.blue-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #81d4fa;
}
.switch.amber-switch label input[type=checkbox]:checked + .lever {
    background-color: #ffe082;
}
.switch.amber-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #ffd54f;
}
.switch.mdb-color-switch label input[type=checkbox]:checked + .lever {
    background-color: #618FB5;
}
.switch.mdb-color-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #3F729B;
}
.switch.indigo-switch label input[type=checkbox]:checked + .lever {
    background-color: #9fa8da;
}
.switch.indigo-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #7986cb;
}
.switch.blue-white-switch label input[type=checkbox]:checked + .lever {
    background-color: #2196f3;
}
.switch.blue-white-switch label input[type=checkbox]:checked + .lever:after {
    background-color: #fff;
}
.switch.blue-white-switch label .lever  {
    background-color: #ccc;
}
.switch.blue-white-switch label .lever:after {
    background-color: #fff;
}
.switch.round label .lever {
    width: 54px;
    height: 34px;
    border-radius: 10em;
}
.switch.round label .lever:after {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    left: 4px;
    top: 4px;
}
.switch.square label .lever {
    width: 54px;
    height: 34px;
    border-radius: 0px;
}
.switch.square label .lever:after {
    width: 26px;
    height: 26px;
    border-radius: 0px;
    left: 4px;
    top: 4px;
}


/**
 * Spinners fix for Webkit browsers
 */
input[type='number'] {
    -moz-appearance:textfield;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}




/**
 * Footer Menu
 */
ul.footer-menu {
    padding: 0px;
}
ul.footer-menu li {
    list-style: none;
    width: 100%;
    display: inline-block;
    padding: 5px 0;
    margin: 0;
}


/**
 * equal hight cards
 */
.row.equal-height {
    display: flex;
    flex-wrap: wrap;
}
.row.equal-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
.row.equal-height .card,
.row.equal-height .alert {
    flex: 1;
}




/**
 * feature list
 */
#feature-list .feature-item {
    margin-top: 10rem;
    padding: 1rem 2rem;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.1);
    border-left: 6px solid #0062cc;
    border-radius: 6px 0 0 6px;
}
#feature-list .feature-image {
    display: block;
    width: 160px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: -6rem;
}

#feature-list .feature-list-even .feature-item:first-child .feature-image {
    margin-bottom: 24px;
}
@media only screen and (min-width: 770px) {
    #feature-list .feature-item {
        margin-top: 9rem;
    }
    #feature-list .feature-list-even .feature-item:first-child {
        margin-top: 0;
    }
}
.headline-bottom-line {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    display: inline-block;
}



/**
 * Testimonials
 */
#testimonials .line-wrapper {
    width: 100%;
}
#testimonials .line-wrapper .line-icon {
    max-width: 120px;
    margin-top: -80px;
    border: 5px solid #fff;
    border-radius: 50%;
    background-color: #fff;
}



/**
 * Section category, single, archive
 */
.header-background {
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #1568BA 47%, #0A37B0 82%);
    background-attachment: fixed;
}
.header-banner {
    color: #fff;
    padding: 5rem 0;
}
.header-banner a,
.header-banner a:hover {
    color: #fff;
}
.header-banner .single-title-by {
    font-size: 0.9rem;
}
.header-banner .single-title-author {
    font-weight: 400;
    font-size: 1.1rem;
}
.header-banner .single-title-author img {
    border-radius: 50%;
}



/**
 * Single content
 */
.single-content {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 4rem;
    line-height: 2rem;
}
.single-content p {
    margin-bottom: 2rem;
}
.single-content h2::after {
    content: '';
    width: 30px;
    display: block;
    height: 4px;
    border-radius: 2px;
    background-color: #4285f4;
    margin: 0.9rem 0 1.5rem 0;
}


/**
 * MDB checkbox
 */
[type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
    opacity: 1;
}
.form-check [type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
    opacity: 0;
}



/**
 * Divi Page Builder CSS
 */
.et-boc h1,
.et-boc h2,
.et-boc h3,
.et-boc h4,
.et-boc h5,
.et-boc h6,
.et-boc p {
    font-family: Roboto;
}
.et-boc p {
    font-size: 1.1rem;
}
.et-boc p strong {
    font-weight: 700;
}

@media all and (max-width: 980px) {
    /*** wrap row in a flex box ***/
    .custom-row {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap; /* Safari 6.1+ */
        flex-wrap: wrap;
    }

    /*** custom classes that will designate the order of columns in the flex box row ***/
    .first-on-mobile {
        -webkit-order: 1;
        order: 1;
    }

    .second-on-mobile {
        -webkit-order: 2;
        order: 2;
    }

    .third-on-mobile {
        -webkit-order: 3;
        order: 3;
    }

    .fourth-on-mobile {
        -webkit-order: 4;
        order: 4;
    }
    /*** add margin to last column ***/
    .custom-row:last-child .et_pb_column:last-child {
        margin-bottom: 30px;
    }

}