#ncform
{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#ncform .ncFieldct
{
    clear: both;
    overflow: hidden;
    width: 100%;
    margin-right: 30px;
}
#ncform .ncFieldct label
{
    float: left;
    text-align: right;
    width: 30%;
    margin-right: 20px;
    font-weight: normal;
    margin-top: 5px;
}
#ncform .ncField
{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#ncform .ncField input, .ncField select
{
    border: none;
    border-bottom: solid 2px #febb1b;
    border-radius: 6px 6px 0 0;
    padding: 12px 15px 15px 15px;
    background-color: rgba(255,255,255,0.1);
    height: auto;
    color: #febb1b;
    opacity: 1;
}
#ncform .ncField input::placeholder {
    opacity: 0.6;
}
.ncField .k-invalid, .ncField .k-invalid
{
    border: solid 2px #990000;
}
.ncSendZone
{
    text-align: center;
    clear: both;
    width: 75%;
}
#ncform .ncSendZone a {
    color: rgb(47, 46, 121);
    background-color: rgb(254, 187, 27);
    padding: 15px;
    border-radius: 5px;
    display: block;
    font-family: Roboto;
    font-weight: 600;
    opacity: 1;
}
#ncform .ncpopoutf
{
	z-index: 999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;				
	background-color: #666666;
	color: #aaaaaa;
	opacity: .8;
    filter: alpha(opacity = 50);
}
.ncpopf
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    height: 200px;
	position: absolute;
	color: #000000;
	background-color: #ffffff;
	top: 50%;
    z-index: 10000;
    border-radius:15px;
    padding:15px;
    text-align:center;
	left: 50%;
	margin-top: -100px;
	margin-left: -150px;
}

.ncpopf .ncpopclose {
    margin-top: 1em;
}

@media screen and (max-width: 1200px) {
    #ncform {
        flex-direction: column;
    }
    #ncform .ncFieldct {
        margin-right: 0px;
        margin-bottom: 20px;
    }
    #ncform .ncSendZone {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    #ncform .ncSendZone .sendButtonHolder {
        width: 60%;
    }
    #ncform .ncSendZone a {
        width: 100%;
    }
}