:root {
    --primary: #0984e3;
    --secondary: #ff669b;
    --white: #ffffff;
    --black:#08294d;
}


/* costing idea page */
.costing-idea{
    position:fixed;
    width: 0;
    height: 100%;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    transition: 0.3s;
    overflow-y: auto;
}

#home-btn{
  background: var(--primary);
}
#home-btn:hover{
  background: #0056b3;
}


.calculation-box {
    background-color: #eee;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  }

  .calculation-box h4 {
    font-size: 20px;
    color:var(--primary);
  }

  .input-box {
    margin: 20px 0;
  }

  .input-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 5px;
    color: var(--secondary);
  }

  .input-box input {
    width: 100%;
    padding: 10px;
    border:none;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: all 0.1s;
  }
  .input-box input:focus{
    outline: 2px solid #ff669b;
  }

  input[type="button"] {
    background-color: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  input[type="button"]:hover {
    background-color: #0056b3;
  }
  .result-box-column{
    display: none;
  }
  .box {
    background: #fff;
    display: inline-block;
    opacity: 1;
    height: 100%;
    transform: scale(1);
    overflow: hidden;
    border-bottom: 20px solid #03a9f4;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 0.3s;
  }
  .box h2 {
    color: #fff;
    background: #03a9f4;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .box ul {
    position: relative;
    text-align: left;
    padding-left: 0;
  }
  .box ul li {
    list-style: none;
    padding:2px 10px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    transition: transform 0.5s;
  }
  .box ul li span {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background: #25bcff;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(-2px);
  }

  .error-popup{
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background:rgba(0, 0, 0, 0.3);
    z-index: 999;
    top: 0;
    left: 0;
    transition: all 0.3s;
  }
  .error-popup .popup-content{
    box-sizing: border-box;
    background: var(--white);
    padding: 60px 20px;
    border-top: 30px solid #0984e3;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s;
  }
  .error-popup .popup-content button{
    background: var(--primary);
    transition: all 0.3s;
  }
  .error-popup .popup-content button:hover{
    background: #0056b3;
  }
  .error-popup p, .error-popup button{
    color: black;
  }