@charset "UTF-8";

/*

Style   : MobApp CSS
Version : 1.0
Author  : Surjith S M
URI     : https://surjithctly.in/

Copyright © All rights Reserved 

*/


/*------------------------
[TABLE OF CONTENTS]
    
1. GLOBAL STYLES
2. NAVBAR
3. HERO
4. TABS
5. TESTIMONIALS
6. IMAGE GALLERY
7. PRICING
8. CALL TO ACTION
9. FOOTER

------------------------*/


/* GLOBAL
----------------------*/

body {
    font-family: 'Rubik', sans-serif;
    position: relative;
}

a {
    color: #e38cb7;
}

a:hover,
a:focus {
    color: #d6619c;
}

h1 {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 45px;
    font-weight: 300;
    color: green;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h3 {
    color: #633991;
    font-size: 33px;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: #04d686;
}

h5 {
    font-size: 28px;
    font-weight: 300;
    color: #633991;
    margin-bottom: 0.7rem;
}

p {
    color: #959094;
}

p.lead {
    color: #e38cb7;
    margin-bottom: 2rem;
}

.text-primary {
    color: #e38cb7 !important;
}

.light-font {
    font-weight: 300;
}

.btn {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.375rem 1.35rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    color: #d6619c;
}

.btn-primary {
    border-radius: 3px;
    background-image: -moz-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: -webkit-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: -ms-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    padding: 0.6rem 2rem;
    border: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-image: linear-gradient( 122deg, #fd378e 0%, #e54595 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.3);
    color: #FFF;
}

.btn-light {
    border-radius: 3px;
    background: #FFF;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.26);
    font-size: 14px;
    font-weight: 500;
    color: #633991;
    margin: 0.5rem;
    padding: 0.7rem 1.6rem;
    line-height: 1.8;
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 0.8rem 1rem;
    font-size: 15px;
}

.light-bg {
    background-color: rgba(0,0,0,0.1);
}

.section {
    padding: 5% 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title small {
    color: #998a9b;
}

@media (max-width:767px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }
}


/* NAVBAR
----------------------*/

.nav-menu {
    padding: 0.4rem 0;
    transition: all 0.3s ease;
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
    background-color: rgb(0, 0, 0);
    background: -moz-linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(153, 204, 255) 100%);
    background: -webkit-linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(153, 204, 255) 100%);
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(153, 204, 255) 100%);
    -webkit-box-shadow: 0px 5px 23px 0px rgba(255,255,255, 0.1);
    -moz-box-shadow: 0px 5px 23px 0px rgba(255,255,255, 0.1);
    box-shadow: 0px 5px 23px 0px rgba(255,255,255, 0.1);
}

.nav-menu.is-scrolling {
    padding: 0;
}

.navbar-nav .nav-link {
    position: relative;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 14px;
    }
    .navbar-nav>.nav-item>.nav-link.active:after {
        content: "";
        border-bottom: 2px solid #cd99d4;
        left: 1rem;
        right: 1rem;
        bottom: 5px;
        height: 1px;
        position: absolute;
    }
}

@media (max-width:991px) {
    .navbar-nav.is-scrolling {
        padding-bottom: 1rem;
    }
    .navbar-nav .nav-item {
        text-align: center;
    }
}


/* HERO
----------------------*/

header {
    padding: 5% 0 0;
    text-align: center;
    color: #FFF;
}

.bg-gradient {
    background-image: -moz-linear-gradient( 135deg, rgba(60, 8, 118, 0.8) 0%, rgba(250, 0, 118, 0.8) 100%);
    background-image: -webkit-linear-gradient( 135deg, rgba(60, 8, 118, 0.8) 0%, rgba(250, 0, 118, 0.8) 100%);
    background-image: -ms-linear-gradient( 135deg, rgba(60, 8, 118, 0.8) 0%, rgba(250, 0, 118, 0.8) 100%);
    background-image: linear-gradient( 135deg, rgba(60, 8, 118, 0.8) 0%, rgba(250, 0, 118, 0.8) 100%);
}

.tagline {
    font-size: 23px;
    font-weight: 300;
    color: #ffb8f6;
    max-width: 800px;
    margin: 0 auto;
}

.img-holder {
    height: auto;
    overflow: hidden;
}
.img-holder3 {
    height: auto;
    overflow: hidden;
    padding-top: 5%;
}

@media (max-width:1200px) {
    .img-holder {
        padding-bottom: 5%;
    }
}

@media (max-width:767px) {
    .tagline {
        font-size: 17px;
    }
    .img-holder {
        padding-bottom: 5%;
    }
}


/* FEATURES
----------------------*/

.gradient-fill:before {
    color: #fc73b4;
    background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
    background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
    background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card.features {
    border: 0;
    border-radius: 3px;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

@media (max-width:991px) {
    .card.features {
        margin-bottom: 2rem;
    }
    [class^="col-"]:last-child .card.features {
        margin-bottom: 0;
    }
}

.card.features:before {
    content: "";
    position: absolute;
    width: 3px;
    color: #fc73b4;
    background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
    background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
    background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%);
    top: 0;
    bottom: 0;
    left: 0;
}

.card-text {
    font-size: 14px;
}

.card.features:hover {
    transform: translateY(-3px);
    -moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
}

.box-icon {
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.14);
    padding: 10px;
    width: 70px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    background-color: #FFF;
}

.circle-icon {
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background-color: #FFF;
    color: #f5378e;
    font-size: 48px;
    text-align: center;
    line-height: 80px;
    font-weight: 300;
    transition: all 0.3s ease;
}

@media (max-width:992px) {
    .circle-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        line-height: 50px;
    }
}

.ui-steps li:hover .circle-icon {
    background-image: -moz-linear-gradient( 122deg, #e6388e 0%, #fb378e 100%);
    background-image: -webkit-linear-gradient( 122deg, #e6388e 0%, #fb378e 100%);
    background-image: -ms-linear-gradient( 122deg, #e6388e 0%, #fb378e 100%);
    background-image: linear-gradient( 122deg, #e6388e 0%, #fb378e 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.09);
    color: #FFF;
}

.ui-steps li {
    padding: 15px 0;
}

.ui-steps li:not(:last-child) {
    border-bottom: 1px solid #f8e3f0;
}

.perspective-phone {
    position: relative;
    z-index: -1;
}

@media (min-width:992px) {
    .perspective-phone {
        margin-top: -150px;
    }
}


/*  TABS
----------------------*/

.tab-content {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: #FFF;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
    padding: 3rem;
}

@media (max-width:992px) {
    .tab-content {
        padding: 1.5rem;
    }
}

.tab-content p {
    line-height: 1.8;
}

.tab-content h2 {
    margin-bottom: 0.5rem;
}

.nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    padding: 1rem 1rem;
    border-color: #faf6fb #faf6fb #FFF;
    font-size: 19px;
    color: #b5a4c8;
    background: #f5eff7;
}

.nav-tabs .nav-link.active {
    background: #FFF;
    border-top-width: 3px;
    border-color: #ce75b4 #faf6fb #FFF;
    color: #633991;
}


/*  TESTIMONIALS
----------------------*/

.owl-carousel .owl-item img.client-img {
    width: 110px;
    margin: 30px auto;
    border-radius: 50%;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-single {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.blockquote {
    color: #7a767a;
    font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e7d9eb;
    width: 35px;
    height: 8px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #ff487e;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #ff487e;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}


/*  IMAGE GALLERY
----------------------*/

.img-gallery .owl-item {
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
    transform: scale(0.8);
    transition: all 0.3s ease-in;
}

.img-gallery .owl-item.center {
    transform: scale(1);
}


/*  PRICING
----------------------*/

@media (max-width:992px) {
    .card-deck {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .card-deck .card {
        margin-bottom: 15px;
    }
}

.card.pricing {
    border: 1px solid #f1eef1;
}

.card.pricing.popular {
    border-top-width: 3px;
    border-color: #ce75b4 #faf6fb #FFF;
    box-shadow: 0px 12px 59px 0px rgba(36, 7, 31, 0.11);
    color: #633991;
}

.card.pricing .card-head {
    text-align: center;
    padding: 40px 0 20px;
}

.card.pricing .card-head .price {
    display: block;
    font-size: 45px;
    font-weight: 300;
    color: #633991;
}

.card.pricing .card-head .price sub {
    bottom: 0;
    font-size: 55%;
}

.card.pricing .list-group-item {
    border: 0;
    text-align: center;
    color: #959094;
    padding: 1.05rem 1.25rem;
}

.card.pricing .list-group-item del {
    color: #d9d3d8;
}

.card.pricing .card-body {
    padding: 1.75rem;
}


/*  CALL TO ACTION
----------------------*/

.call-to-action {
    text-align: center;
    color: #FFF;
    margin: 3rem 0;
}

.call-to-action .box-icon {
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    transform: scale(0.85);
    margin-bottom: 2.5rem;
}

.call-to-action h2 {
    color: #FFF;
}

.call-to-action .tagline {
    font-size: 16px;
    font-weight: 300;
    color: #ffb8f6;
    max-width: 650px;
    margin: 0 auto;
}

.btn-light img {
    margin-right: 0.4rem;
    vertical-align: text-bottom;
}


/*  FOOTER
----------------------*/

.social-icons {
    text-align: right;
}

.social-icons a {
    background-color: #FFF;
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    margin: 0 0.3rem;
    border-radius: 5px;
    color: #f4c9e2;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    text-decoration: none;
    color: #e38cb7;
}

@media (max-width:991px) {
    .social-icons {
        text-align: center;
        margin-top: 2rem;
    }
}
.textodetalleposta{
    color: #1d2124;
    text-align: left;
    font-size: x-large;
}

/* The switch - the box around the slider */
.switch {
    margin: 4rem auto;
}
/* main styles */
.switch {
    width: 24rem;
    position: relative;
}
.switch input {
    position: absolute;
    top: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}
.switch input:checked {
    z-index: 1;
}
.switch input:checked + label {
    opacity: 1;
    cursor: default;
}
.switch input:not(:checked) + label:hover {
    opacity: 0.5;
}
.switch label {
    color: #000;
    opacity: 0.33;
    transition: opacity 0.25s ease;
    cursor: pointer;
}
.switch .toggle-outside {
    height: 100%;
    border-radius: 2rem;
    padding: 0.25rem;
    overflow: hidden;
    transition: 0.25s ease all;
}
.switch .toggle-inside {
    border-radius: 5rem;
    background: #4a4a4a;
    position: absolute;
    transition: 0.25s ease all;
}
.switch--horizontal {
    width: 100%;
    height: 2rem;
    margin: 0 auto;
    font-size: 0;
    margin-bottom: 1rem;
}
.switch--horizontal input {
    height: 2rem;
    width: 6rem;
    left: 6rem;
    margin: 0;
}
.switch--horizontal label {
    font-size: 1.0rem;
    line-height: 2.5rem;
    display: inline-block;
    width: 6rem;
    height: 100%;
    margin: 0;
    text-align: center;
}
.switch--horizontal label:last-of-type {
    margin-left: 6rem;
}
.switch--horizontal .toggle-outside {
    background: #fff;
    position: absolute;
    width: 6rem;
    left: 6rem;
}
.switch--horizontal .toggle-inside {
    height: 1.5rem;
    width: 1.5rem;
}
.switch--horizontal input:checked ~ .toggle-outside .toggle-inside {
    left: 0.25rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.2);
}
.switch--horizontal input ~ input:checked ~ .toggle-outside .toggle-inside {
    left: 4.25rem;
    background: #2ecc71;
}
.parallax-window {
    min-height: 500px;
    background: transparent;
    position: relative;
}
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}
.titulo
{
    display: block;
    color: white;
    font-size: xx-large;
    font-weight: 500;
}
.subtitle{
    margin-top: 1%;
    margin-bottom: 1%;
    color: white;
    font-size: x-large;
}
.light-bg-black{
    background-color: #2c2c2c;
}
.textfooter{
    color: #fff;
    margin-left: 1%;
    margin-top: 1.5%;
    font-size: larger;
}
.cft
{
    color: #fff !important;
    display: inline-block;
    transform: scaleY(3.0);
}
.dial {
    background-color: rgba(190, 190, 190, 0.3) !important;
}

div.inside, div.outside {
    margin-bottom: 28px;
}

div.drum-wrapper {
    border: solid 1px #f0f0f0;
    margin-top: 20px;
}
#drum_number {
    width: auto;
    height: auto;
}
#drum_number .inner {
    top: 0px;
    height: 200px;
}
#drum_number .container, #drum_number figure {
    height: 35px;
}
#drum_number .container {
    top: 90px;
}
#drum_number figure {
    text-align: center;
    font-size: 1.4em;
    line-height: 1.4em;
}
#drum_number .dial {
    height: 100px;
}
#drum_number .dial div {
    width: 35px;
}
@media screen and (max-width : 1920px){
    .mobile{
        visibility:hidden;
        display: none;
    }
}
@media screen and (max-width : 906px){
    .slider {
        display:none;
    }
    .mobile{
        visibility:visible;
        display: block;
    }
    .input{
        width: 90% !important;
    }
    .select{
        width: 45% !important;
    }
    .slider-horizontal{
        margin-bottom: 0px !important;
    }
    .switch--horizontal{
        width: max-content;
    }
    .button-form{
        width: 50% !important;
    }
}
@media screen and (max-width : 480px){
    .slider {
        display: none;
    }
    .mobile{
        visibility:visible;
        display: block;
    }
    .input{
        width: 90% !important;
    }
    .select{
        width: 45% !important;
    }
    .slider-horizontal{
        margin-bottom: 0px !important;
    }
    .switch--horizontal{
        width: max-content;
    }
    .button-form{
        width: 50% !important;
    }
}
.radio-item {

    position: relative;
    padding: 0 6px;
    margin: 10px 0 0;
}

.radio-item input[type='radio'] {
    display: none;
}

.radio-item label {
    color: #000;
    font-weight: normal;
}

.radio-item label:before {
    content: " ";

    position: relative;
    top: 5px;
    margin: 0 5px 0 0;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    border: 2px solid #04d664;
    background-color: #fff;
    display: inherit;
}

.radio-item input[type=radio]:checked + label:after {
    border-radius: 11px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    left: 11px;
    content: " ";
    display: block;
    background: #04d664;
}

.input{
    position: center;
    width: 60%;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    padding-left: 1.75rem;
    border: 1px solid black;
    border-radius: 2rem;
    background-color: white;
    color: #4066b0;
    font: 400 0.9375rem/1.75rem "Open Sans", sans-serif;
    transition: all 0.2s;
}

.select{
    position: center;
    width: 30%;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    padding-left: 1.75rem;
    border: 1px solid black;
    border-radius: 2rem;
    background-color: white;
    color: dimgray;
    font: 400 0.9375rem/1.75rem "Open Sans", sans-serif;
    transition: all 0.2s;
}

.button-form{
    display: inline-block;
    width: 60%;
    height: 2.75rem;
    border: 1px solid #633991;
    border-radius: 1.5rem;
    background-color: #0CADD1;
    color: #fff;
    font: 500 0.9rem/1.4rem "Open Sans", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.button-form2{
    display: inline-block;
    width: 100%;
    margin-top: -5%;
    height: 2.75rem;
    border: 1px solid #633991;
    border-radius: 1.5rem;
    background-color: #4066b0;
    color: #fff;
    font: 600 0.875rem/1.75rem "Open Sans", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}


.button-form:hover{
    background-color: green;
    color: #ffffff;
}

.button-form2:hover{
    background-color: #005956;
    color: #ffffff;
}

::placeholder { color: dimgray; }

.contenedor{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.block{
    display: block !important;
}

.promo-tasas-1{
    text-align: right;
    font-size: 300%;
    margin-top: -15px;
    letter-spacing: -5px;
}

.promo-tasas-2{
    line-height: initial;
    font-size: 70%;
}

.promo-direcciones-comercio{
    font-size: 100%;
    line-height: initial;
}

@media only screen and (max-width: 767px) {
    .whatsapp { display: inline !important}
    .socialVea{
        width: 10% !important;
    }
    .playstoreVea{
        width: 20%
    }
    .header{
        height: auto !important;
    }
    .boton-header{
        display: none;
    }
}

.center{
    display:table-cell;
    vertical-align: middle;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.div-youtube{
    width: 60%;
}

.basic-2 {
    padding-top: 5%;
    padding-bottom: 5%;
}

.basic-2 .embed-responsive {
    border-radius: 1.5rem;
    max-width: 80%;
}

.response{
    padding: 20px;
    margin-left: 20px;
    font-family: "cocon";
    font-size: xx-large;
    color: #4066b0;
    text-align: center;
    display: block;
    line-height: normal;
}

.header{
    width: 100%;
    position: fixed;
    z-index: 9999999;
}

.boton-header{
    margin-top: 25px;
    z-index: 99999999;
    position: fixed;
    margin-left: 80%;
}

/**********************/
/*     15. Footer     */
/**********************/
.footer {
	padding-top: 4rem;
	background-color: #4066B0;
}

.footer .footer-col {
	margin-bottom: 2rem;
}

.footer h4 {
	margin-bottom: 0.75rem;
}

.footer h3,
.footer p,
.footer a {
	color: #f9f9fc;
}

.footer .fa-stack.fa-lg {
	margin-top: 0.125rem;
	font-size: 1.5rem;
	line-height: 3rem;
}

.footer .fa-stack a .youtube.fa-stack-2x {
    color: #3b5998;
}

.footer .fa-stack a .facebook.fa-stack-2x {
    color: #3b5998;
}

.footer .fa-stack a .twitter.fa-stack-2x {
    color: #45b0e3;
}

.footer .fa-stack a .google-plus.fa-stack-2x {
    color: #dd4b39;
}

.footer .fa-stack a .instagram.fa-stack-2x {
    color: #d51a6f;
}

.footer .fa-stack a .youtube.fa-stack-2x {
    color: white;
}

.footer .fa-stack a .linkedin.fa-stack-2x {
    color: #0177b5;
}

.footer .fa-stack a .dribbble.fa-stack-2x {
    color: #ea4c89;
}

/* Default Social Icon */
.footer .fa-stack a .fa-stack-1x {
    color: #fff;
	transition: all 0.2s;
}

.footer .fa-stack a .fa-stack-2x {
	color: #3b5998;
	transition: all 0.2s;
}

.footer .fa-stack a:hover .fa-stack-1x {
	color: #e23963;
}

.footer .fa-stack a:hover .fa-stack-2x {
    color: #fff;
}
/* end of default social icon */

.footer .copyright {
	padding-top: 1.5rem;
	padding-bottom: 0.5rem;
	background-color: #304c84;
	text-align: center;
}

.footer .copyright p {
	opacity: 0.8;
}

.footer .copyright p,
.footer .copyright p a {
	color: #f9f9fc;
	font: 400 0.875rem/1.5rem "Open Sans", sans-serif;
}

.form-control-input{
    display: block; /* needed for proper display of the label in Firefox, IE, Edge */
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 0rem;
    padding-left: 1.75rem;
    border: 1px solid #f9f9fc;
    border-radius: 2rem;
    background-color: #f9f9fc;
    color: #4066b0;
    font: 400 0.9375rem/1.75rem "Open Sans", sans-serif;
    transition: all 0.2s;
    -webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}
.back-to-top{
  position: fixed;
}