﻿:root {
	--bp-color-primary:#004f91;
	--bp-color-secondary:#fbba00;
	--bp-color-tertiary:#00a0e2;
	--bp-color-light-black:#009fe3;
	--bp-color-black:#000000;
	--bp-color-light-grey:#f3f3f7;
	--bp-color-medium-grey:#eaeaef;
	--bp-color-dark-grey:#d0d0d7;
	--bp-color-white:#ffffff;
	--bp-color-medium-text:#363545;
	--bp-color-dark-text:#262533;
}

@font-face {font-family:Thin;src:url(fonts/Raleway-Thin.ttf);}
@font-face {font-family:ExtraLight;src:url(fonts/Raleway-ExtraLight.ttf);}
@font-face {font-family:Light;src:url(fonts/Raleway-Light.ttf);}
@font-face {font-family:Regular;src:url(fonts/Raleway-Regular.ttf);}
@font-face {font-family:Medium;src:url(fonts/Raleway-Medium.ttf);}
@font-face {font-family:SemiBold;src:url(fonts/Raleway-SemiBold.ttf);}
@font-face {font-family:Bold;src:url(fonts/Raleway-Bold.ttf);}
@font-face {font-family:ExtraBold;src:url(fonts/Raleway-ExtraBold.ttf);}
@font-face {font-family:Black;src:url(fonts/Raleway-Black.ttf);}

::-webkit-scrollbar{width:10px;height:10px;}
::-webkit-scrollbar-track{background:var(--bp-color-medium-grey);}
::-webkit-scrollbar-thumb{background:var(--bp-color-dark-grey);}
::-webkit-scrollbar-thumb:hover{background:var(--bp-color-dark-grey);}

html,body{font-family:Regular;font-size:100%;color:var(--bp-color-dark-text);margin:0;padding:0;width:100%;height:100%;background:var(--bp-color-light-grey);}
.wrapper{position:relative;margin-left:auto;margin-right:auto;max-width:100%;padding-left:20px;padding-right:20px;}

#login{display:flex;align-items:center;justify-content:center;flex-direction:column;position:absolute;height:100%;width:100%;}
#login form{display:flex;flex-direction:column;gap:10px;width:300px;margin:30px 0 100px 0;}
#login form input{padding:10px 12px;width:100%;min-height:40px;display:block;font-size:13px;outline:none;box-sizing:border-box;background:var(--bp-color-white);border:1px solid var(--bp-color-dark-grey);border-radius:4px;}
#login form input:focus{border:1px solid var(--bp-color-primary);}
#login form button{width:100%;text-align:center;display:inline;padding:10px 0 10px 0;height:40px;color:var(--bp-color-white);background:var(--bp-color-primary);border:1px solid var(--bp-color-primary);border-radius:4px;cursor:pointer;}

header.global{height:85px;}
header.global .menu{height:60px;width:100%;background:var(--bp-color-white);display:flex;align-items:center;border-bottom:2px solid var(--bp-color-medium-grey);position:fixed;z-index:99;padding-left:20px;padding-right:20px;}
header.global .menu .menu-container{position:relative;display:grid;grid-template-columns:1fr 1fr 1fr;width:calc(100% - 40px);}
header.global .menu .menu-container .menu-logo{position:relative;display:flex;align-items:center;user-select:none;}
header.global .menu .menu-container .menu-logo img{object-fit:contain;object-position:center;display:block;vertical-align:middle;}
header.global .menu .menu-container .menu-links{display:flex;justify-content:center;gap:1px;}
header.global .menu .menu-container .menu-links a{display:flex;align-items:center;justify-content:center;background:var(--bp-color-medium-grey);width:60px;height:60px;}
header.global .menu .menu-container .menu-links svg{height:22px;fill:var(--bp-color-white);}
header.global .menu .menu-container .menu-links a:hover{background:var(--bp-color-primary);}
header.global .menu .menu-container .menu-links a.active{background:var(--bp-color-primary);}
header.global .menu .menu-container .menu-action{display:flex;justify-content:flex-end;align-items:center;gap:20px;}
header.global .menu .menu-container .menu-action #last_update{font-family:Arial, Helvetica, sans-serif;font-size:8px;color:var(--bp-color-dark-grey);text-align:center;line-height:15px;text-transform:uppercase;cursor:default;}
header.global .menu .menu-container .menu-action #last_update span{font-size:12px;font-weight:bold;}
header.global .menu .menu-container .menu-action #update_records svg{height:22px;fill:var(--bp-color-dark-grey);display:block;cursor:pointer;}
header.global .menu .menu-container .menu-action #update_records svg:hover{fill:var(--bp-color-tertiary);}
header.global .menu .menu-container .menu-action #logout svg{height:22px;fill:var(--bp-color-dark-grey);display:block;cursor:pointer;}
header.global .menu .menu-container .menu-action #logout svg:hover{fill:var(--bp-color-tertiary);}
header.global .menu .menu-container .menu-action #user{background:var(--bp-color-medium-grey);height:42px;width:42px;border-radius:21px;position:relative;display:flex;justify-content:center;align-items:center;}
header.global .menu .menu-container .menu-action #user span{font-family:ExtraBold;font-size:14px;line-height:14px;text-transform:uppercase;opacity:0.3;cursor:default;user-select:none;}

.loading{width:100%;height:2px;position:absolute;top:60px;left:0;overflow:hidden;display:none;}
.loading::before{content:'';display:block;position:absolute;left:-350px;top:0;height:100%;width:350px;background:linear-gradient(to right, transparent 0%, var(--bp-color-primary) 50%, transparent 100%);animation:loading 2s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;}
@keyframes loading{from{left:-350px;}to{left:100%;}}

iframe{position:fixed;top:60px;left:0;width:100%;height:calc(100% - 60px);}

.dashboard{overflow:auto;}
.dashboard .heading{display:flex;align-items:center;justify-content:flex-end;margin-bottom:20px;gap:5px;justify-content:space-between;height:42px;}
.dashboard .heading h1{margin:0;font-size:26px;font-family:ExtraBold;font-weight:normal;text-transform:uppercase;opacity:0.2;}
.dashboard .heading .navigation{display:flex;align-items:center;gap:5px;}
.dashboard .button{background:var(--bp-color-white);color:var(--bp-color-medium-text);font-size:13px;text-decoration:none;padding:12px 12px;border:1px solid var(--bp-color-medium-grey);border-radius:4px;font-family:SemiBold;box-sizing:border-box;}
.dashboard .button:not(.active):hover{border:1px solid var(--bp-color-dark-grey);box-shadow:0px 1px var(--bp-color-dark-grey);cursor:pointer;}
.dashboard .button svg{fill:var(--bp-color-medium-text);}
.dashboard .button.active{background:var(--bp-color-primary);color:var(--bp-color-white);}
.dashboard .button.active svg{fill:var(--bp-color-white);}
.dashboard .select-box{background:var(--bp-color-white);color:var(--bp-color-medium-text);font-size:13px;text-decoration:none;padding:12px 12px;border:1px solid var(--bp-color-medium-grey);border-radius:4px;font-family:SemiBold;box-sizing:border-box;position:relative;}
.dashboard .select-box:hover{border:1px solid var(--bp-color-dark-grey);box-shadow:0px 1px var(--bp-color-dark-grey);cursor:pointer;}
.dashboard .select-box .display{display:flex;align-items:center;gap:10px;}
.dashboard .select-box .display svg{fill:var(--bp-color-medium-text);}
.dashboard .select-box .options{display:none;position:absolute;z-index:1;left:0;right:0;top:42px;background:var(--bp-color-white);color:var(--bp-color-medium-text);font-size:13px;text-decoration:none;border:1px solid var(--bp-color-dark-grey);box-shadow:0px 1px var(--bp-color-dark-grey);border-radius:4px;font-family:SemiBold;overflow:hidden;}
.dashboard .select-box .options a,.dashboard .select-box .options span{display:flex;align-items:center;justify-content:center;text-align:center;width:100%;padding:12px 12px;box-sizing:border-box;color:var(--bp-color-medium-text);text-decoration:none;}
.dashboard .select-box .options a:hover,.dashboard .select-box .options span:hover{background:var(--bp-color-primary);color:var(--bp-color-white);}
.grid{display:grid;gap:20px;font-family:Arial, Helvetica, sans-serif;cursor:default;margin-bottom:20px;clear:both;page-break-after:always;}
.grid1fr1fr{grid-template-columns:1fr 1fr;}
.grid3fr1fr{grid-template-columns:3fr 1fr;}
.grid6fr1fr{grid-template-columns:6fr 1fr;}
.grid1fr1fr2fr2fr{grid-template-columns:1fr 1fr 2fr 2fr;}
.grid1fr1fr2fr2fr1fr{grid-template-columns:1fr 1fr 2fr 2fr 1fr;}
.grid1d2fr1fr2fr2fr{grid-template-columns:1.2fr 1fr 2fr 2fr;}
.grid .tile-group{display:flex;flex-direction: column;justify-content:space-between;gap:20px;}
.grid .tile-group .tile{height:100%;}
.grid .tile{display:flex;flex-direction:column;width:100%;background:var(--bp-color-white);border:2px solid var(--bp-color-medium-grey);border-radius:4px;box-sizing:border-box;}
.grid .tile hr{width:100%;border:none;border-bottom:1px solid var(--bp-color-medium-grey);}
.grid .tile .title{font-family:SemiBold;line-height:22px;padding:15px 15px 0 15px;}
.grid .tile .subtitle{font-family:Regular;font-size:12px;padding:0 15px 0 15px;}
.grid .tile .chart{font-size:12px;margin:15px;}
.grid .tile .chart-legend{display:flex;margin:0 0 15px 0;padding:0;list-style:none;gap:15px;font-size:13px;justify-content:center;}
.grid .tile .chart-legend li{display:flex;margin:0;padding:0;align-items:center;gap:3px;}
.grid .tile table{font-size:12px;margin:15px 0;}
.grid .tile table span{opacity:0.5;}
.grid .tile table a{color:var(--bp-color-tertiary);cursor:pointer;text-decoration:none;}
.grid .tile table a:hover{text-decoration:underline;text-decoration-style:dotted;}
.grid .tile table .trend{display:inline-flex;align-items:center;margin-right:10px;position:relative;width:14px;height:14px;}
.grid .tile table .trend.up svg{top:0px;position:absolute;fill:var(--bp-color-white);background:var(--bp-color-secondary);padding:3px;width:13px;height:13px;border-radius:2px;}
.grid .tile table .trend.down svg{top:0px;position:absolute;fill:var(--bp-color-white);background:var(--bp-color-primary);padding:3px;width:13px;height:13px;border-radius:2px;}
.grid .tile table tr.subtotal td{background:rgba(243,243,247,0.5);font-weight:bold;}
.grid .tile table tr.disregarded td{opacity:0.5;}
.grid .tile table tr th.subtotal{background:var(--bp-color-medium-grey);font-weight:bold;}
.grid .tile table tr td.subtotal{background:rgba(243,243,247,0.5);font-weight:bold;}
.grid .tile table thead th{background:var(--bp-color-light-grey);min-width:46px;padding:6px;border-top:1px solid var(--bp-color-medium-grey);border-bottom:1px solid var(--bp-color-medium-grey);border-left:1px solid var(--bp-color-medium-grey);color:var(--bp-color-medium-text);}
.grid .tile table thead th:first-child{border-left:none;padding-left:15px;}
.grid .tile table thead th:last-child{border-right:none;padding-right:15px;}
.grid .tile table tbody td{background:var(--bp-color-white);min-width:46px;padding:6px;border-bottom:1px solid var(--bp-color-light-grey);vertical-align:center;line-height:18px;position:relative;vertical-align:middle}
.grid .tile table tbody td img{float:left;margin-right:6px;}
.grid .tile table tbody td:first-child{padding-left:15px;line-height:30px;}
.grid .tile table tbody td:last-child{padding-right:15px;}
.grid .tile table tfoot td{padding:6px;color:var(--bp-color-medium-text);font-weight:bold;line-height:18px;border-bottom:1px solid var(--bp-color-light-grey);}
.grid .tile table tfoot td:first-child{padding-left:15px;}
.grid .tile table tfoot td:last-child{padding-right:15px;}
.grid .tile table [data-group]:not(.active):hover{background:var(--bp-color-light-grey);color:var(--bp-color-dark-text);cursor:pointer;}
.grid .tile table [data-group]:not(.active):hover span{opacity:1;}
.grid .tile table [data-owner]:not(.active):hover{background:var(--bp-color-light-grey);color:var(--bp-color-dark-text);cursor:pointer;}
.grid .tile table [data-owner]:not(.active):hover span{opacity:1;}
.grid .tile table td.active{background:var(--bp-color-primary) !important;color:var(--bp-color-white);cursor:pointer;}
.grid .tile table td.active span{opacity:1;}
.grid .tile table td .label{background:var(--bp-color-medium-grey);color:var(--bp-color-black);font-size:10px;padding:0 6px;font-family:SemiBold;border-radius:3px;margin-left:5px;display:inherit;min-width:6px;height:18px;line-height:18px;float:right;text-align:center;}
.grid .tile table td .label.yellow{background:var(--bp-color-secondary);color:var(--bp-color-white);opacity:0.8;}
.grid .tile table td .label.red{background:#cf3325;color:var(--bp-color-white);opacity:0.8;}
.grid .tile .number{padding:25px;display:flex;flex-direction:column;align-items:center;gap:5px;justify-content:center;height:100%;}
.grid .tile .number .value{font-size:52px;font-weight:bold;line-height:52px;color:var(--bp-color-primary);}
.grid .tile .number .label{color:var(--bp-color-dark-text);font-family:Regular;font-size:12px;}
.grid .tile .progress{width:100%;height:6px;border-radius:3px;background:var(--bp-color-medium-grey);margin-top:5px;}
.grid .tile .progress .bar{height:6px;border-radius:3px;background:var(--bp-color-tertiary);}
.grid .tile .list{display:flex;font-size:12px;flex-direction:column;margin:15px;}
.grid .tile .list .row{display:flex;justify-content:space-between;padding:6px 0;border-bottom:1px solid var(--bp-color-light-grey);column-gap:10px;}
.grid .tile .list .row span.index{color:var(--bp-color-white);background:var(--bp-color-dark-grey);height:14px;width:14px;display:inline-flex;justify-content:center;align-items:center;margin-right:5px;font-size:11px;line-height:12px;border-radius:2px;}
.grid .tile .list .row:nth-child(1) span.index{background:var(--bp-color-secondary);}
.grid .tile .list .row:nth-child(2) span.index,.grid .tile .list .row:nth-child(3) span.index{background:var(--bp-color-primary);}
.grid .tile .table {display:table;font-size:12px;margin:15px;}
.grid .tile .table .row{display:table-row;font-size:12px;flex-direction:column;margin:15px;}
.grid .tile .table .row .cell{display:table-cell;border-bottom:1px solid var(--bp-color-light-grey);padding:6px 5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:120px;}
.grid .tile .table .row .cell:first-child{padding-left:0px;}
.grid .tile .table .row .cell:last-child{padding-right:0px;}
.grid .tile .table .row span.index{color:var(--bp-color-white);background:var(--bp-color-dark-grey);height:14px;width:14px;display:inline-flex;justify-content:center;align-items:center;margin-right:5px;font-size:11px;line-height:12px;border-radius:2px;}
.grid .tile .table .row:nth-child(1) span.index{background:var(--bp-color-secondary);}
.grid .tile .table .row:nth-child(2) span.index,.grid .tile .table .row:nth-child(3) span.index{background:var(--bp-color-primary);}
.grid .tile .table a{color:var(--bp-color-tertiary);cursor:pointer;text-decoration:none;}
.grid .tile .table a:hover{text-decoration:underline;text-decoration-style:dotted;}
.grid .tile#calendar table th:first-child,.grid .tile#calendar table td:first-child{min-width:auto;width:60px;max-width:60px;}
.grid .tile#calendar table th:last-child,.grid .tile#calendar table td:last-child{min-width:25px;width:25px;max-width:25px;border-right:none;padding-right:6px;}
.grid .tile#calendar table th,.grid .tile#calendar table td{min-width:25px;width:25px;max-width:25px;border-left:1px solid var(--bp-color-medium-grey);}
.grid .tile#calendar table tr .weekend{background:rgba(243,243,247,0.5);}
.grid .tile#calendar table tr .holiday{background:rgba(243,243,247,0.5);}
.grid .tile#calendar table tr .business-trip{background:var(--bp-color-primary);color:var(--bp-color-white);}
.grid .tile#calendar table tr .sick-leave{background:var(--bp-color-secondary);color:var(--bp-color-white);}
.grid .tile#calendar table tr .vacation{background:var(--bp-color-tertiary);color:var(--bp-color-white);}
.grid .tile#calendar table tr .vacation.requested{--s:8px;--c:#0000 75%,var(--bp-color-tertiary) 0;--g1:conic-gradient(at 75% 25%,var(--c));--g2:conic-gradient(at 25% 75%,var(--c));background:var(--g1),var(--g1) var(--s) var(--s),var(--g2),var(--g2) var(--s) var(--s) var(--bp-color-primary); background-size:calc(2*var(--s)) calc(2*var(--s));}
.grid .tile#calendar table tr .locked{background:var(--bp-color-medium-grey);}
.grid .tile#calendar_input .form{padding:15px;display:flex;gap:10px;align-items:center;font-size:13px;}
.grid .tile#calendar_input .form input,.grid .tile#calendar_input .form select{font-family:Arial;padding:10px 12px;width:100%;min-height:40px;display:block;font-size:13px;outline:none;box-sizing:border-box;background:var(--bp-color-white);border:1px solid var(--bp-color-dark-grey);border-radius:4px;}
.grid .tile#calendar_input .form input:focus{border:1px solid var(--bp-color-primary);}
.grid .tile#calendar_input .form select#inputType{max-width:200px;}
.grid .tile#calendar_input .form input[type=date]{max-width:130px;}
.grid .tile#calendar_input .form input[type=time]{max-width:100px;}
.grid .tile#calendar_input .form select#inputRegion{max-width:190px;}
.grid .tile#calendar_input .form button{width:100%;max-width:160px;text-align:center;display:inline;padding:10px 0 10px 0;height:40px;color:var(--bp-color-white);background:var(--bp-color-primary);border:1px solid var(--bp-color-primary);border-radius:4px;cursor:pointer;}
.grid .tile#calendar_details{max-height:400px;overflow-y:auto;}
.grid .tile#calendar_summary{height:auto;}
.grid .tile#calendar_records{max-height:228px;overflow-y:auto;}
.grid .tile#calendar_records span{opacity:0.5;}
.grid .tile#calendar_records button{width:80px;font-size:11px;text-align:center;display:inline;padding:7px 0 7px 0;height:30px;color:rgba(0,0,0,0.6);background:var(--bp-color-medium-grey);border:none;border-radius:4px;cursor:pointer;}
.grid .tile#calendar_records button:hover{background:var(--bp-color-secondary);color:var(--bp-color-white);}
.grid .tile#rent table td[data-inventory]:hover{background:var(--bp-color-light-grey);}
.grid .tile#rent table .rent-slot{display:flex;flex-direction:column;float:left;margin-right:10px;background:var(--bp-color-light-grey);border-radius:4px;padding:7px 14px;width:90px;max-width:90px;cursor:pointer;}
.grid .tile#rent table .rent-slot:hover{background:var(--bp-color-medium-grey);}
.grid .tile#rent table .rent-slot div{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.grid .tile#rent table .rent-slot.active{background:var(--bp-color-primary);color:var(--bp-color-white);}
.grid .tile#rent table .rent-slot.past{opacity:0.5;}
.grid .tile#rent table .rent-slot.past:hover{background:var(--bp-color-light-grey);}
.grid .tile#rent table .rent-slot.past.active{background:var(--bp-color-primary);color:var(--bp-color-white);}
.grid#rent_input{height:40px;}
.grid#rent_input .tile{position:fixed;bottom:0;left:0;}
.grid#rent_input .tile.delete{display:none;}
.grid#rent_input .tile.delete .form{display:flex;justify-content:center;}
.grid#rent_input .form{padding:15px;display:flex;gap:10px;align-items:center;font-size:13px;}
.grid#rent_input .form input,.grid#rent_input .form select{font-family:Arial;padding:10px 12px;width:100%;min-height:40px;display:block;font-size:13px;outline:none;box-sizing:border-box;background:var(--bp-color-white);border:1px solid var(--bp-color-dark-grey);border-radius:4px;}
.grid#rent_input .form input:focus{border:1px solid var(--bp-color-primary);}
.grid#rent_input .form input[type=date]{max-width:130px;}
.grid#rent_input .form select#inputRegion{max-width:190px;}
.grid#rent_input .form button{width:100%;max-width:160px;text-align:center;display:inline;padding:10px;height:40px;color:var(--bp-color-white);background:var(--bp-color-primary);border:1px solid var(--bp-color-primary);border-radius:4px;cursor:pointer;}
.grid .tile#application_overview .title-heading{display:flex;align-items:center;justify-content:space-between;}
.grid .tile#application_overview .filter-tiles{display:flex;gap:5px;font-size:12px;padding:10px 10px 0 0;}
.grid .tile#application_overview .filter-tiles a{text-decoration:none;border:1px solid var(--bp-color-light-grey);padding:10px;color:var(--bp-color-medium-text);border-radius:4px;display:flex;gap:6px;align-items:center;}
.grid .tile#application_overview .filter-tiles a .counter{font-size:16px;font-family:SemiBold;line-height:16px;}
.grid .tile#application_overview .filter-tiles a.active{border:1px solid var(--bp-color-tertiary);background:var(--bp-color-tertiary);color:var(--bp-color-white);}
.grid .tile#application_details{height:min-content;}
.grid .tile#application_details .title{padding:25px 15px 5px 15px;}
.grid .tile#application_details .form{padding:15px;display:flex;flex-direction:column;gap:10px;font-size:13px;}
.grid .tile#application_details .form .form-item{display:grid;grid-template-columns:130px 1fr;align-items:center;}
.grid .tile#application_details .form .form-item .form-value{display:flex;gap:10px;}
.grid .tile#application_details .form .form-item .form-value .info{display:flex;align-items:center;text-align:center;min-width:fit-content;opacity:0.5;}
.grid .tile#application_details .form .uploadFile{width:100%;max-width:100%;box-sizing:border-box;background-color:var(--bp-color-white);border:1px solid var(--bp-color-dark-grey);font-size:13px;padding:10px 14px;margin:0;color:var(--bp-color-medium-text);outline:none;font-family:Arial;cursor:pointer;border-radius:4px;}
.grid .tile#application_details .form .deleteFile{width:100%;max-width:160px;box-sizing:border-box;background-color:var(--bp-color-light-grey);border:1px solid var(--bp-color-dark-grey);font-size:13px;padding:12px 14px 10px 14px;margin:0;color:var(--bp-color-medium-text);outline:none;font-family:Arial;cursor:pointer;border-radius:4px;text-decoration:none;text-align:center;}
.grid .tile#application_details .form input,.grid .tile#application_details .form select{font-family:Arial;padding:10px 12px;width:100%;min-height:40px;display:block;font-size:13px;outline:none;box-sizing:border-box;background:var(--bp-color-white);border:1px solid var(--bp-color-dark-grey);border-radius:4px;}
.grid .tile#application_details .form  textarea{width:100%;box-sizing:border-box;background-color:var(--bp-color-white);border:1px solid var(--bp-color-dark-grey);font-size:13px;padding:10px 14px;margin:0;color:var(--bp-color-dark-text);outline:none;resize:vertical;font-family:Arial;border-radius:4px;}
.grid .tile#application_details .form input[type=file]{display:none;}
.grid .tile#application_details .form .submit{width:100%;max-width:100%;box-sizing:border-box;background-color:var(--bp-color-primary);border:1px solid var(--bp-color-primary);font-size:13px;padding:10px 14px;margin:40px 0 0 0;color:var(--bp-color-white);outline:none;font-family:Arial;cursor:pointer;border-radius:4px;text-decoration:none;text-align:center;}
.grid .tile#application_details .form .options{min-width:200px;left:auto;}
.grid #application_sidebar .tabs{display:flex;gap:5px;justify-content:flex-end;margin-bottom:10px;}
.grid #application_sidebar .tabs button{text-decoration:none;border:1px solid var(--bp-color-medium-grey);padding:10px;color:var(--bp-color-medium-text);border-radius:4px;align-items:center;background:var(--bp-color-white);cursor:pointer;}
.grid #application_sidebar .tabs button.active{border:1px solid var(--bp-color-tertiary);background:var(--bp-color-tertiary);color:var(--bp-color-white);}
.grid #application_sidebar .new-record-wrapper{display:flex;gap:5px;}
.grid #application_sidebar input{font-family:Arial;padding:10px 12px;width:100%;min-height:40px;display:block;font-size:13px;outline:none;box-sizing:border-box;background:var(--bp-color-white);border:1px solid var(--bp-color-dark-grey);border-radius:4px;color:var(--bp-color-dark-text);}
.grid #application_sidebar textarea{width:100%;box-sizing:border-box;background-color:var(--bp-color-white);border:1px solid var(--bp-color-dark-grey);font-size:13px;padding:10px 12px;margin:5px 0;color:var(--bp-color-dark-text);outline:none;resize:vertical;font-family:Arial;border-radius:4px;display:block;}
.grid #application_sidebar .submit{width:100%;max-width:100%;box-sizing:border-box;background-color:var(--bp-color-primary);border:1px solid var(--bp-color-primary);font-size:13px;padding:10px 14px;margin:0;color:var(--bp-color-white);outline:none;font-family:Arial;cursor:pointer;border-radius:4px;text-decoration:none;text-align:center;}
.grid #application_sidebar #section_history .records{margin-bottom:15px;}
.grid #application_sidebar #section_history .records .tile{margin-bottom:5px;position:relative;}
.grid #application_sidebar #section_history .records .tile .text{font-size:13px;padding:15px;}
.grid #application_sidebar iframe{width:100%;height:calc(100% - 47px);box-sizing:border-box;border-radius:4px;}
.grid #application_sidebar .select-box{position:absolute;right:0px;top:0px;width:28px;border:none;}
.grid #application_sidebar .select-box:hover{border:none;box-shadow:none;}
.grid #application_sidebar .select-box .display{justify-content:center;}
.grid #application_sidebar .select-box .options{min-width:200px;left:auto;}

.product-comparison{width:100%;overflow:auto;margin-bottom:30px;}
.product-comparison .products{display:flex;gap:5px;}
.product-comparison .products .product{display:flex;flex-direction:column;background:var(--bp-color-white);border:2px solid var(--bp-color-medium-grey);border-radius:4px;box-sizing:border-box;cursor:default;justify-content:space-between;position:relative;}
.product-comparison .products .product .hide{position:absolute;right:15px;top:15px;}
.product-comparison .products .product .hide svg{height:22px;fill:var(--bp-color-dark-grey);display:block;cursor:pointer;}
.product-comparison .products .product .hide svg:hover{fill:var(--bp-color-tertiary);}
.product-comparison .products .product .general{text-align:center;}
.product-comparison .products .product img{margin:25px auto 15px auto;align-self:center;}
.product-comparison .products .product .name{font-family:SemiBold;line-height:22px;padding:15px 15px 0 15px;text-align:left;}
.product-comparison .products .product .type{font-family:Regular;font-size:12px;padding:0 15px 0 15px;text-align:left;}
.product-comparison .products .product .details .item,.product-comparison .products .product .details .sub-item{display:flex;justify-content:space-between;min-height:19px;}
.product-comparison .products .product .details{font-family:Regular;font-size:13px;padding:15px;white-space:nowrap;line-height:18px;}
.product-comparison .products .product .details .sub-item{padding-left:5px;}
.product-comparison .products .product .details .bundle{font-family:SemiBold;}
.product-comparison .products .product .details .sub-item input,.product-comparison .products .product .details .sub-item .price{color:var(--bp-color-dark-grey);}
.product-comparison .products .product .details span{font-size:9px;}
.product-comparison .products .product .details .price{margin-left:30px;}
.product-comparison .products .product .advanced{padding:15px;min-width:320px;}
.product-comparison .products .product .advanced .total-price{display:flex;justify-content:space-around;padding:15px 0;background:var(--bp-color-light-grey);}
.product-comparison .products .product .advanced .total-price .price{display:flex;flex-direction:column;font-family:SemiBold;font-size:20px;line-height:22px;align-items:center;}
.product-comparison .products .product .advanced .total-price .price span{font-family:Regular;font-size:11px;}
.product-comparison .products .product .advanced .calc-price{display:flex;font-family:Regular;font-size:12px;padding:0;gap:5px;justify-content:flex-end;margin-top:-10px;}
.product-comparison .products .product .advanced .calc-price .input{display:flex;justify-content:space-between;align-items:center;position:relative;}
.product-comparison .products .product .advanced .calc-price .input input{text-align:right;width:50px;border:1px solid var(--bp-color-dark-grey);outline:none;font-family:Arial;padding:10px 52px 10px 12px;}
.product-comparison .products .product .advanced .calc-price .input span{position:absolute;right:12px;font-size:11px;}
.product-comparison .products .product .advanced .pros-cons{margin-top:30px;padding-top:20px;border-top:1px solid var(--bp-color-dark-grey);font-size:13px;height:100px;}
.product-comparison .products .product .advanced .pros-cons .block{display:flex;justify-content:space-between;margin-bottom:5px;}
.product-comparison .products .product .advanced .pros-cons .block .feature{display:flex;gap:5px;line-height:18px;}
.product-comparison .products .product .advanced .pros-cons .type{width:10px;height:10px;margin:0;padding:3px;color:var(--bp-color-white);font-size:24px;line-height:24px;display:inline-flex;border-radius:16px;align-items:center;justify-content:center;}
.product-comparison .products .product .advanced .pros-cons .type.pro{background:var(--bp-color-secondary);}
.product-comparison .products .product .advanced .pros-cons .type.con{background:var(--bp-color-medium-text);line-height:4px;}
.product-comparison .products .product .advanced .pros-cons .info{background:var(--bp-color-dark-grey);border-radius:16px;width:16px;height:16px;}
.product-comparison .products .product .advanced .pros-cons svg{width:10px;min-width:10px;height:10px;margin:0;padding:3px;display:inline;background:none;fill:var(--bp-color-white);border-radius:16px;cursor:default;}
.product-comparison .products .product .advanced .links{font-size:13px;height:20px;display:flex;gap:20px;}
.product-comparison .products .product .advanced .links a{display:inline;text-decoration:none;color:var(--bp-color-black);opacity:0.75;align-items:center;gap:5px;line-height:13px;}
.product-comparison .products .product .advanced .links a svg{height:12px;opacity:0.75;}
.product-comparison .products .product .advanced .links a:hover{text-decoration:underline;text-decoration-style:dotted;}

html.report,html.report body{font-family:Regular;font-size:15px;color:var(--bp-color-dark-text);margin:0;padding:25px;width:100%;height:auto;background:var(--bp-color-white);}
html.report h1{font-family:Bold;margin:0 0 12px 0;}
html.report p{margin:4px;}
html.report table th{background:var(--bp-color-light-grey);padding:4px 10px;}
html.report table .month_total{background:rgba(243, 243, 247, 0.5);}
html.report table .overall_total{background:var(--bp-color-medium-grey);}
html.report table td{padding:2px 10px;}
