.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    display: none;
    pointer-events: none;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}
.modalDialog:target {
    display: block;
    pointer-events: auto;
}
.form-block {
    width: 300px;
    position: relative;
    margin: 10% auto;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    /* background: -webkit-linear-gradient(#fff, #999); */
    background: -o-linear-gradient(#fff, #999);
    /* box-shadow: 0px 0px 10px #7dc0de; */
}
.close {
    color: white !important;
    line-height: 25px;
    position: absolute;
    right: -30px;
    text-align: center;
    top: -30px;
    width: 26px;
    text-transform: lowercase;
    text-decoration: none;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    font-size: 22px;
    -moz-box-shadow: 1px 1px 3px #000;
    opacity: 0.8;
}
.form-block h3 {
    color: white;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    height: 40px;
    font-size: 18px;
    overflow: hidden;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: #1d7ae3 !important;
    background: -moz-linear-gradient(top, #5db8f2 0%, #1d7ae3 82%, #369cec 100%) !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5db8f2), color-stop(82%,#1d7ae3), color-stop(100%,#369cec)) !important;
    background: -webkit-linear-gradient(top, #5db8f2 0%,#1d7ae3 82%,#369cec 100%) !important;
    background: -o-linear-gradient(top, #5db8f2 0%,#1d7ae3 82%,#369cec 100%) !important;
    background: linear-gradient(to bottom, #ff7137 0%,#e6571d 82%,#f56d36 100%) !important;
    border-color: #007998;
}
.recall_icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    background: url(/wp-content/themes/quasartheme/images/recall_svg.svg);
    color: white;
    fill: yellow;
    stroke: green;
    stroke-width: 4;
}
label.form__label {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    margin: 0px;
    width: 100%;
    text-shadow: none;
    color: #403f3f;
    font-size: 14px;
}
.form-block form {
    padding: 10px 25px 15px;
    /* margin: 0 0 1em; */
}

#recall input[type="text"] {
    border-radius: 3px;
    margin-left: 0px;
    background: #FFF;
    border: 1px solid #ddd;
    font-size: 13px !important;
    line-height: 16px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.75);
    display: block;
    margin: 0 0 1em 0;
    padding: 0.5em;
    height: 2.3125em;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: -webkit-box-shadow 0.45s, border-color 0.45s ease-in-out;
    -moz-transition: -moz-box-shadow 0.45s, border-color 0.45s ease-in-out;
    transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}
#btn {
    margin: 0 auto;
    width: 50%;
    letter-spacing: 1px;
    text-transform: inherit;
}
#result_form {
    text-align: center;
    /* margin-bottom: -18px; */
    display: block;
    padding-bottom: 1em;
    text-shadow: none;
}

.error {
    color: red;
}

.succes {
    color: green;
}
.close:hover {
    opacity: 1;
}