body {
    background-color: #dae1e7;
}
.header {
    height: 75px;
    background-color: #f5e30b;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 300;
}
.logo {
    width: 180px;
    margin-left: 150px;
}
.footer {
    background-color: #f1f5f8;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.content{
    max-width: 1200px;
    width: 100%;
    margin: 0px auto;
    margin-top: 50px;
}
.sponsor-img {
    width: 100%;
    margin-top: 50px;
    border-radius: 20px;
}
.house-tabs{
    display: flex;
}
.tab-active {
    width: 50%;
    display: flex;
    align-items: center;
    background-color: #555658;
    padding: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    color: white;
}
.tab-inactive {
    width: 50%;
    display: flex;
    align-items: center;
    background-color: #BBC2C8;
    padding: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    color: dimgray;
}
.tab-inactive img {
    opacity: 0.5;
}
.tab-download {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f5e30b;
}
.house-icon {
    width: 150px;
    height: 150px;
}
.house-description {
    padding: 10px;
}
.table {
    width: 100%;
    border-spacing: 0px;
}
.table-head {
    background-color: black;
    color: white;
}
table td {
    position: relative;
    padding: 10px 10px 10px 10px;
}
table td:not(.phase-td) {
    border-left: 5px solid;
    border-left-color: #dae1e7;
}
table td:not(:last-child) {
    border-right: 5px solid;
    border-right-color: #dae1e7;
}
table .border-bottom td, .phase-td {
    border-bottom: 10px solid;
    border-bottom-color: #dae1e7;
}
/*table tr:not(.border-bottom) td {
    border-bottom: 1px solid;
    border-bottom-color: #000;
}*/
table th {
    border-color: black;
}
.phase-td {
    position: relative;
    padding: 10px 10px 10px 70px;
}
.phase-icon {
    position: absolute;
    left: 10px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
}
.info {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 2px;
    top: 2px;
}
.info-icon {
    width: 100%;
}
.popup-info {
    display: none;
    position: absolute;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px 10px;
    z-index: 10000;
    bottom: 27px;
    left: -45px;
}
.popup-info::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 17%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}
.info-icon:hover + .popup-info {
    display: block;
}
.edit-icon {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.cost-input {
    width: 40%;
    text-align: center;
    border: 2px solid;
    background-color: transparent;
    padding: 3px;
}
.cantity-input {
    width: 40%;
    text-align: center;
    border: 2px solid;
    background-color: transparent;
    padding: 3px;
}
.table-summary {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
}
.summary {
    display: flex;
    flex-direction: column;
    width: 43%;
    justify-content: space-around;
}
.total {
    background-color: black;
    color: white;
    height: 50%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    font-weight: bold;
}
.simulator {
    background-image: url('/img/banner-simulator.png');
    width: 56%;
    height: 245px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.simulator-title {
    font-size: 28px;
    font-weight: bold;
    width: 30%;
    margin-left: 40px;
}
.simulator-description {
    width: 46%;
    margin-left: 40px;
}
.simulator-link {
    background-color: #f5e30b;
    border-radius: 20px;
    padding: 6px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-left: 40px;
}
.total-ron {
    border-bottom: 2px solid;
    padding: 7px 50px 7px 50px;
}
.download-deviz {
    background-color: #555658;
    color: white;
    height: 45%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.download-text {
    color: #f5e30b;
    margin-right: 10px;
}
input:disabled {
    background-color: transparent;
    color: black;
    border: none;
}
#ajax-progress-message {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    height: 30px;
    color: black;
    font-weight: 600;
    border: 1px solid #f0c36d;
    background-color: #f5e30b;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0 10px;
    z-index: 1003;
}
