:root {
    --backgr-prime-color: #f5f5f5;
    --backgr-shadow1-color: #d1d9e6;
    --backgr-shadow2-color: #ffffff;
    --backgr-shadow3-color: rgba(0, 0, 0, .15);
    --backgr-shadow4-color: rgba(255, 255, 255, 0.87);
    --backgr-shadow5-color: rgba(0, 0, 0, 0.37);
    --backgr-menu-color: #e7e7e7;
    --backgr-tab-button-color: #7effab;
    --text-prime-color: #3d3d3d;
    --text-sec1-color: #5d5d5d;
    --img-tabs-filter: brightness(100%) invert(0%);
}

[data-theme="dark"] {
    --backgr-prime-color: #2c2c2c;
    --backgr-shadow1-color: rgba(84, 52, 52, 0.51);
    --backgr-shadow2-color: rgba(0, 0, 0, 0.51);
    --backgr-shadow3-color: rgba(75, 75, 75, 0.15);
    --backgr-shadow4-color: rgba(9, 0, 0, 0.87);
    --backgr-shadow5-color: rgba(0, 0, 0, 0.37);
    --backgr-menu-color: #272728;
    --backgr-tab-button-color: #3a8d58;
    --text-prime-color: #d7d4d4;
    --text-sec1-color: #cbb3b3;
    --img-tabs-filter: brightness(0%) invert(100%);
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat'), url("../static/fonts/Montserrat/Montserrat-Medium.a98626e1aef6.ttf") format("truetype");
}

@font-face {
    font-family: 'MuseoModerno';
    src: local('MuseoModerno'), url("../static/fonts/MuseoModerno/static/MuseoModerno-Medium.59a4933fc606.ttf") format("truetype");
}

body {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    background-color: var(--backgr-prime-color);
    font-family: "Montserrat";
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

h1 {
    font-size: 30px;
    color: #FFA61BFF;
}

h2 {
    margin-block-start: 0;
    color: var(--text-sec1-color);
    margin-block-end: 0.2em;
}

h3 {
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
    color: var(--text-sec1-color)
}

.block-title {
    color: var(--text-sec1-color)
}

.step-title {
    display: flex;
    justify-content: center;
    font-family: "MuseoModerno";
    font-weight: 400;
    font-size: 20px;
    color: #a9a9a9;
}

#main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1448px;
    margin: 0 auto;
}

.info-container {
    min-width: 1050px;
}

input, select, textarea, button {font-family:inherit;}

input {
    font-size: 15px;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    width: 200px;
}

th {
    min-width: 60px;
}

.table-zone-name{
    min-width: 150px;
}

.sections {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    width: 100%;
    /*overflow: hidden;*/
    /*height: calc(100% - 140px);*/
}

.vertical-section {
    /*display: flex;*/
    flex: 0 0 25%;
    box-sizing: border-box;
    min-width: 350px;
    max-width: 500px;
    padding: 0 5px 5px 5px;
    height: 100%;
    /*overflow: hidden;*/
}

.vertical-section__body {
    overflow-y: auto;
    max-height: calc(100vh - 140px);
    border-radius: 13px;
    background: var(--backgr-prime-color);
    box-shadow: inset 2px 2px 3px var(--backgr-shadow1-color), inset -2px -2px 3px var(--backgr-shadow2-color);
    padding: 8px;

    &::-webkit-scrollbar-thumb:hover {
        background: #b6b6b6 !important;
    }

    &::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
        background-color: rgba(255, 255, 255, 0);
        margin-top: 7px;
        margin-bottom: 7px;
    }

    &::-webkit-scrollbar {
        width: 6px;
        background-color: rgba(241, 241, 241, 0);
    }

    &::-webkit-scrollbar-thumb {
        background-color: #d7d7d7;
        border-radius: 3px;
        border-right: 10px;
        background-clip: padding-box;
    }

}

#metrics-chart * {
    overflow: hidden !important;
}

#metrics-chart {

}


.break {
    flex-basis: 100%;
    height: 0;
}

@media (min-width: 1448px) {
    .break {
        flex-basis: 0;
        height: 0;
    }
}


@media (max-width: 1447px) {
    body {
        overflow: visible;
    }
    .vertical-section__body {
        overflow-y: visible;
        max-height: none;
    }
}

.lines-box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.two-lines-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.inout-line--half {
    width: calc(50% - 5px);
    box-sizing: border-box;
    margin: 5px;
}

.inout-line {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-prime-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.inout-line label{
    float: left;
    margin-left: 10px;
}

.line-hat {
    color: #3d3d3d;
}

.input-colors {
    height: inherit;
    margin-left: auto;
    border-radius: 26px;
    border: 0;
    background: #ffe97c;
    box-shadow: inset 4px 4px 3px #dc9400, inset -2px -2px 3px #fffbe4;
}

.input-colors--disabled {
    color: #afafaf;
    background: #fff4d3;
    box-shadow: inset 4px 4px 3px #d2bd8b, inset -2px -2px 3px #fffbe4;
}

.input-colors--disabled::placeholder {
    color: #c7c7c7;
}

.input-div {
    height: 26px;
    margin-left: 10px;
}

.input-div input:nth-child(1), select:nth-child(1) {
    padding-block: 0;
    padding: 0 0 0 10px;
    height: inherit;
    margin-left: auto;
    border-radius: 26px;
    border: 0;
    background: #ffe97c;
    box-shadow: inset 4px 4px 3px #dc9400, inset -2px -2px 3px #fffbe4;
}

.recaptcha-box {
    display: flex;
    justify-content: center;
}


.output-colors {
    height: inherit;
    margin-left: auto;
    border-radius: 26px;
    border: 0;
    background: var(--backgr-prime-color);
    box-shadow: inset 4px 4px 3px var(--backgr-shadow1-color), inset -2px -2px 3px var(--backgr-shadow2-color);
    align-self: center;
    line-height: 26px;
}

.output-colors--shadow2 {
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.15) inset, 0px -3px 4px 0px rgba(255, 255, 255, 1) inset !important;
}

.collapse-button {
    position: relative;
    border-radius: 50%;
    height: 26px;
    width: 26px;
    margin-left: auto;
    /*border-radius: 26px;*/
    border: 0;
    /*box-shadow: -8px -4px 8px 0px var(--backgr-shadow2-color), 8px 4px 12px 0px var(--backgr-shadow1-color);*/
    overflow: hidden;
    text-align: center;
    font-weight: bold;
}

.collapse-button div {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    height: 80%;
    width: 80%;
    border-radius: 50%;
    box-shadow: -4px -2px 4px 0px var(--backgr-shadow1-color), 4px 2px 8px 0px #fff;
}

.metrics_zones_group {
    border-radius: 13px;
    border: 0;
    background: var(--backgr-prime-color);
    box-shadow: inset 2px 2px 3px var(--backgr-shadow1-color), inset -2px -2px 3px var(--backgr-shadow2-color);
}

.inout-size1 {
    padding: 0 0 0 0;
    width: 26px;
    text-align: center;
}

.inout-size2 {
    padding: 0 0 0 8px;
    width: 60px;
    align-items: center;
}

.inout-size3 {
    padding: 0 0 0 8px;
    width: 75px;
}

.inout-size-auto {
    padding: 0 0 0 8px;
}


.inout-line select {
    padding: 0 0 0 5px;
}

.inout-line--convex {
    height: 26px;
    border-radius: 26px;
    background: var(--backgr-prime-color);
    box-shadow: 4px 4px 3px var(--backgr-shadow1-color),-4px -4px 3px var(--backgr-shadow2-color);
    margin: 6px 0 0 0;
}

.inout-line--pressed_1 {
    height: 26px;
    border-radius: 26px;
    border: 0;
    background: var(--backgr-prime-color);
    box-shadow: inset 2px 2px 3px var(--backgr-shadow1-color), inset -2px -2px 3px var(--backgr-shadow2-color);
    margin: 4px;
    color: #000000;
}

.area--convex {
    min-height: 26px;
    border-radius: 13px;
    background: var(--backgr-prime-color);
    box-shadow: 4px 4px 3px var(--backgr-shadow1-color),-4px -4px 3px var(--backgr-shadow2-color);
    margin: 6px 0 6px 0;
}


.area--pressed {
    border-radius: 13px;
    border: 0;
    background: var(--backgr-prime-color);
    box-shadow: inset 2px 2px 3px var(--backgr-shadow1-color), inset -2px -2px 3px var(--backgr-shadow2-color);
}


.z_ppl_num {
    width: 40px;
    margin-left: auto;
}

.z_zones_num {
    width: 26px;
    margin-left: auto;
}

.z_area {
    width: 60px;
    margin-left: auto;
}

.del-spec-zone {
    width: 26px;
    color: #851111;
    font-weight: bold;
    font-size: 16px;
}

.inout-line__title {
    flex-grow: 1;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title--crossed {
    text-decoration: line-through;
    color: #a8a8a8;
}

.inout-line__price {
    border-collapse: collapse;
    width: 120px;
}

.inout-line__percent {
    border-collapse: collapse;
    width: 55px;
    color: #3d3d3d;
}

.zone_tumbler {
    margin-left: auto;
}

.dropdown-area {
    margin: 6px 0 6px 0;
}

.dropdown-area div:first-child {
    margin-top: 0 !important;
}


.description-field  {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 3px;

    &::-webkit-scrollbar-thumb:hover {
        background: #b6b6b6 !important;
    }

    &::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
        background-color: rgba(255, 255, 255, 0);
        margin-top: 7px;
        margin-bottom: 7px;
    }

    &::-webkit-scrollbar {
        width: 6px;
        background-color: rgba(241, 241, 241, 0);
    }

    &::-webkit-scrollbar-thumb {
        background-color: #d7d7d7;
        border-radius: 3px;
        border-right: 10px;
        background-clip: padding-box;
    }
}



.description-field__text {
    color: var(--text-sec1-color);
    font-size: 14px;
    box-sizing: border-box;
    max-width: 325px;

    padding: 5px 10px 5px 10px;
    margin-block-start: 0;
    margin-block-end: 0;

    white-space: pre-wrap;
    /*word-wrap: break-word;*/
}


.frozen {
    color: blue;
}

.hidden {
    display: none !important;
}



/*_____________zone_tumbler__________________*/

.zone_tumbler__label {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    color: var(--text-prime-color);
}

.zone_tumbler__toggle {
    margin-left: auto;
    isolation: isolate;
    position: relative;
    height: 26px;
    width: 52px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: -4px -4px 3px 0px var(--backgr-shadow2-color),
    8px 4px 12px 0px var(--backgr-shadow1-color),
    4px 4px 4px 0px var(--backgr-shadow1-color) inset,
    -4px -4px 4px 0px var(--backgr-shadow2-color) inset;
}


.zone_tumbler__toggle-state {
    display: none;
}

.zone_tumbler__indicator {
    height: 100%;
    width: 200%;
    background: var(--backgr-prime-color);
    border-radius: 15px;
    transform: translate3d(-75%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.85, 0.05, 0.18, 1.35);
    box-shadow: -4px -4px 8px 0px var(--backgr-shadow2-color),
    4px 4px 12px 0px var(--backgr-shadow1-color);
}

.zone_tumbler__toggle-state:checked ~ .zone_tumbler__indicator {
    transform: translate3d(25%, 0, 0);
    background: #ffe97c;
}


/*_____________zone_tumbler-END_________________*/


#recommend_area--details {
}

#area_distribute {
    float: right;
}

#meeting-zones > div > label {
    margin-right: 6px;
}

.line-color--working_zone {
    background: linear-gradient(0.25turn, #4ECBF2, #56EEEE);
}

.line-color--integrated {
    background: linear-gradient(0.25turn, #4ECBF2, #56EEEE);
}

.line-color--meeting_room {
    background: linear-gradient(0.25turn, #FFA800, #F36600);
}

.line-color--additional {
    background: linear-gradient(0.25turn, #F66DD0, #D735AA);
}

.line-color--backup_zone {
    background: linear-gradient(0.25turn, #AFAFAF, #AFAFAF);
}

.line-color--corridor {
    background: linear-gradient(0.25turn, #DFDFDF, #DFDFDF);
}

.output-shape {
    height: inherit;
    margin-left: auto;
    border-radius: 26px;
    border: 0;
    background: var(--backgr-prime-color);
    box-shadow: inset 4px 4px 3px var(--backgr-shadow1-color), inset -2px -2px 3px var(--backgr-shadow2-color);
    align-self: center;
    line-height: 26px;
    padding: 0 0 0 8px
}

/*_____________Materials categories colors_________________*/

.output-color--custom {
    background: rgba(218, 136, 246, 1);
}

.output-color--furniture{
    background: linear-gradient(252.67deg, #BF7FFF 58.28%, #A378FF 88.23%);
}

.output-color--partition {
    background: linear-gradient(296.58deg, #46F9B9 15.54%, #4DEFD2 20.8%);
}

.output-color--floor {
    background: linear-gradient(91.44deg, #FFA800 61.45%, #F36600 116.75%);
}

.output-color--plinth {
    background: rgba(255, 209, 45, 1);
}

.output-color--electricity {
    background: rgba(48, 182, 133, 1);
}

.output-color--light {
    background: linear-gradient(7.36deg, #EFFF3C 88.79%, #E5E911 94.03%);
}

.output-color--wall {
    background: linear-gradient(91.32deg, #3BB6EB 54.94%, #6398FF 113.89%);
}

.output-color--ceiling {
    background: linear-gradient(89.96deg, #64F761 44.98%, #9DDB39 96.82%);
}

.output-color--sanitary {
    background: linear-gradient(53.13deg, #FFA6A1 55.43%, #FFD6A6 79.6%);
}

.output-color--technics {
    background: linear-gradient(7.36deg, #FF6565 88.79%, #FF5656 94.03%);
}

.output-color--decor {
    background: rgba(255, 174, 247, 1);
}

.output-color--greenery {
    background: linear-gradient(57.62deg, #B8C05C 47.41%, #CEDC7A 80.49%);
}

/*_____________Materials categories colors END_________________*/


.unit-heading {
    font-size: 9px;
    font-weight: bold;
    color: var(--text-prime-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 5px;
}

.unit-heading > div{
    text-align: center;
}

.unit-heading__w1 {
    width: 26px;
}

.unit-heading__w2 {
    width: 60px;
}

#specific_input_mia > .unit-heading {
    margin-right: 10px;
}

/*#metrics_output > .unit-heading {*/
/*    margin-right: 10px;*/
/*}*/

/*#metrics_output > .unit-heading > .unit-heading__w1 {*/
/*    margin-left: 5px;*/
/*}*/


.grower {
    flex-grow: 1;
}


/*_____________budget-levels-radio__________________*/

.radio-input .label input {
    display: none;
}

.radio-input {
    display: flex;
    gap: 5px;
}

.radio-input .label {
    display: flex;
    margin-right: 5px;
    margin-left: 5px;
}

.radio-input .label .budget-level-chs {
    margin-left: auto;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    background: var(--backgr-prime-color);
    border-radius: 10px;
    box-shadow: inset 0px -3px 4px var(--backgr-shadow2-color), inset 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.budget-level-chs {
    width: 15px;
    height: 15px;
}

.radio-input .label input:checked + .budget-level-chs {
    background: #E5DC0D;
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.15), inset -2px -2px 5px rgba(255, 255, 255, 0.58);
}


#budget-chart {

}


/*_____________calc-head__________________*/

#calc-head {
    width: calc(100% - 8px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    color: var(--text-prime-color);
}

#calc-head__info {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    margin-bottom: 0px;
    max-height: 45px;
}

#loading_bar {
    display: flex;
    flex-direction: row;
}

#loading_bar img {
    width: 30px;
    height: 30px;
}

#manage_links {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-left: auto;
}

#nav-buttons {
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
}

.nav-button {
    display: flex;
    height: inherit;
    margin: 0 10px 0 10px;
    padding: 0 10px 0 10px;
    border-radius: 26px;
    border: 0;
    background: var(--backgr-prime-color);
    align-items: center;
    justify-content: center;
    line-height: 26px;
    font-weight: 600
}

.nav-button a{
    text-decoration: none;
    color: var(--text-sec1-color)
}

.nav-button--active {
    box-shadow: 1px 1px 2px #F46B01;
}

#develop_data {
    font-family: monospace;
    padding: 0 50px 20px 50px;
}


/*_____________user-menu__________________*/

#user-menu {
    position: relative;
    margin: 0 10px 0 40px;
}

#user-menu-button {
    display: flex;
    flex-direction: row;
}

.user-menu-button__username {
    display: block;
    margin: 0 10px 0 0;
    width: 230px;
    font-size: 14px;
    text-align: right;
}

.user-menu__drop-down__username {
    display: none;
    font-size: 14px;
}

@media (max-width: 1080px) {
   .user-menu-button__username {
        display: none;
    }

    .user-menu__drop-down__username {
        display: block;
    }

    .info-container {
        min-width: auto;
    }

}

@media (min-width: 1080px) {
   .user-menu-button__username {
        display: block;
    }

    .user-menu__drop-down__username {
        display: none;
    }

    .info-container {
        min-width: 1050px;
    }
}



#user-menu-button img {
    width: 30px;
    height: 30px;
}

#user-menu__drop-down{
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: var(--backgr-menu-color);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
}

#user-menu__drop-down ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#user-menu__drop-down ul li {
    padding: 8px 16px;
}

#logout-button {
    display: flex;
    width: 200px;
    /*margin: 0 10px 20px auto;*/
}

#logout-button a{
    color: var(--text-sec1-color)
    /*margin-left: auto;*/
}

/*_____________mobile-menu__________________*/

#mobile-menu {
    position: relative;
    margin: 0 0 0 40px;
    width: 100%;
}

#mobile-menu__drop-down {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    color: var(--text-prime-color);
    background-color: var(--backgr-menu-color);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
}

#mobile-menu__drop-down ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-inline-start: 20px;
}

#mobile-menu__drop-down ul {
    padding-inline-start: 20px;
}

#mobile-menu__drop-down ul li {
    padding: 8px 16px;
}

#mobile-menu-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width:50px;
    padding-top: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#mobile-menu-button div{
    width: 32px;
    height: 4px;
    background-color: #a9a9a9;
    margin: 6px 0;
}

#mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.mobile-nav-button {
    display: flex;
    height: inherit;
    width: 100px;
    margin: 0 0 10px 0;
    padding: 0 10px 0 10px;
    border-radius: 26px;
    border: 0;
    background: var(--backgr-prime-color);
    align-items: center;
    justify-content: center;
    line-height: 26px;
    font-weight: 600
}

.mobile-nav-button a{
    text-decoration: none;
    color: var(--text-sec1-color)
}

.mobile-nav-button--active {
    box-shadow: 1px 1px 2px #F46B01;
}


/*_____________END user-menu__________________*/


#app-name {
    display: flex;
    flex-direction: row;
    line-height: 45px;
    align-self: center;
    font-family: "MuseoModerno";
    font-weight: 400;
    font-size: 45px;
    color: #a9a9a9;
}

#app-name div:nth-child(2){
    margin-top: auto;
    font-family: "Courier New";
    font-weight: 600;
    font-size: 25px;
    line-height: 27px;
    color: #696969;
}

#calc-head-project {
    margin: 0 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px 0 0;
    width: calc(100% - 20px);
    z-index: 9;
}

#project_name {
    height: 26px;
    border-radius: 26px;
    border: 0;
    background: #ffe97c;
    box-shadow: inset 4px 4px 3px #dc9400, inset -2px -2px 3px #fffbe4;
    color: #000000;
    padding: 0 8px 0 8px;
    max-width: 200px;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#sections-tabs {
    display: flex;
    justify-content: center;
}

#sections-tabs fieldset{
    display: flex;
    justify-self: center;
    padding: 0 0 0 0;
    border: none;
}

#sections-tab__cur-tab-name {
    display: none;
    margin-right: 10px;
}


.sections-tab {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-prime-color);
    flex-direction: row;
    align-items: center;
    height: 26px;
    border-radius: 13px 13px 0px 0px;
    background: var(--backgr-prime-color);
    box-shadow: 4px 4px 3px var(--backgr-shadow1-color),-4px -4px 3px var(--backgr-shadow2-color);
    padding: 0 20px 0 20px;
    z-index: auto;
    transition: all .2s ease-out;
}

.sections-tab:has(> input:checked){
    background: var(--backgr-tab-button-color);
    z-index: 3;
}

.sections-tab label {
   margin-left: 0;
}
.sections-tab input {
    position: fixed;
    opacity: 0;
    pointer-events: none;

}

.sections-tabs__img {
    width: 20px;
    height: 20px;
    filter: var(--img-tabs-filter);
}

@media (min-width: 1080px) {
    .sections-tabs__img {
        display: none;
    }

    .sections-tabs__text {
        display: block;
    }

    #sections-tab__cur-tab-name {
        display: none;
    }
}

@media (max-width: 1080px) {
    .sections-tabs__img {
        display: block;
    }

    .sections-tabs__text {
        display: none;
    }

    #sections-tab__cur-tab-name {
        display: block;
    }
}



#request-time {
    display: flex;
    flex-direction: row;
}

#price_sum {
    display: flex;
    justify-content: right;
    width: 135px;
    text-align: right;
}

#mobile-calc-head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

#mobile-logo {
    display: flex;
    width: 50px;
    height: 50px;
    line-height: 45px;
    justify-content: center;
    align-items: center;
    z-index: 10;
    align-self: center;
    font-family: "MuseoModerno";
    font-weight: 400;
    font-size: 40px;
    color: #a9a9a9;
}


#mobile-outputs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 30px;
}

#mobile-outputs div{
    margin: 0 20px 0 20px;
}

#initial_form {
    margin: 10px auto 0 auto;

}

@media (min-width: 701px) {
    body {
        /*margin: 8px;*/
    }
    #calc-head-project {
        position: static;
        height: 26px;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 10px 0 0;
        width: calc(100% - 20px);
        border-radius: 13px;
        margin: 6px 0 6px 10px;
    }
    .grower {
        flex-grow: 1;
    }
    #project_name {
        position: static;
        margin: auto;
        height: 26px;
        border-radius: 26px;
        border: 0;
        background: #ffe97c;
        box-shadow: inset 4px 4px 3px #dc9400, inset -2px -2px 3px #fffbe4;
        padding: 0 8px 0 8px;
        line-height: 26px;
        font-size: inherit;
    }

    #calc-head {
        display: flex;
    }

    #mobile-calc-head{
        display: none;
    }

     #price_sum{
        display: flex;
    }

    #mobile-outputs{
        display: none;
    }

    .sections {
        margin-top: 0;
    }
}

@media (max-width: 700px) {
    body {
        margin: 0;
    }
    #calc-head-project {
        position: fixed;
        top: 0;
        left: 0;
        height: 105px;
        flex-direction: column;
        justify-content: end;
        padding: 0 0 0 0;
        width: 100%;
        border-radius: 0;
        margin: 0 0 6px 0;
    }
    .grower {
        flex-grow: 0;
    }
    #project_name {
        position: absolute;
        top: 0;
        left: 65px;
        margin: 0 10px 0 20px;
        height: 45px;
        border-radius: 0;
        border: 0;
        background: none;
        box-shadow: none;
        padding: 0 0 0 0;
        line-height: 45px;
        white-space: nowrap;
        font-size: 18px;
    }

    #calc-head {
        display: none;
        max-height: none;
    }

    #mobile-calc-head {
        display: flex;
    }

    #initial_form {
        margin: 50px auto 0 auto;
    }

    #price_sum {
        display: none;
    }

    #mobile-outputs {
        display: flex;
    }
    .sections {
        margin-top: 115px;
    }

    .info-container {
        margin-left: 40px;
    }

}


/*_____________END_calc-head__*/


#register-page {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100vw;
}

#accounts__intro-side {
    position: relative;
    background-color: #282938;
    flex: 0 0 55%;
    padding: 50px 10px 10px 50px;
}


#accounts__intro-side--mobile {
    display: none;
}


@media (max-width: 930px) {
    #register-page {
        flex-direction: column;
        height: 100vh;
    }

    #accounts__intro-side {
        display: none;
    }

    #accounts__intro-side--mobile {
        display: block;
    }

    #register-form-container {
        position: static;
    }
}

#accounts__login-side {
    display: flex;
    width: 100%;
    justify-content: center;
}

#register-form-container {
    position: absolute;
    top: 20vh;
}

#slogan {
    color: #ffa61b;
    font-size: 30px;
    margin: 50px 0 60px 0;
    max-width: 80%;
}


#theses {
    overflow-y: auto;
    padding-right: 3px;
    margin: 0 0 0 60px;
    margin-bottom: 0px;
    max-width: 750px;
    height: calc(100vh - 270px);
    z-index: 10;

    &::-webkit-scrollbar-thumb:hover {
        background: #e1cdad !important;
    }

    &::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
        background-color: rgba(255, 255, 255, 0);
        margin-top: 7px;
        margin-bottom: 7px;
    }

    &::-webkit-scrollbar {
        width: 6px;
        background-color: rgba(241, 241, 241, 0);
    }

    &::-webkit-scrollbar-thumb {
        background-color: rgba(225, 205, 173, 0.7);
        border-radius: 3px;
        border-right: 10px;
        background-clip: padding-box;
    }
}


#theses div {
    display: flex;
    flex-direction: row;
    margin: 0 30px 50px 0;
    width: fit-content;
    word-wrap: break-word;
}

#theses details summary h2 {
    display: flex;
    flex-direction: row;
    margin: 0 0 0 10px;
}

#theses details summary {
    display: flex;
}

#theses summary::before {
    content: '►  ';
    margin-left: 10px;
    color: #E1CDADFF;
}

#theses details[open] summary:before {
    content: "▼  ";
    margin-left: 10px;
    color: #E1CDADFF;
}

#theses details {
    list-style: none;
    margin: 10px 0 0 0;
    background-color: rgba(40, 41, 56, 0.74);
}

.theses-img {
    font-size: 20px;
    color: #e1cdad;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    z-index: 10;
}


.theses-title {
    font-size: 20px;
    width: fit-content;
    color: #e1cdad;
    background-color: #282938;
    z-index: 10;
    word-wrap: break-word;
    /*inline-size: min-content;*/
}

.these-descr {
    color: #E1CDADFF;
    max-width: 500px;
    margin: 0 30px 50px 30px !important;
}

#decor_plan {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    z-index: -1;
}

.button {
    height: 26px;
    padding: 4px 20px 6px 20px;
    background: #059f00;
    border: none;
    border-radius: 26px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .2rem;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: .2s ease-in-out;
    box-shadow: 6px 6px 5px var(--backgr-shadow3-color);
}

.submit-button {
    margin: 10px 0 0 0;
    padding: 5px 20px 5px 20px;
    background: #059f00;
    border: none;
    border-radius: 26px;
    color: #f5f5f5;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .2rem;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: .2s ease-in-out;
    box-shadow: -6px -6px 8px var(--backgr-shadow4-color),
    6px 6px 4px rgba(255, 255, 255, .075),
    6px 6px 5px rgba(0, 0, 0, .15);
}

.submit-button:hover {
    box-shadow: -2px -2px 5px var(--backgr-shadow5-color),
    2px 2px 1px rgba(255, 255, 255, 0.27),
    2px 2px 3px var(--backgr-shadow5-color);
}

.submit-button:active {
    box-shadow: inset -2px -2px 6px rgba(4, 42, 0, 0.7),
    inset 2px 2px 2px rgba(255, 255, 255, .075),
    inset 2px 2px 4px var(--backgr-shadow5-color);
}

.highlight-border {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 2px solid rgba(34, 255, 0, 0);
}

.highlight-border2 {
    outline: 2px solid rgba(34, 255, 0, 0);
}

.highlight-shadow {
    box-shadow: 0 0 6px #185e00;
}

.init-input__category {
    margin: 10px 0 0 0;
}




/*___________________________________Landing__________________*/

#landing-main {
    display: block;
    position: relative;
    z-index: 1;
    background-color: #282938;
    padding: 50px 10px 10px 50px;
    flex-direction: column;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

.landing-nav-button {
    width: fit-content;
    display: flex;
    position: absolute;
    right: 30px;
    height: 26px;
    padding: 0 10px 0 10px;
    border-radius: 26px;
    border: solid 2px #E1CDADFF;
    /*background: var(--backgr-prime-color);*/
    align-items: center;
    justify-content: center;
    line-height: 26px;
    font-weight: 600
}

.landing-nav-button a {
    text-decoration: none;
    color: #E1CDADFF;
}

@media (max-width: 1200px) {
    #decor_plan {
        display: none;
    }
}

@media (max-width: 800px) {

    #landing-main {
        padding: 15px 5px 5px 15px;
        /*height: 100vh;*/
    }

    #theses {
        margin: 0 0 0 15px;
    }
}


/*_____________END_Landing____________________________________*/


/*___________________________________Feedback__________________*/

.feedback-container {
    display: flex;
    justify-content: center;
}

.feedback-container > div{
    max-width: 600px;
    border: var(--text-prime-color);
    width: 100%;
    margin: 50px 5px 0 5px
}

.feedback-form p {
    display: flex;
    flex-direction: column;
}

.feedback-form label {
    margin-bottom: 5px;
    color: var(--text-prime-color);
}

.feedback-form input, textarea {
    border-radius: 5px;
    border: 1px solid #8c8383;
}


/*_____________END_Feedback____________________________________*/
