* {
    padding: 0;
    margin: 0;
    -webit-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Cairo', sans-serif;
    color: #333;
    font-size: 14px;
}

img {
    max-width: 100%;
    height: auto;
}

li {
    list-style-type: none;
}

#wrap {
    min-height: 100vh;
    padding-bottom: 50px;
    position: relative;
}

.main-layout {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

h1,
h2 {
    font-size: 26px;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #445e6d;
    font-weight: 600;
}

h5 {
    font-size: 15px;
    font-weight: 600;
}


.has-error .help-block{
    font-size: 12px;
    padding-top: 7px;
    color: #953b39;
    font-weight: 500;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}


input {
    font-family: 'Open Sans', 'Cairo', sans-serif;
    border: 1px solid #e4ecf0;
    height: 42px;
    width: 100%;
    padding: 0 15px;
    color: #738ca0;
    outline: none !important;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input[type='submit'],
button[type='submit']{
    background: #0a78b7;
    border: 2px solid #0a78b7;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    margin-top: 13px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    max-width: 175px;
}
button[type='submit']{
    text-transform: unset;
}
input[type='submit']:hover,
button[type='submit']:hover{
    border-color: #0a78b7;
    color: #0a78b7;
    background: #fff;
}

.ladda-button[disabled],
.ladda-button[disabled]:hover,
.ladda-button[data-loading],
.ladda-button[data-loading]:hover {
    cursor: default;
    background-color: #72a4d2;
}


input::-webkit-input-placeholder {
    color: #738ca0;
}

input::-moz-placeholder {
    color: #738ca0;
}

input:-ms-input-placeholder {
    color: #738ca0;
}

input:-moz-placeholder {
    color: #738ca0;
}

/***** LOGIN *****/
.login {
    background: #eeefef;
    color: #666;
    font-weight: 300;
}

.login .logo {
    margin-left: 35%;
    text-decoration: none;
    color: #0b85c3;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.login .logo img {
    width: 110px;
}

.login .logo span {
    display: block;
    line-height: 21px;
    padding-top: 15px;
}

.login-form-container {
    width: 100%;
    max-width: 370px;
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.login-form-container .form-wrap {
    background: #fff;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0 25px 25px;
    margin-top: 40px;
}

.login-form-container .form-wrap .title {
    padding: 20px;
    background: #363a4a;
    color: #fff;
    margin: 0 -25px 25px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}

.login-form-container .form-wrap p {
    margin-bottom: 15px;
}

.login-form-container .form-wrap > p {
    text-align: left;
}

.login-form-container .form-wrap input {
    width: 100%;
    height: 50px;
    padding: 0 25px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 15px;
}

.login-form-container .form-wrap input::-webkit-input-placeholder {
    color: #71798d;
}

.login-form-container .form-wrap input::-moz-placeholder {
    color: #71798d;
}

.login-form-container .form-wrap input:-ms-input-placeholder {
    color: #71798d;
}

.login-form-container .form-wrap input:-moz-placeholder {
    color: #71798d;
}

.login-form-container .form-wrap input[type='submit'] {
    max-width: 100%;
}

.login-form-container .form-wrap input:not([type="submit"]) {
    border: 1px solid #eeeeee;
    color: #71798d;
}

.login-form-container .form-wrap input:not([type="submit"]):hover, .login-form-container .form-wrap input:not([type="submit"]):focus {
    background: #f0f3f4;
}

.login-form-container .form-wrap a {
    font-size: 14px;
    color: #71798d;
    text-decoration: none;
    display: inline-block;
    margin-top: 7px;
}

.login-form-container .form-wrap a.reg-link {
    color: #0a78b7;
}

/***** POPUP *****/
#popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}

#popup-wrap .popup-over {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#popup-wrap .popup-body {
    position: absolute;
    max-width: 800px;
    max-height: 90%;
    width: 90%;
    background: #f7f9fa;
    overflow: auto;
    padding: 60px;
    color: #4e6777;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

#popup-wrap .popup-body .close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

#popup-wrap .popup-body .close img {
    width: 23px;
}

#popup-wrap .popup-body p {
    margin-bottom: 60px;
    line-height: 2;
    font-size: 14px;
}

#popup-wrap .popup-body #original-source ,
#popup-wrap .popup-body #plagiarism-source ,
#popup-wrap .popup-body #source-author{
    margin-bottom: 20px;
}

#popup-wrap .popup-body #page-link {
    font-weight: bold;
    font-size: 16px;
}

#popup-wrap .popup-body .select-txt {
    background: #e74c3c;
    color: #fff;
}

#popup-wrap .popup-body form input {
    margin-bottom: 20px;
}

/***** HEADER *****/
header {
    background: #0a78b7;
    padding: 17px 0;
}

header a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

header a.logo img {
    width: 120px;
}

header a:hover {
    color: #fff;
    text-decoration: none;
}

header nav {
    float: right;
}

header nav ul {
    margin: 0;
}

header nav li {
    float: left;
    margin-right: 55px;
    line-height: 52px;
    position: relative;
}

header nav li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 2px;
    display: block;
    opacity: 0;
    background: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

header nav li a:hover:after {
    opacity: 1;
}

header nav li.active a:after {
    opacity: 1;
}

header nav li:last-child {
    margin-right: 40px;
}

header .manag-icons {
    float: right;
    line-height: 48px;
}

header .manag-icons img {
    height: 17px;
    width: auto;
}

header .manag-icons .icon-search {
    margin-left: 23px;
    font-size: 18px;
}

header .manag-icons .cart {
    position: relative;
    font-size: 18px;
}

header .manag-icons .cart .number {
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    line-height: 18px;
    color: #000;
    font-size: 11px;
    position: absolute;
    right: -6px;
    bottom: 0;
}

/***** DASHBOARD *****/
.upload-new-file {
    border: 1px solid #d1dbe2;
    padding: 28px 15px 15px;
    display: inline-block;
    width: 100%;
    color: #738ca0;
    margin-top: 18px;
}

.upload-new-file h4 {
    border-bottom: 1px solid #d1dbe2;
    padding-bottom: 15px;
}

.upload-new-file input,
.upload-new-file button{
    font-size: 13px;
}

.upload-new-file button[type='submit'],
.upload-new-file input[type='submit'] {
    width: 175px;
    float: right;
    margin: 27px 15px 0 0;
}

.upload-new-file form {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 25px;
}

.upload-new-file .form-group{
    width: 33.33%;
    float: left;
    padding: 0 15px;
}

.upload-new-file .form-group .help-message{
    font-size: 12px;
    padding-top: 7px;
}

.upload-new-file .has-error .help-message{
    display: none;
}

.upload-new-file .file-wrap {
    border: 1px solid #e4ecf0;
    height: 42px;
    width: 100%;
    position: relative;
}

.upload-new-file .file-wrap .input-file-container label{
    display: block;
    background: #7eb0db;
    color: #fff;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    width: 80px;
    height: 30px;
    top: 5px;
    right: 5px;
    position: absolute;
}

.upload-new-file .file-wrap .input-file-container .input-file {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    z-index: 5;
}

.upload-new-file .file-wrap .file-return {
    font-size: 12px;
    line-height: 42px;
    padding: 0 90px 0 15px;
    margin: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-new-file .file-wrap .file-return:before {
    content: "Upload file. Conditions are applied.";
}

.upload-new-file .file-wrap .file-return:not(:empty):before {
    content: '';
}

.uploaded-files {
    margin-top: 79px;
}

.uploaded-files h4 {
    border-bottom: 1px solid #d1dbe2;
    padding-bottom: 15px;
}

.uploaded-files .summary,.pagination{
    margin-top: unset !important;
}

.uploaded-files table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
    font-size: 14px;
    text-align: left;
}

.uploaded-files .summary {
    color: #445e6d;
    padding: 10px;
    font-size: 14px;
    margin-top: 50px;
}

.uploaded-files table th {
    color: #445e6d;
    padding: 10px;
    border-bottom: 1px solid #ebf0f5;
}

.uploaded-files table td {
    padding: 15px 10px;
    vertical-align: middle;
    width: 10%;
    border-bottom: 1px solid #ebf0f5;
    cursor: pointer;
}

.uploaded-files table td:first-child {
    width: auto;
}

.uploaded-files table td:nth-child(3) {
    font-weight: 700;
    font-size: 12px;
}

.uploaded-files table td:nth-child(4) {
    font-weight: 700;
    width: 13%;
}

.uploaded-files table td:last-child {
    width: 120px;
    cursor: auto;
}

.uploaded-files table tr:hover td {
    background: #f8fbfd;
}

.uploaded-files .start-btn {
    width: 100px;
    color: #596377;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #0a78b7;
    line-height: 30px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    display: inline-block;
    text-decoration: none;
}

.uploaded-files .progress {
    width: 100px;
    height: 10px;
    background: #e1e0e0;
    position: relative;
}

.uploaded-files .progress .progress-bar,
.uploaded-files .progress .progress-bg {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.uploaded-files .progress .progress-bg {
    background: #0a78b7;
    -webkit-animation: moveBar 2s linear forwards;
    animation: moveBar 2s linear forwards;
}

.uploaded-files .download,
.uploaded-files .edit,
.uploaded-files .remove {
    display: inline-block;
    position: relative;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    font-size: inherit;
}

.uploaded-files .download img,
.uploaded-files .edit img,
.uploaded-files .remove img {
    display: block;
}

.uploaded-files .download img {
    width: 22px;
}

.uploaded-files .edit {
    top: -2px;
    margin: 0 15px;
}

.uploaded-files .edit img {
    width: 17px;
}

.uploaded-files .remove {
    top: -4px;
}

.uploaded-files .remove img {
    width: 16px;
}

.uploaded-files .remove .tooltip {
    width: 200px;
    text-align: center;
    position: absolute;
    z-index: 5;
    background: #fff;
    border: 1px solid #e7edf1;
    color: #303030;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    line-height: 40px;
    left: 50%;
    margin-left: -100px;
    top: 30px;
    display: none;
}

.uploaded-files .remove .tooltip:before, .uploaded-files .remove .tooltip:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: -20px;
    border: 10px solid transparent;
    border-bottom: 10px solid #e7edf1;
}

.uploaded-files .remove .tooltip:before {
    border-bottom: 10px solid #fff;
    top: -19px;
    z-index: 2;
}

.uploaded-files .remove .tooltip em {
    font-style: normal;
    color: #0a78b7;
}

.uploaded-files .remove:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/icon-remove-hover.png) no-repeat 50% 50%/16px auto;
    display: none;
}

.uploaded-files .remove:hover .tooltip {
    display: block;
}

.uploaded-files .remove:hover:after {
    display: block;
}

@-webkit-keyframes moveBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes moveBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/***** INNER *****/
#content {
    display: inline-block;
    width: 100%;
    padding: 44px 0;
    min-height: 1600px;
}

.top-section {
    position: relative;
    padding: 16px;
}

.top-section p {
    color: #738ca0;
    font-size: 14px;
    margin-top: 13px;
}

.top-section .percentage-section{
    display: flex;
    justify-content: flex-start;
    gap: 36px;
}
.top-section .percent-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-section .percent {
    position: relative;
    color: #e74d3d;
    width: 100px;
    height: 100px;
    font-size: 24px;
}

.viewPercentTextSummery {
    width: auto;
    height: fit-content;
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.top-section + h4 {
    margin-bottom: 23px;
}

.sidebar {
    width: 30%;
}

.sidebar li {
    border-top: 1px solid #fff;
    position: relative;
    color: #fff;
    line-height: 47px;
}

.sidebar li .percent {
    padding: 0 8px;
}

.sidebar li .dropdown-btn:before {
    /*content: '';*/
    /*position: absolute;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*right: 0;*/
    /*width: 22px;*/
    /*background: rgba(0, 0, 0, 0.1);*/
}

.sidebar li .dropdown-btn:after {
    /*content: '';*/
    /*background: url(../images/icon-arrow.png) no-repeat 50% 50%/100% auto;*/
    /*width: 10px;*/
    /*height: 6px;*/
    /*position: absolute;*/
    /*top: 50%;*/
    /*margin-top: -3px;*/
    /*right: 6px;*/
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidebar li.menu-opened .dropdown-btn:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 23.5px;
}

.sidebar li a {
    color: #fff;
    display: block;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
}

.sidebar li a:hover {
    text-decoration: none;
}

/*.sidebar li .dropdown-list {*/
/*    display: none;*/
/*}*/

.reader {
    max-width: 68%;
    width: 68%;
}

#mainPanel * {
    max-width: 100% !important;
}

/* pagination */

.pagination {
    margin-top: 55px;
}

.pagination li {
    float: left;
    padding: 0 3px;
    font-size: 14px;
}

.pagination a {
    color: #8da0ad;
    border: 1px solid #dae0e2;
    border-radius: 3px;
    padding: 0 8px;
    line-height: 24px;
    display: inline-block;
    text-decoration: none;
}

.pagination a:hover,
.pagination li.active a,
.pagination span {
    color: #fff;
    border: 1px solid #0d86c3;
    background: #0d86c3;
    border-radius: 3px;
    padding: 0 8px;
    line-height: 24px;
    text-decoration: none;
    display: inline-block;
}

/***** FOOTER *****/
footer {
    background: #222533;
    border-top: 1px solid #5b5d68;
    color: #5b5d68;
    font-size: 11px;
    overflow: hidden;
    padding: 10px 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

footer .copy {
    float: left;
    line-height: 27px;
}

footer .socials {
    float: right;
}

footer .socials a {
    display: inline-block;
    font-size: 14px;
    color: #a1b1bc;
    line-height: 1.75;
}

footer .socials a + a {
    margin-left: 10px;
}

/*imported styles from pdf.html file*/
.selectableItem {
    -webkit-touch-callout: initial;
    -webkit-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.charItem:hover {
    border: solid 1px grey;
}

.layout_row_item {
    border: solid 1px grey;
}

.layout_space_item {
    border: solid 1px red;
}

.layout_word_item {
    cursor: text;
}

.layout_word_item_selected {
    background-color: rgba(102, 207, 247, 0.35);
    cursor: text;
}

.layout_word_item_highlighted {
    background-color: rgba(255, 255, 0, 0.51);
    cursor: text;
}

.layout_word_note_item_highlighted {
    background-color: rgba(225, 175, 161, 0.51);
    cursor: text;
}

.layout_word_item_selected_highlighted {
    background-color: rgba(102, 247, 207, 0.51);
    cursor: text;
}

.layout_chunk_item {
    border: solid 1px blue;
}

.layout_block_item {
    border: solid 1px orange;
}

/***** RESPONSIVE *****/
/*** TABLET ***/
/* landscape */
@media only screen and (max-width: 1366px) {
    .main-layout {
        padding-left: 20px;
        padding-right: 20px;
    }

    header nav li,
    header nav li:last-child {
        margin-right: 30px;
    }
}

/* portrait */
@media only screen and (max-width: 991px) {
    header a.logo img {
        width: 120px;
        margin-top: -10px;
    }

    header nav li {
        margin-right: 15px;
        line-height: 42px;
    }

    header nav li:last-child {
        margin-right: 15px;
    }

    header nav li a:after {
        bottom: -22px;
    }

    header .manag-icons {
        line-height: 42px;
    }

    .top-section {
        padding-top: 0;
        padding-right: 150px;
    }

    .top-section br {
        display: none;
    }

    .top-section .percent {
        right: 0;
    }
}

/*** MOBILE ***/
/* landscape */
@media screen and (max-width: 767px) and (orientation: landscape) {
    .login {
        padding: 25px;
        width: 100%;
        text-align: center;
    }

    .login .logo {
        position: relative;
        top: 0;
        left: 0;
        margin-left: 35%;
    }

    .login .login-form-container {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@media screen and (max-width: 767px) {
    .main-layout {
        padding-left: 15px;
        padding-right: 15px;
    }

    #popup-wrap .popup-body {
        padding: 32px;
    }

    #popup-wrap .popup-body .close {
        top: 15px;
        right: 15px;
    }

    #popup-wrap .popup-body .close img {
        width: 15px;
    }

    #popup-wrap .popup-body p {
        margin-bottom: 32px;
    }

    header {
        height: 82px;
    }

    header .mobile-btn {
        width: 30px;
        float: right;
        margin: 14px 0 0 20px;
    }

    header .mobile-btn em {
        float: left;
        width: 100%;
        background: #fff;
        height: 3px;
    }

    header .mobile-btn em + em {
        margin-top: 4px;
    }

    header nav {
        position: absolute;
        background: #0a78b7;
        left: 0;
        right: 0;
        top: 84px;
        z-index: 5;
        display: none;
    }

    header nav li {
        float: none;
        padding: 0 15px;
        margin: 0;
    }

    header nav li.active a:after {
        display: none;
    }

    header nav li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    header nav li a {
        font-size: 16px;
        display: block;
        text-align: center;
    }

    .sidebar,
    .reader {
        width: 100%;
    }

    .reader {
        margin-top: 20px;
        max-width: unset;
    }

    .upload-new-file .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .upload-new-file button[type='submit'],
    .upload-new-file input[type='submit'] {
        margin: 10px 15px 0;
    }

    .uploaded-files table, .uploaded-files tbody, .uploaded-files tr, .uploaded-files td {
        display: block;
    }

    .uploaded-files thead {
        display: none;
    }

    .uploaded-files table tr:nth-child(2n) {
        background: #f7f9fa;
    }

    .uploaded-files table td {
        width: 100% !important;
        position: relative;
        padding: 10px 10px 10px 35%;
    }

    .uploaded-files table td:before {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 30%;
        padding-right: 10px;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        color: #445e6d;
        font-weight: 600;
        font-size: 14px;
    }

    td:nth-of-type(1):before {
        content: "Title";
    }

    td:nth-of-type(2):before {
        content: "Author";
    }

    td:nth-of-type(3):before {
        content: "Progress";
    }

    td:nth-of-type(4):before {
        content: "Plag percentage";
    }

    td:nth-of-type(5):before {
        content: "Date";
    }

    footer .socials a + a {
        margin-left: 5px;
    }
}

/* portrait */
@media only screen and (max-width: 479px) {
    #wrap {
        padding-bottom: 0;
    }

    .login {
        padding: 15px;
    }

    .login .logo {
        position: relative;
        top: 0;
        left: 0;
        margin-left: 35%;
    }

    .login-form-container .form-wrap {
        margin-top: 20px;
        padding: 0 15px 15px;
    }

    .login-form-container .form-wrap .title {
        margin: 0 -15px 15px;
    }

    .login-form-container .form-wrap input {
        height: 40px;
    }

    .login-form-container .form-wrap a {
        font-size: 13px;
    }

    .login-form-container .form-wrap a.reg-link {
        margin-top: 3px;
    }

    header {
        height: 71px;
    }

    header a.logo img {
        width: 120px;
        margin-top: -10px;
    }

    header nav {
        top: 73px;
    }

    header .manag-icons {
        line-height: 35px;
    }

    header .mobile-btn {
        margin-top: 10px;
    }

    .top-section {
        padding-right: 0;
    }

    .top-section .percentage-section{
        justify-content: space-between;
    }

    .top-section .percent {
        margin: 0 auto;
        display: block;
    }

    .uploaded-files table td {
        padding-left: 50%;
    }

    .uploaded-files table td:before {
        width: 45%;
    }

    footer {
        position: relative;
    }

    footer .socials,
    footer .copy {
        text-align: center;
        width: 100%;
    }

    footer .socials {
        margin-top: 10px;
    }

    footer .socials a + a {
        margin-left: 10px;
    }
}

/***** TABLET/DESKTOP *****/
@media only screen and (min-width: 768px) {
    nav {
        display: block !important;
    }
}
.view-details{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.padding-top-50{
    padding-top: 50px; !important;
}
.verify-container-wrap {
    float: left;
    width: 100%;
    padding: 1.25rem 2.5rem 1.6875rem;
    border: 0.0625rem solid #dbdbdb;
    border-radius: 0.3125rem;
    margin-top: 1.875rem;
}
.verify-container-wrap h3 {
    font-size: 1.2rem;
    line-height: 3.75rem;
    float: left;
    width: 100%;
    font-weight: 600;
    text-align: center;
}
.verify-container-wrap .gray-form{
    background-color: #f7f7f7;
    border: 1px solid #e4e4e4;
    padding: 16px;
    margin-top: 25px;
}
/* modal */
.modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .98);
    z-index: 9999;
    overflow: auto;
}
.modal-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
}
.modal-inner-wrap {
    display: table-cell;
    vertical-align: middle;
    padding: 1.875rem 1.25rem;
}
.verify-modal {
    background-color: #ffffff;
}
.verify-info-wrap {
    max-width: 28.125rem;
    margin: 0 auto;
    clear: both;
    background-color: #ffffff;
}
.verify-logo-wrap {
    display: block;
    margin: 0 auto;
    clear: both;
    width: 10.375rem;
    text-align: center;
}
.verify-logo-wrap a {
    display: block;
    width: 100%;
    float: left;
}

.verify-logo-wrap .logo-text {
    float: left;
    width: 100%;
    margin-top: 1rem;
}
/****** word file Highlighting Class *******/
.wordHighlight{
    background-color: #ffff00;
}

.noteModel{
    background-color: #b74343;
    border-radius: 3px;
    padding: 3px;
    font-size: small;
}

.noteModel a{
    color: white;
    text-decoration: unset;
}

.wordHighlightNote{
    background-color: #e1afa1;
}
/*Listing Plag Percentage*/
.plagPercentageProgress{
    height: 20px !important;
}
.plagPercentageProgress .plagProgressBar{
    color: #251e21;
    font-weight: 700;
}

.plagPercentage-Blue{
    background-color: rgba(58, 83, 165 , 1);
}
.plagPercentage-Green{
    background-color: rgba(12, 128, 65, 1);
}
.plagPercentage-Yellow{
    background-color: rgba(243, 236, 24, 1);
}
.plagPercentage-Orange{
    background-color: rgba(243, 102, 33, 1);
}
.plagPercentage-Red{
    background-color: rgba(238, 56, 34, 1);
}

.hide{
    display: none;
}

#plagiarism-source{
    border: 1px solid #d4d4d4;
    padding: 16px;
}

.kashif-hint-container{
    margin-top: 15px;
    text-align: left;
}

.kashif-hint-title{
    font-size: 16px;
    color: black;
    opacity: 70%;
    font-weight: 600;
}

.kashif-hint-description{
    font-size: 14px;
    color: black;
    opacity: 70%;
}

/*Loader Style Begin*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999999;
    display: none;
}

.loader:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#original-source em, #plagged-text em{
    color:#034F84;
    background-color:#F7CAC9
}
/*Loader Style End*/

/* Plag Sources New*/
#include-tab, #exclude-tab, #include-content, #exclude-content , #paragraph-tab, #resource-tab, #resource-tab-content, #paragraph-tab-content{
    display: none;
}

.tab-label {
    padding: 6px;
    cursor: pointer;
    text-align: center;
    color: rgba(60, 60, 67, 0.6);
    display:inline-block;
    width: 49%;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.25px;
}

.exclude-tab-label {
    padding: 4px;
    cursor: pointer;
    text-align: center;
    width: 49%;
    color: rgba(0, 0, 0, 1);
    display:inline-block;
    margin-bottom: unset!important;
}

#include-tab:checked + label,
#exclude-tab:checked + label
{
    color: rgba(10, 120, 183, 1);
    border-bottom: 2px solid rgba(10, 120, 183, 1);
}

#resource-tab:checked + label,
#paragraph-tab:checked + label
{
    background: rgba(255, 255, 255, 1);
    color: rgba(10, 120, 183, 1);
    border-radius: 6px;
    padding: 4px;
}

.sources-content {
    margin-top: 2px;
}

.exclude-tabs:has(#paragraph-tab:checked) ~ .exclude-content #paragraph-tab-content,
.exclude-tabs:has(#resource-tab:checked) ~ .exclude-content #resource-tab-content,
.sidebar-tabs:has(#include-tab:checked) ~ .sources-content #include-content,
.sidebar-tabs:has(#exclude-tab:checked) ~ .sources-content #exclude-content
{
    display: block;
}

.plag-info{
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0 15px;
    justify-content: space-between;
    cursor: pointer;
}
.plag-info:hover{
    opacity: 0.85;
}

.plag-info .percent-container{
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 0 8px;
    align-items: center;
    white-space: nowrap ;
}
.dropdown-btn.plag-info .percent{
    padding: unset;
}
.dropdown-btn.plag-info .exclude-source, .dropdown-btn.plag-info .include-source{
    /*padding: 0 8px;*/
}
.sidebar-tabs{
    background: rgba(255, 255, 255, 1);
}
.exclude-tabs{
    border-radius: 8px;
    padding: 2px;
    background: rgba(118, 118, 128, 0.12);
}
.exclude-content .plag-info{
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(237, 237, 237, 1);
}
.exclude-content .plag-info .include-source{
    color: rgba(0, 0, 0, 1);
}
.exclude-content .plag-info .plag-source{
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.25px;
    text-align: center;
}
/* Plag Sources New*/

/* Result Analysis*/
.analysis-list .dropdown {
    position: relative;
    width: 50%px;
    margin-bottom: 16px;
}
.analysis-list .dropdown-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.analysis-list .dropdown-list {
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}
.analysis-list .dropdown-list.active {
    display: block;
}
.analysis-list .dropdown-item {
    padding: 8px;
    cursor: pointer;
}
.dropdown-item {
    padding: 8px;
    cursor: pointer;
}
.analysis-list .dropdown-item:hover{
    background: rgba(10, 120, 183, 0.68);
}
.analysis-list .dropdown-item.active {
    background: #0a78b7;
    color: #fff;
}
/* Result Analysis*/