#investment-calculator{

}
#investment-calculator .investment-calculator-container-inner{
    background-color: var(--medium-green-tint-1);
    border-radius: 6px;
}

#investment-calculator #investment-calculator-form label{
    margin-top: 0;
    margin-bottom: 0;
}

#investment-calculator #investment-calculator-form input.form-control,
#investment-calculator #investment-calculator-form select#investment-calculator-metal-select-type{
    color:var(--black);
    background-color: var(--white);
    margin-top: 0;
    padding-top: 14px;
    padding-bottom: 12px;
    border:1px solid #A8A8A8;
}
#investment-calculator #investment-calculator-form select#investment-calculator-metal-select-type option{
    margin-top: 0;
    padding-top: 14px;
    padding-bottom: 12px;
    border:1px solid #A8A8A8;
    font-weight: 500;
    font-family:"Segoe UI", quasimoda, sans-serif;
}
#investment-calculator-form .input-group-text{
    background-color: #A8A8A8;
    border:1px solid #A8A8A8;
    color:var(--white);
    padding-top: 8px;
}
#investment-calculator-form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

#investment-calculator-form #submit-investment-calculator{
    position: relative;
    padding: 12px 10px;
    text-align: center;
    padding-bottom: 10px;
    border-radius: 6px;
    border-width: 2px;
    border-style: solid;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    width: 100%;
    color: var(--white);
    background-color: var(--black);
    border-color: var(--black);
    cursor:pointer;
}

#investment-calculator-results.loading {
    min-height: 160px;
    position: relative;
}
#investment-calculator-results.loading:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('../images/spinner.svg');
    background-size: 80px;
    background-position: center center;
    background-repeat: no-repeat;
}

/* investment-calculator-results */
#investment-calculator-results .investment-calculator-package{
    border:1px solid var(--grey-medium);
    border-radius: 20px;
}
#investment-calculator-results .investment-calculator-package > div:last-of-type{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.investment-calculator-package p{
    color:#575757;
}
#investment-calculator .package-products .package-products-heading{
    font-size: 13px;
    color:#575757;
}

#investment-calculator .package-products .package-products-heading div:not(:first-of-type){
    text-align: center;
}
#investment-calculator .package-products .package-products-content div,
#investment-calculator .package-products .director-pick-row div{
    background-color: var(--grey-light);
}
#investment-calculator .package-products .package-products-content div:first-of-type,
#investment-calculator .package-products .director-pick-row div:first-of-type{
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
#investment-calculator .package-products .package-products-content div:last-of-type,
#investment-calculator .package-products .director-pick-row div:last-of-type{
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
#investment-calculator .package-products .package-products-content:not(:last-of-type),
#investment-calculator .package-products .director-pick-row:not(:last-of-type){
    margin-bottom: 10px;
}
#investment-calculator .package-products .director-pick-row{
    margin-bottom: 0 !important;
}
#investment-calculator .package-products .package-products-content > div,
#investment-calculator .package-products .director-pick-row > div{
    padding:0.3125rem;
}
@media(max-width: 575.98px){
    #investment-calculator .package-products .package-products-content,
    #investment-calculator .package-products .director-pick-row{
        padding:0.625rem;
        background-color: var(--grey-light);
        border-radius: 6px;
    }
    #investment-calculator .package-products .package-products-content > div > div:last-of-type,
    #investment-calculator .package-products .director-pick-row > div > div:last-of-type{
       color:#575757;
    }
}
.package-products-table{
    position: relative;
}
#investment-calculator .package-products-table .scroll-table:after{
    content: 'Scroll horizontally to see the full table';
    font-size: 10px;
    bottom: -30px;
    right: 0;
    display: block;
    position: absolute;
}

#investment-calculator .investment-calculator-package .package-products-totals{
    width: 100%;
    overflow: hidden;
}
#investment-calculator .investment-calculator-package .package-products-totals p{
    margin-bottom: 5px;
}
#investment-calculator .investment-calculator-package .package-products-totals .price{
    color: var(--black);
    font-size: 24px;
}
@media (max-width: 1399.98px){
    #investment-calculator .investment-calculator-package .package-products-totals .price {
        font-size: 22px;
        line-height: 38px;
    }
}
#investment-calculator .investment-calculator-package .package-products-totals .price-label{
    color: #575757;
    font-size: 16px;
    margin-bottom: 5px;
}
#investment-calculator .investment-calculator-package .package-products-totals .totals-col{
    background-color: var(--grey-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
#investment-calculator .investment-calculator-package .package-products-totals .totals-col + .totals-col{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
#investment-calculator .investment-calculator-package .package-products-totals .totals-col + .totals-col:before{
    content:'';
    width:1px;
    background-color: #707070;
    top: 1.25rem;
    bottom: 1.25rem;
    position: absolute;
    left:-1px;
}
#investment-calculator .investment-calculator-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: flex-end;
    align-content: flex-end;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
#investment-calculator .investment-calculator-buttons .button{
    position: relative;
    padding: 12px 20px;
    padding-bottom: 10px;
    border-radius: 6px;
    border-width: 2px;
    border-style: solid;
    font-size: 16px;
    margin-bottom: 0;
    margin-right: 0;
    margin-top: 10px;
    line-height: 24px;
    font-weight: 400;
    width:calc(50% - 10px);
}
@media(max-width: 991.98px) {
    #investment-calculator .investment-calculator-heading-container{
        text-align: center;
    }
    #investment-calculator #investment-calculator-form label{
        text-align: center;
    }
    #investment-calculator-results{
      
    }
}
@media (max-width: 575.98px){
    #investment-calculator .investment-calculator-buttons .button{
        width: 100%;
    }
}
#investment-calculator .investment-calculator-buttons .button img{
    margin-right: 10px;
}
#investment-calculator .investment-calculator-buttons .button.ajax-buy-with-storage{
    color: var(--white);
    background-color: var(--olive);
    border-color: var(--olive);
}
#investment-calculator .investment-calculator-buttons .button.ajax-buy-with-delivery{
    color: var(--black);
    background-color: var(--gold);
    border-color: var(--gold);
}
#investment-calculator .cart-page-paragraph{
    padding-top: 20px;
}