#vue-tooltip .fa {
    font-size: 20px;
    padding: 5px;
    margin: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
}

#vue-tooltip .fa:hover {
    cursor: pointer;
}

.megafon-wrapper {
    position: fixed;
    top: 50%;
    left: 100px;
}

.megafon-wrapper .fa {
    border-radius: 100%;
    border: 2px solid #333;
    padding: 10px;
    background-color: #f1f1f1;
    font-size: 30px;
}

.megafon-wrapper .fa:hover {
    cursor: pointer;
}

/** MODAL **/

.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    transition: opacity .3s ease;
}

.modal-container .modal-form {
    width: 100%;
}

.modal-container {
    display: flex;
    justify-content: center;
    max-width: 700px;
    min-height: 454px;
    margin: 40px auto 0;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.green-span {
    background-color: #d1d3d4;
}

.modal-header p {
    margin-top: 0;
    color: #f1f1f1;
}

.modal-body {
    margin: 20px 0;
}

.text-right {
    text-align: right;
}

.form-label {
    display: block;
    margin-bottom: 1em;
}

.form-label > .form-control {
    margin-top: 0.5em;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5em 1em;
    line-height: 1.5;
    border: 1px solid #ddd;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter {
    opacity: 0;
}

.modal-leave-active {
    opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

body.modal-open {
    overflow: hidden;
}

.modal-container .modal-footer {
    display: flex;
    flex-direction: row;
}

.modal-container .modal-footer .recaptcha {
    width: 50%;
}

.modal-container .modal-footer .controls {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 3px;
}

.modal-container .modal-footer .controls button {
    align-self: flex-end;
    margin-left: 10px;
}

.modal-container .modal-message {
    display: flex;
    align-self: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.modal-container .modal-message .actify-modal-icon {
    width: 140px;
    height: 140px;
    font-size: 140px;
    color: #88b04b;
    align-self: center;

}
.modal-container .modal-message .actify-modal-icon.fa-exclamation-circle {
    color:#FF1818;
}
.modal-container .modal-message .actify-text-message {
    font-weight: bold;
    font-size: 22px;
    padding-top: 20px;
}

.modal-container .modal-form.highlight{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-body blockquote {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 16px 32px;
    overflow: visible;
}

.modal-body blockquote h3 {
    font-size:21px;
}
.modal-body blockquote h3{
    padding-bottom: 0px;
}

.modal-body blockquote h3:before {
    content: "\201C";
    font-weight: bold;
    font-size:50px;
    color:#889c0b;
    position: absolute;
    top: -0.2em;
    left: 0em;
    font-family: 'Georgia';
}
.modal-body blockquote h3:after {
    content: "\201D";
    font-weight: bold;
    font-size:50px;
    color:#889c0b;
    position: absolute;
    bottom: -0.6em;
    right: 0;
    font-family: 'Georgia';
}

.modal-container .modal-footer .controls button {
    color: #444;
}
.actify-mark{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 481px) and (max-width: 767px) {

    .megafon-wrapper {
        top: 88%;
        left: 10px;
    }

    .megafon-wrapper .fa{
        font-size: 26px;
    }

    .modal-container .modal-footer{
        flex-direction: column;
    }

    .modal-container .modal-footer .recaptcha, .modal-container .modal-footer .controls{
        width: 100%;
    }

    .modal-container .modal-footer .controls{
        margin-top: 10px;
    }

}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    .megafon-wrapper {
        top: 88%;
        left: 10px;
    }

    .megafon-wrapper .fa{
        font-size: 26px;
    }

    .modal-container .modal-footer{
        flex-direction: column;
    }

    .modal-container .modal-footer .recaptcha, .modal-container .modal-footer .controls{
        width: 100%;
    }

    .modal-container .modal-footer .controls{
        margin-top: 10px;
    }
}