@import "css/normalize.css";
/* @import url('https://fonts.googleapis.com/css2?family=Muli:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500;700&display=swap');
@import url('//db.onlinewebfonts.com/c/1a69bbaf09f62b4596f5020478cd0399?family=Poppins+Thin');
@import url('//db.onlinewebfonts.com/c/1a69bbaf09f62b4596f5020478cd0399?family=Poppins+ExtraBold'); */

:root {
    --primary-blue: #227296;
    --secondary-blue: #40ACD3;
    --light-blue: #d6f0f8;
    --gray-dark: #374151;
    --gray-medium: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --alert-yellow: #fef3c7;
    --alert-yellow-text: #92400e;
    --success-green: #70BC7C;
}


html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px; 
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
}

.header {
    height: 80px;
    width: 100%;
    border-bottom: 4px solid #f7f7f7;
}

.header a {
    display: inline-block;
}

.header .logoWhite {
    max-height: 100%;
}

.header .logoLink {
    height: 80px;

}

.header .boxHeader {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.marginLinkChange {
    margin: 15px 10px 0px 16px;
}

.link-purple {
    color: var(--primary-blue);
}

.inner {
    width: 100%;
    margin: 0px auto;
    display: flex;
}

.img-res {
    max-width: 90%;
}

.inner.column {
    flex-direction: column;
}

.inner.row {
    flex-direction: row;
}

.inner.row.wrap {
    flex-wrap: wrap;
}

.inner.center {
    justify-content: center;
    align-items: center;
}

.box.d2 {
    /*width: 50%;*/
}

.dv-color {
    width: 62px;
    height: 4px;
    background-color: var(--primary-blue);
}

.results {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.results .item {
    cursor: pointer;
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    height: 20px;
    /*padding: 20px 0;*/
    padding: 30px 0;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: 0 4px 22px -5px rgba(0, 0, 0, 0.15);
    color: var(--gray-dark);
    font-family: Raleway, sans-serif;
    font-weight: bold;
    max-width: 420px;

}

.results .item.hidden {
    display: none;
}

.taps {
    width: 245px;
    display: flex;
    padding-top: 115px;
}

.tap-process {
    width: 270px;
    display: flex;
    flex-direction: column;
}


.tap-process .item {
    /* cursor: pointer; */
    display: block;
    height: 20px;
    padding: 20px 0;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 4px 22px -5px rgba(0, 0, 0, 0.15);
    color: var(--gray-dark);
    line-height: 1.15;
    font-weight: bold;
    font-size: medium;
    transition: width 1s;
    margin-left: 0;
    -webkit-border-top-right-radius: 14px;
    -webkit-border-bottom-right-radius: 14px;
    -moz-border-radius-topright: 14px;
    -moz-border-radius-bottomright: 14px;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    text-align: center;
    width: 60%;
    align-items: center;
    padding-left: 5px;
}

.tap-process .item:hover {
    width: 80%;
}

.tap-process .item.check {
    background: var(--gray-dark);
    color: white;
}

.tap-process .item.active {
    width: 90%;
    background: var(--secondary-blue);
    color: white;
}

.tab-process .item.next {
    background: #F96999;
    color: white;
}

.purple-next {
    color: #f22167;
    font-size: 40px;
    line-height: 0;
}

.red-error {
    color: #f22121;
    font-size: 14px;
    /* line-height: 0; */
    padding-bottom: 8px;
}

.title {
    margin: .67em 0;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
    color: var(--gray-dark);
    font-size: 38px;
    line-height: 46px;
    font-weight: 800;
}

.subTitle {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 4px;
    color: var(--gray-dark);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
}

.text {
    margin-bottom: 0;
    padding-right: 20px;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}

.t20 {
    font-size: 20px;
}

.b {
    font-weight: bold;
}

.colorBlue {
    color: #de05de;
}

.btn {
    color: white;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    display: block;
    padding: 10px 25px;
    background-color: var(--success-green);
    -webkit-transition: background-color 100ms ease, -webkit-transform 500ms ease;
    transition: background-color 100ms ease, transform 500ms ease, -webkit-transform 500ms ease;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    border-radius: 25px;
}

a.btn {
    display: table;
}

.btn-clean {
    border-style: solid;
    border-width: 2px;
    border-color: var(--success-green);
    border-radius: 25px;
    background-color: transparent;
    color: var(--success-green);
}

.input {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    width: 420px;
    height: 55px;
    margin-bottom: 32px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-style: none;
    border-width: 1px;
    border-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 22px -5px rgba(0, 0, 0, 0.15);
    opacity: 1;
    font-family: 'Poppins',Raleway, sans-serif;
}

.select2-container--default {
    display: block;
    padding: 23px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border-style: none;
    border-width: 1px;
    border-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 22px -5px rgba(0, 0, 0, 0.15);
    opacity: 1;
    font-family: Raleway, sans-serif;
    width: 420px;
}

.select2-container--default .select2-selection--single {
    border: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 20px;
}

select.input {
    width: 444px;
    height: 74px;
    max-width: 100%;
}

.bgpoints {
    /* background-image: url("./images/background.png"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    overflow: hidden;
}

.checkboxInput {
    position: relative;
    top: 1px;
    margin-right: 5px;
    margin-left: 5px;
}

form {
    /* display: flex;
    flex-direction: column; */
}

footer {
    margin-top: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--gray-dark);
    margin-top: 50px;
}

footer .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center

}

.dv100 {
    width: 100%;
}

.whatsapp_logo {
    position: fixed;
    bottom: 15px;
    right: 14px;
}

.whatsapp_logo img {
    width: 50px;
    height: 50px;
}

#letterFirmOwn {
    position: relative;
    top: 50px;
}

.labelFirm {
    margin-left: 20px;
}

.mb32 {
    margin-bottom: 32px;
}


.pl180 {
    padding-left: 180px;
}

.pr180 {
    padding-right: 180px;
}

.m20 {
    margin: 20px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt40 {
    margin-top: 40px;
}

.ml10 {
    margin-left: 10px;
}

.mr10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.pt25 {
    padding-top: 25px;
}

.block50 {
    max-width: 46%;
    padding-right: 2%;
    width: 100%;
}


@media only screen and (max-width: 900px) {
    .mobileHidden {
        display: none;
    }

    .pl180 {
        padding-left: 20px;
        padding-right: 0;
    }

    .input {
        padding: 10px 0 10px 0;
        padding-left: 4%;
        width: 92%;
    }

    .box.d2 {
        margin: 0 auto;
        width: 92%;
    }

    .taps {
        width: 20px;
    }

    .tap-process {
        display: none;
    }

    .block50 {
        max-width: 94%;
        padding-left: 2%;
        width: 100%;
    }
}

.txt-left {
    text-align: left;
}

@media only screen and (max-height: 900px) {
    /*footer{*/
    /*    position: fixed;*/
    /*    width: 100%;*/
    /*    bottom: 0;*/
    /*}*/
}


.hidden {
    display: none;
}

.letterFirm {
    font-size: 25px;
    font-family: 'Great Vibes', cursive;
}

.letterFirm2 {
    font-size: 25px;
    font-family: 'Shadows Into Light', cursive;
}

.letterFirm3 {
    font-size: 25px;
    font-family: 'Sacramento', cursive;
}

.letterFirm4 {
    font-size: 25px;
    font-family: 'Parisienne', cursive;
}

canvas {

}

.canvasFirm {
    position: relative;
    width: 420px;
    height: 80px;
    border-bottom: 1px solid #919191;
    background: #eaeaea;
    margin-bottom: 10px;
}

.select2-hidden-accessible select {
    display: block;
    margin: 0px auto;
    opacity: 0;
}

.max500 {
    max-width: 500px;
    width: 100%;
}

htmlpageheader {
    display: none;
}

.matiBox {
    width: 96%;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.prestamarketBox {
    width: 100%;
    max-width: 1224px;
    margin: 0 auto;
    text-align: center;
}

.videoBox {
    background: rgb(0, 158, 224);
    background: linear-gradient(90deg, rgba(0, 158, 224, 1) 0%, rgba(18, 40, 107, 1) 91%);
    padding: 40px 0px;
    margin-top: 40px;
}

.videoBox iframe {
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.cart {
    flex-direction: row;
    display: flex;
    text-align: left;
    margin-top: 40px;
}

.cartBox {
    width: 88%;
    padding: 2% 2% 2% 4%;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    border: 1px solid #07B7B2;
    margin: 2% 2% 2% 2%;
    min-width: 660px;
    max-width: 100%;
}

.colSb {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}

.colSbL {
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
}

.cartBox .info {
    margin-left: 20px;
}

.cartBox .itemTitle {
    font-size: 20px;
    font-family: "Muli";
    text-align: left;


}

.cartBox .controls {
    align-self: center;

}

.deleteCart {
    font-size: 20px;
    color: #6421f2;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.cartBox h1 {
    font-size: 12px;
}

.cart .boxItems {
    flex: 1;

}

.cart .resume {
    width: 320px;
}

.boxesInfoPrMar {
    margin: 40px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.boxesInfoPrMar .boxImage {
    height: 50px;
}

.boxesInfoPrMar .boxImage img {
    align-self: center;
}

.boxesInfoPrMar .boxInfo {
    max-width: 320px;
}

.boxesInfoPrMar .boxInfo {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.urlBox {
    flex-direction: column;
    margin: 0 auto;
}


.itemsCart {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.imageProduct {
    width: 72px;
    height: auto;
    align-self: center;
}

@media only screen and (max-width: 600px) {
    .cartBox {
        min-width: 80%;
    }

    .boxesInfoPrMar {
        flex-direction: column;
    }

    .itemsCart {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .urlBox {
        width: 90%;
    }

    .mbDivisor {
        width: 100%;
        height: 1px;
        display: block;
    }

    /*.imageProduct{*/
    /*    display: none !important;*/
    /*}*/
}

.aldo {
    margin-top: 20px;
    background: #f22167;
}

.divbot {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1224px;
    padding: 20px 0px;
}


