.sunPathTemp_tooltipBuild_container {
    display: inline-flex;
    flex-direction: column;
    background: #2bbb67;
    border-radius: 100px;
    padding: 2px 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
}

.sunPathTemp_tooltipBuild_wrapper {
    cursor: pointer;
    pointer-events: auto;
    display: inline-flex;
    position: relative;
}

.sunPathTemp_tooltipBuild_sale {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 7px;
    z-index: 1;
    top: -15px;
    right: -15px;
    background: #2bbb67;
    border-radius: 20px;
}

.sunPathTemp_tooltipBuild_row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sunPathTemp_tooltipBuild_korpus {
    margin-right: 4px;
}

.sunPathTemp_tooltipBuild_flats {
    margin: 4px 0px 4px 2px;
    background: white;
    border-radius: 100px;
    color: #444444;
    font-size: 0.8rem;
    padding: 0px 6px;
    font-weight: 400;
}


/* window tooltups */

.sunPathTooltipWindow {
    pointer-events: auto;
    cursor: pointer;
    transition: all .3s ease;
    /*transition-delay: .1s;*/
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    overflow: hidden;
    color: white;
    padding: 10px;
    border-radius: 20px;
    background: none;
    border: 1px solid #ffffff;
    max-width: 25px;
    max-height: 25px;
}

.sunPathTooltipWindowWrapper {
    transition: all .9s ease;
    border-radius: 100px;
    font-size: 0.7rem;
    aspect-ratio: 1/1;
    max-width: 18px;
    max-height: 18px;
}

/*.sunPathTooltipWindow:not(.sunPathTooltipWrapper_maximized) + .sunPathTooltipWindow-max {
    width: 200px;
    height: 200px;
    border-radius:100px;
    color: red;
}*/

.sunPathTooltipWrapper {
    pointer-events: auto;
    transition: all .2s ease-out;
    opacity: 1;
    /*max-width:100px;
    max-height:100px;*/
}

.sunPathTooltipWrapper_to0opacity {

    opacity: 0 !important;
    max-width: 0px;
    max-height: 0px;
}

.sunPathTooltipWrapper_to1opacity{
    display: 'flex' !important;
    opacity: 1 !important;
}
.sunPathTooltipWrapper_minimized.sunPathTooltipWrapper_to1opacity{
    display: 'flex' !important;
}

.sunPathTooltipWrapper_minimized {
    display:none;
    max-width: 0px !important;
    max-height: 0px !important;
    border: 0px solid rgba(255,255,255,0);
    background: rgba(255,255,255,1);
    padding: 0px;
}

.sunPathTooltipWrapper_minimized .sunPathTooltipWindowWrapper {
    transition: all .9s ease-out;
    opacity: 0;
}

.sunPathTooltipWrapper_maximized {
    transition: all .9s ease;
    max-width: 100px !important;
    min-height: 18px !important;
}

.sunPathTooltipWindow .sunPathTooltipWrapper_maximized {

}

.sunPathTooltipWindow-max {
    transition: max-width .9s ease, opacity 5s ease;
    overflow: hidden;
    max-width: 0;
    max-height: 0;
    opacity: 0;
}

.sunPathTooltipWrapper_maximized .sunPathTooltipWindow-max {
    transition: max-width .9s ease, opacity 1.2s ease;
    max-width: 300px;
    max-height: 19px;
    opacity: 1;
}


.sunPathTooltipWindow_disabled {
    display: flex;
    pointer-events: none;
    transition: all .3s ease-in;
    width: 6px !important;
    height: 6px !important;
    max-width:3px !important;
    max-height:3px !important;
    background:red;
    border: 1px solid red !important;
    opacity: 0.5;
    padding: 0;
}

.sunPathTooltipWindow_disabled .sunPathTooltipWindowWrapper {
    display: 'flex';
    transition: all .9s ease-out;
    opacity: 0;
}

.sunPathTooltipWindow-tooltipWrapper {
    display: flex !important;
}

.sunPathTooltipWindow-tooltip {
    cursor: pointer;
    visibility: hidden;
    min-width: 300px;
    box-shadow: 0 0px 15px 10px rgb(123 146 165 / 15%);
    width: auto;
    color: var(--sunPathTextColor);
    /*background-color: rgba(255, 255, 255, 0.85);*/
    background: linear-gradient(35deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid white;
    text-align: left;
    padding: 6px 10px;
    border-radius: 10px;
    position: absolute;
    /*bottom: -100%;
    left: 50%;
    margin-left: -100px;*/
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
    /*bottom: 50%;
    left: 50%;*/
    transform: translate(0%, 0%);
    width: 100%;
}

.sunPathTooltipWindow-tooltip_enabled {
    opacity: 1;
    visibility: visible;
}


@keyframes sunPathTooltipWindow-tooltip_fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.sunPathTooltipWindow-tooltip_fade-in {
    animation: sunPathTooltipWindow-tooltip_fadeInAnimation 0.3s;
}


.sunPathTooltipWindow-tooltip_image {
    position: relative;
    width: 125px;
    height: 125px;
    flex: 0 0 auto;
}

.sunPathTooltipWindow-tooltip_imageWrapper img {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.sunPathTooltipWindow-tooltip_imageImg {
    opacity: 0;
}

.sunPathTooltipWindow-tooltip_content {
    flex: 1 1 auto;
    padding: 8px;
}


.sunPathTooltipWindow-tooltip_infoH1 {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.1rem;
    color: var(--sunPathSecondMainColor);
    margin-bottom: 10px;

}

.sunPathTooltipWindow-tooltip_priceH2 {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

.sunPathTooltipWindow-tooltip_ppmH3 {
    font-weight: 400;
    color: var(--sunPathTextGrayColor);
    font-size: 0.8rem;
}

.sunPathTooltipWindow-tooltip_saleH3 {
    font-weight: 400;
    color: var(--sunPathTextGrayColor);
    font-size: 0.9rem;
}

/*

.sunPathTooltipWindow-tooltip_contentPrice{
    font-weight: 600;
    font-size: 1.3rem;
}
.sunPathTooltipWindow-tooltip_contentInfo{
    font-weight: 500;
    font-size: 0.9rem;
}
*/

.sunPathWait .sunPathTooltipWindow-tooltip_imageImg[data-loaded='true'] {
    background-color: white;
    opacity: 1;
}

.sunPathTooltipWindow-tooltip_imageWrapper {
    width: 115px;
    height: 115px;
    border-radius: 8px;
}


.sunPathTooltipWindow-tooltip_plusesWrapper {
    margin-top: 4px;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.7rem;
}
.sunPathTooltipWindow-tooltip_pluses{
    margin-bottom: 5px;
}
.sunPathTooltipWindow-tooltip_plusesType1 {
    border-radius: 100px;
    border: 1px solid var(--sunPathFilterBorderColor);
    padding: 2px 10px;
    margin-left:10px;
}

.sunPathTooltipWindow-tooltip_plusesType2 {
    border-radius: 100px;
    background: linear-gradient(90deg, rgba(220, 0, 0, 1) 0%, rgba(255, 0, 0, 1) 50%, rgba(220, 0, 0, 1) 100%);
    padding: 2px 10px;
    color: white;
    margin-left:10px;
}

.sunPathTooltipWindow-tooltip_plusesType2Image{
    width: 1rem;
    margin-right: 2px;
    margin-bottom: 1px;
}







/* flatPlane Tooltips */


/* window tooltups */

.sunPathTooltipFlatPlane {
    pointer-events: auto;
    cursor: pointer;
    transition: all .3s ease;
    /*transition-delay: .1s;*/
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    overflow: hidden;
    color: white;
    padding: 10px;
    border-radius: 20px;
    background: none;
    border: 1px solid #ffffff;
    max-width: 25px;
    max-height: 25px;
}

.sunPathTooltipFlatPlaneWrapper {
    transition: all .9s ease;
    border-radius: 100px;
    font-size: 0.7rem;
    aspect-ratio: 1/1;
    max-width: 18px;
    max-height: 18px;
}

/*.sunPathTooltipFlatPlane:not(.sunPathTooltipWrapper_maximized) + .sunPathTooltipFlatPlane-max {
    width: 200px;
    height: 200px;
    border-radius:100px;
    color: red;
}*/

.sunPathTooltipWrapper {
    pointer-events: auto;
    transition: all .2s ease-out;
    opacity: 1;
    /*max-width:100px;
    max-height:100px;*/
}

.sunPathTooltipWrapper_to0opacity {

    opacity: 0 !important;
    max-width: 0px;
    max-height: 0px;
}

.sunPathTooltipWrapper_to1opacity{
    display: 'flex' !important;
    opacity: 1 !important;
}
.sunPathTooltipWrapper_minimized.sunPathTooltipWrapper_to1opacity{
    display: 'flex' !important;
}

.sunPathTooltipWrapper_minimized {
    display:none;
    max-width: 0px !important;
    max-height: 0px !important;
    border: 0px solid rgba(255,255,255,0);
    background: rgba(255,255,255,1);
    padding: 0px;
}

.sunPathTooltipWrapper_minimized .sunPathTooltipFlatPlaneWrapper {
    transition: all .9s ease-out;
    opacity: 0;
}

.sunPathTooltipWrapper_maximized {
    transition: all .9s ease;
    max-width: 100px !important;
    min-height: 18px !important;
}

.sunPathTooltipFlatPlane .sunPathTooltipWrapper_maximized {

}

.sunPathTooltipFlatPlane-max {
    transition: max-width .9s ease, opacity 5s ease;
    overflow: hidden;
    max-width: 0;
    max-height: 0;
    opacity: 0;
}

.sunPathTooltipWrapper_maximized .sunPathTooltipFlatPlane-max {
    transition: max-width .9s ease, opacity 1.2s ease;
    max-width: 300px;
    max-height: 19px;
    opacity: 1;
}


.sunPathTooltipFlatPlane_disabled {
    display: flex;
    pointer-events: none;
    transition: all .3s ease-in;
    width: 6px !important;
    height: 6px !important;
    max-width:3px !important;
    max-height:3px !important;
    background:red;
    border: 1px solid red !important;
    opacity: 0.5;
    padding: 0;
}

.sunPathTooltipFlatPlane_disabled .sunPathTooltipFlatPlaneWrapper {
    display: 'flex';
    transition: all .9s ease-out;
    opacity: 0;
}

.sunPathTooltipFlatPlane-tooltipWrapper {
    display: flex !important;
}

.sunPathTooltipFlatPlane-tooltip {
    cursor: pointer;
    visibility: hidden;
    min-width: 300px;
    box-shadow: 0 0px 15px 10px rgb(123 146 165 / 15%);
    width: auto;
    color: var(--sunPathTextColor);
    /*background-color: rgba(255, 255, 255, 0.85);*/
    background: linear-gradient(35deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid white;
    text-align: left;
    padding: 6px 10px;
    border-radius: 10px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
    transform: translate(0%, 0%);
    width: 100%;
}

.sunPathTooltipFlatPlane-tooltip_enabled {
    opacity: 1;
    visibility: visible;
}


@keyframes sunPathTooltipFlatPlane-tooltip_fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.sunPathTooltipFlatPlane-tooltip_fade-in {
    animation: sunPathTooltipFlatPlane-tooltip_fadeInAnimation 0.3s;
}


.sunPathTooltipFlatPlane-tooltip_image {
    position: relative;
    width: 125px;
    height: 125px;
    flex: 0 0 auto;
}

.sunPathTooltipFlatPlane-tooltip_imageWrapper img {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.sunPathTooltipFlatPlane-tooltip_imageImg {
    opacity: 0;
}

.sunPathTooltipFlatPlane-tooltip_content {
    flex: 1 1 auto;
    padding: 8px;
}


.sunPathTooltipFlatPlane-tooltip_infoH1 {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.1rem;
    color: var(--sunPathSecondMainColor);
    margin-bottom: 10px;

}

.sunPathTooltipFlatPlane-tooltip_priceH2 {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

.sunPathTooltipFlatPlane-tooltip_ppmH3 {
    font-weight: 400;
    color: var(--sunPathTextGrayColor);
    font-size: 0.8rem;
}

.sunPathTooltipFlatPlane-tooltip_saleH3 {
    font-weight: 400;
    color: var(--sunPathTextGrayColor);
    font-size: 0.9rem;
}

.sunPathWait .sunPathTooltipFlatPlane-tooltip_imageImg[data-loaded='true'] {
    background-color: white;
    opacity: 1;
}

.sunPathTooltipFlatPlane-tooltip_imageWrapper {
    width: 115px;
    height: 115px;
    border-radius: 8px;
}


.sunPathTooltipFlatPlane-tooltip_plusesWrapper {
    margin-top: 4px;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.7rem;
}
.sunPathTooltipFlatPlane-tooltip_pluses{
    margin-bottom: 5px;
}
.sunPathTooltipFlatPlane-tooltip_plusesType1 {
    border-radius: 100px;
    border: 1px solid var(--sunPathFilterBorderColor);
    padding: 2px 10px;
    margin-left:10px;
}

.sunPathTooltipFlatPlane-tooltip_plusesType2 {
    border-radius: 100px;
    background: linear-gradient(90deg, rgba(220, 0, 0, 1) 0%, rgba(255, 0, 0, 1) 50%, rgba(220, 0, 0, 1) 100%);
    padding: 2px 10px;
    color: white;
    margin-left:10px;
}

.sunPathTooltipFlatPlane-tooltip_plusesType2Image{
    width: 1rem;
    margin-right: 2px;
    margin-bottom: 1px;
}


.sunPathTooltipFlatPlane_3D{
    transition: all .3s ease;
    min-width: 40px;
    min-height: 40px;
    padding: 1px;
    background: linear-gradient(342deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
    border: none !important;
    box-shadow: 0 7px 20px 0px #e80000ad;
}

.sunPathTooltipFlatPlaneWrapper_3D{
    transition: all .3s ease;
    display: flex;
    background: linear-gradient(234deg, rgb(222 0 0) 0%, rgb(255 0 0 / 69%) 40%, rgb(255 0 0 / 60%) 60%, rgb(255 0 0 / 60%) 100%);
    max-width: 100px;
    width: 100%;
    height: 100%;
    display: flex;
    max-height: 100px;
    align-items: center;
    justify-content: center;
}

.sunPathTooltipFlatPlane_3D_image{
    transition: all .3s ease;
    width: 20px;
    height: 20px;
}
