/* GLOBAL */
h1, h2, h3, h4, h5, h6 {
    color: #4a4a4a !important;
}
a {
    color: #02bbce;
    transition: all .3s ease-in-out;
}
a:hover, .is-link:hover {
    color: #02daf0;
}
p, li {
    font-size: 18px;
}
li {
    margin-bottom: 10px;
}

/* BOTONES */
.boton {
    display: inline-block;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}
.boton span {
    padding: 10px 20px;
    display: block;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
    z-index: 2;
}
@media (min-width: 1009px) and (max-width: 1200px) {
    .boton span {

    }
}
.boton:hover span {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.boton:hover:before {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.boton:before {
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 5px 10px;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    transform: translateX(-25%);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    text-align: center;
}
.boton.big span {
    padding: 15px 45px;
    font-size: 18px;
}
.boton.big:before {
    padding: 17px 25px 15px;
    font-size: 18px;
}
.boton.small span {
    padding: 5px 15px;
    font-size: 14px;
}
.boton.small:before {
    padding: 7px 0px 5px;
    font-size: 14px;
}
.boton.medium span {
    padding: 10px 20px;
    font-size: 16px;
}
.boton.medium:before {
    padding: 12px 5px 10px;
    font-size: 16px;
}
.boton.medium-estrecho span {
    padding: 10px 12px;
    font-size: 16px;
}
.boton.medium-estrecho:before {
    padding: 12px 5px 10px;
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    .boton.medium-mobile span {
        padding: 10px 20px;
        font-size: 16px;
    }
    .boton.medium-mobile:before {
        padding: 12px 5px 10px;
        font-size: 16px;
    }
    .boton.small-mobile span {
        padding: 5px 15px;
        font-size: 14px;
    }
    .boton.small-mobile:before {
        padding: 7px 0px 5px;
        font-size: 14px;
    }
}
.boton.blanco span {
    border: 2px solid white;
    background: white;
    color: #44464c;
}
.boton.azul span {
    border: 2px solid #02bbce;
    background: #02bbce;
    color: white;
}
.boton.azul:before {
    background: #02daf0;
    color: white;
}
.boton.rojo span {
    border: 2px solid #ce0228;
    background: #ce0228;
    color: white;
}
.boton.rojo:before {
    background: #f0022f;
    color: white;
}
.boton.naranja span {
    border: 2px solid #ffbc56;
    background: #ffbc56;
    color: white;
}
.boton.naranja:before {
    background: #ffc978;
    color: white;
}
.boton.negro span {
    border: 2px solid #2c2d31;
    background: #2c2d31;
    color: white;
}
.boton.negro:before {
    background: #44464c;
    color: white;
}
.boton.azul-oscuro span {
    border: 2px solid #296A84;
    background: #296A84;
    color: white;
}
.boton.azul-oscuro:before {
    background: #358AAC;
    color: white;
}
.boton.to-blanco:before {
    background: white;
    color: black;
}
.boton.to-negro:before {
    background: #2c2d31;
    color: white;
}
.boton.to-naranja:before {
    background: #ffbc56;
    color: white;
}
.boton.to-azul:before {
    background: #02bbce;
    color: white;
}
.boton.is-loading span {
    color: transparent !important;
}
.boton.is-loading span::after {
    -webkit-animation: spinAround 500ms infinite linear;
    animation: spinAround 500ms infinite linear;
    border: 2px solid #dbdbdb;
    border-radius: 9999px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em;
}
.boton.is-loading {
    color: transparent !important;
    pointer-events: none !important;
}
.boton.is-loading span::after {
    left: calc(50% - (1em * 0.5)) !important;
    top: calc(50% - (1em * 0.5)) !important;
    position: absolute !important;
}


/* COLORES */
.color-blanco {
    color: white;
}
.color-naranja {
    color: #ffbc56;
}
.color-naranja-oscuro {
    color: #ffb545;
}
.color-azul {
    color: #02bbce !important;
}
.color-azul-oscuro {
    color: #296A84;
}
.color-azul-muy-oscuro {
    color: #182330;
}
.color-texto, .color-negro {
    color: #4a4a4a;
}
.color-gris-1 {
    color: #f2f4f8 !important;
}
.fondo-blanco {
    background-color: white;
}
.fondo-naranja {
    background-color: #ffbc56;
}
.fondo-naranja-claro {
    background-color: #FFD699;
}
.fondo-naranja-muy-claro {
    background-color: #FFF7EB;
}
.fondo-verde {
    background-color: #81C9B4;
}
.fondo-verde-claro {
    background-color: #B8E0D5;
}
.fondo-azul-claro {
    background-color: #02cadf;
}
.fondo-azul-muy-claro {
    background-color: #f3f9fa;
}
.fondo-azul {
    background-color: #02bbce;
}
.fondo-azul-oscuro {
    background-color: #296A84;
}
.fondo-azul-muy-oscuro {
    background-color: #27394E;
}
.fondo-gris-1 {
    background-color: #f8f9fa;
}
@media screen and (max-width: 768px) {
    .fondo-gris-1-touch {
        background-color: #f2f4f8;
    }
}


.navbar-menu .navbar-item {
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: 70px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
}


/* HEADER */
.navbar-pg {
    z-index: 999;
}
.navbar-pg .navbar-menu .navbar-item {
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: 70px;
    font-weight: bold;
    font-size: 17px;
}
.navbar-pg .navbar-brand .acc-modal {
    margin-left: auto;
}
@media screen and (max-width: 1024px) {
    .navbar-pg .navbar-brand img {
        margin-left: 20px;
    }
}
@media screen and (max-width: 768px) {
    .navbar-pg .navbar-burger {
        margin-left: 0px;
    }
}
.navbar-pg .navbar-menu .navbar-item:hover {
    color: #4a4a4a !important;
    background-color: transparent;
}
.navbar-pg .navbar-menu .navbar-item.selected {
    border-bottom: 2px solid #ffb545;
}
.navbar-pg .navbar-link:not(.is-arrowless)::after {
    border-color: #dadcdf;
    top: 18px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}
.navbar-pg .navbar-link:not(.is-arrowless):hover {
    color: #4a4a4a !important;
}
.navbar-pg .navbar-item.has-dropdown:hover > *:first-child {
    background-color: transparent;
}
.nav-submenu .navbar-item {
    font-weight: normal !important;
}

.nav-submenu .navbar-item:not(.last) {
    border-bottom: 1px solid #ebf2f4;
}
.nav-submenu .navbar-item:hover {
    background-color: #f9fafb !important;

}
.navbar-pg .navbar-burger:hover {
    background-color: #02daf0 !important;
}
.navbar-pg .navbar-burger span {
    height: 2px;
    left: 15px;
}
.navbar-pg .menu-mobile {
    position: absolute;
}
.navbar-pg .menu-mobile.is-active {
    display: block !important;
}
.navbar-pg .mml-terapia {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    min-height: 100% !important;
    z-index: 1000;
    background-color: #f1f3f7;

}

.navbar-pg .navbar-end .navbar-item:not(.selected):before {
    content: "";
    position: absolute !important;
    width: 100% !important;
    height: 2px !important;
    bottom: 0px !important;
    top: inherit !important;
    left: 0px !important;
    background-color: #ffb545 !important;
    visibility: hidden !important;
    transform: scaleX(0)!important;
    transition: all .3s ease-in-out !important;
}
.navbar-pg .navbar-end .navbar-item:hover:before {
    visibility: visible !important;
    transform: scaleX(1) !important;
}

.navbar-pg .navbar-end .nav-submenu .navbar-item:before {
    transform: none;
    background-color: transparent !important;
}
.menu-tratamientos {
    position: fixed;
    left:0px;
    right: 0px;
    z-index: 10;
    top: 185px
}
.menu-tratamientos .navbar-dropdown {
    background-color: #f9fafb;
}
.nav-mnu-terapias .menu-top, .mml-consulta .nav-mnu-consulta, .mml-main .inner {
    position: relative;
    width: 100%;
    border: 1px solid #dadce0;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
}

.nav-mnu-terapias .menu-top .titulo {
    font-size: 17px !important;
    border-bottom: 1.5px solid #dadce0;
    font-weight: 700 !important;
    color: #4a4a4a !important;
    padding: 1rem !important;
}

.nav-mnu-terapias .menu-top a {
    font-weight: normal !important;
    display: block;
    padding: 10px 15px !important;
    text-align: left;
}
@media screen and (max-width: 1215px) {
    .nav-mnu-terapias .menu-top a {
        font-size: 15px !important;
    }
    .mml-terapia .nav-mnu-terapias .menu-top a:not(.titulo) {
        font-size: 16px !important;
    }
}

.nav-mnu-terapias .menu-top a:hover {
    background-color: #f9fafb !important;
}


.nav-mnu-terapias .menu-top a:hover .icon {
    transform: translateX(5px);
}
.nav-mnu-terapias .menu-top .icon {
    font-size: 12px;
    margin-top: 1px;
    float: right;
    transition: transform 0.3s ease;
}

.mml-consulta .nav-mnu-consulta a {
    padding: 10px 15px;
}
.bullet-trat {
    height: 10px;
    width: 10px;
    margin-top: 8px;
    border-radius: 50%;
}
.mml-terapia .nav-mnu-terapias .menu-top .titulo .bullet-trat {
    margin-top: 6px !important;
}


#modal-buscador {
    z-index: 9999;
}
#modal-buscador .modal-content {
    width: 100%;
    height: 100% !important;
    max-height: none !important;
    position: fixed;
    top: 0;
    bottom:0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}
#modal-buscador .modal-content input {
    outline: none;
    padding: 30px 0;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF4D;
    font-size: 42px;
    line-height: 1.2619;
    font-weight: 700;
    color: #ffffff;
}
#modal-buscador .modal-close {
    height: 48px;
    max-height: 48px;
    max-width: 48px;
    min-height: 48px;
    min-width: 48px;
    width: 48px;
}
.search-item {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #f2f4f8;
    color: #4a4a4a;
    background-color: #f2f4f8;
    font-weight: 700;
}
.search-item:first-child {
    padding-top: 30px;
}
.search-item:last-child {
    padding-bottom: 30px;
}
.search-item:hover {
    font-weight: 700;
    color: #02bbce;
}
@media screen and (max-width: 768px) {
    .search-item {
        font-size: 14px;
    }
    #modal-buscador .modal-content {
        margin: 0px;
    }
}
.header-ini {
    padding: 5px 15px ;
    border-right: 1px solid #f0f0f0;
    font-weight: 700;
}

/* FOOTER */
.subfooter .legal-links a {
    margin-left: 15px !important;
    margin-right: 15px !important;
}
@media screen and (max-width: 768px) {
    .subfooter .legal-links a {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }
}

/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* VIEJO CSS */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */


/* COLORES */
.color-blanco {
    color: white !important;
}
.color-gris-1_ {
    color: #dfe6e9 !important;
}
.color-gris-2 {
    color: #b2bec3;
}
.color-gris-3 {
    color: #636e72 !important;
}
.color-gris-4 {
    color: #2d3436 !important;
}
.color-footer-tit {
    color: #95a5a6;
}
.color-instagram {
    color: #e01326;
}
.color-amarillo {
    color: #fdcb6e !important;
}
.color-azul-pg {
    color: #47a3da;
}
.color-azul_  {
    color: #47a3da !important;
}
.color-naranja  {
    color: #fdc058 !important;
}
.color-rosa {
    color: #e03997;
}
.color-rojo {
    color: #e74c3c;
}
.color-teal, .teal {
    color: #00B5AD;
}
.color-texto, .color-negro {
    color: #4a4a4a;
}
.color-beige {
    color: #9c9387;
}
.color-crema-muy-oscuro {
    color: #da9f60;
}
.color-crema-oscuro {
    color: #f4b46b !important;
}
.color-crema-medio {
    color: #f9ebd7;
}
.color-crema-claro {
    color: #f9f2e8;
}


/* COLOR DE FONDO */
.fondo-blanco {
    background-color: white;
}
.fondo-subfooter {
    background-color: #1B2836;
}
.fondo-amarillo {
    background-color: #fdcb6e;
}
.fondo-azul-pg {
    background-color: #02bbce;
}
.fondo-gris-0 {
    background: #ecf0f1 !important;
}
.fondo-gris-1_ {
    background-color: #dfe6e9;
}
.fondo-azul_  {
    background-color: #47a3da !important;
}
.fondo-yellow {
    background-color: #fbbd08 !important;
}
.fondo-rojo {
    background-color: #e74c3c;
}
.fondo-teal {
    background-color: #00b5ad !important;
}
.fondo-teal-oscuro {
    background-color: #42949a !important;
}
.fondo-transparente {
    background-color: transparent !important;
}
.fondo-beige {
    background-color: #f9f2e8;
}
.fondo-crema-muy-oscuro {
    background-color: #da9f60;
}
.fondo-crema-oscuro {
    background-color: #f4b46b;
}
.fondo-crema-medio {
    background-color: #ffebcd;
}
.fondo-crema-claro {
    background-color: #fff9ef;
}
.fondo-crema-v-half {
    background-image: linear-gradient(to bottom, #f9ebd7 70%, transparent 50%);
}

/* COLOR HOVER */
.hover-color-blanco:hover {
    color: white !important;
}
.hover-color-naranja:hover {
    color: #ffb545 !important;
}


/* RAYA */
.raya {
    margin: 1rem 0;
    line-height: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    height: 5px;
    width: 20%;
}
.raya.normal {
    border-top: 1px solid rgba(34,36,38,.15);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.raya.azul {
    background-color: #02bbce;
}
.raya.blanco {
    background-color: white;
}
.raya.crema, .raya.amarillo, .raya.naranja {
    background-color: #ffbc56;
}
.raya.big {
    height: 10px;
}

/* ICONO GO TO TOP */
#plat_icon_top {
    margin: 0;
    margin-right: 7px;
    margin-bottom: 25px;
    padding: 0;
    background-color: transparent;
    z-index: 100;
    bottom:0;
    right: 0;
    transition: all .3s ease-in-out;
}
#plat_icon_top:hover {
    transform: scale(1.2);
}
#plat_icon_top a {
    color: white;
    text-decoration: none;
    outline: none;
}
#plat_icon_top_inner {
    width: 60px;
    margin: 0 auto;
    height: 36px;
    line-height: 36px;
}

/* BULMA OVERRIDES */
.columns {
    margin-left: 0px;
    margin-right: 0px;
}
.icon {
    line-height: 100%;
}
.modal-background {
    background-color: rgba(10, 10, 10, 0.45);
}
.input:focus {
    border-color: #dbdbdb;
    box-shadow: none;
}
@media screen and (max-width: 768px) {
    .columns.is-variable {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    .columns.is-variable .column {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}


/* GENERAL */
ul.square {
    list-style-type: square !important;
}
ul.none {
    margin-left: 0px;
    list-style-type: none !important;
}
.numero-tachado {
    text-decoration: line-through;
    text-decoration-color: red;
    color: black;
}
hr {
    border: solid #ddd;
    border-width: 1px 0 0;
    clear: both;
    margin: 10px 0 20px;
    height: 0;
}
.sweet-alert p {
    font-weight: 400;
}

/* GENERICO */
.sombra {
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}
.hover-underline:hover {
    text-decoration: underline;
}
.cur-pointer {
    cursor: pointer;
}
.no-border {
    border: 0px solid transparent !important;
}
.no-rounded {
    border-radius: 0px !important;
}
.decoracion-gris {
    border-bottom: 5px solid #daddde !important;
}
.outline-no {
    outline: none !important;
}
.togrey:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.radius5 {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px !important;
}
.radius15 {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px !important;
}
.radius-top5 {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}
.centrado {
    margin: 0 auto;
    text-align: center;
}
.centrado-important {
    margin: 0 auto !important;
    text-align: center  !important;
}

.font10 {
    font-size: 10px !important;
}
.font12 {
    font-size: 12px !important;
}
.font13 {
    font-size: 13px !important;
}
.font14 {
    font-size: 14px !important;
}
.font15 {
    font-size: 15px !important;
}
.font18 {
    font-size: 18px !important;
}
.font28 {
    font-size: 28px !important;
}

.lineheight30 {
    line-height: 30px;
}
.lineheight34 {
    line-height: 34px !important;
}
.lineheight42 {
    line-height: 42px !important;
}
.lineheight50 {
    line-height: 50px !important;
}


.float-right {
    float: right !important;
}
.float-left  {
    float: left !important;
}

.wfull, .fluid {
    width: 100%;
}
.hfull {
    height: 100%;
}

.w20percent {
    width: 20% !important;
}

.mt3 {
    margin-top: 3px;
}
.mt90, .mt-7 {
    margin-top: 90px;
}
@media screen and (max-width: 768px) {
    .mt-0-touch {
        margin-top: 0px;
    }
    .centrado-no-mobile {
        margin: 0px;
        text-align: left;
    }
    .px-2-touch {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    pt-0-touch {
        padding-top: 0px !important;
    }
}
.pt2 {
    padding-top: 2px;
}
.pt3 {
    padding-top: 3px;
}
.pt90, .pt-7 {
    padding-top: 90px;
}
.pb90, .pb-7 {
    padding-bottom: 90px;
}
@media screen and (max-width: 1024px) {
    .px-3-touch {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    .pt-5-touch {
        padding-top: 1.5rem !important;
    }
    .mt-5-touch {
        margin-top: 1.5rem !important;
    }
}

.vbottom {
    vertical-align: bottom;
}
.is-circular {
    border-radius: 50%;
}
.bullet-azul {
    border-left: 5px solid #02bbce;
    padding-left: 20px;
}
.bullet-blanco {
    border-left: 5px solid white;
    padding-left: 20px;
}

/* BORDES */
.border-t-gris-2 {
    border-top: 1px solid #CFD3D5;
}
.border-b-gris-2 {
    border-bottom: 1px solid #CFD3D5;
}
.border-gris-2 {
    border: 1px solid #CFD3D5;
}
.border-y-crema {
    border-top: 5px solid #f4b46b;
    border-bottom: 5px solid #f4b46b;
}
.border-b-crema {
    border-bottom: 5px solid #f4b46b;
}
.border-crema-10 {
    border: 10px solid #f4b46b;
}

.maxw300 {
    max-width: 300px;
}
.maxw400 {
    max-width: 400px;
}
.maxw500 {
    max-width: 500px;
}
.maxw600 {
    max-width: 600px;
}
.maxw1000 {
    max-width: 1000px;
}

/* TESTS PARTE PUBLICA */
.test-publico {
    border: 1px solid #b2bec3;
    border-radius: 10px;
}
.test-publico .titulo:not(:first-child) {
    border-top: 1px solid #b2bec3;
}
.test-publico .titulo .flaticon-check-box {
    color: #00b894;
}
.test-publico .numero {
    position: absolute;
    top: 23px;
    width: 25px;
    height: 25px;
    background-color: #02bbce;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}
.test-publico .pregunta {
    padding-left: 45px;
}
.test-publico .respuesta {
    background-color: #f2f4f8;
    border: 1px solid #ddd;
    padding: 8px 10px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
.test-publico .respuesta:hover {
    box-shadow: 0 1px 6px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.test-publico .respuesta:active {
    transform: translateY(1px);
}
.test-publico .respuesta.seleccionado {
    background-color: #02bbce;
    color: white;
}
.test-publico-err-msg {
    color: #ba3939;
    background: #ffe0e0;
    border: 1px solid #a33a3a;
}
@media screen and (max-width: 768px) {
    .test-publico .respuesta {
        padding: 5px 10px;
        display: block;
    }
    .ml-3-touch {
        margin-left: 0.75rem !important;
    }    
}

@font-face {
    font-family: "flaticon";
    src: url("./fonts/flaticon.ttf?f547e365354ea0a944d76e3c18384566") format("truetype"),
        url("./fonts/flaticon.woff?f547e365354ea0a944d76e3c18384566") format("woff"),
        url("./fonts/flaticon.woff2?f547e365354ea0a944d76e3c18384566") format("woff2"),
        url("./fonts/flaticon.eot?f547e365354ea0a944d76e3c18384566#iefix") format("embedded-opentype"),
        url("./fonts/flaticon.svg?f547e365354ea0a944d76e3c18384566#flaticon") format("svg");
    font-display: swap;
}

i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.flaticon-sobre:before {
    content: "\f101";
}
.flaticon-at:before {
    content: "\f102";
}
.flaticon-phone-call:before {
    content: "\f103";
}
.flaticon-double-quotes:before {
    content: "\f104";
}
.flaticon-left-arrow:before {
    content: "\f105";
}
.flaticon-arrow-down:before {
    content: "\f106";
}
.flaticon-arrow-right:before {
    content: "\f107";
}
.flaticon-rotate:before {
    content: "\f108";
}
.flaticon-arrow-up:before {
    content: "\f109";
}
.flaticon-play:before {
    content: "\f10a";
}
.flaticon-play-1:before {
    content: "\f10b";
}
.flaticon-angle-pointing-to-left:before {
    content: "\f10c";
}
.flaticon-angle-arrow-pointing-to-right:before {
    content: "\f10d";
}
.flaticon-angle-arrow-down:before {
    content: "\f10e";
}
.flaticon-add:before {
    content: "\f10f";
}
.flaticon-plus:before {
    content: "\f110";
}
.flaticon-plus-1:before {
    content: "\f111";
}
.flaticon-thumbs-up:before {
    content: "\f112";
}
.flaticon-next:before {
    content: "\f113";
}
.flaticon-user:before {
    content: "\f114";
}
.flaticon-down-arrow:before {
    content: "\f115";
}
.flaticon-phone:before {
    content: "\f116";
}
.flaticon-phone-1:before {
    content: "\f117";
}
.flaticon-magnifier:before {
    content: "\f118";
}
.flaticon-facebook:before {
    content: "\f119";
}
.flaticon-twitter:before {
    content: "\f11a";
}
.flaticon-linkedin-logo:before {
    content: "\f11b";
}
.flaticon-youtube:before {
    content: "\f11c";
}
.flaticon-instagram:before {
    content: "\f11d";
}
.flaticon-minus:before {
    content: "\f11e";
}
.flaticon-clipboard:before {
    content: "\f11f";
}
.flaticon-check-list:before {
    content: "\f120";
}
.flaticon-clock:before {
    content: "\f121";
}
.flaticon-photo:before {
    content: "\f122";
}
.flaticon-hamburger:before {
    content: "\f123";
}
.flaticon-more:before {
    content: "\f124";
}
.flaticon-more-1:before {
    content: "\f125";
}
.flaticon-list:before {
    content: "\f126";
}
.flaticon-question:before {
    content: "\f127";
}
.flaticon-info:before {
    content: "\f128";
}
.flaticon-information:before {
    content: "\f129";
}
.flaticon-question-mark:before {
    content: "\f12a";
}
.flaticon-information-1:before {
    content: "\f12b";
}
.flaticon-arrow:before {
    content: "\f12c";
}
.flaticon-arrow-1:before {
    content: "\f12d";
}
.flaticon-arrows:before {
    content: "\f12e";
}
.flaticon-arrows-1:before {
    content: "\f12f";
}
.flaticon-cancel:before {
    content: "\f130";
}
.flaticon-home:before {
    content: "\f131";
}
.flaticon-record:before {
    content: "\f132";
}
.flaticon-email:before {
    content: "\f133";
}
.flaticon-left-arrow-1:before {
    content: "\f134";
}
.flaticon-web:before {
    content: "\f135";
}
.flaticon-paper-plane:before {
    content: "\f136";
}
.flaticon-facebook-1:before {
    content: "\f137";
}
.flaticon-youtube-1:before {
    content: "\f138";
}
.flaticon-whatsapp:before {
    content: "\f139";
}
.flaticon-linkedin:before {
    content: "\f13a";
}
.flaticon-twitter-1:before {
    content: "\f13b";
}
.flaticon-skype:before {
    content: "\f13c";
}
.flaticon-telegram:before {
    content: "\f13d";
}
.flaticon-instagram-1:before {
    content: "\f13e";
}
.flaticon-check-box:before {
    content: "\f13f";
}
