body {
    font-family: "Lato", sans-serif;
}

header {
    background: white;
    position: fixed;
    width: 100%;
    z-index: 1;
    -webkit-box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.3);
}

main {
    position: relative;
    top: 100px;
}

.base {
    max-width: 1200px;
    width: 100%;
    padding: 0;
    display: block;
    margin: 0 auto;
    position: relative;
}

.logo {
    background: url(../images/sprite.png);
    background-position: 0px 15px;
    width: 194px;
    height: 100px;
    display: block;
    text-indent: -99999px;
}

.page-title {
    color: #4e2683;
}

.purple {
    color: #4e2683;
}

.f20 {
    font-size: 20px;
}

.f24 {
    font-size: 24px;
}

.f28 {
    font-size: 28px;
}

.bold {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.button {
    border-radius: 8px;
    padding: 10px 20px;
    text-align: center;
}

.purple-button {
    background: #4e2683;
    color: #fff;
    text-decoration: none;
}

    .purple-button:hover {
        background-color: #7a45bc;
        text-decoration: none;
        color: #fff;
    }

.purple-button-o {
    background: transparent;
    border: 1px solid #4e2683;
    color: #4e2683;
    text-decoration: none;
}

    .purple-button-o:hover {
        background-color: #4e2683;
        text-decoration: none;
        color: #fff;
    }

.l-purple-button-o {
    background: transparent;
    border: 1px solid #9283be;
    color: #4e2683;
    text-decoration: none;
}

    .l-purple-button-o:hover {
        background-color: #9283be;
        text-decoration: none;
        color: #fff;
    }

.white-button-o {
    background: transparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
}

    .white-button-o:hover {
        background-color: #7a45bc;
        border: 1px solid #7a45bc;
        text-decoration: none;
        color: #fff;
    }

.white-button {
    background: white;
    color: #4e2683;
    text-decoration: none;
}

    .white-button:hover {
        text-decoration: none;
        color: #7a45bc;
    }

.l-purple {
    color: #9283be;
}

.grey {
    color: #6D6E71;
}

.w100 {
    width: 100%;
}

.border-right1-grey {
    border-right: 1px solid #efeeee;
}

.border-bottom1-grey {
    border-bottom: 1px solid #efeeee;
}

.custom-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.custom-checkbox label {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: #212529;
    padding: 0px;
}

    .custom-checkbox label:before {
        content: '';
        -webkit-appearance: none;
        background-color: #fff;
        border-radius: 5px;
        border: 1px solid #00000023;
        -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
        padding: 12px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 8px;
    }

.custom-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 8px;
    height: 16px;
    border: solid #4e2683;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding: 0px 0px 0px 35px;
        cursor: pointer;
        display: inline-block;
        color: #666;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            padding: 12px;
            border: 1px solid #00000023;
            -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            border-radius: 5px;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 8px;
            height: 16px;
            background: transparent;
            position: absolute;
            top: 3px;
            left: 9px;
            border: solid #4e2683;
            border-width: 0 2px 2px 0;
            border-radius: 0px;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0) rotate(45deg);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1) rotate(45deg);
        }

.form-control {
    height: auto;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #dbdbdb !important;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.custom-selector {
    position: relative;
    display: block;
}

    .custom-selector select {
        color: #4e2683;
        outline: none;
        background: transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .custom-selector select::-ms-expand {
            display: none;
        }

            .custom-selector select::-ms-expand:focus {
                background: transparent;
            }

        .custom-selector select:focus {
            background: transparent;
            outline: none;
            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        }

    .custom-selector::after {
        content: '';
        position: absolute;
        border-bottom: 2px solid #4e2683;
        border-right: 2px solid #4e2683;
        height: 12px;
        width: 12px;
        right: 20px;
        top: 14px;
        z-index: -1;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.bg-main {
    display: table;
    top: 0px;
    background: url("../images/campaign-creators-OGOWDVLbMSc-unsplash.jpg");
    background-size: cover;
    height: 100vh;
    width: 100%;
}

    .bg-main::before {
        content: "";
        background: rgba(255, 255, 255, 0.85);
        position: absolute;
        top: 0px;
        height: 100vh;
        width: 100%;
    }

.v-cen {
    display: table-cell;
    vertical-align: middle;
}

.table.datatable thead tr th {
    width: 33%;
    font-weight: 400;
}

.table.datatable tbody tr td {
    padding-top: 20px;
}

.mobile-menu {
    background: url(../images/sprite.png);
    background-position: 0px 104px;
    width: 30px;
    height: 30px;
    display: block;
}

.navbar {
    background: #fff;
}

@media only screen and (max-width: 992px) {
    ul.navbar-nav {
        padding: 10px 10px;
    }
}

ul.navbar-nav li a {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: #4e2683;
}

ul.navbar-nav li .dropdown-item {
    line-height: 24px;
}

.user {
    position: relative;
    top: 38px;
}

.my-navbar {
    position: relative;
}

.storefront {
    background: #4e2683;
    color: white;
}
/*# sourceMappingURL=style.css.map */
