/*===========================================================
 Common CSS
============================================================*/
html, body, .main, #step-display, .match-page, form#join {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

.main * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    background: transparent;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.main ul {
    padding: 0;
    margin: 0;
}

.main li,
.main li:hover,
.main a:hover,
.main .btn,
.main .btn:hover {
    transition: all 0.3s ease;
}

.main a,
.main a:hover {
    text-decoration: none !important;
}

.main img {
    max-width: 100%;
    max-height: 100%;
}

.main strong {
    font-weight: 700;
}

.main u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

body {
    overflow: hidden;
}

.wrapper {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.text-center {
    text-align: center;
}

.button {
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.match-page {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 80px;
}

form {
    position: relative;
    min-height: 650px;
}

.right-column {
    height: calc(100% - 80px);
    width: 70%;
    display: flex;
    justify-content: center;
    /* overflow: hidden; */
}

.left-column {
    height: calc(100% - 80px);
    overflow-y: scroll;
    width: 30%;
    /*background-color: rgb(242, 242, 242);*/
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;

}

.match-page:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: rgb(242, 242, 242);
    z-index: 1;

}

.ptop-200 {
    padding-top: 150px;
}

.single-option {
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    border: 1px solid rgb(226, 226, 226);
    background-color: rgb(255, 255, 255);
}

.option-img {
    padding-left: 18px;
    display: flex;
    align-items: center;
    height: 48px;
    color: rgb(46, 46, 46);
    font-size: 16px;
    font-weight: 600;
}

.left-content,
.right-content {
    width: 100%;
    max-width: 650px;
    margin-left: 30px;
    margin-right: 30px;
}

.outer-step-5 .right-content {
    max-width: 900px;
}

.wizard-logo {
    position: absolute;
    top: 30px;
    left: 55px;
    z-index: 1000;
    height: 55px;
}

.wrapper-area {
    position: relative;
}

/*scroll*/
/* width */
.match-page ::-webkit-scrollbar {
    width: 0;
}

/* Track */
.match-page ::-webkit-scrollbar-track {
    background: #a6eaca;
}

/* Handle */
.match-page ::-webkit-scrollbar-thumb {
    background: #1dbf73;
}

/* Handle on hover */
.match-page ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*===========================================================
 Custom Radio
============================================================*/

.radbox,
.custom-radio {
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
    margin-bottom: 15px;
}

.custom-radio input[type="radio"] {
    display: none;
}

.custom-radio input:checked+.size18 .frame-active,
.custom-radio input:checked+.size22 .frame-active {
    opacity: 1;
    visibility: visible;
    transition: .3s;
    height: auto;
}

.custom-radio input:checked+.size18 .frame-original,
.custom-radio input:checked+.size22 .frame-original {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

/*Colors*/

.custom-radio input:checked+.single-option p,
.custom-radio input:checked+.single-option h3 {
    color: #1dbf73;
}

.custom-radio input:checked+.single-option {
    background-color: #e8faf4;
    border-color: #a6eaca;
}

.custom-checkbox input:checked+.single-option {
    position: relative;
}

.custom-checkbox input+.single-option:before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background: #f8f8f8;
    content: "";
    z-index: 3;
    border-radius: 50%;
}

/*Another Radio*/
.radio-style [type="radio"]:checked,
.radio-style [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.radio-style [type="radio"]:checked+label,
.radio-style [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: rgb(34, 34, 34);
    font-size: 16px;
}

.radio-style [type="radio"]:checked+label:before,
.radio-style [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;

    width: 26px;
    height: 26px;
    border: 2px solid rgb(73, 73, 73);
    border-radius: 100%;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.radio-style [type="radio"]:checked+label:after,
.radio-style [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: rgb(12, 181, 144);
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 5px;
    border-radius: 100%;
    transition: all 0.2s ease;
}

.radio-style [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

.radio-style [type="radio"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

.souhaitez-partir {
    margin-top: 40px;
}

.custom-checkbox input:checked {
    /*background-color: rgba(255, 203, 80, .18);*/
}

.custom-checkbox .single-option {
    border: 1px solid #f8f8f8;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.custom-checkbox .single-option,
.custom-checkbox label,
.custom-checkbox .form-group,
.custom-checkbox .input-group {
    height: 100%;
}

.question-section small {
    color: rgb(42, 42, 42);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.question-section h1 {
    color: rgb(42, 42, 42);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.question-section {
    padding-bottom: 30px;
}

.provider {
    margin-top: 30px;
}

/*.bottom-pagination:before {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    width: 50%;*/
/*    left: 0;*/
/*    content: "";*/
/*    z-index: 1;*/
/*}*/

.bottom-pagination {
    background: rgba(255,255,255,0.5);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    flex-wrap: wrap;
    z-index: 10;

}

.left-pagi {
    z-index: 10;
    position: relative;
    width: 50%;
}

button:focus,
button:active {
    border: 0;
    outline: none;
}

.bottom-pagination a,
.bottom-pagination button {
    text-align: center;
    display: block;
    width: 183px;
    line-height: 45px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background-color:rgba(241, 23, 91, 0.5);
    color: rgb(255, 255, 255);
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.bottom-pagination a.active,
.bottom-pagination button.active {
    background-color:rgba(241, 23, 91, 1);
}

.bottom-pagination .left-pagi a {
    background-color: #ddd;
}

.bottom-pagination .left-pagi a.active {
    background-color: #e0e0e0;
}
.bottom-pagination .left-pagi a.active:hover {
    background-color:rgba(241, 23, 91, 1);
}

#bottom-next-note {
    margin-top: 16px;
    padding: 0 5px;
}
.bottom-pagination:not(:has(.next-step.active)) + #bottom-next-note {
    display: none;
}

.hide-on-mobile {
    display: block;
}
.hide-on-dt {
    display: none;
}
#skip {
    background-color: #dfdfdf;
    width: 100px;
}

#participate-survey-holder {
    font-size: 20px;
    text-align: center;
}

.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
}

.select-selected {
    background-color: #f8f8f8;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 18px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #666 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #666 transparent;
    top: 7px;
}

.select-items div,
.select-selected {
    color: #62646a;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent;
    cursor: pointer;
}

.custom-select {
    padding-bottom: 100px;
}

.select-items {
    /*position: absolute;*/
    position: relative;
    background-color: #f8f8f8;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    font-size: 14px;
    visibility: hidden;
    width: 120px;
    background-color: #666;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip {
    margin-top: 2px;
}
.tooltip img {
    width: 15px;
}

.tooltip .tooltiptext {
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.custom-radio.custom-checkbox {
    display: flex;
    flex-wrap: wrap;
}

.custom-checkbox .single-option-wrapper {
    padding: 10px;
    width: 33.33%;
}

.custom-checkbox .single-option span {}

.custom-checkbox .option-img img {
    height: 60px;
}

.custom-checkbox .option-img {
    height: auto !important;
}

.custom-checkbox .option-img {
    padding-left: 0;
}

.custom-checkbox .single-option {
    height: 170px !important;
    flex-direction: column;
}

.option-txt {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.tooltip {
    margin-left: 3px;
}

.howSoon-radio .option-img h3 {
    font-size: 17px;
    margin-bottom: 3px;
}

.howSoon-radio .option-img p {
    color: #333;
    font-size: 14px;
}

.howSoon-radio .option-img {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
}

div.single-option {
    transition: width 500ms;
    width: 100%;
    display: inline-block;
}

#selected-marketplace {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 5%;
    position: relative;

    margin: 0 auto;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
}

#selected-marketplace > img {
    display: block;
    position: absolute;
    top: -80px;
    left: calc(50% - 50px);
}

#shop-name-holder {
    padding: 1em 0
}
#shop-url-holder {
    display: none;
}
input[name="shop-name"] {
    display: block;
    line-height: 2em;
    font-size: 20px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #cccccc;
    background-color: white;
    color: #333;
    width: 100%;
}

#scan-shop {
    margin: 0 auto;
    padding: 0;
    border: 0;
    background-color: #f1175b;
    font-size: 19px;
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    width: 200px;
    line-height: 3em;
    text-align: center;
    color: white;
    border-radius: 4px;
    font-weight: 600;
}



#scanned-information {
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(181, 179, 179, 0.4);
    padding: 10px 15px;
    font-weight: 100;
}
#scan-information #shop-name {
    font-weight: 400;
    font-size: 1.2em;
    margin-bottom: 5px;
}

#scan-information #shop-icon {
    display: inline-block;
    width: 25%;
    min-width: 150px;
    height: 150px;
    line-height: 0;
}

#scan-information #shop-icon.problem {
    display: flex;
    justify-content: center;
}
#scan-information #shop-icon.problem img {
    opacity: 0.4;
}
#scan-information #scan-shop-location {
    font-style: italic;
}
#scan-information #scan-shop-sales,
#scan-information #scan-shop-favs {
    font-weight: 400;
}

#user-avatar {
    position: absolute;
    top: 0;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    border: 1px solid #ccc;
    overflow: hidden;
    right: 30px;
    z-index: 100;
}
#shop-owner-name {
    display: none;
}
#shop-more-information {
    position: relative;
    width: 70%;
}
#scan-information {
    width: 100%;
    vertical-align: bottom;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}
#scan-since {
    margin-left: 5px;
    color: #777;
    font-size: 0.7em;
}
#scan-shop-rating {
    background: transparent url("/signup/assets/img/icons/icon-star.svg") left center no-repeat;
    background-size: 16px;
    padding-left: 20px;
}
#scan-shop-rating.animated-background {
    background-image: none;
}

#scan-shop-rating span {
    font-size: 12px;
    font-style: italic;
}
#scan-name {
    display: block;
    vertical-align: bottom;
    font-size: 22px;
    font-weight: bold;
    color: #444;
    background-color: #f5f5f5;
    width: 60%;
    margin-bottom: 4px;
}
#scan-reputation {
    display: block;
    vertical-align: top;
    font-size: 18px;
    font-weight: normal;
    color: #444;
    background-color: #f5f5f5;
    width: 80%;
}

#scan-information #shop-name.animated-background {
    width: 40%;

}
#scan-information #scan-shop-location.animated-background {
    width: 60%;
    margin-bottom: 4px;
}
#scan-information #scan-shop-sales.animated-background {
    width: 30%;
    margin-bottom: 4px;
}
#scan-information #scan-shop-favs.animated-background {
    width: 25%;
}

#scan-item-carousel {
    margin: 0 0 10px 0;
}
.scan-items img {
    margin: 0 0 0 10px;
    border-radius: 4px;
}
.slick-slide.scan-item-img {
    min-width: 130px;
    min-height: 60px;
    display: block;
    margin: 0 10px;
}

@keyframes placeHolderShimmer{
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}

.animated-background {
    animation-duration: 3.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f8f8f8;
    background: linear-gradient(to right, #f5f5f5 10%, #e2e2e2 18%, #f5f5f5 33%);
    background-size: 300px 104px;
    position: relative;
}
#scan-searchbar {
    width: 100%;
    height: 30px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #f2f2f2;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    color: #888;
    font-size: 12px;
}
#scan-searchbar-url {
    padding-left: 20px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: left center;
}
#scan-searchbar-url.searchbar-icon-etsy {
    background-image: url('/signup/assets/img/logos/round/etsy.png');
}
#scan-buttons {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.scan-button {
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    margin-right: 10px;
}
.scan-button:nth-child(1){ background-color: lightgreen; }
.scan-button:nth-child(2){ background-color: orange; }
.scan-button:nth-child(3){ background-color: red; }

#scan-problem,
#scan-confirmation {
    display: none;
    opacity: 0;
    transition: opacity 800ms;
    height: 0;
}
#scan-confirmation .scan-confirmation-again {
    display: none;
}
#scan-problem.show,
#scan-confirmation.show {
    display: block;
    opacity: 1;
    height: auto;
}
.scan-confirmation-text {
    text-align: center;
    margin-top: 1em;
    font-weight: 100;
    font-size: 1.5em;
    color: #000000;
}

.scan-confirmation-text span {
    font-weight: 400;
}
.scan-confirmation-again {
    text-align: center;
    color: #888;
    font-size: 0.9em;
}


.comparison-heading{
    font-size: 26px;
    text-align: center;
    margin: 0 0 1em 0;
}
.comparison-heading .same-value {
    color: #f1175b;
    font-size: 18px;
    font-weight: 100;
}

.products-holder{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 2em 0;
    align-items: center;
}
.product {
    width: 40%;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.product-image-holder {
    position: relative;
}

.product-image-holder img {
    max-width: 100%;
}
.product-image {
    line-height: 0;
}
.product-title {
    font-size: 0.8em;
    margin: 1em 1em 0.2em 1em;
}
.product-shop-platform {
    position: absolute;
    top: 0;
    left: auto;
    transform: translate(-50%, -30%);
    width: 60px;
}
.product-shop-sales {
    display: none;
}

.product-shop-holder {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    background-color: #efefef;
    border-bottom: 1px solid #eee;
}
.shop-image {
    width: 45px;
    border-radius: 50%;
    overflow: hidden;
    line-height: 0;
    border: 1px solid #aaa;
}
.shop-information {
    width: calc(100% - 55px);
}
.shop-sales {
    font-weight: 100;
    font-size: 0.8em;
}
.product-rating {
    display: block;
    height: 15px;
    width: 83px;
    background-image: url("/signup/assets/img/star-rating-90.jpg");
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-bottom: 1em;
}

.product-rating.star-5 {
    background-position: top 0 left 0;
}

.product-rating.star-4 {
    background-position: top 15px left 0;
}

.product-rating.star-3 {
    background-position: top 30px left 0;
}

.product-rating.star-2 {
    background-position: top 45px left 0;
}

.product-rating.star-1 {
    background-position: top 60px left 0;
}

.buttons-holder {
    display: flex;
    justify-content: space-between;
}

.buttons-holder a {
    display: block;
    width: 25%;
    line-height: 3em;
    text-align: center;
    color: #555;
    border-radius: 4px;
    font-weight: 600;
    /*text-shadow: 1px 1px 4px black;*/
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    border: 1px inset rgba(0,0,0,0.2);
}

/*.buttons-holder a:nth-child(1) {background-color: #3cdc6e}*/
.buttons-holder a:nth-child(1):hover {background-color: #3cdc6e}
/*.buttons-holder a:nth-child(2) {background-color: #f4e185}*/
.buttons-holder a:nth-child(2):hover {background-color: #FFEA7A}
/*.buttons-holder a:nth-child(3) {background-color: #f25c68}*/
.buttons-holder a:nth-child(3):hover {background-color: #FD4452}

.products-holder {
    position: relative;
    height: 360px;
}
.products-holder .arrows {
    align-items: center;
    display: flex;
    width: 80px;
    height: 80px;
    justify-content: center;
    margin: 10px auto;
    position: relative;
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 500ms, scale 300ms;
}
.products-holder .arrows.show {
    opacity: 1;
    transform: scale(1);
}
.products-holder .arrows .arrows-background {
    background: url(/signup/assets/img/icons/icon-swap-circle.svg) center center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-animation: rotation 30s infinite linear;
    animation: rotation 5s infinite linear;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.2;
}

#left-product {
    position: absolute;
    left: -500px;
    transition: left 700ms, opacity 200ms, transform 500ms ease-in-out;
    opacity: 0;
    transform: rotate(-30deg);
}
#right-product {
    opacity: 0;
    position: absolute;
    right: -500px;
    transition: right 700ms, opacity 200ms, transform 700ms ease-in-out;
    transform: rotate(30deg);
}
#left-product.show {
    left: 0;
    opacity: 1;
    transform: rotate(0);
}
#right-product.show {
    right: 0;
    opacity: 1;
    transform: rotate(0);
}
#left-product .product-image > div,
#right-product .product-image div.slick-slide {
    height: 180px;
    background-size: cover;
    background-position: center center;
}

#right-product .product-image .slick-next:before {
    content: ' ';
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    font-size: 30px;
    display: block;
    width: 35px;
    height: 35px;
    background: url('/signup/assets/img/icons/icon-arrow-right.svg') center center no-repeat;
    background-size: 100% auto;
}

#right-product .product-image .slick-prev:before {
    content: ' ';
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    font-size: 30px;
    display: block;
    width: 35px;
    height: 35px;
    background: url('/signup/assets/img/icons/icon-arrow-left.svg') center center no-repeat;
    background-size: 100% auto;
}

#right-product .product-image .slick-next {
    right: 10px;
    z-index: 1000;
}

#right-product .product-image .slick-prev {
    left: 10px;
    z-index: 1000;
}

#password-strength-note {
    width: 20%;
    font-size: 12px;
    line-height: 25px;
    color: #888;
}
.strength-meter {
    width: 80%;
}
#password-wrap {
    display: flex;
}
.product-price {
    display: none;
    position: absolute;
    right: 0;
    bottom: 20px;
    padding: 2px 10px;
    background-color: #debfac;
    font-size: 15px;
    font-weight: 100;
    color: #222;
}
.outer-step-5 .match-page {
    padding-bottom: 0;
}
.outer-step-5  .right-column {
    height: 100%;
}
.outer-step-5  .right-column.ptop-200{
    padding-top: 60px;
}

.outer-step-5 .right-content {
    margin-right: 0;
    margin-left: 0;
}

.outer-step-5 .bottom-pagination {
    display: none;
}
.outer-step-3 .right-column {
    padding-top: 275px;
}

.outer-step-5 .left-pagi a { /* Need to check if to change step */
    display: none;
}
@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}
@keyframes rotation {
    from { transform: rotate(0deg); }
    to   { transform: rotate(359deg); }
}

.outer-step-5 .match-page:before {
    display: none;
}

.comparison-progress {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 20px;
    color: white;
    background: linear-gradient(
            to bottom,
            #ffffff,
            #ffffff 46%,
            #19a7de 50%,
            #ffffff 54%,
            #ffffff
    );
    background-size: 100% 20px;
    max-width: 500px;
    width: 80%;
    margin: 2em auto;
}
.progress-circle {
    height: 20px;
    width: 20px;
    border-radius: 15px;
    border: 2px solid #19a7de;
    background-color: #1bb8f5;
    box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
}

.progress-circle.empty {
    background-color: white;
}
.progress-circle.pulse {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
    }
}
.right-content.create-account {
    max-width: 400px;
}

.right-content.create-account .form-container form > div {
    padding: 0 15px;
}

.right-content.create-account .form-container form > button {
    margin-left: 15px;
}

.right-content.create-account legend.form-label {
    font-size: 24pt;
    padding: 0 15px;
    font-weight: 600;
    margin-bottom: 1em;
}

.right-content.create-account .form-group {
    margin-bottom: 1.5em;
}
.right-content.create-account .form-control {
    display: block;
    width: 100%;
    padding: 16px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.right-content.create-account label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
    color: #f1175b;
    font-size: 19px;
}

.right-content.create-account legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}
#fullname-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right-content.create-account .half-group {
    width: 44%;
}
.input-holder {
    position: relative;
}
.input-holder.wrong input {
    background-color: #fff3f3 !important;
}
.input-holder.ok input {
    background-color: #f3fff3 !important;
}

#reveal-password {
    width: 30px;
    height: 20px;
    display: block;
    background: transparent url(/signup/assets/img/icons/icon-eye.svg) center center no-repeat;
    background-size: 25px;
    position: absolute;
    right: 30px;
    top: 20px;
    opacity: 0.5;
    z-index: 1000;
    cursor: pointer;
}

.validation {
    position: absolute;
    right: 5px;
    top: 8px;
    display: block;
    height: 20px;
    width: 20px;
}
.input-holder.ok .validation {
    background: url('/signup/assets/img/icons/icon-check.svg') center center no-repeat;
    background-size: contain;
}
.right-content.create-account legend.form-label {
    font-size: 24pt;
    padding: 0 15px;
}

.right-content.create-account .form-control.error {
    border-color: red;
}

.right-content.create-account .form-hint {
    font-size: 13px;
    line-height: 14px;
    margin: 0 auto 5px;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.right-content.create-account .form-hint span.ok {
    color: green;
    font-weight: bold;
}
.strength-meter {
    position: relative;
    height: 3px;
    background: #DDD;
    margin: 10px auto 20px;
    border-radius: 3px;
}

.strength-meter:before,
.strength-meter:after {
    content: '';
    height: inherit;
    background: transparent;
    display: block;
    border-color: #FFF;
    border-style: solid;
    border-width: 0;
    position: absolute;
    width: 80px;
    z-index: 10;
}

.strength-meter:before {
    left: 70px;
}

.strength-meter:after {
    right: 70px;
}

.strength-meter-fill {
    background: transparent;
    height: inherit;
    position: absolute;
    width: 0;
    border-radius: inherit;
    transition: width 0.5s ease-in-out, background 0.25s;
}

.strength-meter-fill.strength-1 {
    background: darkred;
    width: 18%;
}

.strength-meter-fill.strength-2 {
    background: orangered;
    width: 40%;
}

.strength-meter-fill.strength-3 {
    background: orange;
    width: 60%;
}

.strength-meter-fill.strength-4 {
    background: yellowgreen;
    width: 82%;
}

.strength-meter-fill.strength-5 {
    background: green;
    width: 100%;
}

.outer-step-5 .match-page{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
}

.one-column {
    z-index: 1000;
    padding: 0;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.outer-step-5 .bottom-pagination {
    display: none;
}

img#join-done {
    width: 100px;
    margin: 0 auto;
    display: block;
}

#creating-top{
    text-align: center;
    padding:40px;
    font-size: 1.5em;
}
#done-top {
    text-align: center;
    padding: 40px;
    font-size: 1.5em;
}
.main img.small-logo {
    max-height: 40px;
    display: block;
    margin: 0 auto 1em;
}
#done-top {
    display: none;
}

.progress-holder {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    margin: 1em 0 0;
}

.progress-holder div:first-child {
    width: 10%;
    font-size: 16px;
    text-align: left
}

.progress-holder div:last-child {
    text-align: right;
    font-size: 16px;
    background: url(/signup/assets/img/icons/icon-launch.svg) top left no-repeat;
    height: 60px;
    width: 124px;
    background-size: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    text-shadow: 0 0 10px white;
    font-weight: 600;
    color: #333;
}
.progress {
    height: 6px;
    overflow: visible;
    margin-bottom: 10px;
    background-color: #efefef;
    width: 100%;
    position: relative;
}

.progress .progress-bar {
    height: 100%;
    color: inherit;
    position: relative
}

.progress .progress-bar.bg-c-green:after {
    border: 3px solid #34ca9d;
    content: "";
    background: #fff;
    position: absolute;
    right: -6px;
    top: -7px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.bg-c-green {
    background: #34ca9d
}
.joined-members {
    font-size: 16px;
    position: absolute;
    transform: rotate(-15deg);
    top: -35px;
}

#share-with {
    padding: 40px;
    background-color: #f3f3f3;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#share-icon-holder {
    width: 23%;
}

#share-icon-holder img {
    transform: rotate(20deg);
}

#share-description {
    width: 70%;
    text-align: center;
}

#share-link-holder {
    display: block;
    text-align: center;
    font-weight: 600;
}

#unique-link {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #f41965;
    font-size: 16px;
}

#unique-link-holder {
    position: relative;
}

#unique-link-holder a {
    position: absolute;
    right: 10px;
    top: 9px;
    background-color: #f01758;
    color: white;
    padding: 2px 20px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
}

#social-share-holder {
    padding: 1em 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}

#social-share-holder div a {
    margin: 0 2px 5px;
    overflow: hidden;
    text-decoration: none;
    text-transform: none;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: 0;
    font-family: helvetica neue,helvetica,arial,sans-serif;
    background-color: transparent;
    border-radius: 2px;
    display: block;
    padding: 15px 10px 15px 50px;
    font-size: 13px;
}

#social-share-holder div a:hover {
    transform: translateY(-4px);
}
#social-share-holder div#twitter-share a {
    background: rgb(29, 161, 242) url('/signup/assets/img/icons/icon-twitter-at.svg') left 8px center no-repeat;
    background-size: 35px;
}

#social-share-holder div#facebook-share a {
    background: rgb(59, 89, 152) url('/signup/assets/img/icons/icon-facebook-at.svg') left 8px center no-repeat;
    background-size: 35px;

}

#social-share-holder div#linkedin-share a {
    background: rgb(40 103 178) url('/signup/assets/img/icons/icon-linkedin-at.svg') left 8px center no-repeat;
    background-size: 35px;
}

#social-share-holder div#whatsapp-share a {
    background: rgb(77, 194, 71) url('/signup/assets/img/icons/icon-whatsapp-at.svg') left 8px center no-repeat;
    background-size: 35px;
}
#copied {
    opacity: 0;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    transition: bottom 400ms ease-in-out, opacity 400ms ease-in-out;
    background-color: #f01758;
    padding: 3px 10px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
}

#copied.show {
    opacity: 1;
    bottom: 10px;
    z-index: 1;
}

#why-not-wrap {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    height: 100%;
    z-index: 10000;
    padding: 30px;
    left: -130%;
    transition: left 500ms;
    width: 100%;
}

#why-not-wrap.show {
    left: 0;
}
#why-not {
    max-width: 360px;
    margin: 0 auto;
    height: 100%;
}
#why-not h2 {
    margin: 1em 0;
    text-align: center;
}

#close-why-not {
    position: absolute;
    right: 30px;
    top: 10px;
    font-size: 19px;
    color: #333;
}

input[name="other-reason"]{
    line-height: 30px;
    margin-left: 10px;
    border-radius: 4px;
    border: 1px solid #999;
    width: 70%;
    font-size: 17px;
    padding: 0 5px;
}

#send-reason {
    text-align: center;
    display: block;
    width: 100%;
    line-height: 45px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background-color: rgba(241, 23, 91, 1);
    color: rgb(255, 255, 255);
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
}

@media all and (max-width: 768px){
    .hide-on-mobile {
        display: none;
    }
    .hide-on-dt {
        display: block;
    }


    #scanned-information {
        width: 96%;
    }
    #scan-information #shop-icon {
        width: 25%;
        height: auto;
        min-width: auto;
        background-color: transparent;
    }

    #scan-information #user-avatar {
        display: none;
    }
    #scan-shop-sales {
        width: 50%;
        font-size: 0.9em;
        display: inline-block;
    }

    #scan-shop-favs {
        width: 45%;
        font-size: 0.9em;
        display: inline-block;
    }
    #scan-since {
        display: none;
    }

    .products-holder {
        flex-wrap: wrap;
    }
    .products-holder .product {
        width: 90%;
        margin: 0 auto;
        display: flex;
    }

    .product-image-holder {
        width: 120px;
    }
    .product-shop-platform {
        width: 40px;
    }
    .product-information-holder {
        width: 65%;
        display: flex;
        flex-wrap: wrap;
    }
    .product-shop-holder {
        order: 2;
        padding: 3px 0.5em;
        width: 100%;
        background-color: transparent;
    }

    .shop-information {
        width: 75%;
        font-size: 0.9em;
    }
    .product-title {
        font-size: 0.7em;
        margin: 2px 1em 0.2em 1em;
    }

    .product-rating {
        margin-bottom: 5px;
    }

    .buttons-holder {
        justify-content: space-around;
    }
    .buttons-holder a {
        width: 28%;
    }

    .one-column.ptop-200 {
        max-width: 100%;
        padding-top: 0;
    }

    img#join-done {
        width: 60px;
    }

    #create-title,
    #done-title {
        font-size: 26px;
    }
    #create-text,
    #done-text {
        font-size: 20px;
    }
    .joined-members {
        transform: rotate(15deg);
        top: 18px;
    }
    #share-with {
        position: relative;
    }
    #share-icon-holder {
        position: absolute;
        top: -20px;
        left: calc(50% - 45px);
    }
    #share-icon-holder img {
        width: 90px;
    }

    #share-description {
        width: 100%;
        text-align: center;
        padding-top: 25px;
    }

    #social-share-holder {
        flex-wrap: wrap;
    }
    #social-share-holder > div {
        width: 49%;
    }


    #unique-link-holder a {
        top: 34px;
    }
}

/* =============================
Responsive
============================= */
@media only screen and (min-width: 600px) {}

@media (max-width: 1300px) {
    .wrapper {
        max-width: 1140px;
    }


}

@media (max-width: 1199px) {
    .custom-checkbox .single-option-wrapper {
        width: 50%;
    }


}



@media (max-width: 991px) {}





@media (max-width: 767px) {

    /*    .main {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
*/
    html, body, .main, #step-display, .match-page, form#join {
        height: auto;
    }
    .bottom-pagination {
        z-index: 99999;
    }

    .provider {
        display: none;
    }

    .right-column {
        /*min-height: 300px;*/
    }

    .wizard-logo {
        z-index: 10;
    }

    .wizard-logo {
        position: absolute;
        top: 20px;
        left: 0;
        text-align: center;
        width: 100%;
    }

    .match-page {
       /*  flex-direction: column; */
    }

    .match-page:before {
        background: transparent;
    }

    .right-column,
    .left-column {
        overflow: hidden;
        height: auto;
        width: 100%;
    }

    .right-content {
        position: relative;
        z-index: 9999;
    }

    .ptop-200 {
        padding-top: 120px;
    }

    div.outer-step-3 .right-column.ptop-200 {
        min-height: 300px;
        padding-top: 100px;
    }

    div.outer-step-5 .right-column.ptop-200 {
        padding-top: 25px;
    }
    #left-product .product-image > div, #right-product .product-image div.slick-slide {
        height: 110px;
        max-width: 150px;

    }
    .products-holder {
        margin: 1em 0;
    }
    .products-holder .arrows {
        position: absolute;
        top: 133px;
        width: 50px;
        font-size: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }
    .products-holder .arrows.show {
        opacity: 1;
        transform: scale(1) translateX(-50%);


    }

    #left-product {
        top:0;
        left: 5%;
    }

    #right-product {
        right: auto;
        left: 5%;
        top: 216px;
    }

    #left-product.show {
        left: 5%;
    }

    #right-product.show{
        right: auto;
        left: 5%;
    }

    .question-section h1 {
        font-size: 32px;
    }

    .left-column {
        background: rgb(242, 242, 242);
        padding-bottom: 25px;
    }

    .right-column.ptop-200 {
        padding-top: 50px;
    }

    .right-pagi,
    .left-pagi {
        z-index: 10;
        position: relative;
    }

    /*.bottom-pagination:before {*/
    /*    width: 100%;*/
    /*}*/

    .bottom-pagination {
        padding: 10px 30px;
    }

    .bottom-pagination a,
    .bottom-pagination button {
        width: 123px;
        line-height: 37px;
        border-radius: 4px;
        font-size: 17px;
    }
    #skip {
        width: 80px;
    }

    .outer-step-5 .form-label { /* Need to check if to change step */
        display: none;
    }

    .left-content,
    .right-content {
        margin-left: 10px;
        margin-right: 10px;
    }

    .bottom-pagination {
        padding: 20px 5px;
        flex-wrap: nowrap;
    }

    .left-pagi {
        width: auto;
    }

    #survey-video {
        /* override other styles to make responsive */
        width: 100%    !important;
        height: auto   !important;
    }

    #creating-top{
        padding: 40px 10px;
    }


}

@media (max-width: 575px) {


    .question-section h1 {
        font-size: 26px;
    }

    .question-section small {
        font-size: 14px;
    }

    .question-section {
        padding-bottom: 0;
    }

    .custom-checkbox .single-option-wrapper {
        width: 100%;
    }

    body {
        overflow: auto;
    }
}

@media (max-width: 349px) {}