.remodal button.verify, .remodal button.wrong {
    margin: 0 auto;
    width: auto;
    height: 44px;
    font-family: AndesRoundedW03-Book;
    line-height: 24px
}

html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none
}

.remodal, [data-remodal-id] {
    display: none
}

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
    background: #0e7B6F80
}

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
    padding: 15px
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -.05em;
    content: ""
}

.remodal-overlay, .remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.remodal {
    position: relative;
    outline: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    font-size: 14px;
    color: #16122d;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    max-width: 1000px
}

.remodal-cancel, .remodal-close, .remodal-confirm {
    overflow: visible;
    text-decoration: none;
    outline: 0;
    margin: 0
}

.remodal-is-initialized {
    display: inline-block
}

.remodal-bg.remodal-is-opened, .remodal-bg.remodal-is-opening {
    -webkit-filter: blur(3px);
    filter: blur(3px)
}

.remodal-overlay.remodal-is-closing, .remodal-overlay.remodal-is-opening, .remodal.remodal-is-closing, .remodal.remodal-is-opening {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes
}

.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes
}

.remodal button.verify {
    padding: 10px 20px;
    background: #0bc7b6;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    display: block
}

.remodal button.wrong, .remodal-close {
    background: 0 0;
    padding: 0;
    cursor: pointer;
    display: block
}

.remodal button.wrong {
    border: none;
    border-radius: 0;
    font-size: 20px;
    font-weight: 400;
    color: red;
    text-decoration: underline
}

.remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes
}

.remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes
}

.remodal, .remodal-wrapper:after {
    vertical-align: middle
}

.remodal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    -webkit-transition: color .2s;
    transition: color .2s;
    color: #0e7b6f;
    border: 0;
    border-radius: 50%
}

.remodal-close:focus, .remodal-close:hover {
    color: #0e7b6f
}

.remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 30px;
    content: "\00d7";
    text-align: center
}

.remodal-cancel, .remodal-confirm {
    font: inherit;
    display: inline-block;
    min-width: 110px;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background .2s;
    transition: background .2s;
    text-align: center;
    vertical-align: middle;
    border: 0
}

.remodal-confirm {
    color: #fff;
    background: #81c784
}

.remodal-confirm:focus, .remodal-confirm:hover {
    background: #66bb6a
}

.remodal-cancel {
    color: #fff;
    background: #e57373
}

.remodal-cancel:focus, .remodal-cancel:hover {
    background: #ef5350
}

.remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner, .remodal-confirm::-moz-focus-inner {
    padding: 0;
    border: 0
}

@-webkit-keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@-webkit-keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@media only screen and (min-width: 641px) {
    .remodal {
        padding: 30px;
        max-width: 1000px;
        background-color: #fff;
        border-radius: 50px;
        text-align: left
    }
}

.lt-ie9 .remodal-overlay {
    background: #0e7B6F80
}

.lt-ie9 .remodal {
    width: 1000px
}

.remodal h6 {
    font-size: 20px;
    color: #0e7b6f;
    text-align: center
}

.remodal input[type=email], .remodal input[type=password], .remodal input[type=tel], .remodal input[type=text], .remodal select, .remodal textarea {
    margin: 20px 0 0;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #000
}

.remodal textarea {
    padding: 20px;
    height: 280px;
    overflow: auto;
    resize: none
}

.remodal select {
    background: url(../img/dd-arrow.png) right no-repeat #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.remodal button[type=button], .remodal input[type=submit] {
    margin: 20px auto;
    padding: 10px 40px;
    width: auto;
    height: 50px;
    background-color: #0e7b6f;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
    cursor: pointer;
    transition: .5s
}

.remodal button[type=button].btn-lno {
    background-color: #d23f3f !important
}

.remodal input[type=submit]:focus, .remodal input[type=submit]:hover {
    background-color: #ffdc3c;
    color: #0e7b6f;
    transition: .5s
}

.remodal ::placeholder {
    color: #000;
    opacity: 1
}

.remodal ::-ms-input-placeholder {
    color: #000
}

.remodal button[type=button] a {
    color: #fff
}

.btn-no, .btn-yes {
    margin: 0;
    padding: 5px;
    width: 60px;
    height: 30px;
    background-color: #0e7b6f;
    border: none;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer
}

.uploadFile, .virtual-wrapper p {
    font-size: 14px;
    font-weight: 700
}

.btn-no {
    background-color: #d23f3f
}

.uploadFile {
    margin-top: 15px;
    padding: 5px 15px;
    width: auto;
    background-color: #0e7b6f;
    border: none;
    border-radius: 30px;
    line-height: 20px;
    color: #fff;
    overflow: hidden;
    position: relative;
    resize: none;
    display: inline-block
}

.uploadFile [type=file] {
    cursor: pointer !important;
    display: block;
    font-size: 999px;
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
    z-index: 1
}

.add-memory {
    margin: 0 auto;
    max-width: 690px
}

.add-memory input[type=text] {
    background-color: #e6e8e8
}

.add-informations {
    margin: 0 auto;
    max-width: 320px
}

.virtual-wrapper {
    margin: 0 auto;
    max-width: 350px;
    text-align: center
}

.virtual-wrapper figure {
    margin: 15px auto -70px
}

.virtual-wrapper .fancy-options {
    display: block
}

.virtual-wrapper .package {
    margin: 15px auto;
    max-width: 100%;
    text-align: left
}

.virtual-wrapper p {
    margin: 30px auto;
    padding: 10px 0;
    line-height: 1.5;
    color: #979797
}

.virtual-wrapper p strong {
    font-weight: 700;
    color: #0e7b6f;
    display: block;
    margin-bottom: 1rem
}

@media only screen and (max-width: 760px) {
    .remodal button[type=button], .remodal input[type=submit] {
        margin: 0 auto;
        padding: 5px 20px;
        height: 40px;
        font-size: 14px;
        white-space: nowrap
    }
}