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

body,
html {
    background: #fbfbfb;
    height: 100%;
    font-family: Roboto, sans-serif
}

a {
    font-family: Roboto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s
}

a:focus {
    outline: none!important
}

a:hover {
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: Roboto;
}

p {
    font-family: Roboto;
    /* font-size: 14px; */
    line-height: 1.7;
    color: #666;
    margin: 0
}

ul,
li {
    margin: 0;
    list-style-type: none
}

input {
    outline: none;
    border: none
}

textarea {
    outline: none;
    border: none
}

textarea:focus,
input:focus {
    border-color: transparent!important
}

input:focus::-webkit-input-placeholder {
    color: transparent
}

input:focus:-moz-placeholder {
    color: transparent
}

input:focus::-moz-placeholder {
    color: transparent
}

input:focus:-ms-input-placeholder {
    color: transparent
}

textarea:focus::-webkit-input-placeholder {
    color: transparent
}

textarea:focus:-moz-placeholder {
    color: transparent
}

textarea:focus::-moz-placeholder {
    color: transparent
}

textarea:focus:-ms-input-placeholder {
    color: transparent
}

input::-webkit-input-placeholder {
    color: #adadad
}

input:-moz-placeholder {
    color: #adadad
}

input::-moz-placeholder {
    color: #adadad
}

input:-ms-input-placeholder {
    color: #adadad
}

textarea::-webkit-input-placeholder {
    color: #adadad
}

textarea:-moz-placeholder {
    color: #adadad
}

textarea::-moz-placeholder {
    color: #adadad
}

textarea:-ms-input-placeholder {
    color: #adadad
}

label {
    display: block;
    margin: 0
}

button {
    outline: none!important;
    border: none;
    background: 0 0
}

button:hover {
    cursor: pointer
}

iframe {
    border: none!important
}

.txt1 {
    font-family: Roboto;
    font-size: 18px;
    line-height: 1.2;
    color: #fff
}

.txt2 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 1.6;
    color: #999
}

.txt3 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 1.6;
    color: #00ad5f
}

.size1 {
    width: 355px;
    max-width: 100%
}

.size2 {
    width: calc(100% - 43px)
}

.bg1 {
    background: #3b5998
}

.bg2 {
    background: #1da1f2
}

.bg3 {
    background: #cd201f
}

.container-contact100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #f2f2f2
}

.wrap-contact100 {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse
}

.contact100-more {
    width: calc(100% - 560px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 30px 15px 0
}

.contact100-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .1)
}

.contact100-form {
    width: 560px;
    min-height: 100vh;
    display: block;
    padding: 110px 55px 55px
}

.contact100-form-title {
    width: 100%;
    display: block;
    font-family: Roboto;
    font-size: 2.5rem;
    color: #333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 48px
}

.wrap-input100 {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    margin-bottom: 20px
}

.label-input100 {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 7px 0 2px 24px
}

.input100 {
    display: block;
    width: 100%;
    background: 0 0;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #404b46;
    line-height: 1.2;
    padding: 0 26px
}

input.input100 {
    height: 30px
}

textarea.input100 {
    min-height: 130px;
    padding-top: 14px;
    padding-bottom: 15px
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #1ec0f0;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3)
}

.input100:focus+.focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.eff-focus-selection {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.container-contact100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px
}

.contact100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #1ec0f0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}

.contact100-form-btn:hover {
    background: #0981a5;
}

@media(max-width:992px) {
    .contact100-form {
        width: 50%;
        padding: 110px 30px 55px
    }
    .contact100-more {
        width: 50%
    }
}

@media(max-width:768px) {
    .contact100-form {
        width: 100%
    }
    .contact100-more {
        display: none
    }
}

@media(max-width:576px) {
    .contact100-form {
        padding: 110px 15px 55px
    }
}

.validate-input {
    position: relative
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 2px;
    pointer-events: none;
    font-family: Roboto;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1
}

@media(max-width:992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1
    }
}

.contact100-form-social {
    padding-top: 100px
}

.contact100-form-social-item {
    width: 36px;
    height: 36px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%
}

.contact100-form-social-item:hover {
    background: #404b46;
    color: #fff
}

.select2-container {
    display: block;
    max-width: 100%!important;
    width: auto!important
}

.select2-container .select2-selection--single {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    height: 30px;
    outline: none;
    position: relative
}

.select2-container .select2-selection--single .select2-selection__rendered {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #404b46;
    line-height: 1.2;
    padding-left: 26px;
    background-color: transparent
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 20px;
    height: 100%;
    top: 45%;
    transform: translateY(-50%);
    right: 19px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-top-color: #404b46
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-bottom-color: #404b46
}

.select2-container--open .select2-dropdown {
    z-index: 1251;
    width: calc(100% + 2px);
    border: 0 solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    left: -2px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .2);
    -o-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .2)
}

.select2-dropdown--above {
    top: -34px
}

.select2-dropdown--below {
    top: 2px
}

.select2-container .select2-results__option[aria-selected] {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 26px
}

.select2-container .select2-results__option[aria-selected=true] {
    background: #1ec0f0;
    color: #fff
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background: #1ec0f0;
    color: #fff
}

.select2-results__options {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #404b46;
    line-height: 1.2
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #404b46;
    line-height: 1.2
}

.wrap-input100 .dropDownSelect2 .select2-container--open {
    width: 100%!important
}

.wrap-input100 .dropDownSelect2 .select2-dropdown {
    width: calc(100% + 2px)!important
}


/*PLANES  */

.bg-pink {
    background-color: #e9228c;
}

.rounded-50 {
    border-radius: .5rem!important;
}

.rounded-top-50 {
    border-top-left-radius: .5rem!important;
    border-top-right-radius: .5rem!important;
}

.rounded-bottom-50 {
    border-bottom-left-radius: .5rem!important;
    border-bottom-right-radius: .5rem!important;
}

.cabecera-plan>span:nth-child(1) {
    font-size: 2rem;
    font-weight: bold;
}

a {
    cursor: pointer;
    outline: none;
}

a.outline,
button.outline {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #e9228c!important;
    font-size: 14px;
    border-color: #e9228c;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 40px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline a,
button.outline a {
    text-decoration: none;
}

a.outline:hover,
button.outline:hover {
    color: white!important;
    background: #e9228c;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline:active,
button.outline:active {
    border-radius: 22px;
}


/*  OUTLINE SM */

a.outline-sm,
button.outline-sm {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #e9228c!important;
    font-size: 14px;
    border-color: #e9228c;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 20px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-sm a,
button.outline-sm {
    text-decoration: none;
}

a.outline-sm:hover,
button.outline-sm:hover {
    color: white!important;
    background: #e9228c;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-sm:active,
button.outline-sm:active {
    border-radius: 22px;
}

.icon-plan-circle {
    border-radius: 100%;
    font-size: .6rem;
    height: 1.2rem;
    width: 1.2rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-plan-circle i {}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-50 {
    width: 50%;
}

.w-55 {
    width: 55%;
}

.w-60 {
    width: 60%;
}

.w-65 {
    width: 65%;
}

.w-70 {
    width: 70%;
}

.w-75 {
    width: 75%;
}

.w-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.w-100 {
    width: 100%;
}

.w-105 {
    width: 105%;
}

.text-pink {
    color: #e9228c!important;
}


/* SWITCH TOGGLE */

.toggleContainer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    border: 3px solid #343434;
    border-radius: 20px;
    background: #343434;
    font-weight: bold;
    color: #343434;
    cursor: pointer;
}

.toggleContainer::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0%;
    border-radius: 20px;
    background: white;
    transition: all 0.3s;
}

.toggleCheckbox:checked+.toggleContainer::before {
    left: 50%;
}

.toggleContainer div {
    padding: 6px;
    text-align: center;
    z-index: 1;
}

.toggleCheckbox {
    display: none;
}

.toggleCheckbox:checked+.toggleContainer div:first-child {
    color: white;
    transition: color 0.3s;
}

.toggleCheckbox:checked+.toggleContainer div:last-child {
    color: #343434;
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:first-child {
    color: #343434;
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:last-child {
    color: white;
    transition: color 0.3s;
}


/*TABLA PLANES */

.bg-1 {
    background-color: #fda700;
}

.bg-2 {
    background-color: #a7ce44;
}

.bg-3 {
    background-color: #1ec0f0;
}

.bg-4 {
    background-color: #e9228c;
}

.bg-5 {
    background: rgb(0, 89, 178);
    background: linear-gradient(90deg, rgba(0, 89, 178, 1) 0%, rgba(1, 69, 136, 0.9429971817828694) 99%);
}

.text-1 {
    color: #fda700;
}

.text-2 {
    color: #a7ce44;
}

.text-3 {
    color: #1ec0f0;
}

.text-4 {
    color: #e9228c;
}


/* BUTTONS */

a.outline-1,
button.outline-1 {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #fda700!important;
    font-size: 14px;
    border-color: #fda700;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 40px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-1 a,
button.outline-1 a {
    text-decoration: none;
}

a.outline-1:hover,
button.outline-1:hover {
    color: white!important;
    background: #fda700;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-1:active,
button.outline-1:active {
    border-radius: 22px;
}


/*  OUTLINE-1 SM */

a.outline-1-sm,
button.outline-1-sm {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #fda700!important;
    font-size: 14px;
    border-color: #fda700;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 20px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-1-sm a,
button.outline-1-sm {
    text-decoration: none;
}

a.outline-1-sm:hover,
button.outline-1-sm:hover {
    color: white!important;
    background: #fda700;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-1-sm:active,
button.outline-1-sm:active {
    border-radius: 22px;
}


/* 2 */

a.outline-2,
button.outline-2 {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #a7ce44!important;
    font-size: 14px;
    border-color: #a7ce44;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 40px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-2 a,
button.outline-2 a {
    text-decoration: none;
}

a.outline-2:hover,
button.outline-2:hover {
    color: white!important;
    background: #a7ce44;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-2:active,
button.outline-2:active {
    border-radius: 22px;
}


/*  OUTLINE-2 SM */

a.outline-2-sm,
button.outline-2-sm {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #a7ce44!important;
    font-size: 14px;
    border-color: #a7ce44;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 20px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-2-sm a,
button.outline-2-sm {
    text-decoration: none;
}

a.outline-2-sm:hover,
button.outline-2-sm:hover {
    color: white!important;
    background: #a7ce44;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-2-sm:active,
button.outline-2-sm:active {
    border-radius: 22px;
}


/* 3 */

a.outline-3,
button.outline-3 {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #1ec0f0!important;
    font-size: 14px;
    border-color: #1ec0f0;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 40px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-3 a,
button.outline-3 a {
    text-decoration: none;
}

a.outline-3:hover,
button.outline-3:hover {
    color: white!important;
    background: #1ec0f0;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-3:active,
button.outline-3:active {
    border-radius: 22px;
}


/*  OUTLINE-3 SM */

a.outline-3-sm,
button.outline-3-sm {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #1ec0f0!important;
    font-size: 14px;
    border-color: #1ec0f0;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 20px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-3-sm a,
button.outline-3-sm {
    text-decoration: none;
}

a.outline-3-sm:hover,
button.outline-3-sm:hover {
    color: white!important;
    background: #1ec0f0;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-3-sm:active,
button.outline-3-sm:active {
    border-radius: 22px;
}


/* 4 */

a.outline-4,
button.outline-4 {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #e9228c!important;
    font-size: 14px;
    border-color: #e9228c;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 40px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-4 a,
button.outline-4 a {
    text-decoration: none;
}

a.outline-4:hover,
button.outline-4:hover {
    color: white!important;
    background: #e9228c;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-4:active,
button.outline-4:active {
    border-radius: 22px;
}


/*  OUTLINE-4 SM */

a.outline-4-sm,
button.outline-4-sm {
    position: relative;
    z-index: 3;
    background: transparent;
    color: #e9228c!important;
    font-size: 14px;
    border-color: #e9228c;
    border-style: solid;
    border-width: 2px;
    border-radius: 22px;
    padding: 5px 20px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    font-weight: 600;
}

a.outline-4-sm a,
button.outline-4-sm {
    text-decoration: none;
}

a.outline-4-sm:hover,
button.outline-4-sm:hover {
    color: white!important;
    background: #e9228c;
    border-color: white;
    transition: all 0.2s linear;
}

a.outline-4-sm:active,
button.outline-4-sm:active {
    border-radius: 22px;
}

.box-shadow {
    box-shadow: 1px 11px 34px 1px rgba(59, 59, 59, 0.17);
    -webkit-box-shadow: 1px 11px 34px 1px rgba(59, 59, 59, 0.17);
    -moz-box-shadow: 1px 11px 34px 1px rgba(59, 59, 59, 0.17);
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.font-size-05 {
    font-size: .5rem;
}

.font-size-1 {
    font-size: 1rem;
}

.font-size-2 {
    font-size: 2rem;
}

.font-size-3 {
    font-size: 3rem;
}

.icon-outline-circle {
    border: 2px solid white;
    border-radius: 100%;
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.li-productos {
    font-size: 1.3rem;
    line-height: normal;
}

@media (max-width: 959px) {
    .li-productos {
        margin-bottom: 2rem;
    }
}