.kmp-breadcrumb {
    display: none;
}

p.note-text {
    font-size: 14px;
    text-align: center;
    margin: 0 20px 40px;
}

#messageNotifyFailure,
#messageNotifySuccess {
    background-color: #FF6A6A;
    border-radius: 0 0 3px 3px;
    color: #ffffff;
    height: auto;
    min-width: 250px;
    padding: 8px 10px;
    width: auto;
    z-index: 10000000 !important;
    position: absolute;
    top: 0%;
    left: 50%;
    margin-left: -1%;
    margin-top: 65px ! important;
}


/* loading bar and alert bar from previous web page */

.alert {
    z-index: 100000;
    padding: 20px 15px 20px 20px;
    background-color: #424242;
    color: #000;
    border-radius: 5px;
    position: relative;
    min-width: 350px;
    max-width: 455px;
    display: inline-block;
    box-shadow: 0px 3px 6px #00000030;
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.alert::before {
    content: none;
    position: absolute;
    width: 57px;
    height: 4px;
    background-color: #f5c644;
    bottom: 32px;
    left: -19px;
    border-radius: 30px;
    transform: rotate(90deg);
}

.closebtn {
    /* margin-left: 15px; */
    color: #6c6c6c;
    font-weight: bold;
    /* float: right; */
    font-size: 25px;
    line-height: 11px;
    cursor: pointer;
    transition: 0.3s;
    vertical-align: middle;
    position: relative;
    top: 20px;
    position: absolute;
    right: -10px;
    top: -10px;
    color: #fff;
    border: 1px solid #020202;
    display: block;
    padding: 6px;
    border-radius: 50%;
    background: #000;
}

.closebtn:hover {
    color: black;
}

.line {
    width: 10px;
    background: #F6C644;
    display: none;
}

.alert img {
    vertical-align: middle;
    margin-right: 10px;
    margin-left: 0;
    width: 40px;
}

.alert-msg {
    display: inline-block;
    min-width: 20px;
    max-width: 310px;
    margin-left: 0px;
    position: relative;
    top: 3px;
    color: #fff;
    font-family: var(--primaryfont-semibold);
}


/* loading bar */

#loadingDiv {
    width: 0;
}

#loadingDiv.loader-line {
    width: 100%;
    height: 3px;
    position: fixed;
    top: 0px;
    overflow: hidden;
    background-color: #ddd;
    /* margin: 51px auto; */
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    /* background-color: #0fbc82; */
    z-index: 1000000;
}

.loader-line:before {
    content: "";
    position: fixed;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: #0fbc82;
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}


/* vulnerable page loading button*/

.load-container {
    /* position: relative; position: fixed;
width: 100vw; height: 100vh; */
}

.load-container img {
    height: 200px;
}

.centered {
    width: max-content;
    margin: 0 auto;
    text-align: center;
    /* transform: translate(-50%, 0%); */
}

.progress-bar {
    position: relative;
    height: 12px;
    width: 290px;
    border: 2px solid #000;
    border-radius: 25px;
}

.progress-fill {
    position: absolute;
    height: 8px;
    width: 0%;
    animation: progress-forward 50s linear forwards;
    background: #10BC83;
    border-radius: 15px;
}

.completeAnimation:before {
    width: 100%;
}

@keyframes progress-forward {
    0% {
        width: 0%;
    }
    5% {
        width: 5%;
    }
    10% {
        width: 10%;
    }
    15% {
        width: 15%;
    }
    25% {
        width: 33%;
    }
    50% {
        width: 50%;
    }
    70% {
        width: 75%;
    }
    90% {
        width: 90%;
    }
    100% {
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .free-tools-wrap .container {
        display: block;
    }
    .free-tools-nav {
        max-width: 100%;
        margin: 0 0 40px;
    }
    .free-tools-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .free-tools-nav li {
        border: none;
    }
    .free-tools-contain {
        max-width: 500px !important;
        width: 100%;
        padding-left: 0 !important;
        border: none !important;
        margin: 0 auto;
    }
    .drag-drop-wrap {
        width: 100%;
        max-width: 500px;
        height: auto;
        padding: 30px;
    }
    #csrParsedContent,
    #export_page {
        padding: 0 0 0;
        border-left: none;
        min-height: auto !important;
    }
    .table-container {
        overflow: hidden;
        overflow: auto;
    }
    .form-wrapper-1,
    .form-wrapper-2 {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        max-width: 500px;
        width: 100%;
    }
    .free-tools-wrap {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 520px) {
    .table-container table {
        width: 500px !important;
        overflow: hidden;
        overflow-x: auto;
    }
    #export_page {
        text-align: center;
    }
	.kmp-footer-wrap h2 {
	    font-size: 26px;
	}
}