.hidden{
    display: none !important;
}
.text-right{
    text-align: right;
    justify-content: end;
}
.text-center{
    text-align: center;
    justify-content: center;
}
.ltm-calculator-form{
    position: relative;
    z-index: 1;
}
.ltm-calculator-form__group{
    margin-bottom: 40px;
}
.ltm-calculator-form__field{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.ltm-calculator-form__field > label,
.ltm-calculator-form__field-input{
    flex: 1;
}
.ltm-calculator-form__field-input input:not([type="checkbox"], [type="radio"]),
.ltm-calculator-form__field-input select{
    width: 100%;
    padding: 10px !important;
    border: 1px solid #eeeeee !important;
    border-radius: 5px !important;
    height: auto;
}
.ltm-calculator-form__field-input--money{
    position: relative;
}
.ltm-calculator-form__field-input--money:before{
    content: '£';
    position: absolute;
    top: 48%;
    left: 6px;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
}
.ltm-calculator-form__field-input--money input:not([type="checkbox"], [type="radio"]){
    padding-left: 20px !important;
}
.ltm-calculator-form__field-input ::placeholder {
    color: #fff !important;
    opacity: 1 !important;
}
.ltm-calculator-form__field-input select option{
    background-color: white;
    color: black;
}
.ltm-calculator-form__field-input input[readonly]{
    background-color: rgba(255, 255, 255, 0.2);
}

.ltm-calculator-table{
    padding: 15px 0;
    border: 1px solid;
}
.ltm-calculator-table__row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.ltm-calculator-table__col{
    flex: 1;
    padding: 0 15px;
}
.ltm-calculator-table__col .ltm-calculator-table__col{
    margin-left: -15px;
    margin-right: -15px;
}
.ltm-calculator-table__col-2 {
    display: flex;
}
.ltm-calculator-table__col-3{
    display: none;
}

.ltm-calculator-result{
    display: none;
    position: relative;
    z-index: 1;
}

.ltm-calculator-charts{
    display: flex;
    gap: 20px;
}
.ltm-calculator-charts__item{
    flex: 1;
}
.ltm-calculator-charts__item h6{
    min-height: 65px;
}
.ltm-calculator-charts canvas{
    width: 100% !important;
    height: auto !important;
}

.ltm-calculator-form__lease-results{
    display: none;
}
.ltm-calculator-form__lease-choices{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ltm-calculator-form__lease-choices input[type="radio"]{
    margin-right: 10px;
    width: auto;
    vertical-align: middle;
    position: absolute;
    left: -9999px;
}
.ltm-calculator-form__lease-choices .btn.active{
    color: var(--color-dark-blue);
    background-color: var(--color-red);
    border-color: var(--color-red);
}

@keyframes ltm-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.ltm-loading-spinner{
    display: none;
}
.ltm-loading-spinner__inner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    gap: 20px;
    display: flex;
}
.ltm-loading-spinner svg {
    /* animation */
    animation: ltm-spin 3s linear infinite;
}

.ltm-progress-bar{
    position: relative;
    display: flex;
    justify-content: space-between;
}
.ltm-progress-bar__track{
    position: absolute;
    top: 50%;
    left: 2px;
    right: 2px;
    height: 4px;
    background-color: #ffffff;
    transform: translateY(-50%);
    z-index: 1;
    transition: all ease .35s;
}
.ltm-progress-bar__track:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--color-yellow);
    transition: all ease .35s;
}
.ltm-progress-bar__item{
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 100%;
    position: relative;
    z-index: 2;
}
.ltm-progress-bar--step-1 .ltm-progress-bar__item:nth-child(1),
.ltm-progress-bar--step-2 .ltm-progress-bar__item:nth-child(-n+2),
.ltm-progress-bar--step-3 .ltm-progress-bar__item:nth-child(-n+3){
    background-color: var(--color-yellow);
}
.ltm-progress-bar--step-1 .ltm-progress-bar__track:before{
    width: 0;
}
.ltm-progress-bar--step-2 .ltm-progress-bar__track:before{
    width: 50%;
}
.ltm-progress-bar--step-3 .ltm-progress-bar__track:before{
    width: 100%;
}

/* TML Form */
.tml{
    padding: 40px;
    border-radius: 24px;
    background-color: var(--color-dark-blue-85);
    box-shadow: 0 0 114px 20px var(--color-dark-blue);
}
.tml .tml-field-wrap input:not([type="checkbox"], [type="radio"]){
    width: 100%;
    padding: 10px !important;
    border: 1px solid #eeeeee !important;
    border-radius: 5px !important;
    height: auto;
}
.tml .tml-field-wrap input[type="checkbox"],
.tml .tml-field-wrap input[type="radio"] {
    width: auto !important;
    height: auto !important;
    margin-right: 10px;
}
.tml .tml-button{
    display:inline-block;
    vertical-align: middle;
    font-weight:700;
    text-align: center;
    margin: 0;
    cursor: pointer;
    min-width: 150px;
    padding: 18px 24px;
    min-height: 56px;
    line-height: 1.1em;
    text-decoration: none;
    font-size: 17px;
    transition: color 200ms var(--easing), background-color 200ms var(--easing), border-color 200ms var(--easing);
    background-color: transparent;
    color: #fff;
    border-radius: 10px;
    background-color: var(--color-light-green);
    color:var(--color-dark-blue);
    border: 1px solid var(--color-light-green);
}
.tml .tml-button:hover,
.tml .tml-button:focus,
.tml .tml-button:active{
    color:var(--color-dark-blue);
    background-color: var(--color-red);
    border-color: var(--color-red);
}

.tml .tml-action-confirmaction .success:before,
.tml .tml-error:before,
.tml .tml-message:before,
.tml .tml-success:before{
    display: none !important;
}

/* Dashboard */
.ltm-dashboard-tabs__nav{
    display: flex;
    gap: 0;
}
.ltm-dashboard-tabs__nav-item{
    padding: 10px 20px;
}
.ltm-dashboard-tabs__nav-item.active{
    background-color: var(--color-dark-blue-85);
}
.ltm-dashboard-tabs__nav-item:hover{
    background-color: var(--color-dark-blue-90);
}
.ltm-dashboard-tabs__panels{
    padding: 40px;
    background-color: var(--color-dark-blue-85);
    position: relative;
}


/* Table */
.ltm-table__toolbar{
    display: flex;
    justify-content: space-between;
}
.ltm-table{
    width: 100%;
    border-collapse: collapse;
}
.ltm-table th,
.ltm-table td{
    padding: 5px;
    border-bottom: 1px solid var(--color-dark-blue-80);
    text-align: left;
}
.ltm-table th{
    background-color: var(--color-dark-blue-60);
}
.ltm-col-action{
    width: 120px;
}
.ltm-col-action a{
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
    line-height: 1;
}
.ltm-col-action svg{
    width: 20px;
    height: auto;
}
.ltm-col-action svg path{
    fill: var(--color-light-green);
}
.ltm-message{
    padding: 10px;
    background-color: var(--color-blue);
    border-radius: 5px;
    color: black;
    margin-bottom: 20px;
}

.ltm-dashboard-chart__item canvas{
    width: 100%;
    height: 350px;
}