﻿@font-face {
    font-family: 'proximanova';
    src: url('/fonts/ProximaNova-Bold.ttf');
    font-weight: 800;
}


@font-face {
    font-family: 'proximanova';
    src: url('/fonts/ProximaNova-Sbold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'proximanova';
    src: url('/fonts/ProximaNova-Reg.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'proximanova';
    src: url('/fonts/ProximaNova-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'proximanova';
    src: url('/fonts/ProximaNova-Thin.ttf');
    font-weight: 100;
}


.errorMsg {
    font-size: 12px;
    color: red;
    margin-top: 5px;
}

.content-logo {
    padding: 50px 0;
    text-align: center;
    color: #ffffff;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.font-light {
    font-weight: 300;
}

.font-thin {
    font-weight: 100;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 28px;
}

.subheading {
    font-size: 16px;
    margin-bottom: 30px;
}

p {
    font-weight: 300;
    font-size: 14px;
}

.p-lg-btm-margin {
    margin-bottom: 30px;
}

.i-lg-btm-margin {
    margin-bottom: 20px;
}

.lg-btm-margin {
    margin-bottom: 40px;
}

a {
    color: #58c400;
}

    a:hover {
        color: #58c400;
    }

.checkbox {
    font-size: 14px;
    color: #212121;
}

.cta-wrap {
    margin: 0 auto;
}

    .cta-wrap .btn {
        max-width: 235px;
        font-weight: 300;
        font-size: 16px;
        color: #ffffff;
        width: 100%;
        margin: 0 auto;
        padding: 15px;
        background-color: #58c400;
        transition: all .5s ease 0s;
        font-family: 'proximanova';
    }

        .cta-wrap .btn:hover {
            background-color: #78de25;
        }

.content-logo .font-light {
    letter-spacing: 7px;
    margin: 0;
}

.logo-border {
    width: 84px;
    border-bottom: 1px solid #ffffff;
    margin: 0 auto;
    margin-bottom: 50px;
}

.form-heading {
    margin-bottom: 35px;
}

.custom-form input[type=text], .custom-form input[type=password], .custom-form select {
    border: none;
    background-color: #f8f8f8;
    box-shadow: none;
    min-height: 40px;
}

.form-label {
    font-size: 16px;
    color: #212121;
    font-family: 'proximanova';
}

.form-element input {
    border: none;
    background-color: #f8f8f8;
    box-shadow: none;
    min-height: 40px;
}

.form-element select {
    border: none;
    background-color: #f8f8f8;
    box-shadow: none;
    min-height: 40px;
}

.form-horizontal .control-label {
    padding-top: 10px;
}

/*SELECT*/
.dselect {
    position: relative;
    display: inline-block;
    /*top: 50%; left: 50%;
  transform: translate(-50%, -50%);*/
}

/** Custom Select **/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    width: 100%;
}

    .custom-select-wrapper select {
        display: none;
    }

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: block;
    min-height: 40px;
    padding: 12px 12px;
    font-size: 16px;
    font-weight: 300;
    color: #212121;
    background: #f8f8f8;
    border-radius: 4px;
    cursor: pointer;
}

    .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px;
        height: 10px;
        top: 50%;
        right: 25px;
        margin-top: -3px;
        border-bottom: 1px solid #212121;
        border-right: 1px solid #212121;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
    }

.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 15px 0;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0,0,0,.07);
    background: #fff;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    z-index: 100;
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.option-hover:before {
    background: #f9f9f9;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 22px;
    border-bottom: 1px solid #b5b5b5;
    font-size: 16px;
    font-weight: 300;
    color: #b5b5b5;
    line-height: 47px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

    .custom-option:first-of-type {
        border-radius: 4px 4px 0 0;
    }

    .custom-option:last-of-type {
        border-bottom: 0;
        border-radius: 0 0 4px 4px;
    }

    .custom-option:hover,
    .custom-option.selection {
        background: #f9f9f9;
    }

.main-content-wrap {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
    padding: 36px 50px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0px 25px 55px -20px #212121;
}

.form-element {
    margin-bottom: 20px;
}

.info-heading img {
    margin-right: 10px;
    margin-top: -5px;
}

.clear {
    clear: both;
}

.icons-wrap h5 {
    margin-bottom: 25px;
}

.icons-wrap p {
    font-size: 12px;
}

.sk-double-bounce {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    position: absolute;
}

    .sk-double-bounce .sk-child {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #333;
        opacity: 0.6;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
        animation: sk-doubleBounce 2s infinite ease-in-out;
    }

    .sk-double-bounce .sk-double-bounce2 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

@-webkit-keyframes sk-doubleBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-doubleBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@media screen and (max-width: 767px) {


    .dselect {
        display: block;
    }

    .form-horizontal .control-label {
        padding-top: 7px;
    }

    #page-content-wrapper {
        padding: 0;
    }

    #wrapper {
        padding: 0;
    }

    .main-content-wrap {
        padding: 36px 20px;
    }

    .proviso-wrap .form-element .wrap-label {
        text-align: left;
    }

    .form-element {
        margin-bottom: 30px;
    }
}

.custom-danger {
    text-align: center;
    background: none;
    border: none;
    box-shadow: none;
    color: red;
}


.loading-wrap {
    background-color: rgba(255,255,255, .95);
    width: 100%;
    height: 100%;
    z-index: 500;
    position: fixed;
    display: none;
}

.custom-loading {
    position: fixed;
    /* width: 500px; */
    /* height: 500px; */
    top: 45%;
    left: 50%;
    /*background-color: rgba(255,255,255, .6);*/
    display: none;
    z-index: 600;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.loading-message {
    max-width: 480px;
    z-index: 500;
    position: fixed;
    transform: translate(-50%, -50%);
    top: 62%;
    left: 50%;
    font-size: 20px;
    color: #40538f;
    text-align: center;
}

.nmbr-ctr {
    max-width: 25px;
    height: 25px;
    margin: 0 auto;
    border: 1px solid #000;
    border-radius: 50%;
    margin-bottom: 10px;
}

.nmbr {
    margin-top: 2px;
    margin-right: 1px;
    margin-bottom: 10px;
}

.real-home {
    background: url("/images/home-bg.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #65b4d1;
    background-repeat: no-repeat;
}



.content-logo-home {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.content-logo-inner {
    max-width: 500px;
    margin: 0 auto;
    position: absolute;
    margin-top: 55%;
}

.tnc-content-wrap {
    height: 500px;
    overflow-y: scroll;
}

.tnc-list-wrap {
    font-weight: 300;
    padding-left: 30px;
}

ol {
    counter-reset: item;
}

    ol li.digits {
        display: block;
        position: relative;
        margin-bottom: 15px;
    }

        ol li.digits:before {
            content: counters(item, ".")".";
            counter-increment: item;
            position: absolute;
            margin-right: 100%;
            right: 10px; /* space between number and text */
        }

ul.lower-alpha {
    list-style-type: lower-alpha;
}

ul.lower-roman {
    list-style-type: lower-roman;
}

li {
    margin-top: 10px;
}

.tnc-content-wrap p {
    font-family: 'proximanova' !important;
}
