﻿


.RegisterModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 200%;
    background-color: rgb(0 0 0 / 74%);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 9999;
    font-style:normal;
}

.RegisterModal-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background-color: white;*/
    background-color: rgba(0, 0, 0, 1);
    padding: 1rem 1.5rem;
    width: 30%;
    height: auto;
    border-radius: 0.5rem;
}

.RegisterModal-show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.Register-closebutton {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
}

.BillingModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 200%;

   
    background-color: rgba(0, 0, 0, 1);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 9999;
    font-style: normal;
}

.QuestionModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 200%;
    background-color: rgba(0, 0, 0, 1);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 9999;
    font-style: normal;
}

.BillingModal-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    /*background-color: rgba(0, 0, 0, 1);*/
    padding: 1rem 1.5rem;
    width: 40%;
    height: auto;
    border-radius: 0.5rem;
}

.QuestionModal-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    /*background-color: rgba(0, 0, 0, 1);*/
    padding: 1rem 1.5rem;
    width: 60%;
    height: auto;
    border-radius: 0.5rem;
}

.BillingModal-show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.QuestionModal-show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.Billing-closebutton {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
}

.ErrorModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 200%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 99999999999;
}

.ErrorModal-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 50rem;
    height: auto;
    border-radius: 0.5rem;
}

.ErrorModal-show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.error--closebutton {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
}

.containerpd {
    margin: auto;
    width: 50%;
    padding: 2%;
    margin-right: 20.5%;
}

.containerpm {
    margin: auto;
    width: 100%;
    padding: 2%;
    margin-left: 7%;
}

.progressbar {
    counter-reset: step;
}

    .progressbar li {
        list-style-type: none;
        width: 25%;
        float: left;
        font-size: 12px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        color: #7d7d7d;
    }

        .progressbar li:before {
            width: 30px;
            height: 30px;
            content: counter(step);
            counter-increment: step;
            line-height: 30px;
            border: 2px solid #7d7d7d;
            display: block;
            text-align: center;
            margin: 0 auto 10px auto;
            border-radius: 50%;
            background-color: white;
        }

        .progressbar li:after {
            width: 100%;
            height: 2px;
            content: '';
            position: absolute;
            background-color: #7d7d7d;
            top: 15px;
            left: -50%;
            z-index: -1;
        }

        .progressbar li:first-child:after {
            content: none;
        }

        .progressbar li.active {
            color: black;
        }

            .progressbar li.active:before {
                border-color: #053fe6;
            }

            .progressbar li.active + li:after {
                background-color: #053fe6;
            }

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .slider:hover {
        opacity: 1;
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        background: #4CAF50;
        cursor: pointer;
    }


    .slider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        background: #4CAF50;
        cursor: pointer;
    }

html, body {
    height: 100%;
    overflow-x: hidden;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

.gray-bg, .bg-muted {
    background-color: #fff !important;
}

.navbar-fixed-top, .navbar-static-top {
    background: #fff !important;
}

.form-control, .single-line {
    background-image: none;
    border: 2px solid;
    background-color: none;
    border-color: rgba(57, 76, 96, 0.2) !important;
    height: 50px !important;
    border-radius: 5px !important;
    color: inherit;
    display: block;
    padding: 12px 18px;
    transition: border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;
    width: 100%;
    font-size: 17px;
}

.card {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    border: 0;
    font-weight: 400;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    min-height: 300px;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.cardddd {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    border: 0;
    font-weight: 400;
}

.cardddd {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    min-height: 300px;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.carddd {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.cardd {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 3px solid #18bbff;
    border-radius: .25rem;
}

.testimonial-cardd .card-body {
    text-align: left;
}

.testimonial-card .avatar img {
    width: 100%;
}

.testimonial-card .card-up {
    overflow: hidden;
    height: 120px;
    -webkit-border-top-left-radius: .25rem;
    border-top-left-radius: .25rem;
    -webkit-border-top-right-radius: .25rem;
    border-top-right-radius: .25rem;
}

.testimonial-card .avatar {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 120px;
    margin-top: -60px;
    overflow: hidden;
    border: 5px solid #fff;
}

.img-fluid, .modal-dialog.cascading-modal.modal-avatar .modal-header, .video-fluid {
    max-width: 100%;
    height: auto;
}

.rounded-circle {
    border-radius: 50% !important;
}

.testimonial-card .card-up {
    overflow: hidden;
    height: 120px;
    -webkit-border-top-left-radius: .25rem;
    border-top-left-radius: .25rem;
    -webkit-border-top-right-radius: .25rem;
    border-top-right-radius: .25rem;
}

.info-color {
    background-color: #33b5e5 !important;
}

img {
    vertical-align: middle;
    border-style: none;
}

.testimonial-card .card-body {
    text-align: center;
}

.card-body {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.font-weight-bold {
    font-weight: 700 !important;
    color: #18bbff;
    font-size: 20px;
}

.font-weight-boldd {
    font-weight: 600 !important;
}

.labell {
    background-color: none;
    color: #5e5e5e;
    font-family: Montserrat;
    font-size: 20px;
    margin-left: 10px;
    font-weight: 600;
    padding: 20px 20px;
    text-shadow: none;
}

.scrollbox {
    overflow: auto;
    padding: 5px;
    background-color: white;
    color: black;
    border: 2px solid #369;
    margin-bottom: 20px;
}

input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    margin-right: 10px !important;
    line-height: normal;
}

.header-img {
    height: 700px;
    width: 100%;
    background-color: #E8E8E8;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 20%;
    background-image: url(https://ultimatefranchise.blob.core.windows.net/images/Images/gigaprofits/Fotosearch_k17599304.jpg);
}

.form-controll {
    height: 50px !important;
    border-radius: 5px !important;
    color: inherit;
    display: block;
    padding: 12px 18px;
    transition: border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;
    width: 100%;
    font-size: 17px;
}

.img-feature {
    height: auto;
}

.ibox-content {
    overflow: hidden !important;
    box-shadow: none !important;
    border-radius: 5px !important;
}

.ibox-content {
    padding: 43px 0px 3px 0px !important;
}

.content-desktop {
    display: block;
}

.content-mobile {
    display: none;
}


@media screen and (max-width: 768px) {
    .content-desktop {
        display: none;
    }

    .content-mobile {
        display: block;
    }
}

#progressbar li {
    list-style-type: none;
    color: #616161;
    text-transform: uppercase;
    font-size: 9px;
    width: 50%;
    float: left;
    position: relative;
    text-align: center
}

    #progressbar li:before {
        content: counter(step);
        counter-increment: step;
        width: 25px;
        line-height: 25px;
        display: block;
        font-size: 15px;
        color: #333;
        background: white;
        border-radius: 15px;
        margin: 0 auto 5px auto;
    }

    #progressbar li:first-child:after {
        content: none;
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
        background: #015ca3;
        color: white;
    }

.ibox-contentt {
    box-shadow: none !important;
    border-color: rgba(57, 76, 96, 0.85) !important;
    padding: 3px 10px 3px 10px !important;
    border: 2px solid #7FC2F7 !important;
    border-radius: 5px !important;
}

#blur {
    width: 100%;
    background-color: black;
    moz-opacity: 0.5;
    khtml-opacity: .5;
    opacity: .5;
    filter: alpha(opacity=50);
    z-index: 120;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#progress {
    z-index: 200;
    background-color: White;
    position: center;
    top: 0pt;
    left: 0pt;
    border: solid 1px black;
    padding: 5px 5px 5px 5px;
    text-align: center;
}

.List {
    padding: 0px;
    list-style-type: none;
}



ul {
    margin-top: 0;
    margin-bottom: 10px;
}

.ListNew li {
    color: #687578;
    padding-bottom: 6px;
    list-style-type: none;
    margin-bottom: 6px;
    padding-left: 2em;
    font-size: 1em;
    font-weight: 700;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.ListNeww li {
    color: #687578;
    padding-bottom: 6px;
    margin-bottom: 6px;
    padding-left: 0em;
    font-size: 1em;
    font-weight: 700;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 45%;
    animation: spin 2s linear infinite;
    position: absolute;
}

.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
    background-color: #03A9F4 !important;
    border-color: #03A9F4 !important;
}

.elAlign_center {
    text-align: center;
}

.elMargin0 {
    margin-top: 0px;
}

.de-editable {
    position: relative;
}

.de-editable {
    cursor: auto !important;
}

#tmp_button-51842-100 .elButtonGradient2:hover {
    background-image: -webkit-gradient( linear, left top, left bottom, color-stop(1, rgb(0, 117, 178)), color-stop(0, #03A9F4));
    background-image: -o-linear-gradient(bottom, #03A9F4 100%, #03A9F4 30%);
    background-image: -moz-linear-gradient(bottom, #03A9F4 100%, #03A9F4 30%);
    background-image: -webkit-linear-gradient(bottom, #03A9F4 100%, #03A9F4 30%);
    background-image: -ms-linear-gradient(bottom, #03A9F4 100%, #03A9F4 30%);
    background-image: linear-gradient(to bottom, #03A9F4 100%, #03A9F4 30%);
}

#tmp_button-51842-100 .elButtonGradient2 {
    background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, #03A9F4), color-stop(1, #03A9F4));
    background-image: -o-linear-gradient(bottom, #03A9F4 30%, #03A9F4 80%);
    background-image: -moz-linear-gradient(bottom, #03A9F4 30%, #03A9F4 80%);
    background-image: -webkit-linear-gradient(bottom, #03A9F4 30%, #03A9F4 80%);
    background-image: -ms-linear-gradient(bottom, #03A9F4 30%, #03A9F4 80%);
    background-image: linear-gradient(to bottom, #03A9F4 30%, #03A9F4 80%);
}

.elButtonColor1:hover {
    background-color: #0c69a8;
}

.elButton:visited, .elButton:active, .elButton:hover {
    text-decoration: none !important;
}

.elButton:hover {
    text-decoration: none;
    color: inherit;
}

.ea-buttonRocking:hover {
    animation: none !important;
}

a:hover, a:focus {
    text-decoration: underline;
}

a:active, a:hover {
    outline: 0;
}

.elButtonGradient2 {
    -webkit-box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
    -moz-box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
    border: 1px solid rgba(0,0,0,0.1);
}

.elButtonColor1 {
    background-color: #0092D5;
}

.elButtonSize1 {
    font-size: 18px;
}

.elButton {
    padding: 13px 35px;
}

.elButton {
    margin-right: auto;
    margin-left: auto;
    color: #FFF;
    font-weight: normal;
    display: inline-block;
    -ms-transform: all .2s ease-in-out;
    -webkit-transform: all .2s ease-in-out;
    transform: all .2s ease-in-out;
    text-align: center !important;
    text-decoration: none !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media(max-width:768px) {
    .img-feature {
        height: 40px;
    }

    .header-img {
        height: 250px;
    }

    .ListNew li {
        color: #687578;
        padding-bottom: 6px;
        list-style-type: none;
        margin-bottom: 6px;
        padding-left: 1em;
        font-size: 1em;
        font-weight: 700;
        text-align: left;
        font-family: 'Montserrat', sans-serif;
    }

   
}

.labell {
    font-size: 18px;
    padding: 20px 0px;
}
