/*Style CSS*/

.main-wrapper {
	height: 100%;
	background-color: #ffffff;
}

/* // 1st Page // */

/*Gauge Chart CSS*/
.chart-gauge {
    width: 360px;
    height: 186px;
    margin: 0 auto;
}
.chart-color1 {
    fill: Red;
}
.chart-color2 {
    fill: Orange;
}
.chart-color3 {
    fill: Green;
}
.needle, .needle-center {
    fill: #464A4F;
}
.l-red, .l-yellow, .l-green {
    width: 10px;
    height: 10px;
    margin: 0px;
}
.l-red {
    background-color: red;
}
.l-yellow {
    background-color: orange;
}
.l-green {
    background-color: green;
}

/*Bar Chart*/
#assessmentCritria .c3-grid line {
  stroke: none;
}

#assessmentCritria .c3-axis-x > path.domain, #assessmentCritria .tick > line[x2="-6"] {
  visibility: hidden;
}

/*Common css*/
.text-white {
    color: #ffffff;
}
.p-relative {
	position: relative;
}
.d-i-b {
	display: inline-block;
}
.f-s-12 {
    font-size: 12px;
}
.f-s-13 {
    font-size: 13px;
}
.f-w-600 {
	font-weight: 600;
}
.m-b-0 {
    margin-bottom: 0;
}
.p-5 {
    padding: 5px;
}
.p-t-5 {
    padding-top: 5px;
}
.p-t-10 {
    padding-top: 10px;
}
.p-b-5 {
    padding-bottom: 5px;
}
.p-b-10 {
    padding-bottom: 10px;
}
.p-l-15 {
    padding-left: 15px;
}
.ver-align-m {
    vertical-align: middle;
}
.ver-align-t {
    vertical-align: top;
}
.border-top-1 {
    border-top: 1px solid #ccc;
}
.border-bottom-1 {
    border-bottom: 1px solid #ccc;
}
.border-light {
    border-color: #B3E5FC;
}
.m-t-0 {
    margin-top: 0;
}
.m-t-15 {
    margin-top: 15px;
}
.bg-light-grey {
    background-color: #e0e0e0;
}
.page-size {
  width: 25.4cm;
  height: 36cm;
  /*padding: 2cm;
  margin: 15px auto;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);*/
}
.page-break {
    page-break-after: always;
}
.page-break:first-child {
    page-break-before: always;
    page-break-after: always;
}
.page-break:last-child {
    page-break-inside:auto;
    page-break-after: always;
}

@page {
  size: A4;
  margin: 0;
}

@media print {
    .page-size {
        width: 26.4cm;
        height: 35.8cm;
        margin: 15px auto; 
        /* change the margins as you want them to be.
        border: 1px solid #333333;
        border-radius: 6px;
        margin-left: 15px;
        margin-right: 15px; */

    }
    .bg-light-grey {
        background-color: #e0e0e0;
    }
    .subpage.page-break {
        margin-top: 15px;
    }
    /*.third-page {
        page-break-before:always;
    }*/
    /*.subpage:nth-child(3n) {
        page-break-before:always;
    }*/
}