/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif !important;
  background: #fff;
  font-weight: 600;
  color: #333;
}

.logo {
  color: #f7904d;
}

.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.header img {
  width: 20px;
}
.header-right ul {
  display: flex;
  list-style: none;
}

/* LAYOUT */
.container {
  padding: 20px;
}

.main-warpper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
/* LEFT PANEL */

.search-box {
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 30px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid #d1d1d1;
  position: relative;
  margin-bottom: 60px;
}

.search-box .icon {
  position: absolute;
  left: 7px;
  top: 7px;
}

.search-box .icon img {
  width: 15px;
}
.search-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 12px;
  color: #555;
}

.search-box input::placeholder {
  color: #999;
}
.left-section {
  width: 15%;
}
.left-section ul {
  list-style: none;
}

.header-right ul li {
  display: flex;
  align-items: center;
  margin-left: 12px;
}
.header-right ul li span {
  margin-left: 4px;
  display: inline-block;
  font-size: 11px;
  color: #9f9f9f;
}

.section {
  margin-bottom: 30px;
}

.section h3 {
  font-size: 14px;
  font-weight: 600;
  color: #6b6f76;
  border-bottom: 1px solid #dcdfe3;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.title {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin: 10px 0 6px;
}

.group ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 6px 0;
  color: #555;
  font-weight: 500;
}

/* INPUTS */
input[type="checkbox"],
input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: #4cb6b6;
  cursor: pointer;
}

/* CENTER */

/* CONTROLS ROW */
.controls {
  display: flex;
  align-items: center;
  gap: 25px;
}

.field {
  display: flex;
  font-size: 12px;
  color: #666;
  margin-bottom: 7px;
}

.field label {
  margin-bottom: 4px;
  margin-right: 6px;
}

.field input,
.field select {
  font-family: "Montserrat", sans-serif;
  border: 1px solid #dcdfe3;
  background: #fff;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 4px;
  min-width: 110px;
}

.mid-section {
  display: flex;
  justify-content: space-between;
}
.mid-section .mid-sec-inn {
  margin: 0 20px;
}
.mid-sec-inn ul {
  list-style: none;
}
.mid-sec-inn ul li {
  font-size: 11px;
  color: #555;
  font-weight: 500;
  margin-bottom: 4px;
}
.mid-section .mid-sec-inn:first-child,
.mid-section .mid-sec-inn:last-child {
  margin: 0;
}
.mid-sec-inn .mid-sec-inn h3 {
  font-size: 16px;
  font-weight: 500;
}
.mid-sec-inn .feild {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}

.mid-sec-inn .feild .feild-span {
  display: inline-block;
  margin: 0 10px;
  font-size: 12px;
}
.mid-sec-inn h3 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 15px;
}
/* HIDE DEFAULT */
.custom-checkbox input {
  display: none;
}

/* BOX */
.custom-checkbox .checkmark {
  width: 14px;
  height: 14px;
  background: #4cb6b6;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

/* TICK */
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: -2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* OPTIONAL: UNCHECKED STATE */
.custom-checkbox input:not(:checked) + .checkmark {
  background: #dcdfe3;
}

.custom-checkbox input:not(:checked) + .checkmark::after {
  display: none;
}

/* SLIDER */
input[type="range"] {
  width: 140px;
  height: 5px;
  background: #dcdfe3;
  border-radius: 2px;
  appearance: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: #4cb6b6;
  border-radius: 50%;
}

/* CHART AREA */
.chart {
  margin-top: 35px;
  border-top: 1px solid #e2e5e9;
  position: relative;
}

.chart p {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 13px;
  color: #555;
}

/* RIGHT PANEL */
.right {
  width: 240px;
}

/* RUN BUTTON */
.run-btn {
  width: 100%;
  background: #4cb6b6;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.2s;
}

.run-btn:hover {
  background: #3aa5a5;
}

/* SLIDERS RIGHT */
.sliders label {
  font-size: 12px;
  color: #555;
  margin-bottom: 12px;
  display: block;
}

.sliders input {
  width: 100%;
  margin-top: 4px;
}

/* SHARPE */
.sharpe {
  margin: 15px 0;
  font-size: 12px;
  color: #555;
}

/* RESULT CARD */
.result {
  background: #eef2f4;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
}
.result img {
  width: 25px;
  margin-right: 15px;
}

.result p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.result span {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  font-weight: 600;
  color: #4cb6b6;
}

.tab-area {
  margin-bottom: 60px;
}

.tab-area .tab-buttons {
  font-family: "Montserrat", sans-serif;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  padding: 8px 18px;
  background: #f2f1f6;
  color: #000;
  margin: 0 18px;
}
.tab-area .tab-buttons:first-child,
.tab-area .tab-buttons:last-child {
  margin: 0;
}
.tab-area .tab-buttons.active {
  background-color: #4cb6b6;
  color: #fff;
}

.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(to right, #4cb6b6 50%, #dcdfe3 50%);
  outline: none;
  cursor: pointer;
}

/* THUMB */
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #4cb6b6;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #4cb6b6;
  margin-top: -2px;
  cursor: pointer;
}

.custom-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #4cb6b6;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #4cb6b6;
  cursor: pointer;
}

.right-section {
  width: 85%;
}
.left-section .group {
  margin-bottom: 30px;
}
.left-section .group ul li {
  display: flex;
}
.chart-section {
  display: flex;
  margin-top: 40px;
}
.chart-inn img {
  width: 100%;
}

.footer-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
.footer-left p {
  max-width: 390px;
  font-size: 12px;
  font-weight: 500;
}
.footer-center ul {
  display: flex;
  list-style: none;
}
.footer-center ul li {
  margin: 0 5px;
  position: relative;
}
.footer-center ul li::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -6px;
  border-right: 2px solid #555;
  height: 18px;
}
.footer-center ul li:last-child:after {
  content: none;
}
.footer-center ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #555;
}
.guide-section .guid-left img {
  width: 35px;
}
.guide-section .guid-right img {
  width: 60px;
}
.guid-top {
  display: flex;
  justify-content: space-between;
}
.guide-section p {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin: 20px 0 10px;
}
.guid-btn {
  background: transparent;
  color: #c7c8ce;
  border: 1px solid #c7c8ce;
  border-radius: 10px;
  font-size: 15px;
  padding: 10px 20px;
}
.guid-left {
  display: flex;
  align-items: center;
}
.guid-left img {
  margin-right: 5px;
}
.footer-left h4 {
  color: #555;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}
.footer-left ul {
  list-style: none;
  display: flex;
  margin-top: 25px;
}
.footer-left ul li {
  margin-right: 10px;
  color: #555;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.footer-left ul li img {
  width: 20px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Hide default */
.radio input {
  display: none;
}

/* Custom circle */
.custom-radio {
  width: 13px;
  height: 13px;
  border: 2px solid #4db6ac;
  border-radius: 50%;
  position: relative;
}

/* Selected state */
.radio input:checked + .custom-radio::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #4db6ac;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .container {
    flex-direction: column;
    padding: 30px;
  }

  .left,
  .right {
    width: 100%;
  }

  .controls {
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .mid-section .mid-sec-inn {
    margin: 0 14px;
  }
}

@media (max-width: 991px) {
  .mid-section {
    flex-wrap: wrap;
  }
  .mid-section .mid-sec-inn {
    margin: 0 14px 30px;
  }
  .footer-center {
    margin: 20px 0px;
    border-top: 1px solid #c7c8ce;
    border-bottom: 1px solid #c7c8ce;
    padding: 15px 0;
  }
  .footer-area {
    display: block;
  }
  .footer-left p {
    width: 100%;
  }
  .guid-top {
    justify-content: left;
  }
  .guid-right {
    margin-left: 18px;
  }
  .guide-section p {
    margin: 20px 0 20px;
  }
  .tab-area,
  .search-box {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .main-warpper {
    display: block;
  }
  .left-section,
  .right-section {
    width: 100%;
  }
  .container {
    padding: 15px;
  }
  .mid-section .mid-sec-inn {
    margin: 0 0px 30px;
  }
  .tab-area .tab-buttons {
    padding: 5px 8px;
    font-size: 12px;
    margin: 0 5px;
  }
  .mid-section .mid-sec-inn {
    margin-bottom: 20px !important;
  }
  .group-wrap {
    display: flex;
  }
  .left-section .group {
    margin-bottom: 0;
  }
  .footer-center ul li a {
    font-size: 14px;
  }
}

@media (max-width: 411px) {
  .tab-area .tab-buttons {
    font-size: 10px;
  }
  .footer-center ul li {
    margin: 0 10px;
  }
  .footer-center ul li::after {
    height: 13px;
    left: -10px;
  }
}
