:root{
    --white-color:                  #FFFFFF;
    --blue-color:                   #005183;
    --primary-color:                #247cff;
    --section-bg-color:             #F9F9F9;
    --dark-color:                   #000000;
    --title-color:                  #565758;
    --p-color:                      #717275;
    --border-color:                 #eaeaea;
    --tertiary-color:               #003151;
}
/* Utils */
*{box-sizing: border-box}
.total-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cursor-pointer{cursor: pointer}
.text-color-primary{color: var(--tertiary-color)}
/*Floating button*/
.quote-btn{
    z-index: 99999;
    position: fixed;
    bottom: 2rem;
    right: 5rem;
    background-color: var(--tertiary-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 50%;
    width: auto;
    height: 60px;
    justify-content: space-between;
    filter: drop-shadow(0px 12px 18px rgba(0, 49, 81, 0.4));
    border: none;
}
.quote-btn.quote-btn-open{
    z-index: 99999;
    background-color: var(--tertiary-color);
    border-radius: 44px;
    border: none;
    outline: none;
    width: 155px;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}
.btn-calc-text{
    font-size: 18px;
    margin-top: 12px;
    margin-right: 12px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #000000;
    -webkit-text-fill-color: white;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -1px;
}
.calculator-icon{
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Calculator Modal Content */
/*.modal-body{*/
/*    flex: none;*/
/*}*/
/*.modal-dialog{*/
/*    !*height: 90%;*!*/
/*    !*width: 90%;*!*/
/*}*/
/*.modal-content{*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    overflow: auto;*/
/*    max-width: 1034px;*/
/*    max-height: 658px;*/
/*    border-radius: 8px;*/
/*}*/
.progress-bar{background-color: var(--tertiary-color)}
.modal-body{
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    overflow-y: auto;
}
.bi-arrow-left{
    font-size: 28px;
    position: absolute;
    left: 24px;
    top: 24px;
    width: 50px;
    cursor: pointer;
}
.modal-header{
    background-color: var(--tertiary-color);
    height: 64px;
}
.service-option-block{
    border: solid var(--tertiary-color) 2px;
    width: 318px;
    height: 184px;
    border-radius: 8px;
    color: var(--tertiary-color);
}
p.service-text{
    text-align: center;
    opacity: 1;
    font-weight: bold;
    color: var(--tertiary-color);
    font-size: 16px;
}
.service-option-block:hover{
    background-color: var(--tertiary-color);
    color: var(--white-color);
}
.service-option-block:hover p.service-text{  color: var(--white-color);  }

.input-text-style-1{
    font-size: 24px;
    text-align: center;
    color: #003151;
}
.form-select{
    color: var(--tertiary-color);
    opacity: 0.5;
}

/* Buttons styles */
.btn.variant-1{
    background-color: var(--tertiary-color);
    border-radius: 16px;
    height: 64px;
    font-size: 16px;
    font-weight: bold;
    color: var(--white-color);
    max-width: 318px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
    border: none;
}
.btn.variant-1.disabled{
    border: none;
    background: rgba(180, 195, 204, 0.5);
    border-radius: 16px;
    color: white;
}
.btn.variant-2{
    background-color: var(--white-color);
    border-radius: 16px;
    height: 64px;
    font-size: 16px;
    font-weight: bold;
    max-width: 284px;
    color: var(--tertiary-color);
    border: solid 1px var(--tertiary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
}
.btn.variant-2.disabled{
    border: none;
    background: rgba(180, 195, 204, 0.5);
    border-radius: 16px;
    color: white;
}
.btn.variant-2:hover{
    background-color: var(--tertiary-color);
    border-radius: 16px;
    height: 64px;
    font-size: 16px;
    font-weight: bold;
    color: var(--white-color);
}
