body {
    background: #f0f4f5;
}
body * {
    font-family: Frutiger W01,Arial,Sans-serif;
}
.bg-custom-blue {
    background-color: #005eb8;
}
.custom-navbar {
    border-top: 1px solid hsla(0,0%,100%,.2);
}
.custom-card {
    margin-top: 70px;
    padding: 30px 20px 20px 20px;
}
.custom-card-header h5 {
    background: #005eb8;
    color: #fff;
    display: inline-block;
    left: -1px;
    padding: 8px 32px;
    top: -15px;
    position: absolute;
    font-weight: bold;
}
.custom-input-label {
    background: white;
    min-width: 150px;
    justify-content: right;
    font-size: 17px;
}
.postcode {
    border-radius: 3px;
    border: 1px solid lightgray;
    font-size: 30px;
    padding: 10px 10px 10px 15px;
}
.custom-button {
    font-size: 16px;
    font-weight: 600;
    border-radius: 0px;
    padding: 7px 25px 7px 25px;
    cursor: pointer;
}
.submit-button {
    background-color: #005eb8;
}
.submit-button:hover {
    background-color: #04437e;
}
.center-justify {
    display: flex;
    justify-content: center;
}


p {
    font-size: 19px;
}

/* FORM CODE */
#pifu_code_form {
    max-width: 550px;
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 3px;
}
#pifu_code_form input {
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    border: solid 1px #ccc;
    box-shadow: 0 0 1px #ccc inset;
    outline: none;
    width: 8%;
    transition: all 0.2s ease-in-out;
    border-radius: 3px;
}
#pifu_code_form input:focus {
    border-color: #005eb8;
    box-shadow: 0 0 5px #005eb8 inset;
}
#pifu_code_form input::-moz-selection {
    background: transparent;
}
#pifu_code_form input::selection {
    background: transparent;
}

/* DOB CODE */
#dob_code_form {
    max-width: 550px;
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 3px;
}
#dob_code_form input {
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    border: solid 1px #ccc;
    box-shadow: 0 0 1px #ccc inset;
    outline: none;
    width: 8%;
    transition: all 0.2s ease-in-out;
    border-radius: 3px;
}
#dob_code_form input:focus {
    border-color: #005eb8;
    box-shadow: 0 0 5px #005eb8 inset;
}
#dob_code_form input::-moz-selection {
    background: transparent;
}
#dob_code_form input::selection {
    background: transparent;
}

/* PINCODE CODE */
#pincode_form {
    max-width: 550px;
}
#pincode_form input {
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    border: solid 1px #ccc;
    box-shadow: 0 0 1px #ccc inset;
    outline: none;
    width: 45px;
    transition: all 0.2s ease-in-out;
    border-radius: 3px;
}
#pincode_form input:focus {
    border-color: #005eb8;
    box-shadow: 0 0 5px #005eb8 inset;
}
#pincode_form input::-moz-selection {
    background: transparent;
}
#pincode_form input::selection {
    background: transparent;
}


.main-frame {
    display: flex;
    min-height: calc(100% - 65px - 57px);
}

.left-sidebar {
    width: 200px;
    background: #0072ce;
    padding: 20px;
}
.main-content {
    padding: 20px;
    width: calc(100% - 200px);
    position: relative;
}

.email-list {
    border-radius: 10px;
    max-height: 320px;
    overflow: auto;
}

.email-wrapper {
    border: 1px solid black;
    margin-top: 0px;
    padding: 20px;
    background: white;
    overflow-y: scroll;
    height: 360px;
}

.search-input {
	background-image: url(../images/searchicon.png);
    background-position: 10px 5px;
    background-repeat: no-repeat;
    padding: 7px 10px 7px 35px !important;
    margin-bottom: 8px !important;
    margin-top: 3px !important;
    border: 1px solid #EFEEEE;
    border-radius: 15px;
	width: 100%;
}

.loader {
    position: absolute;
	left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: black;
}
.loader img {
	position: relative;
	left: calc(50% - 16px);
	top: calc(50% - 16px);
}
.loader-hidden {
	display: none;
}
.hidden {
    display: none;
}
.pager {
    height: 50px;
}

.type-ico {
    display: inline-block;
    width: 35px;
    height: 32px;
    background-repeat: no-repeat;
}
.pdf-ico {
    background-image: url(../images/pdf.png);
}
.doc-ico {
    background-image: url(../images/doc.png);
}
.xls-ico {
    background-image: url(../images/xls.png);
}
.png-ico {
    background-image: url(../images/png.png);
}
.jpg-ico {
    background-image: url(../images/jpg.png);
}
.no-type-ico {
    background-image: url(../images/no_type.png);
}
.download-ico {
    background-image: url(../images/download-to-storage-drive.png);
}
.download-all-ico {
    background-image: url(../images/download_all.png);
}