@-webkit-keyframes modal__theme {
    0% {
        visibility: visible;
        margin: 0;
        opacity: 1
    }

    99% {
        margin: 0
    }

    100% {
        visibility: hidden;
        margin: -9999px 0 0 -9999px;
        opacity: 0
    }
}

@keyframes modal__theme {
    0% {
        visibility: visible;
        margin: 0;
        opacity: 1
    }

    99% {
        margin: 0
    }

    100% {
        visibility: hidden;
        opacity: 0
    }
}

@-webkit-keyframes modal__theme-visible {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes modal__theme-visible {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes modal__theme__content {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
}

@keyframes modal__theme-visible__content {
    0% {
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes modal__theme-visible__content {
    0% {
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes modal__theme__content {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px!important;
    z-index: 9999;
}

.modal__theme {
    background: rgba(0,0,0,.8)
}

.modal__data {
    min-width: 100px;
    max-width: 80%;
    padding: 0;
    box-sizing: border-box;
    margin: 20px auto
}

.modal__content {
    /* padding: 20px; */
    background: #fff;
    margin-bottom: 20px;
}

.modal,.modal__wrap {
    width: 100%;
    height: 100%
}

.modal__wrap {
    display: table
}

.modal__cell {
    display: table-cell;
    vertical-align: middle
}

.modal__theme .modal__data {
    box-shadow: 0 0 0 1px rgba(0,0,0,.1),0 10px 20px -5px rgba(0,0,0,.4)
}

.modal__theme {
    display: none;
    visibility: hidden;
    margin: -9999px 0 0 -9999px
}

.modal__theme,.modal__theme .modal__data {
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

.modal__theme.modal__inited {
    display: block
}

.modal__theme.modal__animation {
    -webkit-animation-name: modal__theme;
    animation-name: modal__theme
}

.modal__theme.modal__animation .modal__data {
    -webkit-animation-name: modal__theme__content;
    animation-name: modal__theme__content
}

.modal__theme.modal__visible {
    visibility: visible;
    margin: 0
}

.modal__theme.modal__visible.modal__animation {
    -webkit-animation-name: modal__theme-visible;
    animation-name: modal__theme-visible
}

.modal__theme.modal__visible.modal__animation .modal__data {
    -webkit-animation-name: modal__theme-visible__content;
    animation-name: modal__theme-visible__content
}

.modal__header {
    border-bottom: none;
    background-color: #fff;
    padding: 15px 20px;
    text-align: center;
    padding: 30px 30px;
    font-size: 22px;
    line-height: 30px;
}

.modal__close {
    padding: 25px;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e") no-repeat 50% 50%;
    width: 12px;
    height: 12px;
    opacity: .9;
    filter: alpha(opacity=90) invert(100%);
    cursor: pointer;
    outline: none;
    display: block;
    position: absolute;
    z-index: 100;
    right: -5px;
    top: -3px;
}

.modal__close:hover {
    opacity: .75;
    filter: alpha(opacity=75)
}

.modal__form {
    padding: 45px 45px;
}

.modal__form-submit {
    margin-top: 10px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0;
    line-height: 35px;
    height: 35px;
    color: #fff;
    background-color: #14425f;
    width: 100%;
    border: 0;
    cursor: pointer;
    outline: none;
    display: inline-block;
    border-radius: 8px;
}

.modal__form-submit:hover {
    background-color: #67a0c4;
    color: white;
    width: 100%;
}

.modal__form-group {
    margin-bottom: 7px;
    text-align: center;
}

.modal__form-group:last-child {
    text-align: center;
}

.modal__form-input {
    display: block;
    text-align: center;
    width: 100%;
    padding: 6px 12px;
    background-image: none;
    border: 1px solid #333;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    background-color: transparent;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    /* border-top: none; */
    /* border-right: 0; */
    /* border-left: 0; */
    border: 2px solid #e7e7e7;
    font-size: 13px;
    color: #333;
    line-height: 46px;
    height: 46px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    padding-left: 0;
    outline: none;
    box-sizing: border-box;
}

.modal__form-input:focus {
    /* border-bottom-color: #ee8208; */
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none
}

.modal__form-hidden {
    display: none
}

.modal__form-close {
    padding: 34px;
}

.modal__form-close-action {
    margin-top: 15px
}

.modal__form-close-action a {
    text-align: center;
    text-decoration: none
}

.modal__form-close-text {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    padding: 0 15px;
    display: grid;
    /* border: 1px solid #7fca6c; */
    padding: 20px;
    border-radius: 20px;
    /* background: #ffffff; */
}

.modal__form-group-text {
    margin-bottom: 25px;
    text-align: center;
    font-size: 20px;
}

.modal__content1 {
    padding: 20px;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 0px 0px 15px 15px;
}

.modal__form-submit a:focus:not{
    color: #fff;
}
.honeypot {
    height: 10px;
    border: 1px solid #ffffff;
    width: 20px;
}

.white {
    color: #fff;
    /* font-size: 30px; */
   }
   
   
   .fake-submit {
    height: 10px !important;
    margin: 0px !important;
    background: none !important;
    cursor: default !important;
    margin: 0px !important;
   }
   .testform {
    width: 100%;
    height: 10px;
    color: white;
    border: none;
   }
   .submitgreen {
    margin-top: 10px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0;
    line-height: 35px;
    height: 35px;
    color: #fff;
    background-color: #00a74e;
    width: 100%;
    border: 0;
    cursor: pointer;
    outline: none;
    display: inline-block;
    border-radius: 8px;
    max-width: 200px;
    text-align: center;
   }
   .submitgreen:hover {
    margin-top: 10px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0;
    line-height: 35px;
    height: 35px;
    color: #fff !important;
    background-color: #05cf64;
    width: 100%;
    border: 0;
    cursor: pointer;
    outline: none;
    display: inline-block;
    border-radius: 8px;
    max-width: 200px;
    text-align: center;
   }
   .fs12{
    font-size: 12px;
   }