
.calculator-container {
    display: grid; 
    gap: 10px;
    height: 625px;
    align-items: start;

    padding: 20px 10px;
    border: 1 px solid rgba(42,76,103,0.6);
    border-radius: 12px;
    background-color: #fff;

    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);

    font-family: 'Poppins';
    color: #2A4C67;
}

.calculator-left {
    grid-column: 1;
    padding-right: 15px;
    margin-right: 15px;
    
    height: 100%;
    width: 675px;
    
    padding: 25px;
    
    border-right: 1px solid rgba(42,76,103,0.6);
}

.calculator-right {
    grid-column: 2;
    width: 400px;
    padding: 20px 10px;
}

.calculator-right h3 {
    font-size: 24px;
    font-weight: 600;

    color: #2A4C67;
}

.group-type label {
    font-size: 12px;
    font-weight: 600;
}

#service-type {
    width: 250px;
}

.items-description-container {
    display: flex;
    flex-direction: column;
    gap: 5px;

    margin-top: 25px;
}

.items-description-container strong {
    font-size: 18px;
    font-weight: 600;
}

#work-items {
    display:flex;
    flex-direction: row;

    gap: 25px;
}

.work-column-left {
    display: flex;
    flex-direction: column;
}

.work-column-right {
    display: flex;
    flex-direction: column;
}

.work-items-description {
    font-size: 14px;
    overflow-wrap: break-word;
    font-weight: 400;
}

.group-type {
    display: flex;
    flex-direction: column;

    margin-bottom: 15px;    
}

#summary-items {
    display: flex;
    flex-direction: column;
    gap: 10px;

    height: 300px;
    width: 100%;
    overflow-y:auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.summary-left {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.summary-right {
    display: flex;
    flex-direction: row;
    justify-content: end;

    align-items: center;
}

#summary-cost {
    font-size: 14px;
    font-weight: 400;

    background: rgba(42,76,103,0.2);
    padding: 3px 5px;

    border-radius: 6px;
}

#cost-text {
    font-size: 18px;
    font-weight: 500;
}


.summary-item-type {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600
}

.summary-item-name {
    font-size: 18px;
    line-height: 1.2;
    margin-top: -5px;
}

.summary-total {
    display: flex;
    flex-direction: column;

    margin-top: 10px;
}

.price-total-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.price-total-container strong {
    font-size: 24px;
    font-weight: 600;
}

.time-total-container {
    display: flex;
    flex-direction: row;
}

#total-time {
    margin-left: 5px;
    font-weight: 600px;
}

.button-container {
    display: flex;
    width: 100%;

    margin-top: 20px;

    justify-content: center;
    
}

#book-quote {
    color: #fff;
    background: #2A4C67;

    border-radius: 6px;
    padding: 15px 30px;

    font-size:18px;
    display:inline-block;

    transition: all 0.3s;
}

#book-quote:hover {
    color: #2A4C67;
    background:#F4C800;
}

.clear-item {
    display: inline-flex;
    width: 20px;
    padding-left: 10px;
    border-box: box-sizing;

    background: #fff;
}

.clear-item:hover
{
    background: #fff;
}