h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

/*********************************************
* FONT SIZE **********************************
**********************************************/
h2 {
    font-size: 1.9rem
}

h3 {
    font-size: 1.5rem
}

.font-xss {
    font-size: .6rem;
}

.font-xs {
    font-size: .8rem;
}

.font-xsm {
    font-size: .9rem;
}

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

.font-md {
    font-size: 1.1rem;
}

.font-mdl {
    font-size: 1.25rem;
}

.font-lg {
    font-size: 1.6rem;
}

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

.font-xlm {
    font-size: 2.5rem;
}

.font-xxl {
    font-size: 3.5rem;
}

@media (max-width: 767px) {
    .font-xxl {
        font-size: 2.2rem;
    }
}

@media (min-width: 992px) {
    .font-lg-mdl {
        font-size: 1.25rem;
    }
}

/*********************************************
* BUTTONS ************************************
**********************************************/
button {
    cursor: pointer;
}

button[disabled="disabled"] {
    cursor: default;
}

.btn-agendar {
    font-family: 'Poppins', sans-serif;
    text-decoration: none !important;
    font-weight: bold;
    color: #0b53ff;
    background-color: #e2e2e2;
    border-radius: 30px;
}

.btn-agendar:hover {
    color: #FFFFFF;
    background-color: #494949;
    transition-duration: 0.5s;
    cursor: pointer;
}

.btn-recursos {
    font-family: 'Poppins', sans-serif;
    text-decoration: none !important;
    font-weight: bold;
    color: #0b53ff;
    background-color: #f1f1f1;
    border-radius: 30px;
}

.btn-recursos:hover {
    color: #FFFFFF;
    background-color: #0b53ff;
    transition-duration: 0.5s;
    cursor: pointer;
}

.btn-conheca {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #0b53ff;
    border-radius: 35px;
}

.btn-conheca:hover {
    color: #FFFFFF;
    background-color: #494949;
    transition-duration: 0.5s;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
   }
   
   button.learn-more {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #0b53ff;
    border-radius: 1.625rem;
   }
   
   button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
   }
   
   button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.23rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
   }
   
   button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    line-height: 1.4;
    color: #0b53ff;
    text-align: center;
   }
   
   button:hover .circle {
    width: 100%;
   }
   
   button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1.3rem, 0);
   }
   
   button:hover .button-text {
    color: #fff;
   }

   button.learn-more:focus {
    outline: none;
    box-shadow: none; 
}

.btn:focus {
  outline: none !important;
}

.input-group-addon > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .form-control:focus {
    box-shadow: 0 0 0 .1rem rgba(99, 34, 134, .25);
}

.btn.btn-animated i {
    margin-left: 10px;
    transition: .2s;
}

.btn.btn-animated:hover i {
    margin-left: 20px;
}

.btn-big-button {
    padding: 18px 40px 18px 40px;
}

.btn-price {
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,.5);
    padding: 12px 0px 12px 0px;
    font-weight: 600;
    background-color: #fafafd;
    font-size: 13px;
}

.btn-price.selected-price {
    color: #FFF !important;
    background-color: #0b53ff !important;
}

.btn-price.large-price {
    font-size: 18px;
    padding: 7% 0 7% 0;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,.15);
    background-color: #fff;
}

.btn-price:hover {
    color: #FFF;
    background-color: #632286;
}

.btn-price:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 105, 217, .5);
}

.btn-border-pill {
    border-radius: 40px !important;
    padding: 10px !important;
}

/*********************************************
* BORDER *************************************
**********************************************/
.bd-0 {
    border-width: 0 !important;
}

.bordered {
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 15px;
    min-height: 315px;
    align-items: center;
}

.border-b-default {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

/*********************************************
* FORM ***************************************
**********************************************/
.form-control-custom {
    position: relative;
}

.form-control-custom .form-control {
    padding-right: 35px;
}

.form-control-custom .form-control-icon {
    color: rgba(0, 0, 0, .7);
    line-height: 1;
    padding-right: inherit;
    position: absolute;
    right: 7.5px;
    text-align: right;
    top: calc(50% - 0.5em);
    width: 30px;
}

.space-normalize {
    padding: 0.785rem 1.67rem;
    font-size: 1rem;
}

/*********************************************
* SEPARATOR **********************************
**********************************************/
.separator {
    width: 100%;
    margin: 20px auto 15px;
    position: relative;
    height: 1px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
}

.separator-2,
.separator-3 {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    height: 1px;
}

.separator-4{
    border-top: 1px solid #bebebe;
    width: 100%;
}

.separator-5{
    border-top: 1px solid #e5e5e5;
    width: 100%;
}

/* SEPARATOR 1 ********************************/
.separator:after {
    height: 1px;
    background: #e8e8e8;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.09) 35%, rgba(0, 0, 0, 0.09) 70%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0.09)), color-stop(70%, rgba(0, 0, 0, 0.09)), color-stop(100%, rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.09) 35%, rgba(0, 0, 0, 0.09) 70%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.09) 35%, rgba(0, 0, 0, 0.09) 70%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.09) 35%, rgba(0, 0, 0, 0.09) 70%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.09) 35%, rgba(0, 0, 0, 0.09) 70%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: -1px;
    content: "";
    width: 100%;
    left: 0;
}

h3 + .separator,
h4 + .separator,
h5 + .separator {
    margin-top: 15px;
}

/* SEPARATOR 2 ********************************/
.separator-2:after {
    height: 1px;
    background: #d1d1d1;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.18)), color-stop(35%, rgba(0, 0, 0, 0.12)), color-stop(70%, rgba(0, 0, 0, 0.05)), color-stop(100%, rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: -1px;
    left: 0px;
    content: "";
    width: 100%;
}

/* SEPARATOR 3 ********************************/
.separator-3:after {
  height: 1px;
  background: #d1d1d1;
  background: -moz-linear-gradient(right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, right top, left top, color-stop(0%, rgba(0, 0, 0, 0.18)), color-stop(35%, rgba(0, 0, 0, 0.12)), color-stop(70%, rgba(0, 0, 0, 0.05)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: -1px;
  left: 0px;
  content: "";
  width: 100%;
}

/*********************************************
* HEADER TOP *********************************
**********************************************/
#header-top {
    padding-bottom: 7.5px;
    padding-top: 7.5px;
}

.social-links a {
    display: inline-block;
    border-radius: 100%;
}

.social-links i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.form-login {
    width: 290px;
    padding: 15px;
}

/*********************************************
* HEADER NAVBAR ******************************
**********************************************/
#navbar {
    -webkit-box-shadow: 0px 1px 5px 0px rgba(170,170,170,1);
    -moz-box-shadow: 0px 1px 5px 0px rgba(170,170,170,1);
    box-shadow: 0px 1px 5px 0px rgba(170,170,170,1);
}

/*********************************************
* FRONT **************************************
**********************************************/
#front {
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
}

#front .layer {
    background-color: rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#front .title {
    font-weight: normal;
}

.accept-terms{
    box-shadow: 0 0 35px rgba(140,152,164,.125);
    border: 1px solid #e7eaf3;
    border-radius: .35rem;
}

.links {
    text-decoration: none;
    color: #0b53ff;
    cursor: pointer;
}

.links:hover {
    color: #000;
    transition-duration: 0.5s;
}

.fixed-bottom{
    position: fixed;
    right: 0;
    left: 0;
    bottom: 10px;
    z-index: 1030;
}

.align-divs {
    flex-wrap: nowrap;
    align-items: center;
}

.soft-bold-font {
    font-weight: 600;
}

.bold-font {
    font-weight: bold;
}

.font-normalizer {
    font-weight: normal;
}

.shadow-underlayer {
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,.1);
    border: none !important;
}

.box-feature {
    border-radius: 10px;
    max-height: 429px !important;
    transition: transform 0.3s ease;
    background: rgb(236, 236, 236);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.box-feature-blue {
    background-color: #1f305c;
    border: 1px solid #1f305c;
    border-radius: 10px;
    box-shadow: 1px 3px 10px #1f305c;
    min-height: 290px !important;
    transition: transform 0.3s ease;
}

.box-feature-blue:hover {
    transform: translateY(-10px);
}

.box-body{
    padding: 20px !important;
}

.floating-shape {
    position: absolute;
    z-index: -1
}

.floating-shape.bottom-0 {
    bottom: -1px !important
}

.img-simple {
    border-radius: 15px;
}

/* .segments-card{
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    border-radius: 30px;
    box-shadow: 1px 3px 10px rgb(110, 124, 245);
    margin-top: 30px;
}

.segments-card-texts{
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items:center !important;
    justify-content: center !important;
} */

/* From Uiverse.io by gharsh11032000 */ 
.segments-card {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #f2f2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px #ffffff80;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .segments-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .segments-card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .segments-card:hover .segments-card__content {
    transform: rotateX(0deg);
  }
  
  .segments-card__title {
    margin: 0;
  }
  
  .segments-card:hover img {
    scale: 0;
  }
  
  .segments-card__description {
    margin: 10px 0 0;
    line-height: 1.2;
  }

  /* From Uiverse.io by alexmaracinaru */ 
.card-segment {
    width: 300px;
    height: 378px;
    background: white;
    padding: .4em;
    border-radius: 6px;
  }
  
  .card-segment-image {
    background-color: rgb(236, 236, 236);
    width: 100%;
    height: 130px;
    border-radius: 6px 6px 0 0;
  }
  
  .card-segment-image:hover {
    transform: scale(0.98);
  }
  
  .segment-category {
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 600;
    color: rgb(63, 121, 230);
    padding: 60px 7px 0;
  }
  
  .segment-category:hover {
    cursor: pointer;
  }
  
  .segment-heading {
    font-weight: 600;
    color: rgb(88, 87, 87);
    padding: 7px;
  }
  
  .segment-heading:hover {
    cursor: pointer;
  }
  
  .segment-author {
    color: gray;
    font-weight: 400;
    font-size: 11px;
    padding-top: 20px;
  }
  
  .segment-name {
    font-weight: 600;
  }
  
  .segment-name:hover {
    cursor: pointer;
  }

@media (min-width: 577px) and (max-width: 991px) {
    .align-divs {
        flex-direction: column;
        align-items: center;
    }

    .align-video {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin: 30px 0px 0px 0px;
    }

}

@media (max-width: 576px) {
    .align-divs {
        flex-direction: column;
        align-items: center;
    }

    .align-video {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin: 30px 0px 0px 0px;
    }
    

}

/*********************************************
* PRICING ************************************
**********************************************/

/* Pricing tables
---------------------------------- */
.plan .header {
    margin: 0 -1px;
}

.plan .header h3 {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
    padding: 15px 0 10px;
}

.plan .header .price {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1;
    padding: 8px 0 10px;
}

.plan ul li {
    border-bottom: 1px solid #E3E3E3;
    border-top: 1px solid #FFFFFF;
    padding: 12px 5px;
}

.plan.best-value ul li {
    padding: 15px 5px;
}

/* Pricing radio selection
---------------------------------- */
.new-account-plan-list,
.new-account-plan-list .new-account-plan-wrapper {
    padding: 0 7.5px;
}

.new-account-plan-wrapper {
    position: relative;
}

.new-account-plan-wrapper label {
    border: 2px solid #7929A5;
    color: #7929A5;
    cursor: pointer;
    width: 100%;
}

.new-account-plan-wrapper label:hover,
.new-account-plan-wrapper label:focus {
    outline: 2px solid #7929A5;
}

.new-account-plan-wrapper input:checked + label {
    border: 2px solid #21bb9d;
    color: #21bb9d;
    outline: 4px solid #21bb9d;
}

.new-account-plan-name,
.new-account-plan-price {
    line-height: 1em;
    margin: 10px 0;
}

.new-account-plan-price small {
    font-size: 0.55em;
}

.hidden {
    display: none;
}

.plan-separator {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: 1px solid #f1f1f3;
}

.segments-separator {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: 2px solid #f1f1f3;
}

@media (max-width: 767px) {
    .new-account-plan-wrapper:nth-child(1),
    .new-account-plan-wrapper:nth-child(2),
    .new-account-plan-wrapper:nth-child(3) {
        margin-bottom: 7.5px;
    }
}

@media (max-width: 900px) {

    .imgindex
    {
        display: none;
    }
}

@media (max-width: 992px) {
    .text-center-mobile {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .best-value.plan {
        top: -30px;
        position: relative;
        z-index: 2;
    }

    .col-lg-2_5{
        flex: 0 0 20%;
        max-width: 20%;
    }

}

@media (min-width: 992px) {
    .plan-separator {
        border-left: 1px solid #f1f1f3;
        border-right: none;
        border-top: none;
        border-bottom: none;
    }
    .segments-separator {
        border-left: 2px solid #f1f1f3;
        border-right: none;
        border-top: none;
        border-bottom: none;
    }
}

/*********************************************
* MODULOS FRONT ******************************
**********************************************/
#modulos-front .container {
    background-position: bottom right;
    background-origin: border-box;
    background-clip: border-box;
    background-repeat: no-repeat;
}

@media (min-width: 770px) {
	.ulButtonsMenu {
		display:flex !important;
	}
}
@media (max-width: 500px) {
	
	.ulButtonsMenu{
		display:none !important;
	}
	/*
	.ulButtonsMenu .btn{
		width:50% !important;
		margin:0 !important;
	}
	*/
}

/*********************************************
* FRONT **************************************
**********************************************/
@media (max-width: 1200px) {
    .height-div-funcionalidades-grande{
        height: 400px !important;
    }
}

@media (max-width: 767px) {
    .form-control + .input-group-addon:not(:first-child) {
        border: 1px solid rgb(206, 212, 218);
        border-radius: 4px;
    }

    .input-group-addon > .btn {
        border-radius: 4px;
    }
    
    #plans-mobile{
        display: block !important;
    }

    #plans-normal{
        display: none !important;
    }

    .section-accept-terms{
        width: 100% !important;
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1029;
    }

    .fixed-bottom {
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1030;
    }

}

/*********************************************
* MODAL **************************************
**********************************************/
@media (max-width: 992px) {
    .modal-dialog {
        width: 97.5% !important;
        max-width: 97.5% !important;
    }
}

/*********************************************
* WHATSAPP CHAT ******************************
**********************************************/
.whatswidget-custom{
    color: revert; font: revert; font-feature-settings: revert; font-kerning: revert; font-optical-sizing: revert; font-synthesis: revert; font-variation-settings: revert; forced-color-adjust: revert; text-orientation: revert; text-rendering: revert; -webkit-font-smoothing: revert; -webkit-locale: revert; -webkit-text-orientation: revert; -webkit-writing-mode: revert; writing-mode: revert; zoom: revert; accent-color: revert; place-content: revert; place-items: revert; place-self: revert; alignment-baseline: revert; animation: revert; app-region: revert; appearance: revert; aspect-ratio: revert; backdrop-filter: revert; backface-visibility: revert; background: revert; background-blend-mode: revert; baseline-shift: revert; block-size: revert; border-block: revert; border: revert; border-radius: revert; border-collapse: revert; border-end-end-radius: revert; border-end-start-radius: revert; border-inline: revert; border-start-end-radius: revert; border-start-start-radius: revert; inset: revert; box-shadow: revert; box-sizing: revert; break-after: revert; break-before: revert; break-inside: revert; buffered-rendering: revert; caption-side: revert; caret-color: revert; clear: revert; clip: revert; clip-path: revert; clip-rule: revert; color-interpolation: revert; color-interpolation-filters: revert; color-rendering: revert; color-scheme: revert; columns: revert; column-fill: revert; gap: revert; column-rule: revert; column-span: revert; contain: revert; contain-intrinsic-block-size: revert; contain-intrinsic-size: revert; contain-intrinsic-inline-size: revert; content: revert; content-visibility: revert; counter-increment: revert; counter-reset: revert; counter-set: revert; cursor: revert; cx: revert; cy: revert; d: revert; display: none; dominant-baseline: revert; empty-cells: revert; fill: revert; fill-opacity: revert; fill-rule: revert; filter: revert; flex: revert; flex-flow: revert; float: revert; flood-color: revert; flood-opacity: revert; grid: revert; grid-area: revert; height: revert; hyphens: revert; image-orientation: revert; image-rendering: revert; inline-size: revert; inset-block: revert; inset-inline: revert; isolation: revert; letter-spacing: revert; lighting-color: revert; line-break: revert; list-style: revert; margin-block: revert; margin: revert; margin-inline: revert; marker: revert; mask: revert; mask-type: revert; max-block-size: revert; max-height: revert; max-inline-size: revert; max-width: revert; min-block-size: revert; min-height: revert; min-inline-size: revert; min-width: revert; mix-blend-mode: revert; object-fit: revert; object-position: revert; offset: revert; opacity: 0; order: revert; origin-trial-test-property: revert; orphans: revert; outline: revert; outline-offset: revert; overflow-anchor: revert; overflow-clip-margin: revert; overflow-wrap: revert; overflow: revert; overscroll-behavior-block: revert; overscroll-behavior-inline: revert; overscroll-behavior: revert; padding-block: revert; padding: revert; padding-inline: revert; page: revert; page-orientation: revert; paint-order: revert; perspective: revert; perspective-origin: revert; pointer-events: revert; position: revert; quotes: revert; r: revert; resize: revert; ruby-position: revert; rx: revert; ry: revert; scroll-behavior: revert; scroll-margin-block: revert; scroll-margin: revert; scroll-margin-inline: revert; scroll-padding-block: revert; scroll-padding: revert; scroll-padding-inline: revert; scroll-snap-align: revert; scroll-snap-stop: revert; scroll-snap-type: revert; scrollbar-gutter: revert; shape-image-threshold: revert; shape-margin: revert; shape-outside: revert; shape-rendering: revert; size: revert; speak: revert; stop-color: revert; stop-opacity: revert; stroke: revert; stroke-dasharray: revert; stroke-dashoffset: revert; stroke-linecap: revert; stroke-linejoin: revert; stroke-miterlimit: revert; stroke-opacity: revert; stroke-width: revert; tab-size: revert; table-layout: revert; text-align: revert; text-align-last: revert; text-anchor: revert; text-combine-upright: revert; text-decoration: revert; text-decoration-skip-ink: revert; text-indent: revert; text-overflow: revert; text-shadow: revert; text-size-adjust: revert; text-transform: revert; text-underline-offset: revert; text-underline-position: revert; touch-action: revert; transform: revert; transform-box: revert; transform-origin: revert; transform-style: revert; transition: revert; user-select: revert; vector-effect: revert; vertical-align: revert; visibility: revert; border-spacing: revert; -webkit-border-image: revert; -webkit-box-align: revert; -webkit-box-decoration-break: revert; -webkit-box-direction: revert; -webkit-box-flex: revert; -webkit-box-ordinal-group: revert; -webkit-box-orient: revert; -webkit-box-pack: revert; -webkit-box-reflect: revert; -webkit-highlight: revert; -webkit-hyphenate-character: revert; -webkit-line-break: revert; -webkit-line-clamp: revert; -webkit-mask-box-image: revert; -webkit-mask: revert; -webkit-mask-composite: revert; -webkit-perspective-origin-x: revert; -webkit-perspective-origin-y: revert; -webkit-print-color-adjust: revert; -webkit-rtl-ordering: revert; -webkit-ruby-position: revert; -webkit-tap-highlight-color: revert; -webkit-text-combine: revert; -webkit-text-decorations-in-effect: revert; -webkit-text-emphasis: revert; -webkit-text-emphasis-position: revert; -webkit-text-fill-color: revert; -webkit-text-security: revert; -webkit-text-stroke: revert; -webkit-transform-origin-x: revert; -webkit-transform-origin-y: revert; -webkit-transform-origin-z: revert; -webkit-user-drag: revert; -webkit-user-modify: revert; white-space: revert; widows: revert; width: revert; will-change: revert; word-break: revert; word-spacing: revert; x: revert; y: revert; z-index: revert;
}
.whatswidget-widget-wrapper{
    font-family:"Helvetica Neue","Apple Color Emoji",Helvetica,Arial,sans-serif !important;
    font-size:16px !important;
    position:fixed !important;
    bottom:20px !important;
    right:75px !important;
    z-index:1001 !important
}
.whatswidget-conversation-message-outer{
    background-color:#FFF !important;
    padding:10px !important;
    margin:10px !important;
    margin-left:0px !important;
    border-radius:5px !important;
    font-size: 1.2rem !important;
    box-shadow:rgba(0, 0, 0, 0.342) 0px 2.5px 10px !important;
    cursor:pointer !important;
    animation:nudge 2s linear infinite !important;
    margin-bottom:0px !important
}
.whatswidget-text-header-outer{
    font-weight:bold !important;
    text-decoration:none !important;
    font-size:90% !important;
    color: #000 !important
}
.whatswidget-text-message-outer{
    font-size:90% !important
}
.whatswidget-conversation-cta:hover{
    transform:scale(1.1) !important;
    filter:brightness(1.3) !important
}
.whatswidget-cta{
    text-decoration:none !important;
    color:white !important
}
.whatswidget-cta-desktop{
    display:none !important
}
.whatswidget-cta-mobile{
    display:inherit !important
}
@media (min-width: 48em){
    .whatswidget-cta-desktop{
        display:inherit !important
    }
    .whatswidget-cta-mobile{
        display:none !important
    }
}
.whatswidget-button-wrapper{
    position:fixed !important;
    bottom:15px !important;
    right:15px !important
}
.whatswidget-button{
    position:relative !important;
    right:0px !important;
    background-color:#31d831 !important;
    border-radius:100% !important;
    width:60px !important;
    height:60px !important;
    box-shadow:2px 1px #0d630d63 !important;
    transition:1s !important
}
.whatswidget-icon{
    width:42px !important;
    height:42px !important;
    position:absolute !important; 
    bottom:10px !important; 
    left:10px !important;
}
.whatswidget-button:hover{
    filter:brightness(115%) !important;
    cursor:pointer !important
}
@keyframes nudge{
    20%,100%{
        transform:translate(0,0)
    }
    0%{
        transform:translate(0,5px);
        transform:rotate(2deg)
    }
    10%{
        transform:translate(0,-5px);
        transform:rotate(-2deg)
    }
}
.whatswidget-link{
    position:absolute !important;
    bottom:90px !important;
    right:5px !important;
    opacity:0.5 !important
}
@media (max-width: 767px) {
    #whatswidget-pre-wrapper{
        display: none !important;
    }
}
