
.mainframe {
    height: 100vh;
    min-height: 550px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.mainframe_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.mainframe_bg_filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.35;
    left: 0;
    top: 0;
}

.diagram_container {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: flex-end;
}


.diagram_column {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.diagram_column > * {
    width: 100%;
}

.column_block {
    height: 0;
}

.column_price {
    font-family: Oswald;
    font-size: 31px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 0em;
    text-align: center;
    color: var(--bg-color);
    padding-left: 16px;
    padding-right: 16px;
}

.column_text {
    font-family: Oswald;
    font-size: 25px;
    font-weight: 400;
    line-height: 37px;
    letter-spacing: 0em;
    text-align: center;
    color: var(--bg-color);
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 16px;
    padding-right: 16px;
}

.mainframe_mainarea {
    position: absolute;
    height: 100%;
    width: 0;
    left: 0;
    background-color: var(--bg-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.mainframe_mainarea_content {
    height: 100%;
    min-width: 44vw;
    padding-left: calc((100vw - 1160px) / 2);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}


.mainbtn {
    margin-top: 21px;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    text-decoration: underline !important;
    color: var(--black);
}


.down_arrow {
    position: absolute;
    bottom: 20px;
    left: calc((100vw - 1160px) / 2);
    width: 16px;
    height: 9px;
    object-fit: contain;
}


.secondframe {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--green);
}

.secondframe > h2 {
    font-weight: 700;
}

.secondframe > .container > p {
    margin-top: 20px;
    margin-bottom: 33px;
}

.secondbtn {
    font-weight: 500;
    text-decoration: underline !important;

}

.mapframe {
    padding-top: 50px;
}

.mapframe > h2 {
    margin-top: 20px;
    margin-bottom: 20px;
}


.tempblock {
    background-color: var(--green);
    height: 600px;
    margin-top: 50px;
}


.rating_frame {
    margin-top: 90px;
}

.rating_frame_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
    margin-bottom: 4px;
}


.rating_item {
    height: 50px;
    border: 1px solid #C9C9C9;
    border-bottom: none;
    position: relative;
    transition: var(--transition);
}

.rating_item:last-child {
    border-bottom: 1px solid #C9C9C9;
}


.indicators, .rating_content {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.indicators > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: 1s ease-in;
}

.rating_content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}

.rating_frozen {
    width: 100%;
    background-color: var(--green1);
}

.rating_confiscated {
    width: 100%;
    background-color: var(--green2);
}

.rating_transferred {
    width: 100%;
    background-color: var(--green3);
}


.rating_content > h4 {
    font-family: Oswald;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-align: left;
    color: var(--black);
}

.rating_content > p {
    text-transform: uppercase;
}


.rating_item:last-child > .rating_content > * {
    text-transform: uppercase;
    font-weight: 600;
}

.get_all_rating {
    width: 100%;
    margin-top: 30px;
}

.get_all_rating > p {
    font-family: Inter;
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    color: var(--black);
    text-decoration: underline;
    cursor: pointer;
}


.slider_bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider_bullets > div {
    opacity: 0.5;
    border: 1px solid var(--black);
    border-radius: 100%;
    width: 10px;
    height: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.slider_bullets > div:hover {
    background-color: var(--black);
}

.slider_bullets > .mini_active {
    background-color: var(--black);
}


.slider_up, .slider_down {
    cursor: pointer;
    transition: var(--transition);
}


.slider_up:hover, .slider_down:hover {
    opacity: 0.8;
}

.items {
    padding-top: 50px;
    overflow: hidden;
    transition: var(--transition);
}

.tab_sovereign, .tab_private {
    cursor: pointer;
}

.hover_info {
    padding: 15px;
    width: fit-content;
    height: fit-content;
    position: relative;
    bottom: 40px;
    left: calc(50% - 90px);
    border: 1px solid rgba(249, 249, 249, 1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    width: 180px;
    height: 70px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 100;

}

.rating_content {
    pointer-events: none;
}

.indicators > div {
    cursor: pointer;
}

.indicators > div:hover .hover_info {
    opacity: 1;
}

.hover_info p {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.02em;
    text-align: left;
}

.frozen_info {
    background: var(--green1);
}

.confiscation_info {
    background: var(--green2);
}

.transferred_info {
    background: var(--green3);
}

.tooltip_arrow {
    width: 16px;
    position: absolute;
    bottom: -6px;
    left: calc(50% - 8px);
}
/* 
.rating_private {
    display: none;
} */