.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 1px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #4bb543;
}

input:focus+.slider {
    box-shadow: 0 0 1px #4bb543;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
.dropdown {
    position: relative;
    font-size: 14px;
    color: #333;
  
    .dropdown-list {
      padding: 12px;
      background: #fff;
      position: absolute;
      top: 30px;
      left: 2px;
      right: 2px;
      box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
      transform-origin: 50% 0;
      transform: scale(1, 0);
      transition: transform .15s ease-in-out .15s;
      max-height: 66vh;
      overflow-y: scroll;
    }
    
    .dropdown-option {
      display: block;
      padding: 8px 12px;
      opacity: 0;
      transition: opacity .15s ease-in-out;
    }
    
    .dropdown-label {
      display: block;
      height: 30px;
      background: #b80000;
      border: 1px solid #000000;
      padding: 6px 12px;
      line-height: 1;
      cursor: pointer;
      
      &:before {
        content: '▼';
        float: right;
      }
    }
    
    &.on {
     .dropdown-list {
        transform: scale(1, 1);
        transition-delay: 0s;
        
        .dropdown-option {
          opacity: 1;
          transition-delay: .2s;
        }
      }
      
      .dropdown-label:before {
        content: '▲';
      }
    }
    
    [type="checkbox"] {
      position: relative;
      top: -1px;
      margin-right: 4px;
    }
  }
  
  .table_text {
    text-align: center;
    text-align-last: center;
}
:is([dir=ltr] table tbody tr td), :is([dir=ltr] table tfoot tr th), :is([dir=ltr] table thead tr th) {
    text-align: left;
    width: 4px;
}
.subscribe-btn {
    width: 240px;
}

.rental-box {

  font-size: 16px;
  font-weight: 700;
  margin-left: 0px;
  margin-top: 40px;
}
.portfolio{
  font-size: 25px;
  font-weight: 700;
  float: right;
}
.portfolio-text{
  float: inline-end;
}

.login-btn-custom {
  background: #F9D28F !important;
  color: #000000 !important;
}