
@import url('https://fonts.googleapis.com/css?family=Roboto');

/*modal*/
.coderun_callback_modal_wrapper{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scale(0);
    transition: opacity 0.3s linear, transform 0.1s linear 0.3s, background 0.3s linear;
    opacity: 0;
    z-index: 999999;
}

.coderun_callback_close_modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.coderun_callback_close_modal_min {
    position: relative;
    top: -10px;
    width: 20px;
    height: 20px;
    z-index: 75;
    left: 358px;
}

.coderun_callback_close_modal_min::before {
    content: '+';
    position: absolute;
    top: 20%;
    right: 60%;
    font-size: 25px;
    color: #424242;
    line-height: 0;
    transform: rotate(45deg);
    transition: all 0.3s linear;
}
.callback_after_title_form {
    font-size: 14px;
    padding: 5px;
}
.coderun_callback_button i {
    margin:5px;
}

.coderun_callback_container {
    width: 400px;
    margin: 0 auto;
    position: relative;
}

/*form*/
#coderun_callback_call_me {
    background: rgba(51,51,51,0.9);
    text-align: center;
}

#coderun_callback_call_me:target {
    transform: scale(1);
    opacity: 1;
    transition: opacity 0.3s linear 0.1s, transform 0.1s linear, background 0.3s linear;
}

#coderun_callback_call_me .coderun_callback_callback_form{
    background:#f9f9f9;
    color:#333333;
}

#coderun_callback_call_me .coderun_callback_callback_form a{
    color:#333333;
}

#coderun_callback_call_me .coderun_callback_callback_form button{
    background:#4095f4;
    color:#ffffff;
}

#coderun_callback_call_me .coderun_callback_callback_form input{
    border-color: #cccccc;
}

#coderun_callback_call_me .coderun_callback_callback_form textarea{
    border-color: #cccccc;
}

.coderun_callback_callback_form input::-webkit-input-placeholder {
    color: #888;
    text-overflow: ellipsis;
    opacity: 1; 
    transition: opacity 0.3s ease;
}

.coderun_callback_callback_form input:-moz-placeholder {
    color: #888;
    text-overflow: ellipsis;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.coderun_callback_callback_form input::-moz-placeholder {
    color: #888;
    text-overflow: ellipsis;
    opacity: 1; 
    transition: opacity 0.3s ease;
}

.coderun_callback_callback_form input:-ms-input-placeholder {
    color: #888;
    text-overflow: ellipsis;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.coderun_callback_callback_form p,
.coderun_callback_callback_form a,
.coderun_callback_callback_form input[type="text"],
.coderun_callback_callback_form input[type="email"],
.coderun_callback_callback_form input[type="tel"],
.coderun_callback_callback_form input[type="url"],
.coderun_callback_callback_form textarea,
.coderun_callback_callback_form button[type="submit"] {
    font-weight: 400;
    font-stretch: normal;
    font-size: 12px;
    line-height: 16px;
    font-family: Roboto, sans-serif;
    letter-spacing: normal;
}

.coderun_callback_callback_form {
    background: #F9F9F9;
    padding: 30px;
    margin: 50px 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.coderun_callback_callback_form a{
    text-decoration: underline;
    outline:none;
    border:none;
    box-shadow: none;
    font-size: 12px;
}

.coderun_callback_callback_form a:link{
    outline:none;
    border:none;
    box-shadow: none;
}

.coderun_callback_callback_form a:hover{
    text-decoration: none;
    outline:none;
    border:none;
    box-shadow: none;
}

.coderun_callback_callback_form .title_h3 {
    display: block;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: Roboto, sans-serif;
}

.coderun_callback_callback_form input[type="text"],
.coderun_callback_callback_form input[type="email"],
.coderun_callback_callback_form input[type="tel"],
.coderun_callback_callback_form input[type="url"],
.coderun_callback_callback_form textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0px 0px 10px 0px;
    padding: 10px 0px 10px 5px;
    line-height: normal;
    box-shadow: none;
    text-shadow: none;
    letter-spacing: 0px;
    border-radius: unset;
    height: auto;
    display: block;
}

.coderun_callback_callback_form input[type="text"]:hover,
.coderun_callback_callback_form input[type="email"]:hover,
.coderun_callback_callback_form input[type="tel"]:hover,
.coderun_callback_callback_form input[type="url"]:hover,
.coderun_callback_callback_form textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
}

.coderun_callback_callback_form textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

.coderun_callback_callback_form button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
    text-transform: none;
    border-radius: unset;
    margin-top: 10px;
}

.coderun_callback_callback_form button[type="submit"]:hover {
    background: #43A047;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.coderun_callback_callback_form button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.coderun_callback_callback_form input:focus,
.coderun_callback_callback_form textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
}

/*button*/
.coderun_callback_button{
    display: block;
    padding: 9px;
    text-decoration: none;
    border:none;
    box-shadow: 0px 0px 7px 0px #c0c0c0!important;
    font-size: 16px;
    border-radius: 20px;
    line-height: normal;
    opacity: 0.9;
    position: fixed;
    background-color: #df243a; 
    color: #ffffff; 
    /*    right:40px; 
        bottom:40px;*/
    font-family: Roboto, sans-serif;
    z-index: 999;
}

.coderun_callback_button .button-text {
    display: inline-block;
    position: relative;
    top: 0px;

}

.coderun_callback_button:hover{
    text-decoration: none;
    outline:none;
    border:none;
    box-shadow: none;
    opacity: 1;
    color: #ffffff; 
} 

.coderun_callback_button:focus{
    text-decoration: none;
    outline:none;
    border:none;
    box-shadow: none;
}   

.coderun_callback_button:link{
    text-decoration: none;
    outline:none;
    border:none;
    box-shadow: none;
}

.copyright{
    display: none;
}
.policy_block {
    float: left;
}

/*mobile*/
@media only screen and (max-width: 430px){
    .coderun_callback_container {
        width: 315px;
    }

    .coderun_callback_callback_form{
        margin: 20px 0;
    }

    .coderun_callback_callback_form .title_h3 {
        font-size: 25px;
        margin:0px;
    }

    .coderun_callback_callback_form .title_h4 {
        margin:0px;
    }

    .coderun_callback_close_modal_min {
        left: 275px;
    }

    .coderun_callback_button {
        font-size: 14px;
    }
}

@media only screen and (max-width: 315px){
    .coderun_callback_container {
        display: none;
    }

    .coderun_callback_button {
        font-size: 10px;
    }

    .coderun_callback_button {
        display: none;
    }
}