@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800&display=swap');

body {
    margin:0;
    font-family: "Inter";
    font-size:14px;
    color:#27303D;
}

.dropdowns {
    position: absolute;
    z-index: 999;
    background-color: #fff;    
    max-height: 200px;
    overflow-y: auto;
}

.dropdowns::-webkit-scrollbar {
    background-color: #fff;
    width: 16px;
}

.dropdowns::-webkit-scrollbar-track {
    background-color: #fff;
}

.back_button {
    margin-bottom: 75px;
}

.save_button {
    margin-bottom: 75px;
}

.dropdowns::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 4px solid #fff;
}

.dropdowns::-webkit-scrollbar-button {
    display: none;
}

.add_project_area .back {
    width: 100%;
    display: inline-block;
    margin-bottom: 75px;
    text-align: left;
    float: left;
}

.add_project_area .back span svg{
  float:left;
  margin-right: 12px;
}

.add_project_area .back span{
  font-family: Work Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}

.add_project_area .back a{
  color:unset;
  text-decoration: none;
}

.input_area_button {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.op0 {
    opacity: 0;
    pointer-events: none;
}

.tab_area {
    display: inline-block;
}

.overflow {
    overflow:hidden;
    position: relative;
}

.floor_manager .dropdowns li {
    width: calc(100% - 32px );
}

.dropdowns li:hover {
    background-color: #EFEFEF;
}

.dropdowns li:first-child:hover {
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdowns li:last-child:hover {
    -webkit-border-bottom-right-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -moz-border-radius-bottomright: 8px;
    -moz-border-radius-bottomleft: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.create_floor input.floor_name {
    width: calc(300px - 32px);
    outline: none;
}

.upload_box {
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer !important;
}