@import "loading.css";
@import "loadingspinner.css";
@import "sidebar.css";

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  /*margin-bottom: 60px;*/
}
.text-justify{text-align: justify!important;}
.logoHeading {
    text-align: right;
    top: -20px;
    position: relative;
    font-family: Helvetica;
    font-style: italic;
    font-stretch: condensed;
    font-size: 1.5em;
    color: #ef7d1a;
}
.textMainColour {
    color: #5170d7;
}
.themeMainColour {
    background-color: #5170d7;
    color: white;
}
.themeSecondaryColour {
    background-color: #ef7d1a;
    color: white;
}
.themeMainColour:hover{color:white;}
.shimmer {
    -webkit-mask: linear-gradient(-60deg,#000 30%,#0005,#000 70%) right/300% 100%;
    background-repeat: repeat;
    animation: shimmer 5.5s infinite;
}
.bigCheckbox{
    width:36px;
    height:36px;
}
.bg-light-grey{
    background-color:lightgray;
}
@keyframes shimmer {
    100% {
        -webkit-mask-position: left
    }
}
.dotted-border {
    border: 1px dotted gray;
    border-radius: 6px;
}
.title-dotted-border {
    border: 1px dotted gray;
    border-radius: 6px;
    border-bottom:0;
    margin-bottom:0px;
    padding-top:10px;
    padding-bottom:10px;
}
/* footer waves */
.outer-footer {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
    color: white;
}
.inner-footer {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0;
}
.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    /*margin-bottom: -7px;*/ /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}
/* Animation */

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -1s;
        animation-duration: 30s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -5s;
        animation-duration: 90s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -10s;
        animation-duration: 150s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -15s;
        animation-duration: 210s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 45px;
        min-height: 20px;
    }
}


.maximise-report-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}


.hide {
    animation: fadeOutHide 0.2s 1 linear forwards;
}
@keyframes fadeOutHide {
    0% {
        opacity: 1.0;
    }

    100% {
        opacity: 0.0;
    }
}

.articleBox {
    border-radius: 4px;
    border-width: 0px;
    font-weight: 100;
    font-family: initial;
    height: 50px;
}

.read-more {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0px 0 10px 0;
    margin: 0;
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, transparent),color-stop(1, white));
}

.article-box {
    max-height: 135px;
    position: relative;
    overflow: hidden;
    white-space:inherit;
}

.article-section {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    max-width: 100%;
    margin-bottom: 2em;
}

.article-section-open {
    width: 100% !important;
    position: relative;
    margin-bottom: 7em;
    /*left: 8%;
        top:18%;
        */
}

.article-box-open {
    max-height: fit-content;
}

.article-image-width{width:12em !important;}

.uploaded-document {
    padding: 15px;
    border-radius: 12px;
    border-style: none;
    display: grid;
    width: 7em;
    margin-right: 10px;
}
.classification-tag {
    background-color: lightseagreen;
    padding: 3px;
    border-radius: 3px;
    margin: 1px;
    cursor: pointer;
    color: white;
    font-size:0.9em;
}
.product-tag-lg {
    background-color: cadetblue;
    padding: 7px;
    border-radius: 3px;
    margin: 5px;
    cursor: pointer;
    color: white;
}
.risk-cat-tag-lg {
    background-color: darkgreen;
    padding: 7px;
    border-radius: 3px;
    margin: 5px;
    cursor: pointer;
    color: white;
}

.classification-tag-lg {
    background-color: lightseagreen;
    padding: 7px;
    border-radius: 3px;
    margin: 5px;
    cursor: pointer;
    color: white;
}
.article-tags-box {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 1em;
}
.risk-cat-tag {
    background-color: darkgreen;
    padding: 3px;
    border-radius: 3px;
    margin: 1px;
    cursor: pointer;
    color: white;
    font-size: 0.9em;
}
.product-tag {
    background-color: cadetblue;
    padding: 3px;
    border-radius: 3px;
    margin: 1px;
    cursor: pointer;
    color: white;
    font-size:0.9em; 
}
.tags-box {
    background-color: white;
    position: fixed;
    height: 50%;
    bottom: 0;
    left: 7%;
    z-index: 3;
    width: 86%;
    border-width: 2px;
    border-color: #1b6ec2;
    border-style: double;
    border-radius:8px;
}
.tags-box-mini {
    background-color: white;
    position: fixed;
    height: 40%;
    bottom: 0;
    right: 7%;
    z-index: 3;
    width: 44%;
    border-width: 2px;
    border-color: #1b6ec2;
    border-style: double;
    border-radius: 8px;
}