/* For Print */

/* Setting content width, unsetting floats and margins */

div.container, div.content {
    width: 100%;
    margin: 0;
    float: none;
}

div {
    -margin:0!important;
    -padding:0!important;
}

/** Setting margins */
@page {
    -margin: 2cm
}
@page :left {
    margin: 1cm;
}
@page :right {
    margin: 1cm;
}

/* The first page of a print  */

@page :first {
  margin: 1cm;
}

/* Remove general display */

header, footer, aside, nav, form, iframe {
  display: none!important;
}

div.panel, div.panel-default, div.panel-body {
    -display: none!important;
    border: none!important;
}

* {
  background-image: none !important;
}

img, svg {
  -display: none!important;
}

img {
  -display: none!important;
}

img, svg.print {
  display: block;
  max-width: 100%;
  padding: 10px;
}

hr {
   display: none!important;
}
h4.blue {
    display: none!important;
}
button {
    display: none!important;
}
a.btn {
    display: none!important;
}
.input-group, .input-group-inline {
    display: none!important;
}

/* Set font to 16px/13pt, set background to white and font to black.*/
/* This saves ink */

body {
    font: 11pt "Helvetica Neue", Helvetica, Arial, sans-serif;
    -font: 13pt Georgia, "Times New Roman", Times, serif;
    line-height: 1.3 !important;
    background: #fff !important;
    color: #000;
}

h1 {
    font-size: 20pt !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none!important;
}

div {
    padding:0!important;
    margin:0!important;
}

div.col-sm-12 h1 {
     -margin-left:-20px!important;
     margin-bottom:0!important;
     padding-bottom:0!important;
    -padding-left:-20px!important;
}

h2, h3, h4 {
    font-size: 16pt!important;
    margin-top: 25px!important;
    font-weight:normal!important;
}

p.lead {
    font-size: 11pt!important;
    margin-top: 0!important;
    padding-top: 0!important;
    font-weight:normal!important;
}
p, ul li  {
    font-weight:normal!important;
}

/* Defining all page breaks */

a {
    page-break-inside:avoid
}

blockquote {
    page-break-inside: avoid;
}

h1, h2, h3, h4, h5, h6 {
    page-break-after:avoid;
    page-break-inside:avoid
}

img, svg {
    page-break-inside:avoid;
    page-break-after:avoid;
}

table, pre {
    page-break-inside:avoid
}

ul, ol, dl  {
    page-break-before:avoid
}

/* Displaying link color and link behaviour */

a:link, a:visited, a {
    background: transparent;
    color: #520;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
}

a {
    page-break-inside:avoid
}

a[href^=http]:after {
    -content:" < " attr(href) "> ";
}

$a:after > img {
   -content: "";
}

article a[href^="#"]:after {
   -content: "";
}

a:not(:local-link):after {
   -content:" < " attr(href) "> ";
}

a[href]:after {
    content: none !important;
}


/**
 * Making intergated videos disappear, and removing the iframes' whitespace to zero.
 */

.entry iframe, ins {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap;
}

.embed-youtube, .embed-responsive {
    position: absolute;
    height: 0;
    overflow: hidden;
}

/**
 * Supplementary Content
 */

div.container::after {
  content: "Copyright 2020 Recipero Limited";
  display: block;
  text-align: center;
}

/**
 * Adopt coloumns
 */

article {
  column-width: 17em;
  column-gap: 3em;
}

/**
 * Lines before/after next page
 */

p {widows: 3;}
p {orphans: 3;}
