.custom-header{
    position: fixed;
    top: 0;
    display: inline-block;
    text-align: end;
    right: 0;
    left: 0;
    z-index: 1038;
}

.nav-link {
    padding: 1rem 0.6rem;
}
.lang-pd {
    padding: 1.4rem 0.6rem;
}

.login-bg{
    background-color: lightblue;
}

.landing-btn{
    border-radius: 15px;
}
.form-group {
    position:relative;

    & + .form-group {
        margin-top: 20px;
    }
}

.form-label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #999;
    background-color: #fff;
    z-index: 10;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
}

.focused .form-label {
    transform: translateY(-125%);
    font-size: .75em;
}

.form-input {
    position: relative;
    padding: 12px 0px 5px 0;
    width: 100%;
    outline: 0;
    border: 0;
    box-shadow: 0 1px 0 0 #e5e5e5;
    transition: box-shadow 150ms ease-out;

    &:focus {
        box-shadow: 0 1px 0 0 #e5e5e5;
    }
}

.form-input.filled {
    box-shadow: 0 2px 0 0 #eee;
}
.form-control-position-right{
    left: auto;
    top: 10px;
    position: absolute;
    right: 0;
    z-index: 2;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
}
.form-control-position-right-reg{
    left: auto;
    top: 0;
    position: absolute;
    right: 0;
    z-index: 2;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
}

.form-control-select{
    background-color: transparent;
    border-width: 0 0 1px 0 !important;
    border-radius: 0;
    z-index: 1;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    background-image: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.select {
	background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 0px 1.5em;
	background-repeat: no-repeat;
}

.select:focus {
	background-image:
		linear-gradient(45deg, green 50%, transparent 50%),
		linear-gradient(135deg, transparent 50%, green 50%),
		linear-gradient(to right, #ccc, #ccc);
	background-position:
		calc(100% - 15px) 1em,
		calc(100% - 20px) 1em,
		calc(100% - 2.5em) 0.5em;
	background-size:
		5px 5px,
		5px 5px,
		0px 1.5em;
	background-repeat: no-repeat;
	border-color: #000;
	outline: 0;
}

.br-10{
    border-radius: 10px !important;
}
.w-35{
    width: 35%;
}
.w-65{
    width: 65%;
}
.border-bottom-1{
    border-bottom: 1px solid #eee;
}
.bg-grey{
    background-color: gray !important;
}
.md-mr-2{
    margin-right: 2rem;
}
/* CSS for mobile screens */
@media only screen and (max-width: 600px) {

    .md-mr-2{
        margin-right: 0;
    }
}
