/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
}

body {
    font-family: montserrat, arial, verdana;
    background: transparent;
}

/*form styles*/
#msforms {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

#msforms #pf_main {
    border: 0 none;
    border-radius: 0px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;

    /*stacking #pf_mains above each other*/
    position: relative;
}

/*Hide all except first #pf_main*/
#msforms #pf_main:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msforms input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#msforms input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ee0979;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msforms .action-button {
    width: 100px;
    background: #ee0979;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msforms .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}

#msforms .action-button-previous {
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: #FEFDF9!important;
    border-color: RGBA(0,0,0,0);
    border-radius: 0;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase!important;
    background-color: #000033;
    padding: 13px 30px;
    line-height: 1em;
    height: 51px;
}

/*#msforms .action-button-previous {
    background-color: #fff;
    font-weight: bold;
    color: white;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    border: 1px solid #000033;
}*/

/*#msforms .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}*/

/*headings*/
.fs-title {
    font-size: 26px;
    color: #000033;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #ee0979;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}

.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

.entry .entry-content {
    width: 100%;
    /*background-color: hotpink;*/
}

.entry-content .row {
    max-width: 100% !important;
}

form#msforms #pf_main {
    width: 100%;
    margin: 0;
}

#pf_main {
    border: 1px solid #c3c3c3;
    display: block;
}

#pf_main div {
    flex: 1;
}

.fesa-qa-answer-inner {
    display: inline-block;
    width: 24%;
}

input.previous.action-button-previous {
    display: block;
    text-align: center;
    margin: auto;
    float: none;
}

input.previous.action-button-previous {
    display: block;
    text-align: center;
    /* margin: auto!important; */
    float: none;
    margin: 15px auto !important;
    padding: 20px 0;
}

.recat-div {
    display: inline-block;
    width: 250px;
    margin: 10px 20px;
    position: relative;
}

.recat-div span {
    width: 100%;
    float: left;
    min-height: 50px;
    line-height: 50px;
    color: #000033;
    border: 1px solid #000033;
    transition: background-color 250ms ease-in-out;
}

.recat-div:hover span, .recat-div > input:checked + span {
    /*background-color: rgba(255, 255, 255, 0.9);*/
}

.fesa-qa-answer-inner img {
    padding: 0;
    width: 135px;
    height: auto;
    object-fit: cover;
    margin: auto;
    transition: border-color 250ms;
}

.fesa-qa-answer-inner:hover img {
    padding: 0;
}

.fesa-qa-answer-inner {
    position: relative;
}

input.smrt42-input.smrt42-hidden {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    z-index: 11;
    width: 100% !important;
}

.btn-wrap {
    width: 100%;
    display: flex;
    margin-top: 40px;
    margin-bottom: 15px;
    justify-content: space-between;
}

#msforms input.smrt42-input.smrt42-hidden {
    margin: 0 !important;
}

input.smrt42-input.smrt42-hidden:checked + img {
    padding: 0;
    border: 9px solid #54d4d4;
    border-radius: 50%;
}

ul#progressbar {
    display: flex;
    display: none;
    padding: 0;
}

p.progress {
    height: 12px;
    border-radius: 0;
}

.progress .progress-bar {
    font-size: 1px;
    line-height: 1em;
    color: #000033;
    background-color: #000033;
}

.boxx {
    height: 150px;
    width: 150px;
    margin: 15px auto;
}

form#msforms {
    min-height: 600px;
}

/*text */
.fesa-qa-answer-inner {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 15px;
}

.smrt42-answer-label {
    display: block;
}

/*Previous button css*/
/*#msforms .action-button-previous {
    font-weight: bold;
    color: #000033;
    cursor: pointer;
    padding: 5px 12px;
    margin: 15px !important;
    width: auto;
    border: 1px solid #000033;
}*/

.recat-div.next {
    display: inline-block;
    width: 250px;
    padding: 5px 0 !important;
    margin: 10px 20px;
    position: relative;
}

input.previous.action-button-previous {
    display: block;
    text-align: center;
    float: none;
    margin: 0px auto !important;
}

#msforms input {
    font-weight: bold;
    color: #000033;
    border: 0 none;
    cursor: pointer;
    padding: 12px 12px;
    margin: 15px !important;
    width: auto;
}

input.previous.action-button-previous {
    display: block;
    text-align: center;
    float: none;
}

/*result button css AV*/

input.result:hover {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

@media only screen and (max-width: 767px) {
    /*button result and previous ab*/
    .recat-div.next {
        display: inline-block;
        margin: 0 auto;
        position: relative;
        padding: 0 !important;
    }

    .recat-div {
        display: inline-block;
        width: 100% !important;
        margin: 0 auto;
        position: relative;
    }

    #msforms .action-button-previous {
        width: 100%;
    }

    /*#msforms .action-button-previous {
        width: 100px;
        background: #a7a7f7;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 12px 2px;
        box-sizing: border-box;
        font-family: montserrat;
        font-size: 17px;
        margin: 15px auto !important;
        top: 5px;
    }*/

    #msforms input {
        box-sizing: border-box;
        font-family: montserrat;
        font-size: 17px;

        color: white;
        padding: 12px;
        margin: 0 auto;
        border-radius: 25px;
        top: 5px;
        border: none;
        float: none;
        left: 0px;
    }
}

/* Css 19 */
.entry .entry-content > *, .entry .entry-summary > *, .entry .entry-summary > .wp-block-group > .wp-block-group__inner-container > *, .entry .entry-content > .wp-block-group > .wp-block-group__inner-container > * {
    margin: 32px 0;
    max-width: 100% !important;
}

.site-content_first {
    display: flex;
    max-width: 100%;
    position: relative;
    text-align: center;
    flex-wrap: wrap;
}

.a h2 {
    font-size: 14px;
}

.site-content_first h2:before {
    display: none;
}

.site-content_first h3 {
    font-size: 16px;
    font-weight: 600;
    min-height: 35px;
}

/*span.woocommerce-Price-amount.amount {
    display: block;
    color: #b53433;
    font-size: 17px;
}*/
.pricing a:active {
    outline: none;
}

.pricing a {
    margin: 10px 0;
    background: #000;
    color: #fff;
    border-radius: 40px;
    font-size: 12px;
    padding: 13px;
}

.a h3 {
    margin: 15px 0;
}

.a {
    position: relative;
    width: 25%;
    text-align: center;
    padding: 20px;
    border: 1px solid #f8f8f8;
}

.a img {
    max-height: 250px;
    width: auto;
    margin: auto;
    color: black;
}

.site-content_second {
    display: flex;
    max-width: 100%;
    position: relative;
    text-align: center;
}

.site-content_second h2:before {
    display: none;
}

.pricing {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.pricing h3 {
    font-size: 10px;
    font-weight: 300;
    font-family: "Futura PT - Book", sans-serif;
    margin: 5px 0px;
    color: white;
}

/*product images*/
.pimage {
    width: 100%;
    height: 160px;
    margin: 0 auto;
    text-align: center;
}

img#pimg {
    position: relative;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    border: 0;
    height: 100%;
    display: block;
}

/*button*/
.btn1 {
    position: relative;
    width: 100%;
}

button#addtocart {
    padding: 10px;
    font-weight: 700;
    font-size: 10px;
    background: #0073aa;
    border-radius: 5px;
    transition: background 150ms ease-in-out;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.2;
    outline: none;
    text-decoration: none;
    vertical-align: bottom;
    border: none;
}

button#addtocart:hover {
    background: #111;
    cursor: pointer;
}

#pf_main h1, #pf_main h2, #pf_main h3 {
    margin: 20px auto;
}

@media only screen and (max-width: 1024px) {
    .a {
        position: relative;
        width: 33%;
        text-align: center;
        padding: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .fesa-qa-answer-inner {
        width: auto;
    }

    .fesa-qa-answer-inner img {
        width: 150px;
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .a {
        position: relative;
        width: 50%;
        text-align: center;
        padding: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .fesa-qa-answer-inner {
        width: auto;
    }
}

@media only screen and (max-width: 520px) {
    .fesa-qa-answer-inner {
        /*width: 99%;*/
        width: calc(50% - 33px);
    }

    .smrt42-answer-label {
        display: block;
        margin-bottom: 20px;
        font-size: 17px;
    }
}
