/*------------questions------------*/

input,
textarea {
    -webkit-appearance: none;
}

.question {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    position: fixed;
    right: 10px;
    bottom: 40px;
    width: 150px;
    height: 50px;
    background-color: #e97845;
    border-radius: 25px;
    z-index: 1000;
    cursor: pointer;
}

#code {
    width: 350px;
    height: 550px;
    background-color: #f1f1f1;
    /*padding: 10px;*/
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10002;
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    overflow: auto;
}

.close1 {
    position: absolute;
    top: 5px;
    right: 5px;
    transition: .3s;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.close1 img {
    width: 22px;
    height: 22px;
}

.close1:hover {
    transform: rotate(180deg);
}

.question_title {
    border-radius: 4px;
    background-color: rgb(9, 10, 25);
    position: relative;
    /*margin-left: 10px;
    margin-top: 32px;*/
    margin: 32px auto 0 auto;
    width: 310px;
    height: 46px;
    text-align: center;
}

.question_title p {
    font-size: 16px;
    font-weight: bold;
    line-height: 46px;
    color: #ffffff;
}

.question:hover {
    background-color: #c9673b;
}

@media screen and (max-width: 767px) {
    .question,
    #code {
        bottom: 10px;
    }
}

.question_ul p {
    line-height: 25px;
    color: red;
    margin-top: 10px;
    margin-bottom: -5px;
}

.question_ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 310px;
    margin: 0 auto;
}

.question_ul li {
    list-style-type: none;
    display: inline-block;
    width: 308px;
    height: 36px;
    margin: 10px auto 0;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    border-radius: 4px;
}

.question_ul li input {
    padding: 0 10px;
    width: 288px;
    height: 36px;
    border: none;
    border-radius: 4px;
}

.question_ul .name,
.question_ul .phone {
    float: left;
    border: none;
    background-color: #f1f1f1;
    width: 310px;
}

.question_ul .name input {
    width: 130px;
    height: 36px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
}

.question_ul .name input.firstname {
    float: left;
}

.question_ul .name input.lastname {
    float: right;
}

.question_ul .phone input {
    height: 36px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
}

.question_ul .phone .phone_country {
    width: 60px;
    float: left;
}

.question_ul .phone .phone_number {
    width: 200px;
    float: right;
}

.question_ul .text_box {
    height: 100px;
}

.question_ul .text_box textarea {
    padding: 10px;
    width: 288px;
    height: 98px;
    border: none;
    border-radius: 4px;
}

.question_ul .submit {
    background-color: #E60013;
    border: none;
}

.question_ul .submit input {
    width: 310px;
    height: 36px;
    background: #E60013;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    -webkit-appearance: none;
}

@media screen and (max-width: 767px) {
    #code {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    .close1 {
        top: 10px;
        right: 10px;
    }
    .question_title {
        margin: 32px auto 0;
    }
    .question_ul {
        margin: 0 auto;
    }
    .question {
        line-height: 42px;
        width: 124px;
        height: 40px;
    }
}






/*------------questions------------*/