*, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #fff;
    /*background: url("../img/background.png");*/
    /*-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;*/
    background-size: cover;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.calculator {
    width: 100%;
    /*margin-top: 15vh;*/
    float: left;
}

.aside {
    float: left;
}

.left-side {
    width: 60%;
}

.right-side {
    width: 40%;
}

.summary-section ul, .error-message {
    font-weight: normal;
    list-style: inside;
    list-style: none;
    padding: 0;
}

.error-message {
    margin-bottom: 40px;
    width: 100%;
}

.error-message li.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.error-message li.warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.error-message:empty {
    display: none;
}

.summary-section ul li {
    border-top: 1px solid #474747;
    padding: 5px;
    color: #383838;
}

.summary-section ul li span {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}

.summary-section ul li span:nth-child(1) {
    width: 60%;
    text-align: left;
}

.summary-section ul li span:nth-child(2) {
    width: 40%;
    text-align: right;
    font-weight: 700;
}

.summary-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #b09e66;
    margin: 20px 0 20px;
}

.summary-section p {
    color: #383838;
    font-weight: 300;
    font-size: 16px;
}

.calculator-section {
    width: 92%;
    margin-right: 8%;
    float: left;
    margin-top: 80px;
    position: relative;
}

.cart-section {
    background: #fafafa;
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 140px 10% 70px;
    width: 80%;
    float: left;
}

.align-center-div {
    text-align: center;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: auto;
    width: 370px;
}

.round-section {
    width: 159px;
    border: 8px solid #fafafa;
    border-radius: 121px;
    height: 159px;
    position: relative;
    float: left;
    background: #fff;
}

.round-section span, .round-section span input {
    width: 100%;
}

.inner-cart-section {
    background-color: #d086d3;
    color: #fff;
    background-image: linear-gradient(90deg, #d086d3 0%, #a074dc 100%);
}

.inner-cart-section span {
    height: 30px;
    font-size: 35px;
    float: left;
}

.inner-cart-section span input {
    height: 35px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.4);
    width: 90%;
    border: none;
    padding-left: 30px;
    border-radius: 30px;
}

.inner-cart-section span input:focus {
    outline: none;
}

.inner-cart-section span~span:before {
    content: "\f154";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    bottom: 26px;
    font-size: 20px;
}

.inner-detail-section {
    background: #428bca;
    background: linear-gradient(to left, #5b37d0, #7f51dd);
    margin-left: 20px;
}

.inner-cart-section-box {
    height: 100px;
}

.inner-detail-section-box {
    height: 70px;
}

.inner-detail-section-box span {
    color: #fff;
    font-weight: 600;
    text-align: center;
    float: left;
}

.inner-cart-section-box span~span, .inner-detail-section-box span~span {
    margin-top: 15px;
}

.inner-detail-section-box, .inner-cart-section-box {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}

.deposit-section {
    width: 70%;
    float: left;
    border: 1px solid #cecece;
    border-radius: 4px;
    position: relative;
    margin: auto 15%;
}

.deposit-section:before {
    content: "\f154";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    height: 14px;
}

.deposit-section label {
    line-height: 25px;
    float: left;
    font-weight: 300;
    text-align: left;
    padding: 0 15px;
    color: #2A2A2A;
    background: #fafafa;
    position: absolute;
    left: 15px;
    top: -12px;
}

.deposit-section input {
    height: 45px;
    float: left;
    width: 100%;
    font-weight: 700;
    padding: 0 35px;
    border: none;
    background: none;
    font-size: 20px;
}

.deposit-section i.fa {
    font-size: 20px;
    float: left;
    width: 35px;
    color: #2A2A2A;
    position: absolute;
    right: 0;
    bottom: 13px;
    text-align: center;
}

.start-paying-section, .slider-section {
    width: 100%;
    float: left;
    margin-top: 35px;
}

.start-paying-section {
    background-color: #1AA889;
    color: #fff;
    padding: 10px 5%;
    width: 90%;
}

.start-paying-section i.fas {
    margin-right: 5%;
}

body .irs--big .irs-bar--single {
    background: #303f9f;
    background: -webkit-linear-gradient(45deg, #303f9f, #7b1fa2) !important;
    background: -moz- oldlinear-gradient(45deg, #303f9f, #7b1fa2) !important;
    background: -o-linear-gradient(45deg, #303f9f, #7b1fa2) !important;
    background: linear-gradient(45deg, #303f9f, #7b1fa2) !important;
}

body .irs--big .irs-handle {
    background: #582DA0;
}

body .irs--big .irs-handle.state_hover, body .irs--big .irs-handle:hover {
    background: #7820A2;
}

body .irs--big .irs-grid-text {
    color: #000000;
    font-weight: 700;
}

body .irs--big .irs-from, body .irs--big .irs-to, body .irs--big .irs-single, body .irs--big .irs-min, body .irs--big .irs-max {
    background: #ff5a92;
}

.calculator-text {}

.calculator-text p.small-text {
    font-size: 12px;
    display: inline-block;
    width: 100%;
    line-height: 17px;
}

.calculator-text h2 {
    line-height: 44px;
    color: #b09e66;
    margin-top: 15px;
}

.calculator-text p {
    line-height: 30px;
    margin-bottom: 15px;
}

.calculator-text ul {
    margin-left: 25px;
}

.calculator-text ul li {
    line-height: 30px;
}

.accordion {
    color: #444;
    cursor: pointer;
    padding: 10px 25px 10px 10px;
    border: 1px solid #c5c5c5;
    background: #fafafa;
    text-align: left;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
    margin-top: 30px;
    position: relative;
}

#accordion {
    margin-bottom: 30px;
}

.active, .accordion:hover {
    background-color: #f6f6f6;
}

.panel {
    padding: 14px 10px 0 10px;
    display: none;
    background-color: #fafafa;
    border: 1px solid #c5c5c5;
    position: relative;
    top: -1px;
}

.panel img {
    width: 100%;
}

h3.accordion.ui-accordion-header:after {
    content: "+";
    font-size: 30px;
    position: absolute;
    right: 7px;
    top: 0;
    bottom: 0;
}

h3.accordion.ui-accordion-header.ui-state-active:after {
    content: "-";
}