/* basics */

body,
html {
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 26px;
    color: #394050;
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
    font-family: BebasNeue, Arial, Helvetica, sans-serif;
    margin: 0;
    line-height: 1;
}

h1 {
    font-size: 105px;
}

h2 {
    font-size: 70px;
}

h3 {
    font-size: 40px;
}

h4 {
    margin: 10px 0;
    font-size: 25px;
}

h5 {
    margin: 10px 0;
    font-size: 18px;
}

@media(max-width: 1024px) {
    h1 {
        font-size: 70px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 25px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
}

@media(max-width: 600px) {
    h3 {
        font-size: 29px;
    }

}

a {
    color: inherit;
}

.button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    height: 45px;
    border: none !important;
    padding: 0px 25px;
    background-color: #394050 !important;
    color: #FFFFFF !important;
    font-size: 15px;
    line-height: 45px;
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
    font-weight: normal;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: background-color 250ms, border-color 250ms;
    -moz-transition: background-color 250ms, border-color 250ms;
    transition: background-color 250ms, border-color 250ms;
}

.button:hover {
    background-color: #7E8BA3 !important;
}

.button:after {
    content: url(../img/interfaces/button-arrow.png);
    display: inline-block;
    margin-left: 10px;
    vertical-align: baseline;
}

.button.backButton {
    margin-bottom:80px;
}

.button.backButton:before {
    content: url(../img/interfaces/button-arrow-back.png);
    display: inline-block;
    margin-right: 10px;
    vertical-align: baseline;
    =
}
/* remove back buttons default arrow */
.button.backButton:after{
    content:"";
    margin-left: 0px;
}

.legend {
    font-family: BebasNeue, Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: normal;
    font-style: normal;
}

.legal {
    font-size: 0.75rem;
    line-height: 1.5;
}

.nowrap {
    white-space: nowrap;
}

h1 .button,
h2 .button,
h3 .button,
h4 .button,
h5 .button {
    margin-left: 25px;
    font-weight: normal;
    float: right;
}

@media(max-width: 767px) {
    .button {
        display: block;
        width: 100%;
        text-align: center;
    }
    h1 .button,
    h2 .button,
    h3 .button,
    h4 .button,
    h5 .button {
        margin: 10px 0px;
        float: none;
    }
}

fieldset {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 70px 0px;
}

fieldset ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}

fieldset li {
    box-sizing: border-box;
    width: 100%;
    margin-top: 30px;
    font-size: 1rem;
    margin-right: 20px;
}

fieldset li.break {
    margin: 0px !important;
    height: 0px;
}

fieldset .three-quarter {
    width: -moz-calc(75% - 20px);
    width: calc(75% - 20px);
}

fieldset .two-thirds {
    width: -moz-calc(66% - 20px);
    width: calc(66% - 20px);
}

fieldset .half {
    width: -moz-calc(50% - 20px);
    width: calc(50% - 20px);
}

fieldset .half.only {
    box-sizing: content-box;
    padding-right: 50%;
}

fieldset .forty {
    width: -moz-calc(40% - 20px);
    width: calc(40% - 20px);
}

fieldset .forty.only {
    box-sizing: content-box;
    padding-right: 60%;
}

@media(min-width: 768px) {
    fieldset .last-item {
        margin-right: auto;
    }
}

fieldset .three-eighth {
    width: -moz-calc(37.5% - 20px);
    width: calc(37.5% - 20px);
}

fieldset .third {
    width: -moz-calc(33.3333% - 20px);
    width: calc(33.3333% - 20px);
}

fieldset .thirty {
    width: -moz-calc(30% - 20px);
    width: calc(30% - 20px);
}

fieldset .quarter {
    width: -moz-calc(25% - 20px);
    width: calc(25% - 20px);
}

fieldset .fifth {
    width: -moz-calc(20% - 20px);
    width: calc(20% - 20px);
}

fieldset .fifteen {
    width: -moz-calc(15% - 20px);
    width: calc(15% - 20px);
}

fieldset .eighth {
    width: -moz-calc(12.5% - 20px);
    width: calc(12.5% - 20px);
}

fieldset .tenth {
    width: -moz-calc(10% - 20px);
    width: calc(10% - 20px);
}

fieldset .sixteenth {
    width: -moz-calc(8% - 20px);
    width: calc(8% - 20px);
}

@media(max-width: 1024px) {
    fieldset {
        padding: 30px 0px;
    }
}

@media(max-width: 767px) {
    fieldset li,
    fieldset .two-thirds,
    fieldset .half,
    fieldset .forty,
    fieldset .third,
    fieldset .thirty,
    fieldset .quarter,
    fieldset .fifth,
    fieldset .tenth,
    fieldset .eighth,
    fieldset .sixteenth,
    fieldset .three-eighth {
        width: 100%;
        margin-top: 15px;
    }
    fieldset .half.only,
    fieldset .forty.only {
        padding-right: 0px;
    }
}

.input {
    width: 100%;
}

label .notes {
    font-style: italic;
    font-size: 14px;
}

.input label a {
    float: right;
}

.input label .small {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 5px;
}

.input input,
.input select,
.input textarea,
.input.uploader .target {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    height: 40px;
    border: 1px solid #394050;
    font-size: 16px;
    line-height: 40px;
    color: #394050;
    padding: 0px 20px;
    background: none;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.input textarea {
    height: 178px;
    padding: 20px;
    line-height: 1.25;
}


.input select {
    background: url(../img/interfaces/dropdown-arrow.png) no-repeat right center;
    padding-right: 35px;
}

.input.date input {
    background: url(../img/interfaces/input-calendar.png) no-repeat right center;
    padding-right: 35px;
}

.input option {
    color: #394050;
}

.input.checkbox {
    position: relative;
    -height: 27px;
}

.input.checkbox input {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    opacity: 0;
}

.input.checkbox input+label {
    padding-left: 40px;
    display: inline-block;
    margin-bottom: 0px;
    line-height: 27px;
    vertical-align: text-bottom;
    cursor: pointer;
}

.input.checkbox input+label:before {
    content: '';
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 27px;
    width: 27px;
    border: 1px solid #253149;
    color: #253149;
    background-color: #FFF;
    text-align: center;
    font-size: 20px;
    line-height: 27px;
}

.input.checkbox input:checked+label:before {
    content: '\2713';
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    display: none;
}

.radio-container {
    position: relative;
}

.radio-container input {
    transform: scale(0);
    width: 0px;
    height: 0px;
    position: absolute;
}

.radio-container input + label {
    position: relative;
    padding-left: 30px;
}

.radio-container input + label:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0px;
    width: 20px;
    height: 20px;
    border: 1px solid #394050;
    background: #FFF;
    -border-radius: 50%;
    line-height: 20px;
    font-size: 18px;
    text-align: center;
}

.radio-container input:checked+label:before {
    -background: radial-gradient(ellipse at center, #394050 0%,#394050 55%,#ffffff 60%,#ffffff 100%);
    content:  "\2713";
}

.input.uploader .status div {
    display: none;
}

.input.uploader .status.init .init,
.input.uploader .status.uploading .uploading,
.input.uploader .status.uploaded .uploaded,
.input.uploader .status.failed .failed {
    display: block;
}

.input.uploader {
    padding-right: 100px;
}

.input.uploader .button {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    max-width: 100px;
    line-height: 40px;
    background-color: #7E8BA3;
}

.input.uploader .button:after {
    content: none;
}

.padded {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}

.padded.grey {
    background-color: #F7F8F9;
}

.padded.no-top-padding {
    padding-top: 0px;
}

@media(min-width: 768px) {
    .padded {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media(min-width: 1025px) {
    .padded {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media(min-width: 1200px) {
    .padded {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media(min-width: 1300px) {
    .padded {
        padding-left: -moz-calc((100% - 1140px) / 2);
        padding-left: calc((100% - 1140px) / 2);
        padding-right: -moz-calc((100% - 1140px) / 2);
        padding-right: calc((100% - 1140px) / 2);
    }
}

@media(max-width: 1024px) {
    .padded {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media(max-width: 767px) {
    .padded {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* notifications */
/* 
.message {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 32px;
    line-height: 1;
    font-weight: normal;
    color: #f8991c;
}

.message.success {
    color: #32ce17;
}

.message.error {
    color: #ce1717;
}

.error-message {
    margin-top: 5px;
    color: #ce1717;
    font-size: 14px;
}

.success-message {
    margin-top: 5px;
    color: #32ce17;
    font-size: 14px;
}

@media(max-width: 1024px) {
    .message {
        padding-top: 30px;
        padding-bottom: 30px;
        font-size: 20px;
    }
} */



.message {
    width:100%;
    max-width:512px;
    padding:1rem;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    color: #fff;
    /* box-shadow: #94a0b9 2px 2px; */
    display:flex;
    margin: 0 auto;
}

.banner .message {
    margin: 0 0 0 0;
}

.message.success {
    background-color:#32ce17;
}

.message.error {
    background-color:#F8991C;
    color: #ce1717;
   
}

.error-message {
    margin-top: 5px;
    color: #ce1717;
    font-size: 14px;
}

.success-message {
    margin-top: 5px;
    color: #32ce17;
    font-size: 14px;
}

.notification-icon {
    display: inline-block;
    margin-right:1rem;
    float:left;
    width:40px;
    height:40px;
}
.message-container{
    display:flex;
    line-height: 21px;
    height: 40px;
    color:#fff;
    word-wrap: normal;
    width: 80%;
    flex-direction: column;
    justify-content: center;
}

.error .notification-icon {
    background: url(../img/interfaces/error-warning.png) no-repeat center center;
    background-size: cover;
}

.success .notification-icon {
    background: url(../img/interfaces/checkmark-success.png) no-repeat center center;
    background-size: cover;
}

@media(max-width: 1024px) {
    .message {
        padding-top: 30px;
        padding-bottom: 30px;
        font-size: 20px;
    }
}




/* nav */

.navigation {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
    min-height: 125px;
    font-size: 16px;
    line-height: 1;
}

.navigation ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.navigation li {
    position: relative;
    display: inline-block;
    margin: 0px;
    padding: 0px;
}

/*.navigation .back-to-equiton {
    float: left;
    margin-top: -5px;
}*/

@media(max-width: 767px) {
    .navigation li {
        display: block;
    }
    .navigation li+li {
        margin-top: 10px;
    }
}

.navigation .primary-navigation ul {
    position: absolute;
    top: 99%;
    left: -15px;
    display: none;
    z-index: 100;
}

@media(min-width: 1051px) {
    .navigation .primary-navigation li:hover ul {
        display: block;    
    }
}

.navigation .primary-navigation li.show-subnav ul {
    display: block;
}

.navigation .primary-navigation ul li {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    padding: 0;
    white-space: nowrap;
    background: #FFF;
}

.navigation .primary-navigation ul li a {
    border: none;
    margin: none;
    padding: 15px;
}

.navigation .primary-navigation ul li a:hover {
    text-decoration: underline;
}

.navigation .sub-navigation {
    /*box-sizing: border-box;*/
    position: absolute;
    display: block;
    display: inline-block;
    top: 20px;
    right: 80px;
    width: 100%;
    width: auto;
    max-width: 1140px;
    font-size: 14px;
    text-align: right;
}

.navigation .sub-navigation li+li {
    margin-left: 60px;
}

.navigation .sub-navigation a {
    color: #6D6E71;
    text-decoration: none;
}

.navigation .sub-navigation .logout {
    padding-right: 25px;
    background: url(../img/interfaces/logout.png) no-repeat right center;
}

@media(min-width: 1300px) {
    .navigation .sub-navigation {
        right: -moz-calc((100% - 1140px) / 2);
        right: calc((100% - 1140px) / 2);
    }
}


@media(max-width: 1024px) {
    .navigation {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 25px;
        min-height: 100px;
    }
    .navigation .sub-navigation {
        right: 30px;
    }
}

.navigation .primary-navigation li+li {
    margin-left: 50px;
}

.navigation .primary-navigation ul li + li {
    margin-left: 0px;
}

.navigation .primary-navigation.logged-out li+li {
    margin-left: 15px;
}

.navigation .primary-navigation a {
    display: inline-block;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
    color: inherit;
}

.navigation .primary-navigation a.toggle-subnav {
    cursor: pointer;
    border: none;
    margin-left: 15px;
}    

.navigation .primary-navigation .selected > a,
.navigation .primary-navigation a:hover {
    border-bottom-color: #253149;
}

.navigation .login-button:after {
    content: url(../img/interfaces/login.png);
}

.navigation .register-button:after {
    content: url(../img/interfaces/register.png);
}


@media(max-width: 1280px) {
    .navigation .sub-navigation li+li,
    .navigation .primary-navigation li+li {
        margin-left: 40px;
    }
}

.toggle-nav {
    display: none;
}

@media(max-width: 1050px) {
    .toggle-nav {
        display: block;
        position: absolute;
        top: 40px;
        right: 40px;
        font-size: 0px;
        width: 30px;
        height: 30px;
        background: url(../img/interfaces/nav-toggle-menu.svg) no-repeat center / 100%;
    }
    .navigation {
        position: relative;
    }
    .navigation nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        max-height: 0px;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0px;
        width: 100%;
        z-index: 100;
        background: #FFF;
        box-shadow: 0px 20px 20px rgba(57,64,80,.5);
    }
    .navigation.show-nav nav {
        max-height: 10000px;
    }
    .navigation .primary-navigation.logged-in li,
    .navigation .sub-navigation li {
        position: static;
        display: block;
        width: 100%;
    }
    .navigation .sub-navigation li+li,
    .navigation .primary-navigation li+li {
        margin-left: 0px;
    }
    .navigation .primary-navigation.logged-out {
        padding-left: 30px;    
    }
    .navigation .primary-navigation.logged-out li+li {
        margin-left: 20px;
    }
    .navigation .sub-navigation a,
    .navigation .primary-navigation.logged-in a {
        box-sizing: border-box;
        display: inline-block;
        padding: 15px 15px 15px 30px;
        border-width: 0px;
    }
    .navigation .primary-navigation a.toggle-subnav {
        margin-left: 0px;
        padding-left: 15px;
    }
    .navigation .primary-navigation ul {
        position: static;
    }
    .navigation .sub-navigation {
        position: static;
        order: 1;
        text-align: left;
        padding-bottom: 15px;
    }
    .navigation .back-to-equiton {
        float: none;
    }
}

@media(max-width: 767px) {
    .navigation .primary-navigation.logged-out {
        box-sizing: border-box;
        padding: 0px 30px;
    }
    .navigation .primary-navigation.logged-out li+li {
        margin-left: 0px;
    }
}

/* banners */

.banner {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

.banner.dashboard {
    background: url(../img/banners/dashboard.png) no-repeat center / cover;
    color: #FFF;
}

.banner.resources {
    background: url(../img/banners/resources.png) no-repeat center / cover;
    color: #FFF;
}

.banner.profile {
    background: url(../img/banners/profile.png) no-repeat center / cover;
    color: #FFF;
}

.banner.fund-details {
    background: url(../img/banners/fund-details.png) no-repeat center / cover;
    color: #FFF;
}

.banner.contact {
    background: url(../img/banners/contact.png) no-repeat center / cover;
    color: #FFF;
}

.banner.register {
    background: url(../img/banners/login.png) no-repeat center / cover;
    color: #FFF;
}



.dashboard.performance.banner {
	position: relative;
	padding-right: 425px;
	background: url(../img/banners/dashboard.png) no-repeat center / cover;
}

@media(min-width: 1300px) {
	.dashboard.performance.banner {
		padding-right: calc(((100% - 1140px) / 2) + 350px);
	}
}

.dashboard.performance.banner h2 {
	white-space: normal;
}


.banner .contact-callout {
	position: absolute;
	top: 55px;
	right: 100px;
	box-sizing: border-box;
	background-color: #f8991c;
	width: 310px;
	padding: 35px 30px;
	color: #394050;
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
}

@media(max-width: 600px) {
	.banner .contact-callout  {
        position: initial;
        display:block;
        /* margin: 1em auto 1em auto; */
	}
}

.contact-page.contact-callout {
	
	box-sizing: border-box;
	background-color: #f8991c;
    /* width: 310px; */
    margin-top:1.2em;
	padding: 35px 40px;
	color: #394050;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
}



@media(min-width: 1300px) {
	.banner .contact-callout {
		right: calc(((100% - 1100px) / 2));
	}
}

.banner .contact-callout strong {
	display: block;
	margin-bottom: 15px;
	color: #FFFFFF;	font-size: 22px;	font-weight: 500;	line-height: 1;
}

.banner .contact-callout .button {
	display: inline-block;
	margin-top: 15px;
	font-size: 14px;
}


@media(min-width: 1025px) {
    .banner {
        position: relative;
        padding-top: 90px;
        padding-bottom: 75px;
        padding-right: 50%;
        min-height: 311px;
        background: url(../img/squares.png) no-repeat right center / auto 100%;
    }
    .banner.dashboard {
        background: 
        /* url(../img/squares.png) no-repeat right center / auto 100%, */
                    url(../img/banners/dashboard.png) no-repeat center / cover;
        color: #FFF;
    }
    .banner.resources {
        background:  url(../img/squares.png) no-repeat right center / auto 100%,
                    url(../img/banners/resources.png) no-repeat center / cover;
        color: #FFF;
    }
    .banner.profile {
        background: 
        /* url(../img/squares.png) no-repeat right center / auto 100%, */
                    url(../img/banners/profile.png) no-repeat center / cover;
        color: #FFF;
    }
    .banner.fund-details {
        background: 
                     /* url(../img/squares.png) no-repeat right center / auto 100%, */
                    url(../img/banners/fund-details.png) no-repeat center / cover;
        color: #FFF;
    }
    .banner.contact {
        background: url(../img/squares.png) no-repeat right center / auto 100%,
                    url(../img/banners/contact.png) no-repeat center / cover;
        color: #FFF;
    }
    .banner.register {
        background: url(../img/squares.png) no-repeat right center / auto 100%,
                    url(../img/banners/login.png) no-repeat center / cover;
        color: #FFF;
    }
}

.banner.register h1 {
    font-size: 70px;
    line-height: 0.7;
}

.banner .banner-callout {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 15px 15px 25px;
    background-color: #F8991C;
    font-size: 21px;
    line-height: 1;
    font-weight: 500;
}

.banner .banner-callout .button {
    margin-left: 20px;
}

.banner:before {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
}

.banner h1,
.banner h2,
.banner h3 {
    display: block;
    margin: 0px 0px 20px;
    font-style: normal;
    font-family: BebasNeue, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.banner p {
    margin: 0px;
    padding: 0px;
}

@media(max-width: 767px) {
    .banner h1,
    .banner h2,
    .banner h3 {
        margin: 0px 0px 15px;
        white-space: normal;
    }
}


/* callout */

.callout {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 2px solid #DFE1E7;
    padding-top: 90px;
    padding-bottom: 90px;
    color: #394050;
    font-size: 24px;
    line-height: 1;
}

@media(max-width: 1024px) {
    .callout {
        padding-top: 50px;
        padding-bottom: 50px;
        font-size: 24px;
    }
}

@media(max-width: 767px) {
    .callout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 50px;
        padding-bottom: 50px;
        font-size: 18px;
        text-align: center;
    }
    .callout .button {
        margin-top: 15px;
    }
}

/* multi-account dropdown */
.multi-account-show {
    /* display:none; */
    display: block;
    width:100%;
    height: 40px;
    padding:1em;
    
}


/* footer */

footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* padding-top: 100px; */
    padding-bottom: 50px;
    color: #FFFFFF;
    background-color: #394050;
    font-size: 12px;
    line-height: 21px;
}

footer .newsletter {
    text-align: center;
}

footer .input label {
    display: inline-block;
    font-size: 20px;
    line-height: 28px;
    padding-left: 40px;
    background: url(../img/interfaces/email.png) no-repeat center left / 25px auto;
}

footer .input input {
    display: inline-block;
    width: 290px;
    margin-left: 20px;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

footer .input input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .75) !important;
}

footer .input input:-moz-placeholder {
    color: rgba(255, 255, 255, .75) !important;
}

footer .input input::-moz-placeholder {
    color: rgba(255, 255, 255, .75) !important;
}

footer .input input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .75) !important;
}

footer .button {
    vertical-align: top;
    display: inline-block;
    margin-left: 20px;
    height: 40px;
    background-color: #FFFFFF !important;
    color: #253149 !important;
}

footer .button:after {
    content: url(../img/interfaces/button-arrow-grey.png);
}

footer .social-link {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: 25px;
    background-position: center;
    -moz-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0;
    vertical-align: middle;
}

footer .social-link.linkedin {
    background-image: url(../img/interfaces/linkedin.png);
}

footer .social-link.facebook {
    background-image: url(../img/interfaces/facebook.png);
}

footer .social-link.twitter {
    background-image: url(../img/interfaces/twitter.png);
}

footer .disclaimer {
    width: 100%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 70px 0px;
}

footer .copyright,
footer .privacy-policy {
    font-size: 14px;
}

footer .privacy-policy a {
    display: inline-block;
    margin-left: 45px;
    text-decoration: underline;
}

@media(max-width: 1150px) {
    footer .newsletter {
        width: 100%;
    }
    footer .social {
        display: block;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}

@media(max-width: 1024px) {
    footer .input label {
        display: block;
        width: 275px;
        margin: 0px auto 20px;
    }
    footer .newsletter,
    footer .newsletter .input {
        width: 100%;
        text-align: center;
    }
    footer .disclaimer {
        width: 100%;
        margin: 20px 0px;
    }
}

@media(max-width: 767px) {
    footer {
        padding-top: 30px;
        padding-bottom: 15px;
        text-align: center;
    }
    footer .input,
    footer .input input {
        width: 100%;
        margin: 0px;
    }
    footer .button {
        margin: 15px 0px 0px;
    }
    footer .copyright,
    footer .privacy-policy {
        width: 100%;
    }
    footer .privacy-policy a {
        display: block;
        margin: 5px 0px 0px;
    }
}


/* overlay */

.overlay-container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0ms 300ms;    
}

.overlay-container.show {
    height: 100%;
}

.overlay-container .bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;    
    background: rgba(57, 64, 80, .6);
    opacity: 0;
    transition: opacity 150ms 150ms;
}

.overlay-container.show .bg {
    opacity: 1;
    -webkit-transition: opacity 150ms;
    -moz-transition: opacity 150ms;
    transition: opacity 150ms;
}

.overlay-container .content {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 640px;
    width: 100vw;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #FFF;
    -webkit-box-shadow: 0px 0px 5px rgba(57, 64, 80, .6);
    -moz-box-shadow: 0px 0px 5px rgba(57, 64, 80, .6);
    box-shadow: 0px 0px 5px rgba(57, 64, 80, .6);
    opacity: 0;
    -webkit-transition: opacity 150ms;
    -moz-transition: opacity 150ms;
    transition: opacity 150ms;
}

@media(max-width: 767px) {
    .overlay-container .content {
        max-width: 100%;
        max-height: 100%;
        overflow-x: scroll;
    }    
}

.overlay-container.show .content {
    opacity: 1;
    -webkit-transition: opacity 150ms 150ms;
    -moz-transition: opacity 150ms 150ms;
    transition: opacity 150ms 150ms;
}

.overlay-container .video {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0px;
    padding-bottom: 56.25%;
}

.overlay-container .video iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

/* disclaimer-overlay */

.disclaimer-overlay {
    padding: 70px;
    position: relative;
}

@media(max-width: 767px) {
    .disclaimer-overlay {
        padding: 30px;
    }
}    

.disclaimer-overlay .close {
    position: absolute;
    top: 25px;
    right: 25px;
    text-decoration: underline;
    cursor: pointer;
}

.disclaimer-overlay .cancel {
    display: block;
    text-decoration: underline;
    margin-top: 30px;
    cursor: pointer;
}