.survey_container{
    position: fixed;
    height: 100%;
    width: 100%;
    bottom: 0;
    top: 0;
    z-index: 9999999;
    background: rgba(0,0,0,0.7);
}

.survey_box{
    width: 400px;
    height: auto;
    position: absolute;
    top: 109px;
    padding: 40px 30px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0px 0 20px rgba(0,0,0,0.4);
    right: 50%;
    background: white;
    left: 50%;
    margin-right: -200px;
    margin-left: -200px;
    animation-name: popup;
    animation-duration: 2s;
}
@keyframes popup {
    0% {
        opacity: 0;
        top:0px;
    }
    100% {
        opacity: 1;
        top: 109px;
    }
}
.survey_box p.h1{
    font-size: 20px;
    margin-top: 0;
    color: #617d8a;
}
.survey_box p{
    font-size:14px;
    color: #929cac;
}
.survey_box #survey_button_show_no_more{
    color: #929cac;
    font-size:13px;
    text-decoration: underline;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 10px;
}
.survey_box #survey_button_close_for_now{
    padding: 15px 40px;
    border-radius: 2px;
    font-size: 15px;
    border:0px;
    background:#1a2c59 ;
    color: #ffffff;
}
.survey_box #survey_button_close_for_now:hover{
    border:0px;
    background: #23457e;
    color: #ffffff !important;
}

.survey_box .survey_button_container .changesite_button{
    padding: 15px 40px;
    border-radius: 2px;
    font-size: 15px;
    border:0px;
    background:#1a2c59;
    color: #ffffff;
    margin: 30px 0;
}

.survey_box .survey_button_container .changesite_button:hover{
    border:0px;
    background: #23457e;
    color: #ffffff !important;
}

.survey_box .survey_button_container .changesite_button2{
    padding: 0px !important;
    border-radius: 0px !important;
    font-size: 15px !important;
    border:0px !important;
    background:#ffffff !important;
    color: gray !important;
}
a.changesite_button2#survey_button_show_no_more:hover{
    border:0px;
    background-color: transparent;
    color: #738c97 !important;
}