/*------------------------------------*\
  #ASSISTANT FONT
\*------------------------------------*/

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 100;
    src: local('Assistant-ultralight'), local('Assistant-ultralight'), url(../fonts/Assistant/Assistant-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 300;
    src: local('Assistant-light'), local('Assistant-light'), url(../fonts/Assistant/Assistant-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 400;
    src: local('Assistant-regular'), local('Assistant-regular'), url(../fonts/Assistant/Assistant-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 500;
    src: local('Assistant-medium'), local('Assistant-medium'), url(../fonts/Assistant/Assistant-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 600;
    src: local('Assistant-semibold'), local('Assistant-semibold'), url(../fonts/Assistant/Assistant-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 700;
    src: local('Assistant-bold'), local('Assistant-bold'), url(../fonts/Assistant/Assistant-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 800;
    src: local('Assistant-extrabold'), local('Assistant-extrabold'), url(../fonts/Assistant/Assistant-ExtraBold.ttf) format('truetype');
}


/*------------------------------------*\
  #ROBOTO FONT
\*------------------------------------*/

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: local('Roboto-ultralight'), local('Roboto-ultralight'), url(../fonts/Roboto/Roboto-Thin.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: local('Roboto-light'), local('Roboto-light'), url(../fonts/Roboto/Roboto-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto-regular'), local('Roboto-regular'), url(../fonts/Roboto/Roboto-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: local('Roboto-medium'), local('Roboto-medium'), url(../fonts/Roboto/Roboto-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local('Roboto-bold'), local('Roboto-bold'), url(../fonts/Roboto/Roboto-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: local('Roboto-ultrabold'), local('Roboto-ultrabold'), url(../fonts/Roboto/Roboto-Black.ttf) format('truetype');
}


/*------------------------------------*\
  #PALETTE
\*------------------------------------*/

:root {
    /*------------------------------------*\
    #PALETTE
  \*------------------------------------*/
    --white: #ffffff;
    --black: #000000;
    --concrete: #f2f2f2;
    --sandy-brown: #f3a054;
    --flamingo: #ec5538;
    --alizarin-crimson: #e93222;
    --orange: #ff6010;
    --silver: #bababa;
    --mercury: #e6e6e6;
    --nobel: #b3b3b3;
    --lochmara: #0077cc;
    --silver-1: #bbbbbb;
    --silver-2: #bfbfbf;
    --silver-3: #bcbcbc;
    --fire: #b33c00;
    --soapstone: #fffbfa;
    --sauvignon: #fff7f5;
    --fair-pink: #ffeeeb;
    --blaze-orange: #ff6a00;
    --emperor: #535353;
    --alto: #d3d3d3;
    --biscay: #143666;
    --azure-radiance: #0095ff;
    --navy-blue: #001177;
    --cinnamon: #804000;
    --gray: #888888;
    --mine-shaft: #333333;
    --dove-gray: #707070;
    --dove-gray-1: #666666;
    --denim: #0e7dcc;
    --alice-blue: #f4faff;
    --alabaster: #fafafa;
    --wild-sand: #f4f4f4;
    --jungle-green: #22a58d;
    --sand-dune: #806659;
    --roman: #df5950;
    --orange-54: #ff601054;
    --denim-30: #0e7dcc30;
    --denim-54: #0e7dcc54;
    --black-1c: #0000001c;
    --black-30: #00000030;
    --mine-shaft-66: #33333366;
    --white-20: #ffffff20;
    --blaze-orange-1a: #ff6a001a;
    --silver-1a: #bababa1a;
    --anakiwa-a8: #a0dbffa8;
    --spicy-mix: #805540;
    /*------------------------------------*\
    #VARIABLES
  \*------------------------------------*/
    --font-base: 14px;
    --font-ultralight: 100;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-ultrabold: 900;
}


/*------------------------------------*\
  #STYLES
\*------------------------------------*/

*,
*::after,
*::before {
    box-sizing: border-box;
    outline: 0;
}

html {
    font-size: var(--font-base);
}

body {
    height: 100%;
    min-height: 100%;
    background-color: var(--concrete);
    font-family: 'Assistant', sans-serif;
    margin: 0;
}

[class^='icon-taxes-'],
[class*=' icon-taxes-'] {
    display: inline-flex;
    fill: currentColor;
}


/*------------------------------------*\
  #FLEX
\*------------------------------------*/

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.row {
    flex-direction: row;
}

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

.column {
    flex-direction: column;
}

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

.self-start {
    align-self: flex-start;
}

.start {
    justify-content: flex-start;
    text-align: start;
}

.center {
    justify-content: center;
}

.evenly {
    justify-content: space-evenly;
}

.around {
    justify-content: space-around;
}

.end {
    justify-content: flex-end;
}

.top {
    align-items: flex-start;
}

.middle {
    align-items: center;
}

.bottom {
    align-items: flex-end;
}

.around {
    justify-content: space-around;
}

.between {
    justify-content: space-between;
}

.flex-1 {
    flex: 1;
}


/*------------------------------------*\
  #SPACING
\*------------------------------------*/

.full-width {
    width: 100%;
}


/*------------------------------------*\
  #TEXT
\*------------------------------------*/

.text-initial {
    text-transform: initial;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

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

.text-center {
    text-align: center;
}

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

.truncate {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/**
 * display are using a font-base of 14px
 * display-1: 32px
 * display-2: 28px
 * display-3: 24px
 * display-4: 16px
 * display-5: 14px
 * display-6: 13px
 * display-7: 12px
 * display-8: 10px
 * display-9: 8px
 */

.display-1 {
    font-size: 2.285rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.display-2 {
    font-size: 2rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.display-3 {
    font-size: 1.714rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.display-4 {
    font-size: 1.143rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.display-5 {
    font-size: 1rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.display-6 {
    font-size: 0.929rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.display-7 {
    font-size: 0.857rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.display-8 {
    font-size: 0.714rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.display-9 {
    font-size: 0.571rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

.font-weight-ultra-light {
    font-weight: var(--font-ultralight);
}

.font-weight-light {
    font-weight: var(--font-light) !important;
}

.font-weight-regular {
    font-weight: var(--font-regular);
}

.font-weight-medium {
    /* font-weight: var(--font-medium); */
    font-weight: 600;
}

.font-weight-semi-bold {
    font-weight: var(--font-semibold);
}

.font-weight-bold {
    font-weight: var(--font-bold);
}

.font-weight-semi-bold-700{
    font-weight: var(--font-bold);
}

.font-weight-bold {
    font-weight: var(--font-ultrabold);
}

.text-white {
    color: var(--white) !important;
}

.text-gray {
    color: var(--gray);
}

.text-fire {
    color: var(--fire);
}

.text-biscay {
    color: var(--biscay);
}

.text-emperor {
    color: var(--emperor);
}

.text-lochmara {
    color: var(--lochmara) !important;
}

.text-black{
    color: var(--black) !important;
}

/*------------------------------------*\
  #HEADER
\*------------------------------------*/

.tax-app-header {
    display: flex;
    padding: 10px 5px 0 5px;
    justify-content: space-between;
}

.tax-app-header__content {
    display: flex;
    align-items: center;
}

.tax-app-header__content:not(:last-child) {
    margin-right: 10px;
}

.tax-app-header__logo {
    width: 368px;
    height: 60px;
}

.tax-app-header__info-container {
    margin-left: 15px;
}

.tax-app-header__title {
    font-family: 'Assistant', sans-serif;
    font-size: 2.428rem;
    font-weight: var(--font-extrabold);
    color: var(--biscay);
    margin: 0;
}

.tax-app-header__subtitle {
    font-family: 'Assistant', sans-serif;
    font-size: 1.428rem;
    font-weight: var(--font-regular);
    color: var(--biscay);
    margin: 0;
}

.tax-app-header__image:not(:last-child) {
    margin-right: 12px;
}


/*------------------------------------*\
  #CARDS
\*------------------------------------*/

.tax-app-card {
    width: 100%;
    padding: 25px 35px 35px 35px;
    background-color: var(--white);
    border-radius: 30px;
}

.tax-app-card--padding-2 {
    padding: 26px 30px 28px 30px !important;
}

.tax-app-card--bg-grd-orange {
    background: transparent linear-gradient( 180deg, var(--sandy-brown) 0%, var(--flamingo) 53%, var(--alizarin-crimson) 100%) 0% 0% no-repeat;
}

.tax-app-card--bg-grd-orange {
    background: transparent linear-gradient( 180deg, var(--sandy-brown) 0%, var(--flamingo) 53%, var(--alizarin-crimson) 100%) 0% 0% no-repeat;
}

.tax-app-card--bg-grd-blue-black {

    /* background: transparent linear-gradient( 180deg, #4fe0ff 0%, #0078af 53%, #012e52 100%) 0% 0% no-repeat; */
    background: linear-gradient(179deg, rgb(0 165 203) 0%, rgb(7, 74, 151) 100%) !important;
}

.tax-app-card--bg-grd-purple-blue {

    /* background: transparent linear-gradient( 180deg, #4fe0ff 0%, #0078af 53%, #012e52 100%) 0% 0% no-repeat; */
    /* background: linear-gradient(350deg, #7400b0 00%, #2f99c5 100%) !important; */
    background: linear-gradient(350deg, #2c5ba0 00%, #2f99c5 100%) !important;
}

.tax-app-card--bg-grd-pink {
    background: transparent linear-gradient( 180deg, var(--soapstone) 0%, var(--sauvignon) 51%, var(--fair-pink) 100%) 0% 0% no-repeat;
}

.tax-app-card--bg-grd-white {
    background: white;
}

.tax-app-card--bg-alabaster {
    background: var(--alabaster);
}

.tax-app-card--bg-wild-sand {
    background: var(--wild-sand);
}

.tax-app-card--with-border {
    border: 1px solid var(--mercury);
}

.tax-app-card--with-border-grd-pink {
    border: 1px solid #fcd0c869;
}

.tax-app-card--with-border-alabaster {
    border: 1px solid var(--concrete);
}

.tax-app-card--with-border-wild-sand {
    border: 1px solid var(--concrete);
}

.tax-app-card--with-shadow-grd-orange {
    box-shadow: 0px 10px 40px var(--orange-54);
}

.tax-app-card--with-shadow-grd-blue {
    box-shadow: 0px 10px 40px var(--denim-54);
}

.tax-app-card--with-shadow-grd-pink {
    box-shadow: 0px 4px 8px var(--blaze-orange-1a);
}

.tax-app-card--with-shadow-alabaster {
    box-shadow: 0px 4px 8px var(--silver-1a);
}

.tax-app-card--with-shadow-pink {
    box-shadow: 0px 8px 10px 0px #ff717126;
}

.tax-app-card--with-shadow-wild-sand {
    box-shadow: 0px 4px 8px var(--silver-1a);
}

.tax-app-card--withthout-background {
    background-color: transparent;
}

.tax-app-card--with-shadow-orange {
    box-shadow: 0px 5px 9px 2px #781f0f6b;
}


/*------------------------------------*\
  #CARD INFO
\*------------------------------------*/

.tax-app-card-info {
    position: relative;
    margin: 0 32px;
}

.tax-app-card-info__icon {
    position: absolute;
    top: 9px;
}

.tax-app-card-info__icon-right {
    right: 50px;
}

.tax-app-card-info__icon-right-est {
    right: 100px;
}

.tax-app-card-info__icon-ica {
    right: 3px;
}

.tax-app-card-info__content {
    max-width: 320px;
}

.tax-app-card-info__text {
    margin-bottom: 6px;
    line-height: 1;
}

.tax-app-card-info__text:last-child {
    margin-bottom: 0;
}

.tax-app-card-info__description {
    margin: 0;
}


/*------------------------------------*\
  #BUTTONS
\*------------------------------------*/


/* Fire */

.tax-app-button.tax-app-button--bg-fire {
    background: var(--fire);
    color: var(--white);
}


/* Rojo */

.tax-app-button-red {
    background: transparent linear-gradient(180deg, var(--flamingo) 0%, var(--fire) 100%) 0% 0% no-repeat !important;
}

.tax-app-button {
    display: inline-flex;
    justify-content: center;
    font-size: 1.142rem;
    padding: 12px 18px;
    border-radius: 30px;
    border: none;
    background: transparent linear-gradient( 180deg, #0f98e1 0%, var(--navy-blue) 100%) 0% 0% no-repeat;
    color: var(--white);
    line-height: 1;
    cursor: pointer;
    opacity: .9;
}

.tax-app-button--shadow-blue {
    box-shadow: 0px 0px 9px 3px var(--anakiwa-a8);
    opacity: 0.85;
}

.tax-app-button--shadow-orange {
    box-shadow: 0px 0px 5px 0px var(--flamingo);
}

.tax-app-button--flat {
    padding: 3px 10px;
}

.tax-app-button--br-5 {
    border-radius: 5px;
}

.tax-app-button--clear {
    background: none;
    color: var(--dove-gray);
}

.tax-app-button--clear-denim {
    color: var(--denim);
}

.tax-app-button--icon-right {
    margin-left: 10px;
}

.tax-app-button--icon-left {
    margin-right: 10px;
}

.tax-app-button--icon-right:first-child {
    margin-left: 0;
}

.tax-app-button--bg-white {
    background: var(--white);
    color: var(--fire);
}

.tax-app-button--color-denim {
    color: var(--denim);
}

.tax-app-button--color-orange {
    color: var(--denim);
}

.tax-app-button--with-icon {
    align-items: center;
    padding: 3px 10px;
    font-weight: 700;
    font-size: 1.05rem;
    opacity: 1;
}

.tax-app-button:hover {
    opacity: 0.8;
}

.tax-app-button:disabled {
    cursor: not-allowed;
    opacity: 0.22;
    border: 2px solid var(--biscay);
    background: var(--black-1c) 0% 0% no-repeat;
    color: var(--biscay);
}

.tax-app-button--outline {
    background: transparent;
    border: 0.6mm solid var(--lochmara);
    color: var(--lochmara);
}

.tax-app-button--outline-denim {
    border: 2px solid var(--denim);
    color: var(--denim);
}

.tax-app-button--bg-orange {
    background: transparent linear-gradient( 180deg, var(--sandy-brown) 0%, var(--flamingo) 53%, var(--alizarin-crimson) 100%) 0% 0% no-repeat;
}

.tax-app-button--bg-orange:disabled {
    background: #d9d3d357;
    cursor: not-allowed;
    border: 0.3px solid #00000026;
    /*  color: #bababa;*/
}

.tax-app-button--menu {
    padding: 12px;
    border-radius: 15px;
}

.tax-app-button__menu-icon {
    font-size: 1.428rem;
}


/*------------------------------------*\
  #INPUTS
\*------------------------------------*/

.tax-app-input-container {
    position: relative;
}

.input-size-big {
    font-size: 1.5rem !important;
}

.tax-app-input {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 1.214rem;
    color: var(--biscay);
    letter-spacing: 0.51px;
}

.tax-app-input--outline {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: var(--black-30);
}

.tax-app-input--with-icon {
    padding-right: 46px;
}

.tax-app-input__icon {
    position: absolute;
    padding: 10px;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.571rem;
    color: var(--denim);
    cursor: pointer;
}

.tax-app-input__icon:hover {
    opacity: 0.8;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--lochmara);
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--lochmara);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--lochmara);
}

.tax-app-input--outline::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--white);
    opacity: 1;
    /* Firefox */
}

.tax-app-input--outline:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--white);
}

.tax-app-input--outline::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--white);
}


/*------------------------------------*\
  #LINKS
\*------------------------------------*/

.tax-app-link {
    font-size: 1.142rem;
    font-weight: var(--font-medium);
    text-decoration: none;
    color: var(--lochmara);
    cursor: pointer;
}

.tax-app-link:hover {
    opacity: 0.8;
}


/*------------------------------------*\
  #LIST
\*------------------------------------*/

.tax-app-ol {
    font-size: 1.3rem;
    color: var(--mine-shaft-66);
    padding-left: 15px;
}

.tax-app-list {
    list-style-type: none;
    margin: 0;
    padding: 5px 0;
}

.tax-app-list--with-2-columns {
    column-count: 2;
    column-gap: 10px;
}

.tax-app-list__item {
    padding: 15px 25px;
    border-radius: 30px;
    width: 100%;
}

.tax-app-list--with-hover .tax-app-list__item {
    cursor: pointer;
}

.tax-app-list--with-hover .tax-app-list__item:hover {
    background-color: #A0DBFFA8;
    opacity: 0.8;
    /* opacity: 0.8; */
    box-shadow: 0px 0px 8px 4px #A0DBFFA8;
    transition: ease .4s;
}

.tax-app-header__images_container {
    display: flex;
    align-items: center;
}

.tax-app-list__item-active {
    display: flex;
    background: linear-gradient( 135deg, #031C40 20%, #0A428D 51%, #2188C9 89%, #14B5D9 100%);
    opacity: 0.96;
    box-shadow: 0px 1px 7px 3px #A0DBFFA8;
}

.tax-app-list__item-active * {
    color: var(--white) !important;
}

.tax-app-list__item-active .tax-app-radio *,
.tax-app-list__item-active .denim-radiobutton .p-radiobutton .p-radiobutton-box * {
    border-color: var(--white) !important;
}

.tax-app-list__item-active .denim-radiobutton .p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
    background-color: white !important;
    box-shadow: 0px 0px 9px 0px rgb(255 255 255);
}


/*------------------------------------*\
  #MENU
\*------------------------------------*/

.tax-app-menu {
    width: 73px;
    border-radius: 0px 30px 30px 0px;
    background: transparent linear-gradient( 180deg, var(--sandy-brown) 0%, var(--flamingo) 53%, var(--alizarin-crimson) 100%) 0% 0% no-repeat;
    color: var(--white);
}

.tax-app-menu__ul {
    list-style-type: none;
    margin: 0;
    padding: 15px 0;
}

.tax-app-menu__li {
    cursor: pointer;
    text-align: center;
}

.tax-app-menu__li:hover {
    background-color: var(--white-20);
}

.tax-app-menu__icon {
    font-size: 1.428rem;
    padding: 15px;
}


/*------------------------------------*\
  #RADIO INPUT
\*------------------------------------*/

.tax-app-radio {
    display: inline-flex;
    position: relative;
    /* margin: 0 0 5px; */
    font-size: 1.142rem;
    line-height: 24px;
}

.tax-app-radio--without-text .tax-app-radio__label {
    width: 20px;
    height: 20px;
}

.tax-app-radio--denim .tax-app-radio__label {
    color: var(--denim);
}

.tax-app-radio--denim .tax-app-radio__label::before {
    background-color: var(--denim-30);
    border: 2px solid var(--denim);
}

.tax-app-radio--denim .tax-app-radio__label::after {
    background-color: var(--denim);
}

.tax-app-radio--denim .tax-app-radio__input:checked+.tax-app-radio__label::before {
    border-color: var(--denim);
}

.tax-app-radio:last-child {
    margin-bottom: 0;
}

.tax-app-radio__input {
    position: absolute;
    top: 4px;
    left: 0;
    width: 36px;
    height: 20px;
    opacity: 0;
    z-index: -1;
}

.tax-app-radio__label {
    display: block;
    padding: 0 0 0 30px;
    cursor: pointer;
    color: var(--white);
}

.tax-app-radio__label::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--black-30);
    border: 2px solid var(--white);
    border-radius: 14px;
    z-index: 1;
    transition: var(--white) 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.tax-app-radio__label::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50%;
    z-index: 2;
    transform: scale(0, 0);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.tax-app-radio__input:checked+.tax-app-radio__label::before {
    border-color: var(--white);
}

.tax-app-radio__input:checked+.tax-app-radio__label::after {
    transform: scale(1, 1);
}


/*------------------------------------*\
  #TABLE
\*------------------------------------*/

.tax-app-table-container {
    position: relative;
    overflow-x: auto;
}

.tax-app-table {
    border-collapse: collapse;
    width: auto;
    min-width: 100%;
}

.tax-app-table--with-hover {
    cursor: pointer;
}

.tax-app-table--with-hover tbody tr:hover {
    background-color: var(--anakiwa-a8) !important;
    opacity: 0.8;
}

.tax-app-table th {
    border-bottom: 2px solid var(--denim);
    white-space: nowrap;
}

.tax-app-table thead th {
    font-size: 1.214rem;
    font-weight: var(--font-bold);
    color: var(--denim);
    padding: 10px 20px;
    background-color: var(--white);
    text-align: left;
}

.tax-app-table thead th:first-child {
    padding-left: 40px;
}

.tax-app-table thead th:last-child {
    padding-right: 40px;
}

.tax-app-table tbody {
    border: none;
}

.tax-app-table tbody tr {
    background-color: var(--white);
}

.tax-app-table tbody tr td {
    padding: 14px 21px;
    font-size: 1.214rem;
    color: var(--biscay);
    border-left: none;
    border-right: none;
}

.tax-app-table.tax-app-table--striped tbody tr:nth-child(odd) {
    background-color: var(--alice-blue);
}

.tax-app-table.tax-app-table--condensed thead th {
    padding: 6px 9px;
}

.tax-app-table.tax-app-table--condensed thead th:first-child {
    padding-left: 13px;
}

.tax-app-table.tax-app-table--condensed thead th:last-child {
    padding-right: 13px;
}

.tax-app-table.tax-app-table--condensed tbody tr td {
    padding: 6px 9px;
}

.tax-app-table.tax-app-table--condensed tbody tr td:first-child {
    padding-left: 13px;
}

.tax-app-table.tax-app-table--condensed tbody tr td:last-child {
    padding-right: 13px;
}

.tax-app-table-button-expanse {
    background: transparent linear-gradient( 180deg, #bfbebe 0%, #9e9e9e 100%) 0% 0% no-repeat;
}


/*------------------------------------*\
  #MODAL
\*------------------------------------*/

.tax-app-modal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 1055;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.tax-app-modal--show {
    display: block;
}

.tax-app-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
}

.tax-app-modal--overlay-fade {
    opacity: 0;
}

.tax-app-modal--overlay-show {
    opacity: 0.8;
}

.tax-app-modal__dialog {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    max-width: 676px;
    min-height: calc(100% - 20px);
    margin: 10px auto;
    pointer-events: none;
}

.tax-app-modal__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--mercury);
    border-radius: 30px;
    outline: 0;
}

.tax-app-modal__header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 27px 19px 15px 66px;
}

.tax-app-modal__header-title {
    margin-right: 10px;
    width: 100%;
}

.tax-app-modal__header-title:last-child {
    margin-right: 0;
}

.tax-app-modal__header-button {
    font-size: 1rem;
}

.tax-app-modal__body {
    position: relative;
    flex: 1 1 auto;
    padding: 15px 28px;
}

.tax-app-modal__footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 28px 27px 28px;
}

.tax-app-modal__footer-button {
    margin-right: 8px;
}

.tax-app-modal__footer-button:last-child {
    margin-right: 0;
}

.tax-app-modal__header:last-child,
.tax-app-modal__body:last-child {
    padding-bottom: 27px;
}


/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/

.fade {
    transition: opacity 0.15s linear;
}


/*------------------------------------*\
  #TEXT ITEM
\*------------------------------------*/

.text-item {
    display: inline-flex;
    flex-direction: column;
}

.text-item__label {
    color: var(--emperor);
    margin: 0 0 3px 0;
}

.text-item__description {
    font-size: 1.35rem;
    letter-spacing: .2px;
    color: var(--biscay);
    margin: 0;
    font-weight: 500;
}


/*------------------------------------*\
  #TRANSACTION STATUS
\*------------------------------------*/

.transaction-status {
    display: inline-flex;
    align-items: center;
    color: var(--sand-dune);
}

.transaction-status__icon {
    margin-left: 5px;
}

.transaction-status--approved {
    color: var(--jungle-green);
}

.transaction-status--rejected {
    color: var(--roman);
}

.transaction-status-failed {
    color: #d52d2d;
}


/*------------------------------------*\
  #CONTACT TEXT
\*------------------------------------*/

.contact-text {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: var(--fire);
    margin-bottom: 13px;
    font-weight: 500;
}

.contact-text--small {
    font-size: 1.3rem;
}

.contact-text--small .contact-text__icon {
    font-size: 1.214rem;
}

.contact-text__icon {
    margin-right: 8px;
    font-size: 1.4rem;
}

.contact-text:last-child {
    margin-bottom: 0;
}


/*------------------------------------*\
  #SWITCH
\*------------------------------------*/

.tax-app-switch {
    display: inline-flex;
}

.tax-app-switch__input {
    display: none;
}

.tax-app-switch__label {
    cursor: pointer;
    display: block;
    border-radius: 11px;
    background-color: var(--gray);
    width: 20px;
    height: 10px;
    position: relative;
    transition: all 0.2s;
}

.tax-app-switch__label:after {
    content: '';
    background-color: var(--white);
    border-radius: 10px;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.2s;
}

.tax-app-switch__input:checked+.tax-app-switch__label {
    background-color: var(--lochmara);
    border-color: var(--lochmara);
}

.tax-app-switch__input:checked+.tax-app-switch__label:after {
    left: 12px;
    border-color: var(--lochmara);
}

.text-spicy-mix {
    color: var(--spicy-mix);
}

.tax-page__page11-tabs {
    margin-bottom: 30px;
}

.tax-app-tabs {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tax-app-card--without-background {
    background-color: transparent !important;
}


/* .tax-app-card {
    width: 100%;
    padding: 21px 25px 38px 18px;
    background-color: var(--white);
    border-radius: 30px;
} */

.tax-page__page11-container {
    width: 100%;
    max-width: 330px;
    margin-right: 31px;
}

.tax-page__page11-card1 {
    margin-bottom: 40px;
    padding: 15px 35px 40px 40px;
}

.tax-app-card--with-shadow-grd-blue {
    box-shadow: 0px 10px 40px var(--denim-54);
}

.tax-app-card--bg-grd-blue {
    background: transparent linear-gradient( 180deg, var(--azure-radiance) 0%, var(--navy-blue) 100%) 0% 0% no-repeat;
}


/* .tax-app-card {
    width: 100%;
    padding: 21px 25px 38px 18px;
    background-color: var(--white);
    border-radius: 30px;
} */

.tax-app-card--with-shadow-grd-blue {
    box-shadow: 0px 10px 40px var(--denim-54);
}

.tax-app-card--with-shadow-grd-gray {
    box-shadow: 0px 10px 40px #f4f4f454;
}

.tax-app-card--bg-grd-blue {
    background: transparent linear-gradient( 180deg, #0f98e1 0%, var(--navy-blue) 100%) 0% 0% no-repeat;
    opacity: .9;
}

.text-white {
    color: var(--white);
}

.display-3 {
    font-size: 1.714rem;
    font-weight: var(--font-regular);
    color: var(--emperor);
    margin: 0;
}

[class^='icon-taxes-'],
[class*=' icon-taxes-'] {
    display: inline-flex;
    fill: currentColor;
}

.icon-taxes-info:before {
    content: "\6b";
}

.icon-taxes-salir:before {
    content: "\6f";
}

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

.tax-app-tabs__nav-link-icon {
    font-size: 1.2rem;
    margin-left: 14px;
}


/* .visible-mobile {
    display: none;
} */

.tax-app-form-section__content {
    display: flex;
}

.tax-app-form-control {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-right: 10px;
}

.tax-app-form-section {
    margin-bottom: 31px;
}

.tax-page__page10-form-controls {
    margin-right: 20px;
}

.tax-page__page10-form-controls:last-child {
    margin-right: 0;
}

.tax-app-form-section__label {
    margin-bottom: 17px;
}

.text-spicy-mix {
    color: var(--spicy-mix);
}

.tax-app-form-control__label {
    margin-bottom: 6px;
    color: var(--emperor);
}

.tax-app-form-section--without-label {
    margin-top: 44px;
}

.tax-app-form-section:last-child {
    margin-bottom: 0;
}

.tax-app-form-control__helper {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--emperor);
}

.tax-app-checkbox__label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 0 0 0 30px;
    color: var(--denim);
}

.tax-app-checkbox {
    display: inline-flex;
    position: relative;
    margin: 0 0 5px;
    font-size: 1.142rem;
    line-height: 24px;
}

.tax-app-form-control__helper-icon {
    font-size: 1.428rem;
    margin-right: 11px;
}


/* FieldSet */

.p-fieldset {
    border-color: #cccccc59;
    border-style: solid;
}

.p-fieldset .p-fieldset-legend {
    color: var(--spicy-mix);
    padding: 10px;
    font-weight: 500;
}

.p-fieldset-input {
    color: var(--spicy-mix);
    font-weight: 500;
}


/*------------------------------------*\
  #SLIDER
\*------------------------------------*/

.tax-app-slider.slick-dotted.slick-slider {
    position: initial;
    margin-bottom: 0;
}

.tax-app-slide {
    display: inline-flex !important;
}

.tax-app-slide__content {
    display: inline-flex;
    flex-direction: column;
    margin: 0 auto;
}

.slick-arrow.slick-prev {
    left: 26px;
}

.slick-arrow.slick-next {
    right: 26px;
}

.slick-arrow.slick-prev,
.slick-arrow.slick-next {
    width: 40px;
    height: 40px;
}

.slick-arrow.slick-prev::before,
.slick-arrow.slick-next::before {
    font-size: 2.857rem;
}

.tax-app-slider .slick-dots {
    display: flex;
    flex-direction: column;
    width: auto;
    bottom: initial;
    top: 50%;
    transform: translateY(-50%);
    right: -58px;
}

.tax-app-slider .slick-dots li button:before {
    color: var(--denim);
    font-size: 0.571rem;
}

.tax-app-slider .slick-dots li.slick-active button:before {
    color: var(--denim);
}


/*------------------------------------*\
  #RESPONSIVE
\*------------------------------------*/

@media screen and (max-width: 1209.98px) {
    html {
        font-size: var(--font-base);
    }
    .hidden-mobile {
        display: none;
    }
    .tax-page__container {
        position: relative;
    }
    .tax-app-header {
        padding: 0;
        flex-flow: column-reverse;
    }
    .tax-page--header-with-menu .tax-app-header__content {
        justify-content: space-between;
    }
    .tax-app-header__content {
        margin: 0;
        /* justify-content: center; */
        align-items: flex-start;
    }
    .tax-app-header__content:not(:last-child) {
        margin: 0;
        justify-content: flex-start;
    }
    .tax-app-header__image {
        height: 55px;
    }
    .tax-app-header__logo {
        width: 368px;
        height: 60px;
        margin-top: 8px;
    }
    .tax-app-header__info-container {
        margin-left: 10px;
    }
    .tax-app-header__title {
        font-size: 2rem;
    }
    .tax-app-header__subtitle {
        font-size: 1rem;
    }
    .tax-app-menu {
        display: flex;
        flex-direction: column-reverse;
        top: 0 !important;
        width: 100%;
        height: 100vh;
        padding-top: 42px;
        border-radius: 0;
        z-index: 3;
        transform: translateX(-100%);
        transition: transform 0.5s ease-in-out;
    }
    .tax-app-menu__ul {
        flex: 1;
        overflow-y: auto;
    }
    .tax-app-menu--visible {
        transform: translateX(0);
    }
    .tax-app-tabs__nav-li {
        font-size: 1rem;
        margin-right: 5px;
    }
    .tax-app-tabs__nav-link {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 10px 20px;
    }
    .tax-app-tabs__nav-link-icon {
        margin: 0;
    }
}


/* CARDS */

.firma-pse-ica {
    overflow: auto;
    border: solid 1px var(--white);
    width: 20em;
    min-width: 15em;
    -webkit-box-shadow: 3px 1px 17px -5px var(--dove-gray);
    box-shadow: 3px 1px 17px -5px var(--dove-gray);
    border: double 1em transparent;
    border-width: 3px;
    border-style: solid;
    border-right: 0;
    border-radius: 0.5rem;
    background-image: linear-gradient(white, white), linear-gradient(to right, var(--azure-radiance), var(--navy-blue));
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.firma-pse-ica .p-component {
    background: var(--mercury);
    color: var(--biscay);
    padding: 1rem !important;
    width: 100%;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}


/* SIDEBAR */

.p-sidebar {
    background: #fff;
}

.p-sidebar .p-sidebar-header button {
    background: none;
    color: #0068d3;
}

.p-sidebar .p-sidebar-header button .p-sidebar-close-icon {
    font-size: 1.4rem;
}

.p-sidebar .p-sidebar-content {
    display: flex;
    flex-direction: column;
}

.options-sidebar {
    display: flex;
    justify-content: space-around;
}

.button__sidebar {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: none;
    cursor: pointer;
    animation: fadeInUp 600ms ease backwards;
}

@media screen and (max-width: 940px) {
    .button__sidebar {
        display: unset;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translate(0px, 5px);
        opacity: 0;
    }
    100% {
        transform: translate(0px, 0);
        opacity: 1;
    }
}

@media screen and (max-width: 410px) {
    .button__sidebar {
        position: relative;
        top: 10px;
        right: 0;
        left: 1rem;
    }
}

.button__sidebar i {
    font-size: 1.9rem;
    color: #0068d3;
}

@media screen and (max-width: 1210px) {
    .card-responsive {
        flex-direction: column;
    }
}