.cyb-wrapper {
    display: inline-block;
    overflow: hidden;
    position: fixed;
    z-index: 999;
}
.cyb-title {
    background: #fd806e;
    height: 40px;
}
.cyb-title h3 {
    color: #fff;
    text-align: right;
    padding: 10px 15px;
    font-size: 17px;
    text-transform: initial;
    margin: 0;
    font-family: Helvetica,Arial,sans-serif;
}
.cyb-mobile {
    padding: 14px 19px;
    background: #fd806e;
    color: #fff;
    cursor: pointer;
    box-shadow: rgba(0,0,0,0.1) 0 0 1px 2px;
    border-radius: 50%;
}
.cyb-body {
    display: none;
}
.cyb-wrapper.active .cyb-body {
    display: block;
    background-color: #fcfcfc;
}
.cyb-message {
    padding: 0 15px;
}
.cyb-message.success{
    color: green;
}
.cyb-message.errpr{
    color: red;
}
#cyb-submit .fa-spinner {
    display: none;
    font-size: 20px;
}
#cyb-submit.disabled .fa-spinner {
    display: block;
}
p.cyb-intro {
    text-align: center;
    padding: 15px 40px;
    margin: 0 20px;
    color: #616161;
    font-weight: 500;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 15px;
}
form#cyb-form .button {
    margin: 15px 0 30px;
    width: 100%;
    padding: 17px;
    background: #fd806e;
    box-shadow: none;
    font: bold 14px/100% Arial,sans-serif;
}
.cyb-close {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 37px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    padding: 0 15px;
}
.cyb-close.rotate i {
    transform: rotate(180deg);
    margin: 12px 5px 0 0;
    float: left;
}
.cyb-close span {
    display: none;
    font-size: 15px;
}
.cyb-close.rotate span {
    display: inline-block;
}
form#cyb-form .input-box input, form#cyb-form .input-box textarea {
    background: #fff;
    color: #000;
    border-radius: 5px;
}
form#cyb-form .input-box input::placeholder {
    color: #000;
    font-weight: bold;
    font-size: 13px;

}
form#cyb-form .input-box textarea::placeholder {
    color: #616161;
    font-weight: bold;
    font-size: 13px;
}
/* Responsive */
@media only screen and (max-width: 1024px) {
    .cyb-wrapper {
        bottom: 20px;
        max-width: 260px;
        right: 80px;
        -webkit-box-shadow: 0 4px 5px -1px rgba(0,0,0,0.5);
        -moz-box-shadow: 0 4px 5px -1px rgba(0,0,0,0.5);
        box-shadow: 0 4px 5px -1px rgba(0,0,0,0.5);
        border-radius: 50%;
    }
    .cyb-wrapper.active {
        border-radius: 0;
    }
    .cyb-wrapper input, .cyb-wrapper textarea {
        width: 100% !important;
    }
    .cyb-title {
        display: none;
    }
    .cyb-wrapper.active .cyb-title {
        display: block;
    }
    .cyb-wrapper.active .cyb-mobile {
        display: none;
    }
    .cyb-wrapper.active {
        bottom: 0;
        left: 0;
        top: 0;
        max-width: initial;
        width: 100%;
        background: #fff;
    }
    form#cyb-form .input-box {
        margin: 0 20px 10px;
    }
    form#cyb-form .input-box input, form#cyb-form .input-box textarea {
        max-width: initial;
    }
}
@media only screen and (min-width: 1025px) {
    .cyb-wrapper {
        bottom: 0;
        left: 10px;
        width: 260px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        box-shadow: rgba(0,0,0,0.1) 0 0 1px 2px;
        background: #fff;
    }
    .cyb-wrapper.active {
        width: 320px;
    }
    .cyb-mobile {
        display: none;
    }
    p.cyb-intro {
        margin: 0 20px;
    }
    form#cyb-form .input-box {
        margin-bottom: 10px;
        max-width: 260px;
        margin: 0 auto 10px;
    }
    form#cyb-form .input-box input {
        width: 100%;
    }
}