.page_head_nayar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.nayar_request_form input,.nayar_request_form textarea{margin: 0 0 15px 0;}
.submit_req_nayar{
    background: var(--main-nayar);
    color: #fff;
    width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 0;
    border-radius: 5px;
}
.page_head_left_nayar{
    position:relative;
}
.contact_btn_pop{
    border: 0;
    color: #fff;
    background: #FE7A0D;
    border-radius: 100%;
    width: 65px;
    height: 65px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.contact_btn_pop::before{
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background: #FE7A0D;
    position: absolute;
    left: -8px;
    top: -8px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: nayar-pulse 2s infinite;
    animation: nayar-pulse 2s infinite;
    border-radius: 100%;
    z-index: -5;
}
.smiley_madanayar{
    margin: 5px 0 0 0;
}
.nirweb_upload_control{
    display: flex;
    align-items: center;
    max-width: 500px;
    border: 1px solid var(--main-nayar);
    border-radius: 5px;
    padding: 5px;
}
.nirweb_upload_control_btn{
    background: var(--main-nayar);
    color: #fff;
    padding: 7px;
    border-radius: 5px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin-right: auto;
}

.nirweb_upload_control_btn input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    right: 0;
    bottom: 0;
}
.page_bottom_nayar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0 0;
}
.page_bottom_nayar a{
    border-radius: 6px;
    background: #FEAB1D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 180px;
    height: 48px;
    display:none;
}
.page_bottom_nayar a svg{
    margin: 0 6px 0 0;
}
.nirweb_upload_control_btn.uploaded{
    background: #FE7A0D;
}
.form_result_nayar{
    color: green;
    margin: 15px 0 0 0;
    display: block;
}
.form_result_nayar.error{
    color: #f00;
}
.page_contact_links{
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
    min-width: 250px;
    position: absolute;
    top: 75px;
    display: none;
    left: 0;
    z-index: 1;
}
.triangle_nayar{
    position: absolute;
    top: -13px;
    left: 13px;
}
.page_contact_links li{

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 0 0 8px 0;

    border-bottom: 1px solid #eee;

    padding: 0 0 8px 0;
}
.page_contact_links li a{
    color:#000;
}
.page_contact_links li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: 0;
}
@media only screen and (max-width:991px){
    .page_bottom_nayar{
        flex-direction: column;
    }
    .submit_req_nayar,.page_bottom_nayar a{width: 100%}
    .page_bottom_nayar a{margin: 10px 0 0 0;}
}



@-webkit-keyframes nayar-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}
@media only screen and (max-width:460px){
	.page_contact_links{
		left: 0;
		right: auto;
	}
	.triangle_nayar {
    position: absolute;
            left: 13px;
        right: auto;
}
}


