<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "story.css";

.register {
    text-align: center;
    padding: 10px 10%;
}
.register div {
    margin: 16px 0;
}

.register.overlay {
    background: url("../images/register-bg.jpg");
    background-size: cover;
    background-position-x: center;
    background-position: bottom;
    min-height: 803px;
}

.register.overlay.register2 {
    background: url(../images/register2-bg.jpg);
    background-size: cover;
    background-position: top;
}
.register.overlay.register3 {
    background: url(../images/register3-bg.jpg);
    background-size: cover;
    background-position: top;
}
.register.overlay.register4 {
    background: url(../images/register4-bg.jpg);
    background-size: cover;
    background-position: top;
}
.register .story-title {
    color: #fff;
    font-family: "Open Sans";
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    padding: 0 5%;
}

.register .story-content {
    color: #fff;
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 24px;
    padding: 8px 5%;
    margin-bottom: 24px;
    max-width: 544px;
}

.register .content-row {
    text-align: center;
    padding: 10px;
    margin-top: 50px;
    background: rgba(42,172,200,1.0);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0.85;
    max-width: 544px;
    display: inline-block;
}

.register .btn-default {
    background-color: #FF6600;
    color: #fff;
    font-family: "Open Sans";
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    border-radius: 30px;
    height: 56px;
    border: none;
}

#submit-field:disabled {
    background-color: #C6C4C7;
}

.register .form-control {
    height: 52px;
    padding: 6px 20px;
    font-size: 18px;
    color: #2AACC8;
    border: 2px solid #fff;
    border-radius: 30px;
}

select#country-selector {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: none;
    appearance: none;
/*    background: url('../images/dropdown-arrow.png') no-repeat 97% 50%, linear-gradient(180deg, transparent 0%, transparent 50.17%, transparent 100%); */
    background: url('../images/dropdown-arrow.png') no-repeat 97% 50%, #fff;
    background-size: 24px 24px, cover;
    border-radius: 30px;
}

select#country-selector option {
    color: #000;
}

.form-control::-webkit-input-placeholder { color: #222; }  /* WebKit, Blink, Edge */
.form-control:-moz-placeholder { color: #333; }  /* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder { color: #333; }  /* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder { color: #333; }  /* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder { color: #333; }  /* Microsoft Edge */

.register .input-error-msg {
    display: none;
    float: left;
    margin: -13px 0 10px 22px;
    color: #FFFF00;
}

/* overwriting some settings from jquery.modal.css */
#modal-window .modal-box.modal-type-inverted .modal-title {
    background-color: #FFF;
    color: #428bca;
}

#modal-window .modal-box .modal-buttons {
    background-color: #FFF;
    border-top: none;
}

@media(min-width: 992px) {
    .register.overlay {
        height: 1052px;
    }

    .register .story-title {
        font-size: 36px;
        font-weight: bold;
        letter-spacing: -1px;
        line-height: 48px;
    }

    .register .item-1 {
        font-size: 24px;	line-height: 36px;
    }
    .register .content-row {
        width: 544px;
        margin-top: 120px;
        display: inline-block;
        padding: 60px;
    }
}
</pre></body></html>