html {
  font-size: 14px;

}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
html {
  position: relative;
  min-height: 100%;
}
body {
    background-color: #ECECEC;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.viedoc-logo {
    text-align: center;
    padding: 5% 0px;
}
.body-content {
    min-height: calc(98vh - 100px);
}
.preview-error {
    text-align: center;
    width: 30%;
    margin: 0 auto;
}
.preview-error p {
    margin-top: 40px;
    margin-bottom: 0px;
}
#docList {
    width: 65%;
    margin: 0 auto;
    background: #FFf;
    border-radius: 30px;
}
#docList .body-cntnt {
    padding: 2% 2% 0;
    margin-bottom: 0px
}
#docList p.header-cntnt {
    font-size: 16px;
    border-bottom: 1px solid #ECECEC;
    padding: 2%;
    margin-bottom: 0px;
}

#docList .body-cntnt button {
    width: 100%;
    text-align: left;
    padding: 15px 10px;
    background: #ECECEC;
    border: 1px solid #fff;
    border-radius: 14px;
    font-size: 18px;
}
#docList .body-cntnt button.disabled-cursor{
    cursor: no-drop;
}
#docList p.body-cntnt:last-child{
    padding-bottom: 2%;
}
#docList .body-cntnt button span {
    float: right;
    padding-right: 15px;
}
.footer {
    clear: both;
    margin-top: 40px;
    margin-bottom: 10px;
}
.footer p {
    margin-bottom: 2px;
    font-size: 14px;
}
.headerTitle {
    text-align: center;
}
#btnBack {
    display: inline-block;
    float: left;
    border: 0;
    padding: 8px;
    background: none;
}
.headerTitle .lblTitle {
    display: inline-block;
    text-align: center;
    padding: 10px;
}
#loader-backdrop {
    z-index: 10000;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f5f5;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
#divLoader {
    opacity: 1;
    margin: 0 auto;
    transform: translate(50%, 50%);
    top: 42%;
    position: relative;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}
.container-fluid.bg-color {
    padding: 0;
}
#viewer {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    z-index: 2;
}