* {
    font-family: 'PT Sans', Arial;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(155, 155, 155, 0.5);
  border-radius: 3px;
  border: transparent;
}
html {
    overflow: hidden;
}
body {
    margin: 0;
    background-color: #fff;
}

.calc_header {
    border-radius: 6px 6px 0 0;
    background: linear-gradient(0deg, #efefef, #fefefe);
    border: solid #ccc 1px;
    margin-bottom: 0;
    padding: 7px 20px;
    font-weight: bold;
    font-size: 14px;
}

.left {
    display: flex;
    flex: 73%;
}

.left label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding: 5px 10px 5px 20px;
    background: #f3f3f3;
    width: calc(100% - 31px);
    display: inline-flex;
    border-right: 1px solid #ccc;
}

#info {
    justify-content: space-between;
}

label a {
    color: #4083b2;
}

.right {
    display: flex;
    flex: calc(27% - 40px);
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 0 20px 20px;
    background: #f3f3f3;
    border-radius: 0px 0px 6px 0px;
}

#share {
    font-size: 12px;
    float: right;
}

#content {
    box-shadow: 0 2px 2px rgb(0 0 0 / 10%);
    margin-bottom: 20px;
    border-radius: 0px 0px 6px 6px;
    border: solid #ccc 1px;
    border-top: none;
}

#parrent {
    border-radius: 0 0 0 6px;
}

.column {
    flex: 50%;
}

.inputs {
    flex: 50%;
    margin-top: 3px;
    margin-bottom: 18px;
}

.text-success {
    font-size: 24px;
    margin-top: 10px;
}

.text-info {
    color: #027faa;
}

.right label {
    margin-bottom: 0.625rem;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.controls {}

ul {
    font-size: 14px;
    color: #000;
    border-right: solid #ccc 1px;
    background-color: #fbfbfb;
    width: calc(100% - 1px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: auto !important;
    border-left: none;
    border-bottom: none;
    border-top: none;
    border-radius: 0;
    scrollbar-width: thin;
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    display: none;
}

li.checked {
    background: #698cb1;
    color: #fff;
}

ul li {
    padding: 5px 10px 5px 20px;
}

ul li:hover {
    cursor: pointer;
}

input {
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    border-radius: 4px;
    color: #000;
    border: solid #d2d2d2 1px;
    background-color: #fbfbfb;
    width: calc(100% - 42px);
}

form {
    display: flex;
    flex-wrap: wrap;
}

.footer {
    padding-right: 20px;
}

span {
    color: #333;
    font-size: 14px;
    display: block;
}

#final_price span {
    color: #000;
}

#price {
    margin-right: 20px;
    flex: 100%;
    margin-top: 49px;
    text-align: right;
}

#final_price {
    margin-bottom: 20px;
    flex: 100%;
    margin-top: 20px;
    text-align: right;
}

.btn_container {
    width: calc(100% - 40px);
}

#add {
    float: right;
    padding: 4px 8px 5px 8px;
    font-weight: bold;
    color: white;
    border-radius: 6px;
    background: linear-gradient(0deg, #3a5e88, #6588b3);
    border: 1px solid #43658d;
    font-size: 14px;
    cursor: copy;
}

#share {
    float: right;
    padding: 4px 8px 5px 8px;
    font-weight: bold;
    color: white;
    border-radius: 6px;
    background: linear-gradient(0deg, #318929, #59a53d);
    border: 1px solid #318929;
    font-size: 14px;
    cursor: copy;
    text-decoration: none;
    margin-right: 20px;
    margin-bottom: 20px;
}

#excel {
    float: right;
    padding: 4px 8px 5px 8px;
    font-weight: bold;
    color: #333333;
    border-radius: 6px;
    background: linear-gradient(0deg, #f2f2f2, #ffffff);
    border: 1px solid #ccc;
    font-size: 14px;
    cursor: pointer;
    margin-right: -20px;
}

#price-table {
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
}

thead {
    background: #f3f3f3;
    text-align: left;
}

th:nth-child(8) {
    border-right-color: #f3f3f3;
}

th:nth-child(9) {
    border-left-color: #f3f3f3;
}

.delete {
    width: 10px;
    padding: 5px;
}

.well {
    margin-bottom: 45px;
    display: none;
}

.show {
    display: block;
    width: 100%;
}

textarea {
    width: 100%;
    margin-bottom: 10px;
}

button {
    float: right;
}

#install {
    max-width: 67%;
    float: left;
    font-size: 14px;
    margin: 0;
}
