.whole-configuration-container {
  background: #fff;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  height: 100%;
  position: relative;
  width: 100%;
}

.whole-page-title {
  font-size: 15px;
  font-weight: 500;
  color: #555555;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 20px;
  box-shadow: 0 2px 8px 0 rgb(105 105 105 / 30%);
}

.sub-container {
  display: flex;
  height: 100%;
  position: relative;
  width: 100%;
  border: 10px solid #eeeeee;
}

.controls-container {
  height: 100%;
  width: 410px;
  border-right: 1px solid #eeeeee;
  border: 10px solid #eeeeee;
  border-top: none;
  border-left: none;
  font-family: Roboto;
  overflow:auto;
  padding-bottom: 65px;
}

.controls-container-header {
  color: #148c9c;
  font-size: 18px;
  font-weight: 500;
  padding: 12px;
}

.controls-container-content {
  padding-left: 20px;
}

.control-dropdown-wrapper {
  display: flex;
  flex-direction: row;
  margin: 10px;
  margin-left: 0;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fcfcfc;
  border: 2px dashed #eeeeee;
  height: 71px;
  width: 90%;
  justify-content: space-between;
}

.control-dropdown-label {
  display: flex;
  color: #555555;
  font-weight: 500;
  font-size: 14px;
  flex-direction: row;
  column-gap: 10px;
  align-items: center;
  width: 52%;
}

.icons-wrapper {
  display: flex;
  flex-direction: row;
}

.regfield-icon {
  height: 15px;
  width: 15px;
}

.ti-widget-dropdown {
  width: max-content;
  height: 25px;
  border: none;
  background-color: #eeeeee;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #555555;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 25px;
}

/* Styles for the slider */
.slider {
  position: absolute;
  cursor: pointer;
  height: 22px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 50px;
}

/* Styles for the slider thumb */
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Styles for the slider when in 'on' state */
input:checked + .slider {
  background-color: #158c9c;
}

input:checked + .slider:before {
  transform: translateX(16px);
}

input.style-scope.ti-custom-configpage {
  position: relative;
  bottom: 13px;
}

.cable-drop-main-container {
  margin-top: 10px;
  height: 85%;
  width: 75%;
  overflow: auto;
  display: flex;
  flex-direction: row;
}

.cable-spec-container {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  width: 300px;
  overflow:auto;
  padding-right:10px;
}

@media (max-height: 599px) {
 .cable-spec-container {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  width: 300px;
  height:130vh;
  overflow:auto;
  padding-right: 4px;
}
}

.cable-spec-container-child {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  width: 200px;
  overflow:auto;
}

.border-right {
  border-right: 1px solid #eeeeee;
}

.cable-drop-container {
  padding-left: 20px;
}

.cable-drop-graph-container {
  padding-left: 30px;
  height: 100%;
  width: 100%;
  overflow: auto;
  padding-bottom: 70px;
}

.cable-spec-input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.cable-spec-input {
  width: 70px;
  height: 25px;
  border: none;
  background-color: #ffffff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #148c9c;
  margin-left: 15px;
  text-align: center;
  outline: auto;
}

.vcdc-value{
  width: 70px;
  height: 25px;
  border: none;
  background-color: transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #148c9c;
  margin-left: 15px;
  text-align: center;
}

.vcdc-value-text{
  color: #148c9c;
  font-size: 15px;
  font-weight: 500;
}

/* .text-vcdc{
  margin-left: 16px;
} */

.cable-spec-label {
  font-size: 13px;
  font-weight: 500;
  margin-left: 15px;
  color: #586165;
}

.paper-button-div{
    display:flex;
    align-items:center;
    justify-content:center;
}

.calculate-graph {
  background-color: #cc0000;
  color: #fff;
  border-radius: 3px;
  width: 110px;
  height: 30px;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  position: relative;
  right: 2px;
}

.warning-popup-cover {
  position: absolute;
    z-index: 99;
    right: 5%;
    bottom: 15%;
    padding: 15px;
    box-shadow: 0 0 2px 2px #cc0000;
    border-radius: 6px;
    background: #cc0000;
    color: white;
    font-weight: 600;
    height: 50px;
    width: 200px;
    text-align: center;
    animation: fade 1s linear;
}

input[type=number]::-webkit-inner-spin-button {
  opacity: 1
}



@keyframes fade {
  0%{ opacity: 0 }
  100% { opacity: 1 }
}




