/* Some overrides */
/* sticky footer */
html,
body {
    height: 100%;
    background: #EDECED;
    font-family: 'Poppins', sans-serif;
    color: #333333;
}

.a4page {
    background: #ffffff;
    margin-left: auto;
    margin-right: auto;
    width: 760px;
    padding-bottom: 20px;
    padding-top: 0;
    border-radius: 10px;
}

.top-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #2c4185;
    padding: 50px 50px 50px 50px;
    margin-bottom: 15px;
    border-radius: 10px 10px 0 0;
}

.container {
    margin: 10px 50px 10px 50px;
}

p,
.decorated-list {
    margin: 10px 0 10px 0;
    font-weight: 300;
    font-size: 14px;
    padding: 0;
    line-height: 150%;
    letter-spacing: 0.5px;
}

a {
    color: #009AFF;
    cursor: pointer;
    text-decoration: none;
}

.actions-padding {
    margin: 0 50px 25px 0;
}

.actions-error-padding {
    margin: 30px 50px 30px 50px;
}



.md-button.md-icon-button.ffs-smaller {
    width: inherit;
    height: inherit;
    text-transform: none !important;
}



.toolbar {
    background: #2c4185;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.company-text {
    color: #FFFFFF;
    padding: 20px 100px 20px 100px;
    font-size: 12px;
    max-width: 50%;
    min-width: 45%;
}

.company-text-all {
    color: #FFFFFF;
    padding: 20px 20px 30px 100px;
    font-size: 12px;
}

button {
    border-radius: 5px;
    line-height: 18px;
    font-family: 'Poppins', sans-serif;
    text-transform: none; !important;
    padding: 10px;
    white-space: normal;
    font-size: 14px;
    font-weight: 600;
}

.button-primary,
.button-secondary {
    min-width: 150px; !important;
}

.button-primary {
    background: #2c4185;
    color: #FFFFFF; !important;
    border: 5px solid #2c4185; !important;
}

.button-primary:disabled, .button-primary:disabled:hover {
    background: #CAC7CB;
    cursor: not-allowed;
    border: 5px solid #CAC7CB; !important;
}


.button-primary:hover {
  background-color: #009AFF;
  border: 5px solid #009AFF; !important;
}

.button-secondary {
    color: #2c4185; !important;
    background: transparent;
    border: 4px solid #2c4185; !important;
}

.button-secondary:hover {
  color: #FFFFFF;
  background: #2c4185;
}

.button-primary-nav,
.button-secondary-nav,
.button-primary-nav-email {
    min-width: 200px; !important;
}

.button-primary-nav {
    background: #009AFF;
    color: #FFFFFF; !important;
    border: 5px solid #009AFF; !important;
}

.button-primary-nav:hover{
    color: #2C4185; !important;
    background: #FFDA59; !important;
    border: 5px solid #FFDA59; !important;
}

.button-secondary-nav{
    color: #FFFFFF; !important;
    background: #2C4185; !important;
    border: 5px solid #FFFFFF; !important;
}

.button-secondary-nav:hover{
    color: #2C4185; !important;
    background: #FFFFFF; !important;
}

.button-primary-nav-email {
    margin-right: 50px;
    background: #009AFF;
    color: #FFFFFF; !important;
    border: 5px solid #009AFF; !important;
}

.button-primary-nav-email:hover {
    background: #2c4185;
    border: 5px solid #2c4185; !important;
}

.doc-upload {
    border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 5px;
    background: #E8F0FE;
    margin: 10px 50px 10px 50px;
}

.doc-upload-button {
    margin-left: auto;
    padding: 10px 0 10px 0;
}

.button-text-only {
    margin: 0;
    min-height: 36px;
    font-weight: 500;
    color: #009AFF;
    text-transform: none; !important;
}

.save-submit-wrapper {
    padding: 20px 35px 20px 35px;
}

md-datepicker {
    background: none;
}

md-dialog {
    background: #FFFFFF;
    padding: 10px;
    width: 450px;
}

.md-datepicker-input-mask-opaque {
    background: rgb(238,238,238);
}

.doc-hint li { 
    list-style: initial;
    margin-left: 14px;
}


datepicker label {
    display: block;
}


/* Wrapper for page content to push down footer */
#wrap {

    min-height: 100%;
    height: auto !important;
    height: 100%;
    /* Negative indent footer and header heights */
    margin: 0 auto -70px;
}

/* Set the fixed height of the footer here */
#push,
#footer {
    height: 30px;
}

#footer {
    text-align: center;
}

.standard-layout {
    margin: 20px 50px 20px 50px;
    padding: 0;
}

.application-view {
    /* use to add/remove padding to application inside a4 page */
}

/*
.ng-hide-add { animation: 0.5s lightSpeedOut ease; }

.ng-hide-remove { animation: 0.5s flipInX ease; }
*/
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transition-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        transform: perspective(400px);
    }
}

/* light speed out */
@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.dropzone {
    border: 2px dashed #ccc;
    border-radius: 5px;
    background: #ffffff;
    padding: 20px;
}

.dropzone:focus {
    outline: none;
}

.dropzone.dragover {
    border: 2px solid #ccc;
    background: #E8F0FE;
}

.dropzone.dragover-err {
    border: 2px solid #ccc;
    background: #F9F0F3;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.business-registration-logo {
    width: 75px;
}

.md-title {
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    text-align: right;
}

.md-headline {
    font-weight: 400;
    font-size: 22px;
    margin: 20px 50px 15px 50px;
    padding: 0;
}

.md-subtitle {
    font-weight: 300;
    font-size: 14px;
    margin: 10px 50px 15px 50px;
    padding: 0;
    line-height: 150%;
    letter-spacing: 0.5px;
}

.please-note {
    font-weight: 300;
    font-size: 14px;
    margin: 0 50px 25px 50px;
    color: #8A878B;
    letter-spacing: 0.5px;
}

.please-note-basic {
    font-weight: 300;
    font-size: 14px;
    color: #8A878B;
    letter-spacing: 0.5px;
}

md-input-container {
    padding: 2px 2px 16px;
    border: 2px solid #D9D9D9;
    margin: 5px 50px 5px 50px;
}


.input-container{
    display: flex;
    flex-direction: column;
    margin: 0 50px 20px 50px;
}

.basic-flex{
    display: flex;
    flex-direction: column;
}

.permissions{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #B8B4B9;
    border-radius: 3px;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    font-weight: 300;
    color: #333333;
    background-color: #FFFFFF;
    margin: 10px 0 10px 0;
}

.verified-color{
color: #009AFF;
}

.date-picker-style {
    cursor: pointer;
    width: 100%;
}


label {
    margin-bottom: 4px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.error {
    font-size: 14px;
    line-height: 24px;
    color: #F33471;
}

input.input-error, select.input-error, textarea.input-error {
    border: 2px solid #F33471 !important;
    background-color: #F9F0F3;
}

input::placeholder {
    color: #B8B4B9;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

input, select {
    height: 40px;
    border: 1px solid #B8B4B9;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    padding: 0 10px;
    color: #333333;
    background-color: #FFFFFF;
    box-sizing: border-box;
    line-height: 40px;
}

select {
    color: #B8B4B9;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238A878B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 12px;;
}

.input-valid {
    background: #E8F0FE;
    color: #333333;
}



select:focus {
    color: #333333;
    background: #ffffff;
}



input:focus, select:focus {
    border: 2px solid #007BFF;
    outline: none;
}

textarea {
    display: block;
    min-height: 100px;
    line-height: 30px;
    border: 1px solid #B8B4B9;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    padding: 5px 10px 5px 10px;
    color: #333333;
    background-color: #FFFFFF;
    overflow: auto;
    resize: none;
}

textarea:focus {
    border: 2px solid #007BFF;
    outline: none;
}

md-select .md-select-label {
    height: 35px;
    border: 1px solid #B8B4B9;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    padding: 0 0 0 10px;
    color: #333333;
    background-color: #FFFFFF;
    width: 100%;
}

md-select {
    padding: 0;
    margin: 0 0 0 0;
    width: 100%;
}


.card-header {
    background: #FFFFFF;
    width: 100%;
    padding: 10px 50px 10px 50px;
    border-bottom: 2px solid #D9D9D9;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.section-icon {
    height: 30px;
    width: 30px;
}

.business-type-icon {
    height: 40px;
    width: 40px;
}

.card-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    margin-left: 20px;
}


.ffs-card-item {
    -webkit-transition: margin .1s, height .1s;
    transition: margin .1s, height .1s;
    margin: 0 !important;
    padding: 0 !important;
}

.ffs-card-item.zoomed {
    margin: 0px -56px 20px -56px;
    padding: 10px 56px 8px 56px;
    background: #fafafa;
}

.ffs-card-item.zoomed.first-item {
    margin: 0px -56px 20px -56px;
    padding: 10px 56px 8px 56px;
    background: #fafafa;
}

md-content {
    background: inherit;
}

md-select-menu md-content {
    background: white;
}

md-card,md-whiteframe-z2 { 
    box-shadow: none !important;
    background-color: #f6f6f6;
}


md-card.zoomed > .card-header {
    cursor: default;
}

.business-type {
    background: #FFFFFF;
    padding: 10px 10px 10px 30px;
    border: 2px solid #D9D9D9;
    border-radius: 3px;
    margin: 20px 50px 20px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.business-type-selected {
    background: #E8F0FE;
    padding: 10px 10px 10px 30px;
    border: 2px solid #009AFF;
    border-radius: 3px;
    margin: 20px 50px 20px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.business-type-description {
    padding: 0 0 0 30px;
}

md-card.bus-loc, md-card.bus-type, .card-header, i.show-password {
    cursor: pointer;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    outline: none;
}

md-card .section-footer {
    margin-left: auto;
    margin-right: auto;
    width: 760px;
    padding: 20px 50px 20px 0;
    background: #f6f6f6;
}

.nav-main:before, .nav-main:after {
    content: " ";
    display: table;
}

md-toolbar.stickydark {
    margin-top: 0;
}

md-toolbar {
    background: #2c4185;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    -webkit-animation: fadeIn .13s .1s both;
    animation: fadeIn .13s .1s both;
}

.nav-main {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
}

.role-selector, .select-file {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #333333;
}

.select-file {
    margin: 20px 0 0 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-inline li {
    display: inline-block;
}

.nav-main a {
    color: #fff;
    opacity: 1;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
}

.nav-main>ul {
    display: block;
    margin: 0;
    padding: 0;
}

.nav-main>ul>li {
    margin: 0 0 0 20px;
    position: relative;
    z-index: 10;
}


.pointer {
    cursor: pointer;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}


.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    user-select: none;
    padding: 10px;
}


.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    border: 1px solid #B8B4B9;
    border-radius: 3px;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #009AFF;
    border-color: #009AFF;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
}

.reset-styles {
    all: unset;
}


.form-block {
    margin-left: auto;
    margin-right: auto;
    width: 760px;
    background: #f6f6f6;
    padding: 20px 0 10px 0;
}

@media (max-width: 760px) {
    .a4page {
        margin-left: 0;
        margin-right: 0;
        padding: 0px;
        width: 100%;
        
    }

}

@media (max-width: 480px) {
    
    .form-block {
        padding: 8px 8px 8px 8px; 
        margin: 8px -8px; 
        border-top: 1px solid #ccc;
    }

}

.warning-icon {
    fill: #F33471;
}

.info-icon {
    fill: #009AFF;
}



#return-to-login {
    margin-top: 200px;
}

#reset-password-sent-subline {
    margin-top: 20px;
}

.login-page-error-div {
    border: 1px solid pink; 
    border-radius: 2px; 
    background: pink; 
    padding: 10px 5px; 
    margin-bottom: 20px;
}

.login-page-success-div {
    border-radius: 2px; 
    background: #009AFF;
    padding: 10px 5px; 
    margin-bottom: 20px;
}

.reset-password-div {
    order: 3; 
    margin-top: 15px; 
    padding: 6px 3px; 
    color: #666;
}
.reset-password-link {
    float: right;
}

#key-people-address {
    color: #666; 
    font-size: 12px;
    word-wrap: break-word;
}

.inputbox-description {
    order: 3; 
    padding-top: 20px; 
    color: #666;
}

#features-interested-in {
    margin-top: 15px;
    font-size: 14px;
}

input[type=date]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

.no-wrap {
    white-space: nowrap;
}

#recaptchaForm {
    padding-left: 50px;
    margin-top: 30px;
}